forked from rperryng/graphql-ruby-hive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraphql-hive.gemspec
33 lines (25 loc) · 1.2 KB
/
graphql-hive.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'graphql-hive/version'
Gem::Specification.new do |spec|
spec.name = 'graphql-hive'
spec.version = Graphql::Hive::VERSION
spec.authors = ['Charly POLY']
spec.email = ['[email protected]']
spec.summary = '"GraphQL Hive integration for `graphql-ruby`"'
spec.description = '"Monitor operations, inspect your queries and publish your GraphQL schema with GraphQL Hive"'
spec.homepage = 'https://docs.graphql-hive.com/specs/integrations'
spec.license = 'MIT'
spec.metadata = { 'rubygems_mfa_required' => 'true' }
spec.required_ruby_version = Gem::Requirement.new('>= 2.6.0')
spec.require_paths = ['lib']
spec.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
end
spec.add_dependency 'graphql', '>= 2.3', '< 3'
spec.add_development_dependency 'bundler', '~> 2'
spec.add_development_dependency 'rake', '~> 13'
spec.add_development_dependency 'rspec', '~> 3'
spec.add_development_dependency 'rubocop', '~> 1'
end