Skip to content

Instantly share code, notes, and snippets.

@traviskroberts
Created December 14, 2011 20:19
Show Gist options
  • Save traviskroberts/1478314 to your computer and use it in GitHub Desktop.
Save traviskroberts/1478314 to your computer and use it in GitHub Desktop.
model Rating < ActiveRecord::Base
VALUES = { 0 => 'Worst', 1 => 'Good', 2 => 'Best' }
validate :value, :in => VALUES.keys
end
<p>
This wine was rated: <%= Rating::VALUES[@wine.rating.value] %>
</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment