This means app-name.heroku.com.
Note this is different from Rails.application.class.parent_name.
Rails.application.class.parent_name is defined in the application.
Working in Rails 3.
|
This means app-name.heroku.com. Note this is different from
Working in Rails 3. |
|||
|
|
|
Heroku actually sets a URL variable in the environment by default
Referenced here: http://devcenter.heroku.com/articles/config-vars and http://ididitmyway.heroku.com/past/2010/11/9/sinatra_settings_and_configuration/ update: actually the URL variable might not be there by default, but you could always add an environment variable "app name" a priori, unless you were trying to avoid that approach all together. update 2: indeed, the other, obvious but limiting approach, would be to grab the domain off the request variable, but this limits you to your controller. http://guides.rubyonrails.org/action_controller_overview.html#the-request-object |
|||||
|
|
The solution with So if you need to know the app id outside a request, you's set a config variable like this
And enable lab feature that allows you to use them during compile
And now I have my app name available here:
This is handy if you want to load different config file (say with oauth credentials) based on the app's name or id. |
|||||
|
that's the name of the Rails app, as it was spelled when you did 'rails new app-name' Using this, you could do this:
|
||||
|
|
|
If you're running in different environments in each app per this, you could just set a variable in |
|||
|
|