Method: Abid::Application#initialize
- Defined in:
- lib/abid/application.rb
#initialize ⇒ Application
Returns a new instance of Application.
8 9 10 11 12 13 14 15 |
# File 'lib/abid/application.rb', line 8 def initialize super @rakefiles = %w(abidfile Abidfile abidfile.rb Abidfile.rb) << abidfile @worker = Worker.new(self) @config = IniFile.new(content: default_config) @config.merge!(IniFile.load('config/abid.conf')) end |