mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Use new url_for API instead of including routes.url_helpers
This commit is contained in:
parent
233be6572c
commit
229a868264
2 changed files with 4 additions and 9 deletions
|
@ -47,9 +47,8 @@ module TestGenerationPrefix
|
||||||
end
|
end
|
||||||
|
|
||||||
class ::InsideEngineGeneratingController < ActionController::Base
|
class ::InsideEngineGeneratingController < ActionController::Base
|
||||||
include BlogEngine.routes.url_helpers
|
|
||||||
def index
|
def index
|
||||||
render :text => post_path(:id => params[:id])
|
render :text => url_for(BlogEngine, :post_path, :id => params[:id])
|
||||||
end
|
end
|
||||||
|
|
||||||
def url_to_application
|
def url_to_application
|
||||||
|
@ -64,7 +63,7 @@ module TestGenerationPrefix
|
||||||
class ::OutsideEngineGeneratingController < ActionController::Base
|
class ::OutsideEngineGeneratingController < ActionController::Base
|
||||||
include BlogEngine.routes.url_helpers
|
include BlogEngine.routes.url_helpers
|
||||||
def index
|
def index
|
||||||
render :text => post_path(:id => 1)
|
render :text => url_for(BlogEngine, :post_path, :id => 1)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -45,10 +45,8 @@ module ApplicationTests
|
||||||
|
|
||||||
@plugin.write "app/controllers/posts_controller.rb", <<-RUBY
|
@plugin.write "app/controllers/posts_controller.rb", <<-RUBY
|
||||||
class PostsController < ActionController::Base
|
class PostsController < ActionController::Base
|
||||||
include Blog::Engine.routes.url_helpers
|
|
||||||
|
|
||||||
def index
|
def index
|
||||||
render :text => post_path(1)
|
render :text => url_for(Blog::Engine, :post_path, 1)
|
||||||
end
|
end
|
||||||
|
|
||||||
def generate_application_route
|
def generate_application_route
|
||||||
|
@ -63,10 +61,8 @@ module ApplicationTests
|
||||||
|
|
||||||
app_file "app/controllers/application_generating_controller.rb", <<-RUBY
|
app_file "app/controllers/application_generating_controller.rb", <<-RUBY
|
||||||
class ApplicationGeneratingController < ActionController::Base
|
class ApplicationGeneratingController < ActionController::Base
|
||||||
include Blog::Engine.routes.url_helpers
|
|
||||||
|
|
||||||
def engine_route
|
def engine_route
|
||||||
render :text => posts_path
|
render :text => url_for(Blog::Engine, :posts_path)
|
||||||
end
|
end
|
||||||
|
|
||||||
def url_for_engine_route
|
def url_for_engine_route
|
||||||
|
|
Loading…
Reference in a new issue