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