Created
February 15, 2013 21:25
-
-
Save pehrlich/4963672 to your computer and use it in GitHub Desktop.
Rails Boolean to string yes no
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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