-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathgraph_attack.gemspec
54 lines (39 loc) · 1.65 KB
/
graph_attack.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'graph_attack/version'
Gem::Specification.new do |spec|
spec.name = 'graph_attack'
spec.version = GraphAttack::VERSION
spec.authors = ['Fanny Cheung', 'Sunny Ripert']
spec.email = ['fanny@ynote.hk', 'sunny@sunfox.org']
spec.summary = 'GraphQL analyser for blocking & throttling'
spec.description = 'GraphQL analyser for blocking & throttling'
spec.homepage = 'https://github.com/sunny/graph_attack'
spec.metadata['rubygems_mfa_required'] = 'true'
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.required_ruby_version = '>= 2.5.7'
# This gem is an analyser for the GraphQL ruby gem.
spec.add_dependency 'graphql', '>= 1.7.9'
# A Redis-backed rate limiter.
spec.add_dependency 'ratelimit', '>= 1.0.4'
# Loads local dependencies.
spec.add_development_dependency 'bundler', '~> 2.0'
# Development tasks runner.
spec.add_development_dependency 'rake', '~> 13.0'
# Testing framework.
spec.add_development_dependency 'rspec', '~> 3.0'
# CircleCI dependency to store spec results.
spec.add_development_dependency 'rspec_junit_formatter', '~> 0.3'
# Ruby code linter.
spec.add_development_dependency 'rubocop', '~> 1.56.0'
# RSpec extension for RuboCop.
spec.add_development_dependency 'rubocop-rspec', '~> 2.23.0'
# Rake extension for RuboCop
spec.add_development_dependency 'rubocop-rake', '~> 0.6.0'
end