Class: Jabbot::Config

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

Overview

Jabbot configuration. Use either Jabbot::CliConfig.new or JabbotFileConfig.new setup a new bot from either command line or file (respectively). Configurations can be chained so they override each other:

config = Jabbot::FileConfig.new
config << Jabbot::CliConfig.new
config.to_hash

The preceding example will create a configuration which is based on a configuration file but have certain values overridden from the command line. This can be used for instance to store everything but the Twitter account password in your configuration file. Then you can just provide the password when running the bot.

Direct Known Subclasses

FileConfig

Constant Summary collapse

DEFAULT =
{
  :log_level => 'info',
  :log_file => nil,
  :login => nil,
  :password => nil,
  :nick => 'jabbot',
  :channel => nil,
  :server => nil,
  :resource => nil
}

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(settings = {}) ⇒ Config

Returns a new instance of Config.



33
34
35
36
# File 'lib/jabbot/config.rb', line 33

def initialize(settings = {})
  @configs = []
  @settings = settings
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(name, *args, &block) ⇒ Object

Makes it possible to access configuration settings as attributes



51
52
53
54
55
56
57
58
59
60
61
# File 'lib/jabbot/config.rb', line 51

def method_missing(name, *args, &block)
  regex = /=$/
  attr_name = name.to_s.sub(regex, '').to_sym
  return super if name == attr_name && !@settings.key?(attr_name)

  if name != attr_name
    @settings[attr_name] = args.first
  end

  @settings[attr_name]
end

Instance Attribute Details

#settingsObject (readonly)

Returns the value of attribute settings.



20
21
22
# File 'lib/jabbot/config.rb', line 20

def settings
  @settings
end

Class Method Details

.defaultObject



72
73
74
# File 'lib/jabbot/config.rb', line 72

def self.default
  Config.new({}.merge(DEFAULT))
end

Instance Method Details

#add(config) ⇒ Object Also known as: <<

Add a configuration object to override given settings



41
42
43
44
# File 'lib/jabbot/config.rb', line 41

def add(config)
  @configs << config
  self
end

#to_hashObject

Merges configurations and returns a hash with all options



66
67
68
69
70
# File 'lib/jabbot/config.rb', line 66

def to_hash
  hash = {}.merge(@settings)
  @configs.each { |conf| hash.merge!(conf.to_hash) }
  hash
end