Sha256: 60ed9b192d9147153d9242cae17067747cd0de8b48c5ed20d41e6fda7d36c603

Contents?: true

Size: 602 Bytes

Versions: 5

Compression:

Stored size: 602 Bytes

Contents

# encoding: utf-8

require 'yaml'

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!
        hash = YAML.load_file(DEFAULT_FILE)
        puts "configuration from #{path}" if ConfigLoader.debug?
        config = ConfigLoader.merge_with_default(hash, DEFAULT_FILE)

        ConfigLoader.instance_variable_set(:@default_configuration, config)
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rubocop-rspec-1.0.rc2 lib/rubocop/rspec/inject.rb
rubocop-rspec-1.0.rc1 lib/rubocop/rspec/inject.rb
rubocop-rspec-0.18.1 lib/rubocop/rspec/inject.rb
rubocop-rspec-0.18.0 lib/rubocop/rspec/inject.rb
rubocop-rspec-0.17.0 lib/rubocop/rspec/inject.rb