Class: Caco::Configuration

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



17
18
19
20
21
# File 'lib/caco/config.rb', line 17

def initialize
  @root = '[email protected]'
  @write_files = true
  @write_files_root = nil
end

Instance Attribute Details

#eyaml_parserObject

Returns the value of attribute eyaml_parser.



13
14
15
# File 'lib/caco/config.rb', line 13

def eyaml_parser
  @eyaml_parser
end

#rootObject

Returns the value of attribute root.



12
13
14
# File 'lib/caco/config.rb', line 12

def root
  @root
end

#write_filesObject

Returns the value of attribute write_files.



14
15
16
# File 'lib/caco/config.rb', line 14

def write_files
  @write_files
end

#write_files_rootObject

Returns the value of attribute write_files_root.



15
16
17
# File 'lib/caco/config.rb', line 15

def write_files_root
  @write_files_root
end