Sha256: 82792ffce418f510af37f99c7f1665b472fd791fd19eee6adbf8219ac4830253
Contents?: true
Size: 1.03 KB
Versions: 1
Compression:
Stored size: 1.03 KB
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "rspec/graphql/version" Gem::Specification.new do |spec| spec.name = "rspec-graphql" spec.version = Rspec::Graphql::VERSION spec.authors = ["Michael Kelly"] spec.email = ["michaelkelly322@gmail.com"] spec.summary = %q{Provides RSpec matchers and helpers for testing graphql-ruby schema} spec.description = %q{Provides RSpec matchers and helpers for testing graphql-ruby schema} spec.homepage = "https://github.com/thebadmonkeydev/rspec-graphql" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.16" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rspec-graphql-0.1.0 | rspec-graphql.gemspec |