class EyString

Public Instance Methods

method_missing(name, *args, &blk) click to toggle source
Calls superclass method
# File lib/rake/sprockets/ey_string.rb, line 2
def method_missing(name, *args, &blk)
  sname = name.to_s
  regex = /\?$/
  if sname =~ regex
    self == sname.gsub(regex, '')
  else
    super
  end
end