Class/Module Index [+]

Quicksearch

Twitter::REST::API::Utils::ClassMethods

Public Instance Methods

deprecate_alias(new_name, old_name) click to toggle source
# File lib/twitter/rest/api/utils.rb, line 21
def deprecate_alias(new_name, old_name)
  define_method(new_name) do |*args, &block|
    warn "#{Kernel.caller.first}: [DEPRECATION] ##{new_name} is deprecated. Use ##{old_name} instead."
    send(old_name, *args, &block)
  end
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.