Class: Quality::Config

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/quality/config.rb

Overview

Configuration for running quality tool

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(quality_name: 'quality', ratchet_name: 'ratchet', source_file_globber: Quality::LinguistSourceFileGlobber.new, dir: Dir) ⇒ Config

Returns a new instance of Config.



51
52
53
54
55
56
57
58
59
60
61
62
63
# File 'lib/quality/config.rb', line 51

def initialize(quality_name: 'quality',
               ratchet_name: 'ratchet',
               source_file_globber: Quality::LinguistSourceFileGlobber.new,
               dir: Dir)
  @quality_name = quality_name
  @ratchet_name = ratchet_name
  @skip_tools = []
  @output_dir = 'metrics'
  @verbose = false
  @source_file_globber = source_file_globber
  @dir = dir
  @source_files_exclude_glob = nil
end

Instance Attribute Details

#output_dirObject

Returns the value of attribute output_dir.



11
12
13
# File 'lib/quality/config.rb', line 11

def output_dir
  @output_dir
end

#punchlist_regexpObject

Returns the value of attribute punchlist_regexp.



11
12
13
# File 'lib/quality/config.rb', line 11

def punchlist_regexp
  @punchlist_regexp
end

#quality_nameObject

Returns the value of attribute quality_name.



11
12
13
# File 'lib/quality/config.rb', line 11

def quality_name
  @quality_name
end

#ratchet_nameObject

Returns the value of attribute ratchet_name.



11
12
13
# File 'lib/quality/config.rb', line 11

def ratchet_name
  @ratchet_name
end

#scalastyle_configObject

Returns the value of attribute scalastyle_config.



11
12
13
# File 'lib/quality/config.rb', line 11

def scalastyle_config
  @scalastyle_config
end

#scalastyle_excludeObject

Returns the value of attribute scalastyle_exclude.



11
12
13
# File 'lib/quality/config.rb', line 11

def scalastyle_exclude
  @scalastyle_exclude
end

#skip_toolsObject

Returns the value of attribute skip_tools.



11
12
13
# File 'lib/quality/config.rb', line 11

def skip_tools
  @skip_tools
end

#source_files_exclude_globObject



43
44
45
# File 'lib/quality/config.rb', line 43

def source_files_exclude_glob
  @source_files_exclude_glob || to_glob(exclude_files)
end

#verboseObject

Returns the value of attribute verbose.



11
12
13
# File 'lib/quality/config.rb', line 11

def verbose
  @verbose
end

Instance Method Details

#all_output_filesObject



47
48
49
# File 'lib/quality/config.rb', line 47

def all_output_files
  @dir.glob("#{output_dir}/*_high_water_mark")
end

#source_and_doc_files_globObject



39
40
41
# File 'lib/quality/config.rb', line 39

def source_and_doc_files_glob
  to_glob(source_and_doc_files)
end

#source_files_globObject



35
36
37
# File 'lib/quality/config.rb', line 35

def source_files_glob
  to_glob(source_files)
end

#to_glob(files) ⇒ Object



31
32
33
# File 'lib/quality/config.rb', line 31

def to_glob(files)
  "{#{files.join(',')}}"
end