Rake task: Be able to set false value in config

This commit is contained in:
Olle Jonsson 2015-09-15 00:35:07 +02:00
parent 12ea21c00b
commit 14d7c29808

View File

@ -51,7 +51,7 @@ module GitHubChangelogGenerator
OPTIONS.each do |o|
v = instance_variable_get("@#{o}")
options[o.to_sym] = v if v
options[o.to_sym] = v unless v.nil?
end
generator = Generator.new options