lib/rubocop/rspec/inject.rb in rubocop-rspec-1.6.0 vs lib/rubocop/rspec/inject.rb in rubocop-rspec-1.7.0

- old
+ new

@@ -1,18 +1,14 @@ module RuboCop module RSpec # Because RuboCop doesn't yet support plugins, we have to monkey patch in a # bit of our configuration. module Inject - DEFAULT_FILE = File.expand_path( - '../../../../config/default.yml', __FILE__ - ) - def self.defaults! - path = File.absolute_path(DEFAULT_FILE) + path = CONFIG_DEFAULT.to_s hash = ConfigLoader.send(:load_yaml_configuration, path) config = Config.new(hash, path) - puts "configuration from #{DEFAULT_FILE}" if ConfigLoader.debug? + puts "configuration from #{path}" if ConfigLoader.debug? config = ConfigLoader.merge_with_default(config, path) ConfigLoader.instance_variable_set(:@default_configuration, config) end end end