mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Deprecated framework rake tasks should exit with non-zero exit code [#4177 status:resolved]
Signed-off-by: José Valim <jose.valim@gmail.com>
This commit is contained in:
parent
b65b989725
commit
0f504a5646
1 changed files with 3 additions and 3 deletions
|
@ -2,18 +2,18 @@ namespace :rails do
|
|||
namespace :freeze do
|
||||
desc "The rails:freeze:gems is deprecated, please use bundle install instead"
|
||||
task :gems do
|
||||
puts "The rails:freeze:gems is deprecated, please use bundle install instead"
|
||||
abort "The rails:freeze:gems is deprecated, please use bundle install instead"
|
||||
end
|
||||
|
||||
desc 'The freeze:edge command has been deprecated, specify the path setting in your app Gemfile instead and bundle install'
|
||||
task :edge do
|
||||
puts 'The freeze:edge command has been deprecated, specify the path setting in your app Gemfile instead and bundle install'
|
||||
abort 'The freeze:edge command has been deprecated, specify the path setting in your app Gemfile instead and bundle install'
|
||||
end
|
||||
end
|
||||
|
||||
desc 'The unfreeze command has been deprecated, please use bundler commands instead'
|
||||
task :unfreeze do
|
||||
puts 'The unfreeze command has been deprecated, please use bundler commands instead'
|
||||
abort 'The unfreeze command has been deprecated, please use bundler commands instead'
|
||||
end
|
||||
|
||||
desc "Update both configs, scripts and public/javascripts from Rails"
|
||||
|
|
Loading…
Reference in a new issue