# File lib/dm-core/support/deprecate.rb, line 3 def deprecate(old_method, new_method) class_eval def #{old_method}(*args, &block) warn "\#{self.class}##{old_method} is deprecated, use \#{self.class}##{new_method} instead (\#{caller.first})" send(#{new_method.inspect}, *args, &block) end, __FILE__, __LINE__ + 1 end
Generated with the Darkfish Rdoc Generator 2.