Skip to content

Instantly share code, notes, and snippets.

@pehrlich
Created February 15, 2013 21:25
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pehrlich/4963672 to your computer and use it in GitHub Desktop.
Save pehrlich/4963672 to your computer and use it in GitHub Desktop.
Rails Boolean to string yes no
class TrueClass
def to_s(style = :boolean)
case style
when :word then 'yes'
when :Word then 'Yes'
when :number then '1'
else 'true'
end
end
end
class FalseClass
def to_s(style = :boolean)
case style
when :word then 'no'
when :Word then 'No'
when :number then '0'
else 'false'
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment