Sha256: 9c278da6673d2f9f4e6d83e2399038a22558cc553b35754e82c483ca77d82998

Contents?: true

Size: 315 Bytes

Versions: 97

Compression:

Stored size: 315 Bytes

Contents

module CC
  class Config
    class JSONAdapter < Config
      DEFAULT_PATH = ".codeclimate.json".freeze

      attr_reader :config

      def self.load(path = DEFAULT_PATH)
        new(::JSON.parse(File.open(path).read))
      end

      def initialize(json = {})
        @config = json
      end
    end
  end
end

Version data entries

97 entries across 97 versions & 2 rubygems

Version Path
codeclimate-0.78.0 lib/cc/config/json_adapter.rb
codeclimate-0.77.0 lib/cc/config/json_adapter.rb
codeclimate-0.76.0 lib/cc/config/json_adapter.rb
codeclimate-0.75.0 lib/cc/config/json_adapter.rb
codeclimate-0.74.0 lib/cc/config/json_adapter.rb
codeclimate-0.73.0 lib/cc/config/json_adapter.rb
codeclimate-0.72.0 lib/cc/config/json_adapter.rb
codeclimate-0.71.2 lib/cc/config/json_adapter.rb
codeclimate-0.71.1 lib/cc/config/json_adapter.rb
codeclimate-0.71.0 lib/cc/config/json_adapter.rb
codeclimate-0.70.6 lib/cc/config/json_adapter.rb
codeclimate-0.70.5 lib/cc/config/json_adapter.rb
codeclimate-0.70.4 lib/cc/config/json_adapter.rb
codeclimate-0.70.3 lib/cc/config/json_adapter.rb
codeclimate-0.70.2 lib/cc/config/json_adapter.rb
codeclimate-0.70.1 lib/cc/config/json_adapter.rb
codeclimate-0.70.0 lib/cc/config/json_adapter.rb