I have this RoR app that calls to RAILS_ROOT.
When running it using rails server (or when checking with ./script/console
) the value contains the app's root.
When deploying and running it with Heroku, however (or when checking with heroku console
), the returned path is '/app'.
Why's that?
Thanks