module Spruz::TimeDummy
Public Class Methods
included(modul)
click to toggle source
# File lib/spruz/time_dummy.rb, line 3 def self.included(modul) modul.module_eval do class << self alias really_new new end extend ClassMethods class << self alias now new end end end