Sha256: 32868f8ed5b12b9bd942a7db83dc09949e565cd188419e9a59319e04e647a199
Contents?: true
Size: 1.09 KB
Versions: 3
Compression:
Stored size: 1.09 KB
Contents
# coding: utf-8 lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "json_matchers/version" Gem::Specification.new do |spec| spec.name = "json_matchers" spec.version = JsonMatchers::VERSION spec.authors = ["Sean Doyle"] spec.email = ["sean.p.doyle24@gmail.com"] spec.summary = %q{Validate your Rails JSON API's JSON} spec.description = %q{Validate your Rails JSON API's JSON} spec.homepage = "https://github.com/thoughtbot/json_matchers" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_dependency("json-schema", "~> 2.6.0") spec.add_dependency("activesupport", '>= 3.0.0') spec.add_development_dependency "bundler", "~> 1.7" spec.add_development_dependency "pry" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec-rails", ">= 2.0" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
json_matchers-0.6.1 | json_matchers.gemspec |
json_matchers-0.6.0 | json_matchers.gemspec |
json_matchers-0.5.1 | json_matchers.gemspec |