-
Notifications
You must be signed in to change notification settings - Fork 3
/
graphql-stitching.gemspec
34 lines (28 loc) · 1.25 KB
/
graphql-stitching.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# 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