Skip to content

Instantly share code, notes, and snippets.

@jazzytomato
Created December 4, 2015 12:13
Show Gist options
  • Save jazzytomato/3bf9ebaad177807059a5 to your computer and use it in GitHub Desktop.
Save jazzytomato/3bf9ebaad177807059a5 to your computer and use it in GitHub Desktop.
string to boolean
def to_bool(str)
str == true || str =~ (/^(true|1)$/) ? true : false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment