I have a command line utility written in Ruby using GLI framework. I would like to have configuration for my command line utility in my home directory, using Ruby itself as DSL to handle it (similar to Gemfile or Rakefile).
I have in class ConfigData in folder lib/myapp. The class looks like following way:
class ConfigData
@@data = {}
class ConfigItem
def initialize
@data = {}
end
def missing_method(name, *args)
@data[name] = args[0]
end
end
def self.add(section)
item = ConfigItem.new()
yield item
@@data[section]=item
end
end
Now, what I would like to have, is the config file, preferrably with name Myappfile, in current working folder, with the following content
add('section1') do |i|
i.param1 'Some data'
i.param2 'More data'
end
When this code was included between class and end of ConfigData, it worked fine. But now I would like to have it placed in the working folder, where I start the application.
I tried require('./Myappfile') between class and end of ConfigData, but it doesn't work for me. I tried to read the source codes of rake, but it is not very much clear to me.
Any hint how this can be solved?
evaland thus I'm looking for another, better and perhaps cannonical way of doing this... – Tom Burger Dec 23 '12 at 15:28instance_evalis the canonical way. – Linuxios Dec 23 '12 at 15:34