Class: RailsConfig::Sources::YAMLSource

Inherits:
Object
  • Object
show all
Defined in:
lib/rails_config/sources/yaml_source.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path) ⇒ YAMLSource

Returns a new instance of YAMLSource.



10
11
12
# File 'lib/rails_config/sources/yaml_source.rb', line 10

def initialize(path)
  @path = path
end

Instance Attribute Details

#pathObject

Returns the value of attribute path.



8
9
10
# File 'lib/rails_config/sources/yaml_source.rb', line 8

def path
  @path
end

Instance Method Details

#loadObject

returns a config hash from the YML file



15
16
17
18
19
20
# File 'lib/rails_config/sources/yaml_source.rb', line 15

def load
  if @path and File.exists?(@path.to_s)
    result = YAML.load(ERB.new(IO.read(@path.to_s)).result)
  end
  result || {}
end