Sha256: 76bb8976f5c27494f99fc87c7167dd78ebedcea3210c1d3b7175b4214954fa28
Contents?: true
Size: 980 Bytes
Versions: 1
Compression:
Stored size: 980 Bytes
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'graphql/batch/version' Gem::Specification.new do |spec| spec.name = "graphql-batch" spec.version = Graphql::Batch::VERSION spec.authors = ["Dylan Thacker-Smith"] spec.email = ["Dylan.Smith@shopify.com"] spec.summary = "A query batching executor for the graphql gem" spec.homepage = "https://github.com/Shopify/graphql-batch" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_runtime_dependency "graphql", "~>0.8" spec.add_development_dependency "bundler", "~> 1.10" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "minitest" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
graphql-batch-0.1.0 | graphql-batch.gemspec |