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-fede-0.85.38 lib/cc/config/json_adapter.rb
codeclimate-fede-0.85.37 lib/cc/config/json_adapter.rb
codeclimate-fede-0.85.36 lib/cc/config/json_adapter.rb
codeclimate-fede-0.85.35 lib/cc/config/json_adapter.rb
codeclimate-fede-0.85.33 lib/cc/config/json_adapter.rb
codeclimate-fede-0.85.32 lib/cc/config/json_adapter.rb
codeclimate-fede-0.85.31 lib/cc/config/json_adapter.rb
codeclimate-fede-0.85.30 lib/cc/config/json_adapter.rb
codeclimate-fede-0.85.21 lib/cc/config/json_adapter.rb
codeclimate-fede-0.85.24 lib/cc/config/json_adapter.rb
codeclimate-fede-0.85.23 lib/cc/config/json_adapter.rb
codeclimate-0.85.23 lib/cc/config/json_adapter.rb
codeclimate-0.85.22 lib/cc/config/json_adapter.rb
codeclimate-0.85.21 lib/cc/config/json_adapter.rb
codeclimate-0.85.19 lib/cc/config/json_adapter.rb
codeclimate-0.85.18 lib/cc/config/json_adapter.rb
codeclimate-0.85.17 lib/cc/config/json_adapter.rb
codeclimate-0.85.15 lib/cc/config/json_adapter.rb
codeclimate-0.85.14 lib/cc/config/json_adapter.rb
codeclimate-0.85.13 lib/cc/config/json_adapter.rb