I see both in examples when checking what env one is running in. What's preferred? Are they, for all intents and purposes equal?
|
According to the docs,
But, look at specifically how it's wrapped, using
So they aren't exactly equivalent, but they're fairly close. I haven't used Rails much yet, but I'd say |
|||||||||||||||||
|
|
Before Rails 2.x the preferred way to get the current environment was using the Starting from Rails 2.x, Rails introduced the
This isn't just a cosmetic change. The Rails module offers capabilities not available using the standard constants such as Anyway, the preferred way is using the |
|||||||
|
|
ENV['RAILS_ENV'] is now deprecated. You should use Rails.env which is clearly much nicer. |
|||
|
|
|
Strange behaviour while debugging my app: require "active_support/notifications" (rdb:1) p ENV['RAILS_ENV'] "test" (rdb:1) p Rails.env "development" I would say that you should stick to one or another (and preferably Rails.env) |
|||
|
|
|
More details can be found in the blog post http://kartzontech.blogspot.in/2012/05/rails-and-stringinquirer-real-world.html |
|||
|
|