mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Merge pull request #33660 from y-yagi/follow_up_32121
Make `rake routes` deprecate before deleting
This commit is contained in:
commit
27934451b2
4 changed files with 58 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
* Deprecate `rake routes` in favor of `rails routes`.
|
||||
|
||||
*Yuji Yaginuma*
|
||||
|
||||
* Deprecate `rake initializers` in favor of `rails initializers`.
|
||||
|
||||
*Annie-Claude Côté*
|
||||
|
|
|
@ -12,6 +12,7 @@ require "rake"
|
|||
middleware
|
||||
misc
|
||||
restart
|
||||
routes
|
||||
tmp
|
||||
yarn
|
||||
).tap { |arr|
|
||||
|
|
9
railties/lib/rails/tasks/routes.rake
Normal file
9
railties/lib/rails/tasks/routes.rake
Normal file
|
@ -0,0 +1,9 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require "rails/command"
|
||||
require "active_support/deprecation"
|
||||
|
||||
task routes: :environment do
|
||||
ActiveSupport::Deprecation.warn("Using `bin/rake routes` is deprecated and will be removed in Rails 6.1. Use `bin/rails routes` instead.\n")
|
||||
Rails::Command.invoke "routes"
|
||||
end
|
44
railties/test/application/rake/routes_test.rb
Normal file
44
railties/test/application/rake/routes_test.rb
Normal file
|
@ -0,0 +1,44 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require "isolation/abstract_unit"
|
||||
|
||||
module ApplicationTests
|
||||
module RakeTests
|
||||
class RakeRoutesTest < ActiveSupport::TestCase
|
||||
include ActiveSupport::Testing::Isolation
|
||||
setup :build_app
|
||||
teardown :teardown_app
|
||||
|
||||
test "`rake routes` outputs routes" do
|
||||
app_file "config/routes.rb", <<-RUBY
|
||||
Rails.application.routes.draw do
|
||||
get '/cart', to: 'cart#show'
|
||||
end
|
||||
RUBY
|
||||
|
||||
assert_equal <<~MESSAGE, run_rake_routes
|
||||
Prefix Verb URI Pattern Controller#Action
|
||||
cart GET /cart(.:format) cart#show
|
||||
rails_service_blob GET /rails/active_storage/blobs/:signed_id/*filename(.:format) active_storage/blobs#show
|
||||
rails_blob_representation GET /rails/active_storage/representations/:signed_blob_id/:variation_key/*filename(.:format) active_storage/representations#show
|
||||
rails_disk_service GET /rails/active_storage/disk/:encoded_key/*filename(.:format) active_storage/disk#show
|
||||
update_rails_disk_service PUT /rails/active_storage/disk/:encoded_token(.:format) active_storage/disk#update
|
||||
rails_direct_uploads POST /rails/active_storage/direct_uploads(.:format) active_storage/direct_uploads#create
|
||||
MESSAGE
|
||||
end
|
||||
|
||||
test "`rake routes` outputs a deprecation warning" do
|
||||
remove_from_env_config("development", ".*config\.active_support\.deprecation.*\n")
|
||||
add_to_env_config("development", "config.active_support.deprecation = :stderr")
|
||||
|
||||
stderr = capture(:stderr) { run_rake_routes }
|
||||
assert_match(/DEPRECATION WARNING: Using `bin\/rake routes` is deprecated and will be removed in Rails 6.1/, stderr)
|
||||
end
|
||||
|
||||
private
|
||||
def run_rake_routes
|
||||
Dir.chdir(app_path) { `bin/rake routes` }
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue