class Lapidarist::Configuration

Public Class Methods

new() click to toggle source
Calls superclass method
# 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