Sha256: 5a6bf8b7967c0d4bbf32d3d1c06413962b7348f0d22c6e61037eddfbf6d2d003
Contents?: true
Size: 1.25 KB
Versions: 29
Compression:
Stored size: 1.25 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'graphql/stitching/version' Gem::Specification.new do |spec| spec.name = 'graphql-stitching' spec.version = GraphQL::Stitching::VERSION spec.authors = ['Greg MacWilliam'] spec.summary = 'GraphQL schema stitching for Ruby' spec.description = 'Combine GraphQL services into one unified graph' spec.homepage = 'https://github.com/gmac/graphql-stitching-ruby' spec.license = 'MIT' spec.required_ruby_version = '>= 2.7.0' spec.metadata = { 'homepage_uri' => 'https://github.com/gmac/graphql-stitching-ruby', 'changelog_uri' => 'https://github.com/gmac/graphql-stitching-ruby/releases', 'source_code_uri' => 'https://github.com/gmac/graphql-stitching-ruby', 'bug_tracker_uri' => 'https://github.com/gmac/graphql-stitching-ruby/issues', } spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^test/}) end spec.require_paths = ['lib'] spec.add_runtime_dependency 'graphql', '>= 1.13.9' spec.add_development_dependency 'bundler', '~> 2.0' spec.add_development_dependency 'rake', '~> 12.0' spec.add_development_dependency 'minitest', '~> 5.12' end
Version data entries
29 entries across 29 versions & 1 rubygems