How can I remove code when my Rails app is in development mode? For example, I want to remove my Google Analytics reference when in development but have it render in the production environment.

Is there a solution that con be implemented in the views or the controllers? I can see a need for both.

link|improve this question

67% accept rate
feedback

1 Answer

up vote 4 down vote accepted
<% if Rails.env == 'production' %>
  ...production code goes here...
<% end %>

This works for Rails 3. In older versions, user the environment variable RAILS_ENV.

Robin

link|improve this answer
Thanks, Robin. It's exactly what I was looking for. – sevens Apr 3 '11 at 6:46
4  
A shorter way: if Rails.env.production? – Ryan Bigg Apr 3 '11 at 6:56
That seems to work too Ryan. Thanks. – sevens Apr 3 '11 at 7:12
feedback

Your Answer

 
or
required, but never shown

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