class String

Public Instance Methods

to_bool() click to toggle source
# File lib/restest.rb, line 28
def to_bool
  return true if self == "true"
  false
end