Skip to content

Instantly share code, notes, and snippets.

@gshutler
Created November 26, 2012 15:48
Show Gist options
  • Save gshutler/4148888 to your computer and use it in GitHub Desktop.
Save gshutler/4148888 to your computer and use it in GitHub Desktop.
# Before
- some_pairs.each do |value, text|
%option{value: value}= text
# After
- some_pairs.each do |value, text|
<option value='#{value}'>#{h text}</option>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment