module RuboCop::Commsworld::Inject
Because RuboCop
doesn't yet support plugins, we have to monkey patch in a bit of our configuration.
Public Class Methods
defaults!()
click to toggle source
# File lib/rubocop/commsworld/inject.rb, line 10 def self.defaults! inject! PROJECT_ROOT.join("config", "default.yml").to_s end
house_style!()
click to toggle source
# 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)
click to toggle source
# 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