Sha256: 121654e0a0ad0c9fc8515b66b04157ad871c54cf65563424b9dd38dd6c587cbe

Contents?: true

Size: 1.14 KB

Versions: 5

Compression:

Stored size: 1.14 KB

Contents

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rack_graphql/version'

Gem::Specification.new do |spec|
  spec.name = 'rack-graphql'
  spec.version = RackGraphql::VERSION
  spec.authors = ['Krzysztof Knapik']
  spec.email = ['knapo@knapo.net']

  spec.summary = 'Rack middleware implementing graphql endpoint.'
  spec.homepage = 'https://github.com/RenoFi/rack-graphql'
  spec.license = 'MIT'

  spec.metadata['homepage_uri'] = 'https://github.com/RenoFi/rack-graphql'
  spec.metadata['source_code_uri'] = 'https://github.com/RenoFi/rack-graphql'
  spec.metadata['changelog_uri'] = 'https://github.com/RenoFi/rack-graphql/blob/master/CHANGELOG.md'
  spec.metadata['rubygems_mfa_required'] = 'true'

  spec.files = Dir.chdir(__dir__) do
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(bin/|spec/|\.rub)}) }
  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'

  spec.add_dependency 'graphql', '~> 2.0'
  spec.add_dependency 'oj'
  spec.add_dependency 'rack', '>= 2.2.6'
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rack-graphql-3.3.0.beta rack-graphql.gemspec
rack-graphql-3.2.0 rack-graphql.gemspec
rack-graphql-3.2.0.beta rack-graphql.gemspec
rack-graphql-3.1.3 rack-graphql.gemspec
rack-graphql-3.1.2 rack-graphql.gemspec