class GemToys::Template

Template with gem tools, should be expanded in toys file

Template with gem tools, should be expanded in toys file

Attributes

changelog_file_name[R]
unreleased_title[R]
version_file_path[R]
version_tag_prefix[R]

Public Class Methods

new( changelog_file_name: 'CHANGELOG.md', version_file_path: nil, version_tag_prefix: 'v', unreleased_title: ' click to toggle source
# File lib/gem_toys/template.rb, line 14
def initialize(
        changelog_file_name: 'CHANGELOG.md',
        version_file_path: nil,
        version_tag_prefix: 'v',
        unreleased_title: '## master (unreleased)'
)
        @changelog_file_name = changelog_file_name
        @version_file_path = version_file_path
        @version_tag_prefix = version_tag_prefix
        @unreleased_title = unreleased_title
end