rename, prepare to moving methods to generator

This commit is contained in:
Petr Korolev
2015-05-22 14:06:48 +03:00
parent 536b39c961
commit 7f696b6b09
5 changed files with 37 additions and 11 deletions
@@ -1,5 +1,11 @@
module GitHubChangelogGenerator
class Generator
# A Generator responsible for all logic, related with change log generation from ready-to-parse issues
#
# Example:
# generator = GitHubChangelogGenerator::Generator.new
# content = generator.compound_changelog
def initialize(options = nil)
@options = options
end
@@ -42,5 +48,7 @@ module GitHubChangelogGenerator
string
end
end
end