mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
fix release
This commit is contained in:
parent
4b5174f0c8
commit
4422efc270
1 changed files with 5 additions and 3 deletions
|
@ -1,21 +1,23 @@
|
|||
require 'rubygems' unless defined?(Gem)
|
||||
require 'rake'
|
||||
|
||||
require 'cucumber/rake/task'
|
||||
require 'yard'
|
||||
require 'bundler/gem_tasks'
|
||||
|
||||
# Skip the releasing tag
|
||||
class Bundler::GemHelper
|
||||
def release_gem
|
||||
guard_clean
|
||||
guard_already_tagged
|
||||
# guard_already_tagged
|
||||
built_gem_path = build_gem
|
||||
rubygem_push(built_gem_path)
|
||||
end
|
||||
end
|
||||
|
||||
require 'cucumber/rake/task'
|
||||
Cucumber::Rake::Task.new(:test, 'Run features that should pass') do |t|
|
||||
t.cucumber_opts = "--color --tags ~@wip --strict --format #{ENV['CUCUMBER_FORMAT'] || 'pretty'}"
|
||||
end
|
||||
|
||||
YARD::Rake::YardocTask.new
|
||||
|
||||
task :default => :test
|
Loading…
Reference in a new issue