Skip to content

Instantly share code, notes, and snippets.

@cfeduke
Created May 5, 2011 15:08
Show Gist options
  • Save cfeduke/957221 to your computer and use it in GitHub Desktop.
Save cfeduke/957221 to your computer and use it in GitHub Desktop.
to_bool
def to_bool
return false unless !self.nil?
self !~ /^(false|no|n|0)$/i
end
@duckworth
Copy link

much better

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment