Sha256: 2ac8dbbc81cb65ae0c98f8ed92cf6cc8b9d01cc23c52f6f610967c475d7ad921

Contents?: true

Size: 1.95 KB

Versions: 5

Compression:

Stored size: 1.95 KB

Contents

require_relative "lib/graphql/metrics/version"

Gem::Specification.new do |spec|
  spec.name          = "graphql-metrics"
  spec.version       = GraphQL::Metrics::VERSION
  spec.authors       = ["Christopher Butcher"]
  spec.email         = ["gems@shopify.com"]

  spec.summary       = 'GraphQL Metrics Extractor'
  spec.description   = <<~DESCRIPTION
    Extract as much much detail as you want from GraphQL queries, served up from your Ruby app and the `graphql` gem.
    Compatible with the `graphql-batch` gem, to extract batch-loaded fields resolution timings.
  DESCRIPTION
  spec.homepage      = 'https://github.com/Shopify/graphql-metrics'
  spec.license       = "MIT"

  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
  # to allow pushing to a single host or delete this section to allow pushing to any host.
  # if spec.respond_to?(:metadata)
  #   spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
  # else
  #   raise "RubyGems 2.0 or newer is required to protect against " \
  #     "public gem pushes."
  # end

  spec.files         = `git ls-files -z`.split("\x0").reject do |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.add_runtime_dependency "graphql", ">= 1.12.10"
  spec.add_runtime_dependency "concurrent-ruby", ">= 1.1.0"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "minitest", "~> 5.0"
  spec.add_development_dependency 'graphql-batch'
  spec.add_development_dependency "activesupport", "~> 5.1.5"
  spec.add_development_dependency "pry"
  spec.add_development_dependency "pry-byebug"
  spec.add_development_dependency "mocha"
  spec.add_development_dependency "diffy"
  spec.add_development_dependency "hashdiff"
  spec.add_development_dependency "fakeredis"
  spec.add_development_dependency "minitest-focus"
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
graphql-metrics-5.0.7 graphql_metrics.gemspec
graphql-metrics-5.0.6 graphql_metrics.gemspec
graphql-metrics-5.0.5 graphql_metrics.gemspec
graphql-metrics-5.0.4 graphql_metrics.gemspec
graphql-metrics-5.0.3 graphql_metrics.gemspec