class Prepd::StringInquirer

Public Instance Methods

method_missing(method_name, *arguments) click to toggle source

Copied from ActiveSupport::StringInquirer

Calls superclass method
# File lib/prepd.rb, line 7
def method_missing(method_name, *arguments)
  if method_name[-1] == '?'
    self == method_name[0..-2]
  else
    super
  end
end