Skip to content

Instantly share code, notes, and snippets.

@iurevych
Created April 8, 2014 13:41
Show Gist options
  • Save iurevych/10125777 to your computer and use it in GitHub Desktop.
Save iurevych/10125777 to your computer and use it in GitHub Desktop.
is_development = Rails.env.development? ? "is-development" : ""
["c_#{controller_name}", "a_#{params[:action]}", "l_#{layout}", is_development]
@zhuravel
Copy link

zhuravel commented Apr 8, 2014

is_development = Rails.env.development? ? "is-development" : nil
["c_#{controller_name}", "a_#{params[:action]}", "l_#{layout}", is_development].compact

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment