Ruby on Rails - mount another application in ruby on rails- ruby on rails tutorial - rails guides - rails tutorial - ruby rails
- Mount is used to mount another application (basically rack application) or rails engines to be used within the current application
syntax:
- We can access above mounted application using route helper some_rack_app_path or some_rack_app_url.
If we want to rename this helper name we can do it as:
This will generate the myapp_path and myapp_url helpers which can be used to navigate to this mounted app.