Skip to content

Instantly share code, notes, and snippets.

@nusco
Created October 4, 2010 16:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save nusco/609949 to your computer and use it in GitHub Desktop.
Save nusco/609949 to your computer and use it in GitHub Desktop.
Post: The method_missing() Chainsaw
class DoNotDisturb
def initialize
@desk = InformationDesk.new
end
def method_missing(name, *args)
unless name.to_s == "emergency"
hour = Time.now.hour
raise "Out for lunch" if hour >= 12 && hour < 14
end
@desk.send(name, *args)
end
end
# At 12:30...
DoNotDisturb.new.emergency # => "emergency() called"
DoNotDisturb.new.flights # ~> -:37:in `method_missing': Out for lunch (RuntimeError)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment