diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2019-01-16 20:45:32 -0500 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2019-01-17 16:08:34 -0500 |
commit | 9d39f81d512e0d16a27e2e864ea2dd0e8dc41b17 (patch) | |
tree | db3eb420225654d0dbe6d02148164fc5b9bf3059 /railties/lib/rails/generators | |
parent | 1a6a3e06ed7242d9a4ed66e9c3d77035bf1362a1 (diff) | |
download | rails-9d39f81d512e0d16a27e2e864ea2dd0e8dc41b17.tar.gz rails-9d39f81d512e0d16a27e2e864ea2dd0e8dc41b17.tar.bz2 rails-9d39f81d512e0d16a27e2e864ea2dd0e8dc41b17.zip |
Remove deprecated `capify!`
Diffstat (limited to 'railties/lib/rails/generators')
-rw-r--r-- | railties/lib/rails/generators/actions.rb | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/railties/lib/rails/generators/actions.rb b/railties/lib/rails/generators/actions.rb index 4646a55316..5b056045b3 100644 --- a/railties/lib/rails/generators/actions.rb +++ b/railties/lib/rails/generators/actions.rb @@ -248,15 +248,6 @@ module Rails execute_command :rails, command, options end - # Just run the capify command in root - # - # capify! - def capify! - ActiveSupport::Deprecation.warn("`capify!` is deprecated and will be removed in the next version of Rails.") - log :capify, "" - in_root { run("#{extify(:capify)} .", verbose: false) } - end - # Make an entry in Rails routing file <tt>config/routes.rb</tt> # # route "root 'welcome#index'" |