class StandupMD::Config::EntryList

The configuration class for StandupMD::EntryList

Constants

DEFAULTS

The default options.

@return [Hash]

Public Instance Methods

initalize() click to toggle source

Initializes the config with default values.

# File lib/standup_md/config/entry_list.rb, line 18
def initalize
  reset
end
reset() click to toggle source

Sets all config values back to their defaults.

@return [Hash]

# File lib/standup_md/config/entry_list.rb, line 26
def reset
  DEFAULTS.each { |k, v| instance_variable_set("@#{k}", v) }
end