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
1 changed files with 5 additions and 1 deletions

View File

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