-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcm-graphql.gemspec
25 lines (23 loc) · 1.08 KB
/
cm-graphql.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
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = 'cm-graphql'
spec.version = '0.0.7'
spec.date = '2022-09-14'
spec.summary = 'A gem to setup grapqhl basics like pagination, file upload'
spec.description = 'A gem to setup grapqhl basics like pagination, file upload'
spec.authors = ['Anbazhagan Palani']
spec.email = ['[email protected]']
spec.homepage = 'https://github.com/commutatus/template-paging-api'
spec.license = 'MIT'
spec.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 3.0.0'
spec.add_runtime_dependency 'graphiql-rails', '>= 1.9'
spec.add_runtime_dependency 'graphql', '>= 2.2.5'
spec.add_runtime_dependency 'graphql-rails_logger', '>= 1.2.4'
spec.add_runtime_dependency 'kaminari', '~> 1.2', '>= 1.2.2'
end