Method: Capucine::Settings#initialize

Defined in:
lib/settings.rb

#initializeSettings

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.expand_path(Dir.getwd)
  self.project_name = 'capucine'
  self.root_dir = File.expand_path('../..', __FILE__)
  self.content_dir = File.expand_path('../../content', __FILE__)

  self.set_user_config_file
  return self
end