class Renogen::ExtractionStratagies::YamlFile::Provider

Reads change data from files in configured directory

Public Class Methods

new(options={}) click to toggle source
# File lib/renogen/extraction_stratagies/yaml_file/provider.rb, line 10
def initialize(options={})
  super
  @yaml_parser = Parser.new(options)
end

Public Instance Methods

extract() click to toggle source

Parse changes from source

@return [ChangeLog::Model]

# File lib/renogen/extraction_stratagies/yaml_file/provider.rb, line 18
def extract
  @yaml_parser.parse!
end