-
Notifications
You must be signed in to change notification settings - Fork 40
/
graphql_java_gen.gemspec
28 lines (22 loc) · 1.1 KB
/
graphql_java_gen.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
# coding: utf-8
lib = File.expand_path('../codegen/lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'graphql_java_gen/version'
Gem::Specification.new do |spec|
spec.name = "graphql_java_gen"
spec.version = GraphQLJavaGen::VERSION
spec.authors = ["Dylan Thacker-Smith"]
spec.email = ["[email protected]"]
spec.summary = "GraphQL java client code generator"
spec.description = %q{Generates java code based on the GraphQL schema to provide type-safe API for building GraphQL queries and using their responses.}
spec.homepage = "https://github.com/Shopify/graphql_java_gen"
spec.license = "MIT"
spec.files = `git ls-files -z codegen/lib LICENSE.txt README.md`.split("\x0")
spec.require_paths = ["codegen/lib"]
spec.required_ruby_version = ">= 2.1.0"
spec.add_dependency "graphql_schema", "~> 0.1.8"
spec.add_development_dependency "bundler", "~> 2.1"
spec.add_development_dependency "rake", "~> 12.0"
spec.add_development_dependency "minitest", "~> 5.10"
spec.add_development_dependency "graphql", "~> 1.3"
end