2013-02-01 04:19:14 -05:00
|
|
|
require "bundler/gem_tasks"
|
2014-04-22 11:36:44 -04:00
|
|
|
require "cucumber/rake/task"
|
|
|
|
require "rspec/core/rake_task"
|
2016-01-23 16:07:52 -05:00
|
|
|
require "rubocop/rake_task"
|
2013-02-08 04:20:23 -05:00
|
|
|
|
2017-03-26 18:50:35 -04:00
|
|
|
task default: %i(spec rubocop)
|
2013-02-08 04:20:23 -05:00
|
|
|
RSpec::Core::RakeTask.new
|
2014-04-22 11:36:44 -04:00
|
|
|
|
|
|
|
Cucumber::Rake::Task.new(:features)
|
|
|
|
|
2016-03-01 09:39:51 -05:00
|
|
|
desc "Run RuboCop checks"
|
|
|
|
RuboCop::RakeTask.new
|
2019-09-12 10:47:38 -04:00
|
|
|
|
|
|
|
Rake::Task["release"].enhance do
|
|
|
|
puts "Don't forget to publish the release on GitHub!"
|
|
|
|
system "open https://github.com/capistrano/capistrano/releases"
|
|
|
|
end
|