Class: GitHubChangelogGenerator::ChangelogGenerator
- Inherits:
-
Object
- Object
- GitHubChangelogGenerator::ChangelogGenerator
- Defined in:
- lib/github_changelog_generator.rb
Overview
Main class and entry point for this script.
Instance Method Summary collapse
-
#initialize ⇒ Object
constructor
Class, responsible for whole change log generation cycle.
-
#run ⇒ Object
The entry point of this script to generate change log.
Constructor Details
#initialize ⇒ Object
Class, responsible for whole change log generation cycle
21 22 23 24 |
# File 'lib/github_changelog_generator.rb', line 21 def initialize = Parser. @generator = Generator.new end |
Instance Method Details
#run ⇒ Object
The entry point of this script to generate change log
28 29 30 31 32 33 34 35 |
# File 'lib/github_changelog_generator.rb', line 28 def run log = @generator.compound_changelog output_filename = ([:output]).to_s File.open(output_filename, "w") { |file| file.write(log) } puts "Done!" puts "Generated log placed in #{Dir.pwd}/#{output_filename}" end |