Class: Yelp::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/yelp/configuration.rb

Constant Summary collapse

AUTH_KEYS =
[:consumer_key, :consumer_secret, :token, :token_secret]

Instance Method Summary collapse

Constructor Details

#initialize(config_hash = nil) ⇒ Configuration

Creates the configuration

Parameters:

  • hash (Hash)

    containing configuration parameters and their values



11
12
13
14
15
16
17
# File 'lib/yelp/configuration.rb', line 11

def initialize(config_hash = nil)
  if config_hash.is_a?(Hash)
    config_hash.each do |config_name, config_value|
      self.send("#{config_name}=", config_value)
    end
  end
end

Instance Method Details

#auth_keysObject

Returns a hash of api keys and their values



20
21
22
23
24
25
# File 'lib/yelp/configuration.rb', line 20

def auth_keys
  AUTH_KEYS.inject({}) do |keys_hash, key|
    keys_hash[key] = send(key)
    keys_hash
  end
end

#valid?Boolean

Returns:

  • (Boolean)


27
28
29
# File 'lib/yelp/configuration.rb', line 27

def valid?
  AUTH_KEYS.none?{ |key| send(key).nil? || send(key).empty? }
end