Skip to content

Instantly share code, notes, and snippets.

@ngty
Created December 10, 2009 13:22
Show Gist options
  • Save ngty/253327 to your computer and use it in GitHub Desktop.
Save ngty/253327 to your computer and use it in GitHub Desktop.
class LocalTime
@@zone = Time.zone
class << self
def method_missing(method, *args)
args.empty? ? @@zone.send(method) : @@zone.send(method, *args)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment