Merge pull request #334 from olleolleolle/feature/refactor-parser-file-to-pathname

[Refactor] ParserFile class use Pathname
This commit is contained in:
Petr Korolev 2016-02-24 16:16:17 +02:00
commit 60517bffe9

View File

@ -1,21 +1,24 @@
require 'pathname'
module GitHubChangelogGenerator
ParserError = Class.new(StandardError)
class ParserFile
FILENAME = ".github_changelog_generator"
def initialize(options)
@options = options
end
# Destructively change @options using data in configured options file.
def parse!
return unless File.exist?(file)
File.readlines(file).each { |line| parse_line!(line) }
file.each_line { |line| parse_line!(line) } if file.exist?
end
private
def file
@file ||= File.expand_path(@options[:params_file] || ".github_changelog_generator")
@file ||= Pathname(File.expand_path(@options[:params_file] || FILENAME))
end
def parse_line!(line)