class StandupMD::Config

This class provides a connector from StandupMD to the configuration classes.

Attributes

cli[R]

Reader for Cli config.

@return [StandupMD::Config::Cli]

entry[R]

Reader for Entry config.

@return [StandupMD::Config::Entry]

entry_list[R]

Reader for EntryList config.

@return [StandupMD::Config::EntryList]

file[R]

Reader for File config.

@return [StandupMD::Config::File]

Public Class Methods

new() click to toggle source

Builds the links to the configuration classes.

# File lib/standup_md/config.rb, line 38
def initialize
  @cli        = StandupMD::Config::Cli.new
  @file       = StandupMD::Config::File.new
  @entry      = StandupMD::Config::Entry.new
  @entry_list = StandupMD::Config::EntryList.new
end