In Rails, where should I define the variable which can be recognized by every layer of Rails stacks.

For example, I would like to have a CUSTOMER_NAME='John' variable which can be accessed in helper, rake task, controller and model. Where should I define this variable in Rails app?

I am using Rails v2.3.2

link|improve this question

65% accept rate
feedback

3 Answers

up vote 2 down vote accepted

In an initializer in /app/config/initializers all .rb files in here get loaded, I usually create one called preferences.rb for things like this.

See: http://guides.rubyonrails.org/configuring.html#using-initializer-files

link|improve this answer
feedback

You want a true global constant? Use ::COSTUMER_NAME. You want a true global variable? Use $COSTUMER_NAME (discouraged). You want a request-global variable? Use the Hash in the #env method.

link|improve this answer
You mean create a linux server wide global variable? – Mellon Dec 2 '11 at 12:45
ENV and #env are two different things. ENV is the global constant representing the Unix environment. #env is a controller method that returns the current rack environment. – Tass Dec 2 '11 at 12:50
feedback

An alternative approach is to set a key on the config object in config/application.rb, like so:

MyApp::Application.configure do
   # ...
   config.my_key = 'some "global" value'
end

You can then access my_key from anywhere in your app with just this:

MyApp::Application.config.my_key

Also, Mike Perham has described a similar, though a more comprehensive approach in his blog post.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.