I need to set a path depending if I am on my development box of
production server. How can I set variables that our dependend on
environment?
–
John K.
[email protected]
I need to set a path depending if I am on my development box of
production server. How can I set variables that our dependend on
environment?
–
John K.
[email protected]
On Tue, Sep 19, 2006 at 07:28:03PM -0400, John K. wrote:
I need to set a path depending if I am on my development box of
production server. How can I set variables that our dependend on
environment?
do you mean something like
my_variable = RAILS_ENV == ‘test’ ? ‘in test mode’ : ‘not in test mode’
Jens
–
Jens Krämer
[email protected]
On 9/20/06, Jens K. [email protected] wrote:
Jens
You can also define a constant in the .rb files in the environment/
directory.
E.g in development.rb:
module EnvironmentSpecific
Variable=“Set for Development”
end
and in production.rb:
module EnvironmentSpecific
Variable=“Set for Production”
end
Max
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.
Sponsor our Newsletter | Privacy Policy | Terms of Service | Remote Ruby Jobs