Sha256: 352b7813c5c3184abd3c175a7fdd820e39e5a0785873bd2ea18f3b3a431b994c

Contents?: true

Size: 1.46 KB

Versions: 3

Compression:

Stored size: 1.46 KB

Contents

require_relative 'lib/graphql/filters/version'

Gem::Specification.new do |spec|
  spec.name = 'graphql-filters'
  spec.version = GraphQL::Filters::VERSION
  spec.authors = ['Moku S.r.l.', 'Riccardo Agatea']
  spec.email = ['info@moku.io']
  spec.license = 'MIT'

  spec.summary = 'Provide a fully typed interface to filter lists in a GraphQL API.'
  spec.description = 'Provide a fully typed interface to filter lists in a GraphQL API.'
  spec.homepage = 'https://github.com/moku-io/graphql-filters'
  spec.required_ruby_version = '>= 3.0.0' # Maybe we should check (?)

  spec.metadata['homepage_uri'] = spec.homepage
  spec.metadata['source_code_uri'] = 'https://github.com/moku-io/graphql-filters'
  spec.metadata['changelog_uri'] = 'https://github.com/moku-io/graphql-filters/blob/master/CHANGELOG.md'

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files = Dir.chdir File.expand_path(__dir__) do
    `git ls-files -z`.split("\x0").reject do |f|
      (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
    end
  end
  spec.bindir = 'exe'
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']

  spec.add_dependency 'activerecord'
  spec.add_dependency 'activesupport'
  spec.add_dependency 'graphql', '~> 2.0.0'
  spec.add_dependency 'graphql-models_connect'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
graphql-filters-1.0.7 graphql-filters.gemspec
graphql-filters-1.0.6 graphql-filters.gemspec
graphql-filters-1.0.5 graphql-filters.gemspec