Skip to content

Instantly share code, notes, and snippets.

@brettcave
Last active December 20, 2015 19:38
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save brettcave/6184116 to your computer and use it in GitHub Desktop.
ERB conditional
Environment: <%= @environment %>
<% if @environment == "PROD" %>
noThen {}
<% end %>
<% if @environment == "PROD" then %>
withThen {}
<% end %>
<% if @environment == "PROD" %>
config {}
<% end %>
------ Result ----------
Environment: BUILD
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment