Module: Changelog
- Defined in:
- lib/changelog-rb.rb,
lib/changelog/add.rb,
lib/changelog/cli.rb,
lib/changelog/tag.rb,
lib/changelog/show.rb,
lib/changelog/print.rb,
lib/changelog/setup.rb,
lib/changelog/untag.rb,
lib/changelog/version.rb,
lib/changelog/helpers/git.rb,
lib/changelog/helpers/shell.rb,
lib/changelog/helpers/changes.rb
Defined Under Namespace
Modules: Helpers
Classes: Add, CLI, Print, Setup, Show, Tag, Untag
Constant Summary
collapse
- VERSION =
"0.1.3"
Class Method Summary
collapse
Class Method Details
.dictionary ⇒ Object
11
12
13
14
15
16
17
18
19
20
|
# File 'lib/changelog-rb.rb', line 11
def self.dictionary
{
'Added' => %w[add added new],
'Changed' => %w[change changed update updated make made],
'Deprecated' => %w[deprecate deprecated],
'Removed' => %w[remove removed delete deleted],
'Fixed' => %w[fix fixed resolve resolved],
'Security' => %w[security protect],
}
end
|
.natures ⇒ Object
7
8
9
|
# File 'lib/changelog-rb.rb', line 7
def self.natures
['Added', 'Changed', 'Deprecated', 'Removed', 'Fixed', 'Security'].freeze
end
|