Module: RuboCop::Commsworld::Inject

Defined in:
lib/rubocop/commsworld/inject.rb

Overview

Because RuboCop doesn’t yet support plugins, we have to monkey patch in a bit of our configuration.

Class Method Summary collapse

Class Method Details

.defaults!Object



10
11
12
# File 'lib/rubocop/commsworld/inject.rb', line 10

def self.defaults!
  inject! PROJECT_ROOT.join("config", "default.yml").to_s
end

.house_style!Object



14
15
16
# File 'lib/rubocop/commsworld/inject.rb', line 14

def self.house_style!
  inject! PROJECT_ROOT.join("config", "house-style.yml").to_s
end

.inject!(path) ⇒ Object



18
19
20
21
22
23
24
# File 'lib/rubocop/commsworld/inject.rb', line 18

def self.inject!(path)
  hash = ConfigLoader.send(:load_yaml_configuration, path)
  config = Config.new(hash, path).tap(&:make_excludes_absolute)
  puts "configuration from #{path}" if ConfigLoader.debug?
  config = ConfigLoader.merge_with_default(config, path)
  ConfigLoader.instance_variable_set(:@default_configuration, config)
end