Sha256: c12df67fe3e7867e1ccd381c56a323f60d373f20334bd29060e14ae43dc1378d
Contents?: true
Size: 998 Bytes
Versions: 1
Compression:
Stored size: 998 Bytes
Contents
lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'match/json/schema/version' Gem::Specification.new do |spec| spec.name = 'match-json-schema' spec.version = Match::Json::Schema::VERSION spec.authors = ['taki'] spec.email = ['taki@users.noreply.github.com'] spec.summary = 'match-json-schema compliant with JSON Schema Draft 4.' spec.description = spec.summary spec.homepage = 'https://github.com/taki/match-json-schema' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_dependency 'json-schema' spec.add_dependency 'pry-byebug' spec.add_dependency 'rspec', '~> 3.8' spec.add_development_dependency 'bundler', '~> 1.16' spec.add_development_dependency 'rake', '~> 10.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
match-json-schema-0.2.1 | match_json_schema.gemspec |