Sha256: d74fae04700124beb75c599b9f2a91ef5fb23b8f4ffec6373fba703f6799f9c8

Contents?: true

Size: 1.25 KB

Versions: 2

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', '~> 2.0.16'

  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

2 entries across 2 versions & 1 rubygems

Version Path
graphql-stitching-0.2.1 graphql-stitching.gemspec
graphql-stitching-0.1.0 graphql-stitching.gemspec