class Twitter::Config

Represents global configuration for Twitter::Client. Can override the following configuration options:

Public Instance Methods

eql?(other) click to toggle source

Override of Object#eql? to ensure RSpec specifications run correctly. Also done to follow Ruby best practices.

# File lib/twitter/config.rb, line 65
def eql?(other)
  return true if self == other
  @@ATTRIBUTES.each do |att|
    return false unless self.send(att).eql?(other.send(att))
  end
  true
end