class Goodboy::Config

Constants

DEFAULT_CHANGELOG_FILE
DEFAULT_CHANGES_FILE

Attributes

changelog_file[R]
changes_file[R]

Public Class Methods

new(changes_file = DEFAULT_CHANGES_FILE, changelog_file: DEFAULT_CHANGELOG_FILE) click to toggle source
# File lib/goodboy/config.rb, line 8
def initialize(changes_file = DEFAULT_CHANGES_FILE, changelog_file: DEFAULT_CHANGELOG_FILE)
  @changelog_file = changelog_file
  @changes_file = changes_file
end