|
1 | 1 | # frozen_string_literal: true |
2 | 2 |
|
3 | | -require_relative 'lib/graphql/sources/version' |
| 3 | +require_relative "lib/graphql/sources/version" |
4 | 4 |
|
5 | 5 | Gem::Specification.new do |spec| |
6 | | - spec.name = 'graphql-sources' |
| 6 | + spec.name = "graphql-sources" |
7 | 7 | spec.version = GraphQL::Sources::VERSION |
8 | | - spec.authors = ['Kevin Sylvestre'] |
9 | | - spec.email = ['kevin@ksylvest.com'] |
10 | | - |
11 | | - spec.summary = 'A set of common GraphQL DataLoader sources.' |
12 | | - spec.description = 'Common loaders for various database or cache operations.' |
13 | | - spec.homepage = 'https://github.com/ksylvest/graphql-sources' |
14 | | - spec.license = 'MIT' |
15 | | - spec.required_ruby_version = '>= 2.6.0' |
16 | | - |
17 | | - spec.metadata['homepage_uri'] = spec.homepage |
18 | | - spec.metadata['source_code_uri'] = "https://github.com/ksylvest/graphql-sources/tree/v#{GraphQL::Sources::VERSION}" |
19 | | - spec.metadata['changelog_uri'] = "https://github.com/ksylvest/graphql-sources/releases/tag/v#{GraphQL::Sources::VERSION}" |
20 | | - spec.metadata['documentation_uri'] = 'https://graphql-sources.ksylvest.com/' |
21 | | - |
22 | | - spec.files = Dir.glob('{bin,lib}/**/*') + %w[README.md LICENSE Gemfile] |
23 | | - |
24 | | - spec.require_paths = ['lib'] |
25 | | - |
26 | | - spec.add_dependency 'graphql' |
27 | | - spec.add_dependency 'rails' |
28 | | - spec.add_dependency 'zeitwerk' |
29 | | - spec.add_development_dependency 'factory_bot' |
30 | | - spec.add_development_dependency 'pg' |
31 | | - spec.add_development_dependency 'rspec_junit_formatter' |
32 | | - spec.add_development_dependency 'rspec-rails' |
33 | | - spec.add_development_dependency 'rubocop' |
34 | | - spec.add_development_dependency 'rubocop-factory_bot' |
35 | | - spec.add_development_dependency 'rubocop-rails' |
36 | | - spec.add_development_dependency 'rubocop-rake' |
37 | | - spec.add_development_dependency 'rubocop-rspec' |
38 | | - spec.add_development_dependency 'rubocop-rspec_rails' |
39 | | - spec.add_development_dependency 'simplecov' |
| 8 | + spec.authors = ["Kevin Sylvestre"] |
| 9 | + spec.email = ["kevin@ksylvest.com"] |
| 10 | + |
| 11 | + spec.summary = "A set of common GraphQL DataLoader sources." |
| 12 | + spec.description = "Common loaders for various database or cache operations." |
| 13 | + spec.homepage = "https://github.com/ksylvest/graphql-sources" |
| 14 | + spec.license = "MIT" |
| 15 | + spec.required_ruby_version = ">= 2.6.0" |
| 16 | + |
| 17 | + spec.metadata["homepage_uri"] = spec.homepage |
| 18 | + spec.metadata["source_code_uri"] = "https://github.com/ksylvest/graphql-sources/tree/v#{GraphQL::Sources::VERSION}" |
| 19 | + spec.metadata["changelog_uri"] = "https://github.com/ksylvest/graphql-sources/releases/tag/v#{GraphQL::Sources::VERSION}" |
| 20 | + spec.metadata["documentation_uri"] = "https://graphql-sources.ksylvest.com/" |
| 21 | + |
| 22 | + spec.metadata["rubygems_mfa_required"] = "true" |
| 23 | + |
| 24 | + spec.files = Dir.glob("{bin,lib}/**/*") + %w[README.md LICENSE Gemfile] |
| 25 | + |
| 26 | + spec.require_paths = ["lib"] |
| 27 | + |
| 28 | + spec.add_dependency "graphql" |
| 29 | + spec.add_dependency "rails" |
| 30 | + spec.add_dependency "zeitwerk" |
40 | 31 | end |
0 commit comments