You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In a Rails engine, the Rails application is typically defined inside test/dummy. However, it's a real application and we could load it to inspect the defined models and controllers.
Currently, it does not work because we return early if config/application.rb is not defined in the current directory.
If we could somehow allow this to also point to different paths, like test/dummy/config/application.rb, DSL generation for engines would just work.
The text was updated successfully, but these errors were encountered:
In a Rails engine, the Rails application is typically defined inside
test/dummy
. However, it's a real application and we could load it to inspect the defined models and controllers.Currently, it does not work because we return early if
config/application.rb
is not defined in the current directory.If we could somehow allow this to also point to different paths, like
test/dummy/config/application.rb
, DSL generation for engines would just work.The text was updated successfully, but these errors were encountered: