aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/tasks/framework.rake
diff options
context:
space:
mode:
Diffstat (limited to 'railties/lib/rails/tasks/framework.rake')
-rw-r--r--railties/lib/rails/tasks/framework.rake17
1 files changed, 0 insertions, 17 deletions
diff --git a/railties/lib/rails/tasks/framework.rake b/railties/lib/rails/tasks/framework.rake
index 443dacd739..745a32a1fa 100644
--- a/railties/lib/rails/tasks/framework.rake
+++ b/railties/lib/rails/tasks/framework.rake
@@ -1,21 +1,4 @@
namespace :rails do
- namespace :freeze do
- # desc "The rails:freeze:gems is deprecated, please use bundle install instead"
- task :gems do
- 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
- 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
- abort 'The unfreeze command has been deprecated, please use bundler commands instead'
- end
-
desc "Update both configs and public/javascripts from Rails (or use just update:javascripts or update:configs)"
task :update => [ "update:configs", "update:javascripts", "update:scripts", "update:application_controller" ]