Class: Twibot::Config

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

Overview

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

config = Twibot::FileConfig.new
config << Twibot::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

CliConfig, FileConfig

Constant Summary collapse

DEFAULT =
{
  :min_interval => 30,
  :max_interval => 300,
  :interval_step => 10,
  :log_level => "info",
  :log_file => nil,
  :login => nil,
  :password => nil,
  :prompt => false,
  :daemonize => false
}

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(settings = {}) ⇒ Config

Returns a new instance of Config.



34
35
36
37
# File 'lib/twibot/config.rb', line 34

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



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

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/twibot/config.rb', line 20

def settings
  @settings
end

Class Method Details

.defaultObject



73
74
75
# File 'lib/twibot/config.rb', line 73

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



42
43
44
45
# File 'lib/twibot/config.rb', line 42

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

#to_hashObject

Merges configurations and returns a hash with all options



67
68
69
70
71
# File 'lib/twibot/config.rb', line 67

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