Method: Capucine::Settings#initialize
- Defined in:
- lib/settings.rb
#initialize ⇒ Settings
Returns a new instance of Settings.
16 17 18 19 20 21 22 23 24 25 |
# File 'lib/settings.rb', line 16 def initialize self.working_dir = File.(Dir.getwd) self.project_name = 'capucine' self.root_dir = File.('../..', __FILE__) self.content_dir = File.('../../content', __FILE__) self.set_user_config_file return self end |