forked from github-community-projects/graphql-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraphql-client.gemspec
27 lines (22 loc) · 926 Bytes
/
graphql-client.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
# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = "graphql-client"
s.version = "0.16.0"
s.summary = "GraphQL Client"
s.description = "A Ruby library for declaring, composing and executing GraphQL queries"
s.homepage = "https://github.com/github/graphql-client"
s.license = "MIT"
s.files = Dir["README.md", "LICENSE", "lib/**/*.rb"]
s.add_dependency "activesupport", ">= 3.0"
s.add_dependency "graphql", "~> 1.10"
s.add_development_dependency "actionpack", ">= 3.2.22"
s.add_development_dependency "erubi", "~> 1.6"
s.add_development_dependency "erubis", "~> 2.7"
s.add_development_dependency "minitest", "~> 5.9"
s.add_development_dependency "rake", "~> 11.2"
s.add_development_dependency "rubocop-github", "~> 0.10"
s.add_development_dependency "rubocop", "~> 0.55"
s.required_ruby_version = ">= 2.1.0"
s.email = "[email protected]"
s.authors = "GitHub"
end