Sha256: e4281f1d08f89f6979e4d2218003f607fda86d7ebd8440431cdb1ddcfc57bc74
Contents?: true
Size: 1.65 KB
Versions: 1
Compression:
Stored size: 1.65 KB
Contents
# # Description should go here # class CaretakerCore # # We want to create everything as a class/static method # class << self # Class Constants INITIAL_TAG = 'untagged'.freeze DEFAULT_CATEGORY = 'Uncategorised:'.freeze CATEGORIES = { 'New Features:' => [ 'new feature:', 'new:', 'feature:' ], 'Improvements:' => [ 'improvement:', 'improve:' ], 'Bug Fixes:' => [ 'bug fix:', 'bug:', 'bugs:' ], 'Security Fixes:' => [ 'security: '], 'Refactor:' => [ ], 'Style:' => [ ], 'Deprecated:' => [ ], 'Removed:' => [ 'deleted:' ], 'Tests:' => [ 'test:', 'testing:' ], 'Documentation:' => [ 'docs: ' ], 'Chores:' => [ 'chore:' ], 'Experiments:' => [ 'experiment:' ], 'Miscellaneous:' => [ 'misc:' ], 'Uncategorised:' => [ 'no category:' ], 'Initial Commit:' => [ 'initial:' ], 'Skip:' => [ 'ignore:' ] }.freeze DEFAULT_CONFIG = { :enable_categories => false, :remove_categories => true }.freeze end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
caretaker-core-0.0.1 | lib/caretaker-core/config.rb |