Class: Lapidarist::Configuration

Inherits:
OpenStruct
  • Object
show all
Defined in:
lib/lapidarist/configuration.rb

Instance Method Summary collapse

Constructor Details

#initializeConfiguration



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/lapidarist/configuration.rb', line 6

def initialize
  super(
    directory: Pathname.new('.'),
    test_script: 'test.sh',
    all: false,
    quiet: false,
    verbosity: 0,
    commit_flags: '',
    debug: false,
    log_path: Pathname.new('./tmp/lapidarist.log'),
    update_limit: nil,
    groups: [],
    version: MAJOR,
    recursive: false,
    random: true,
    seed: nil,
    promoted: [],
    demoted: [],
    only: [],
    except: []
  )
end