mirror of https://github.com/rails/rails
Add bundle check to release task
This commit is contained in:
parent
7df77cf87e
commit
bfff3c7192
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue