1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Add bundle check to release task

This commit is contained in:
Rafael Mendonça França 2015-11-05 00:52:35 -02:00
parent 23bb31b158
commit 89b7396191

View file

@ -119,6 +119,10 @@ namespace :all do
end end
end end
task :bundle do
sh 'bundle check'
end
task :commit do task :commit do
File.open('pkg/commit_message.txt', 'w') do |f| File.open('pkg/commit_message.txt', 'w') do |f|
f.puts "# Preparing for #{version} release\n" f.puts "# Preparing for #{version} release\n"
@ -135,5 +139,5 @@ namespace :all do
sh "git push --tags" sh "git push --tags"
end end
task :release => %w(ensure_clean_state build commit tag push) task :release => %w(ensure_clean_state build bundle commit tag push)
end end