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
- When running a console, the routes are not loaded, which results
in not being able to see what route helpers are available.
```shell
$ bin/rails c
$ catana(dev)> app.methods.grep(/_(path|url)/) # []
$ catana(dev)> app.foo_path # Works. The routes are now loaded.
$ catana(dev)> app.methods.grep(/_(path|url)/) # [:foo_path]
```
0 commit comments