Class/Module Index [+]

Quicksearch

Twitter::Utils::ClassMethods

Public Instance Methods

deprecate_alias(new_name, old_name) click to toggle source
# File lib/twitter/utils.rb, line 10
def deprecate_alias(new_name, old_name)
  define_method(new_name) do |*args|
    warn "#{Kernel.caller.first}: [DEPRECATION] ##{new_name} is deprecated. Use ##{old_name} instead."
    if block_given?
      send(old_name, *args, &Proc.new)
    else
      send(old_name, *args)
    end
  end
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.