Class: ShareChecker::Config

Inherits:
Hash
  • Object
show all
Defined in:
lib/share_checker/config.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(other = {}) ⇒ Config

Returns a new instance of Config.



31
32
33
34
35
36
37
38
39
40
# File 'lib/share_checker/config.rb', line 31

def initialize(other = {})
  merge!(other)
  
  self[:timeout] ||= 30
  self[:user_agent] ||= "ShareChecker Robot"
  
  Providers.avariable.each do |provider|
    self[provider] ||= {}
  end
end

Class Method Details

.hash_accessor(*names) ⇒ Object

Creates an accessor that simply sets and reads a key in the hash:

class Config < Hash

hash_accessor :routes, :secret_key, :service_number, :project_name

end

config = Config.new config.routes = ‘/posts/message’ config #=> ‘/posts/message’



14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/share_checker/config.rb', line 14

def self.hash_accessor(*names) #:nodoc:
  names.each do |name|
    class_eval <<-METHOD, __FILE__, __LINE__ + 1
      def #{name}
        self[:#{name}]
      end

      def #{name}=(value)
        self[:#{name}] = value
      end
    METHOD
  end
end