Method: Charyf::StringInquirer#method_missing

Defined in:
lib/charyf/support/string_inquirer.rb

#method_missing(method_name, *arguments) ⇒ Object (private)



9
10
11
12
13
14
15
# File 'lib/charyf/support/string_inquirer.rb', line 9

def method_missing(method_name, *arguments)
  if method_name[-1] == "?"
    self == method_name[0..-2]
  else
    super
  end
end