yabeda-graphql 0.2.3 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: aed4d5c392c099fb7d0bdab25c1489b637cceec7d442739c26a940ebcfcbc42d
4
- data.tar.gz: e1f3a58216e42a3c114a4321b6f1deeaaaffef424be728ad1aee2d2010fff6e7
3
+ metadata.gz: 3abfbdf067a6e5b53a72377bf4efe6cc99db8d9d4669aaf0ad8f6ade9c49a5d9
4
+ data.tar.gz: 7e3da9fed086cf72f7359f26e6a06458f655aa40035580f13e96fcff61547838
5
5
  SHA512:
6
- metadata.gz: e3b0ee1cf572e2c23f13a3ec32a64d574726d28728ed20df6bd3145845ab03ecba0e7881bb40bc1ed4f505f8b9b9cc5598af3ec20f1f1e7fa4e2693c399a720e
7
- data.tar.gz: 42a57d68c11cdbacee24f6ac04a871bf4af3b242fcd5ba6c09cdf1b6ea8e43d025081febc0a63839a6748b42a3f3bbb96c55b5c7df69ab34ac62a9739b5e18dd
6
+ metadata.gz: 7cccd95e22eca816e93cd283057f9282caed96e8a69ded9fad94f1542b1ceb4e0f160ee90ac9bc60aec7626070067a51554775ba9981741a6099a8ebbefb1488
7
+ data.tar.gz: d9d381a0431b7928e7a6f52859a6d858613803f1a974098a66074fb55dd81d25ba3cafcd3cd2a757728ac831e5eec4be55e83021e4d4ad3f4755b594a131cf0f
@@ -8,13 +8,17 @@ on:
8
8
  jobs:
9
9
  release:
10
10
  runs-on: ubuntu-latest
11
+ permissions:
12
+ contents: write
13
+ id-token: write
14
+ packages: write
11
15
  steps:
12
- - uses: actions/checkout@v2
16
+ - uses: actions/checkout@v4
13
17
  with:
14
18
  fetch-depth: 0 # Fetch current tag as annotated. See https://github.com/actions/checkout/issues/290
15
19
  - uses: ruby/setup-ruby@v1
16
20
  with:
17
- ruby-version: 2.7
21
+ ruby-version: "3.4"
18
22
  - name: "Extract data from tag: version, message, body"
19
23
  id: tag
20
24
  run: |
@@ -75,8 +79,8 @@ jobs:
75
79
  GEM_HOST_API_KEY: Bearer ${{ secrets.GITHUB_TOKEN }}
76
80
  run: |
77
81
  gem push yabeda-graphql-${{ steps.tag.outputs.version }}.gem --host https://rubygems.pkg.github.com/${{ github.repository_owner }}
82
+ - name: Configure RubyGems Credentials
83
+ uses: rubygems/configure-rubygems-credentials@main
78
84
  - name: Publish to RubyGems
79
- env:
80
- GEM_HOST_API_KEY: "${{ secrets.RUBYGEMS_API_KEY }}"
81
85
  run: |
82
86
  gem push yabeda-graphql-${{ steps.tag.outputs.version }}.gem
@@ -16,36 +16,21 @@ jobs:
16
16
  fail-fast: false
17
17
  matrix:
18
18
  include:
19
+ - ruby: "3.4"
20
+ graphql-ruby: "2.5"
21
+ - ruby: "3.3"
22
+ graphql-ruby: "2.4"
19
23
  - ruby: "3.2"
20
- graphql-ruby: "2.0"
24
+ graphql-ruby: "2.3"
21
25
  - ruby: "3.1"
22
- graphql-ruby: "2.0"
23
- - ruby: "3.0"
24
- graphql-ruby: "1.13"
25
- - ruby: "2.7"
26
- graphql-ruby: "1.12"
27
- - ruby: "2.6"
28
- graphql-ruby: "1.11"
29
- container:
30
- image: ruby:${{ matrix.ruby }}
31
- env:
32
- CI: true
33
- BUNDLE_GEMFILE: gemfiles/graphql_${{ matrix.graphql-ruby }}.gemfile
26
+ graphql-ruby: "2.2"
27
+ env:
28
+ BUNDLE_GEMFILE: gemfiles/graphql_${{ matrix.graphql-ruby }}.gemfile
34
29
  steps:
35
- - uses: actions/checkout@v2
36
- - uses: actions/cache@v2
30
+ - uses: actions/checkout@v4
31
+ - uses: ruby/setup-ruby@v1
37
32
  with:
38
- path: vendor/bundle
39
- key: bundle-${{ matrix.ruby }}-${{ matrix.graphql-ruby }}-${{ hashFiles('**/*.gemspec') }}-${{ hashFiles('**/Gemfile') }}
40
- restore-keys: |
41
- bundle-${{ matrix.ruby }}-${{ matrix.graphql-ruby }}-${{ hashFiles('**/*.gemspec') }}-${{ hashFiles('**/Gemfile') }}
42
- bundle-${{ matrix.ruby }}-
43
- - name: Upgrade Bundler to 2.x (for older Rubies)
44
- run: gem install bundler -v '~> 2.0'
45
- - name: Bundle install
46
- run: |
47
- bundle config path vendor/bundle
48
- bundle install
49
- bundle update
33
+ ruby-version: ${{ matrix.ruby }}
34
+ bundler-cache: true
50
35
  - name: Run RSpec
51
36
  run: bundle exec rspec
data/Appraisals CHANGED
@@ -1,23 +1,15 @@
1
- appraise "graphql-1.9" do
2
- gem "graphql", "~> 1.9.0"
1
+ appraise "graphql-2.2" do
2
+ gem "graphql", "~> 2.2.0"
3
3
  end
4
4
 
5
- appraise "graphql-1.10" do
6
- gem "graphql", "~> 1.10.0"
5
+ appraise "graphql-2.3" do
6
+ gem "graphql", "~> 2.3.0"
7
7
  end
8
8
 
9
- appraise "graphql-1.11" do
10
- gem "graphql", "~> 1.11.0"
9
+ appraise "graphql-2.4" do
10
+ gem "graphql", "~> 2.4.0"
11
11
  end
12
12
 
13
- appraise "graphql-1.12" do
14
- gem "graphql", "~> 1.12.0"
15
- end
16
-
17
- appraise "graphql-1.13" do
18
- gem "graphql", "~> 1.13.0"
19
- end
20
-
21
- appraise "graphql-2.0" do
22
- gem "graphql", "~> 2.0.0"
13
+ appraise "graphql-2.5" do
14
+ gem "graphql", "~> 2.5.0"
23
15
  end
data/CHANGELOG.md CHANGED
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
6
6
  and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## 0.3.0 - 2025-12-03
9
+
10
+ ### Changed
11
+
12
+ - Switch to [current GraphQL-Ruby Tracing API](https://graphql-ruby.org/queries/tracing) (`GraphQL::Schema.trace_with`) API. [#9](https://github.com/yabeda-rb/yabeda-graphql/pull/9) by [@loadkpi]
13
+
14
+ ### Removed
15
+
16
+ - Support for GraphQL-Ruby versions older than 2.2. [@Envek]
17
+
8
18
  ## 0.2.3 - 2023-05-29
9
19
 
10
20
  ### Fixed
@@ -36,3 +46,4 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
36
46
 
37
47
  [@Envek]: https://github.com/Envek "Andrey Novikov"
38
48
  [@skateman]: https://github.com/skateman "Halász Dávid"
49
+ [@loadkpi]: https://github.com/loadkpi "Pavel Kozlov"
data/Gemfile.lock CHANGED
@@ -1,57 +1,63 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- yabeda-graphql (0.2.1)
5
- graphql (>= 1.9, < 3)
4
+ yabeda-graphql (0.2.3)
5
+ graphql (~> 2.2)
6
6
  yabeda (~> 0.2)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- anyway_config (2.3.0)
12
- ruby-next-core (>= 0.14.0)
13
- appraisal (2.4.1)
11
+ anyway_config (2.7.2)
12
+ ruby-next-core (~> 1.0)
13
+ appraisal (2.5.0)
14
14
  bundler
15
15
  rake
16
16
  thor (>= 0.14.0)
17
- byebug (11.1.3)
17
+ base64 (0.3.0)
18
+ byebug (12.0.0)
18
19
  coderay (1.1.3)
19
- concurrent-ruby (1.1.10)
20
- diff-lcs (1.5.0)
21
- dry-initializer (3.1.1)
22
- graphql (1.13.11)
23
- graphql-batch (0.5.1)
24
- graphql (>= 1.10, < 3)
20
+ concurrent-ruby (1.3.5)
21
+ diff-lcs (1.6.2)
22
+ dry-initializer (3.2.0)
23
+ fiber-storage (1.0.1)
24
+ graphql (2.5.14)
25
+ base64
26
+ fiber-storage
27
+ logger
28
+ graphql-batch (0.6.1)
29
+ graphql (>= 1.13, < 3)
25
30
  promise.rb (~> 0.7.2)
26
- method_source (1.0.0)
31
+ logger (1.7.0)
32
+ method_source (1.1.0)
27
33
  promise.rb (0.7.4)
28
- pry (0.13.1)
34
+ pry (0.15.2)
29
35
  coderay (~> 1.1)
30
36
  method_source (~> 1.0)
31
- pry-byebug (3.9.0)
32
- byebug (~> 11.0)
33
- pry (~> 0.13.0)
37
+ pry-byebug (3.11.0)
38
+ byebug (~> 12.0)
39
+ pry (>= 0.13, < 0.16)
34
40
  pry-inline (1.0.7)
35
41
  pry (> 0.10.0)
36
42
  unicode (~> 0.4.4)
37
- rake (13.0.6)
38
- rspec (3.11.0)
39
- rspec-core (~> 3.11.0)
40
- rspec-expectations (~> 3.11.0)
41
- rspec-mocks (~> 3.11.0)
42
- rspec-core (3.11.0)
43
- rspec-support (~> 3.11.0)
44
- rspec-expectations (3.11.0)
43
+ rake (13.3.1)
44
+ rspec (3.13.2)
45
+ rspec-core (~> 3.13.0)
46
+ rspec-expectations (~> 3.13.0)
47
+ rspec-mocks (~> 3.13.0)
48
+ rspec-core (3.13.6)
49
+ rspec-support (~> 3.13.0)
50
+ rspec-expectations (3.13.5)
45
51
  diff-lcs (>= 1.2.0, < 2.0)
46
- rspec-support (~> 3.11.0)
47
- rspec-mocks (3.11.1)
52
+ rspec-support (~> 3.13.0)
53
+ rspec-mocks (3.13.7)
48
54
  diff-lcs (>= 1.2.0, < 2.0)
49
- rspec-support (~> 3.11.0)
50
- rspec-support (3.11.0)
51
- ruby-next-core (0.15.0)
52
- thor (1.2.1)
53
- unicode (0.4.4.4)
54
- yabeda (0.11.0)
55
+ rspec-support (~> 3.13.0)
56
+ rspec-support (3.13.6)
57
+ ruby-next-core (1.1.2)
58
+ thor (1.4.0)
59
+ unicode (0.4.4.5)
60
+ yabeda (0.14.0)
55
61
  anyway_config (>= 1.0, < 3)
56
62
  concurrent-ruby
57
63
  dry-initializer
@@ -71,4 +77,4 @@ DEPENDENCIES
71
77
  yabeda-graphql!
72
78
 
73
79
  BUNDLED WITH
74
- 2.3.10
80
+ 2.7.2
@@ -2,7 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "graphql", "~> 1.9.0"
5
+ gem "graphql", "~> 2.2.0"
6
6
 
7
7
  group :development, :test do
8
8
  gem "pry"
@@ -0,0 +1,78 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ yabeda-graphql (0.2.3)
5
+ graphql (~> 2.2)
6
+ yabeda (~> 0.2)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ anyway_config (2.7.2)
12
+ ruby-next-core (~> 1.0)
13
+ appraisal (2.5.0)
14
+ bundler
15
+ rake
16
+ thor (>= 0.14.0)
17
+ base64 (0.3.0)
18
+ byebug (12.0.0)
19
+ coderay (1.1.3)
20
+ concurrent-ruby (1.3.5)
21
+ diff-lcs (1.6.2)
22
+ dry-initializer (3.2.0)
23
+ graphql (2.2.17)
24
+ base64
25
+ graphql-batch (0.6.1)
26
+ graphql (>= 1.13, < 3)
27
+ promise.rb (~> 0.7.2)
28
+ method_source (1.1.0)
29
+ promise.rb (0.7.4)
30
+ pry (0.15.2)
31
+ coderay (~> 1.1)
32
+ method_source (~> 1.0)
33
+ pry-byebug (3.11.0)
34
+ byebug (~> 12.0)
35
+ pry (>= 0.13, < 0.16)
36
+ pry-inline (1.0.7)
37
+ pry (> 0.10.0)
38
+ unicode (~> 0.4.4)
39
+ rake (13.3.1)
40
+ rspec (3.13.2)
41
+ rspec-core (~> 3.13.0)
42
+ rspec-expectations (~> 3.13.0)
43
+ rspec-mocks (~> 3.13.0)
44
+ rspec-core (3.13.6)
45
+ rspec-support (~> 3.13.0)
46
+ rspec-expectations (3.13.5)
47
+ diff-lcs (>= 1.2.0, < 2.0)
48
+ rspec-support (~> 3.13.0)
49
+ rspec-mocks (3.13.7)
50
+ diff-lcs (>= 1.2.0, < 2.0)
51
+ rspec-support (~> 3.13.0)
52
+ rspec-support (3.13.6)
53
+ ruby-next-core (1.1.2)
54
+ thor (1.4.0)
55
+ unicode (0.4.4.5)
56
+ yabeda (0.14.0)
57
+ anyway_config (>= 1.0, < 3)
58
+ concurrent-ruby
59
+ dry-initializer
60
+
61
+ PLATFORMS
62
+ ruby
63
+ x86_64-linux
64
+
65
+ DEPENDENCIES
66
+ appraisal
67
+ bundler
68
+ graphql (~> 2.2.0)
69
+ graphql-batch
70
+ pry
71
+ pry-byebug
72
+ pry-inline
73
+ rake (~> 13.0)
74
+ rspec (~> 3.0)
75
+ yabeda-graphql!
76
+
77
+ BUNDLED WITH
78
+ 2.6.9
@@ -2,7 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "graphql", "~> 2.0.0"
5
+ gem "graphql", "~> 2.3.0"
6
6
 
7
7
  group :development, :test do
8
8
  gem "pry"
@@ -0,0 +1,80 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ yabeda-graphql (0.2.3)
5
+ graphql (~> 2.2)
6
+ yabeda (~> 0.2)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ anyway_config (2.7.2)
12
+ ruby-next-core (~> 1.0)
13
+ appraisal (2.5.0)
14
+ bundler
15
+ rake
16
+ thor (>= 0.14.0)
17
+ base64 (0.3.0)
18
+ byebug (12.0.0)
19
+ coderay (1.1.3)
20
+ concurrent-ruby (1.3.5)
21
+ diff-lcs (1.6.2)
22
+ dry-initializer (3.2.0)
23
+ fiber-storage (1.0.1)
24
+ graphql (2.3.22)
25
+ base64
26
+ fiber-storage
27
+ graphql-batch (0.6.1)
28
+ graphql (>= 1.13, < 3)
29
+ promise.rb (~> 0.7.2)
30
+ method_source (1.1.0)
31
+ promise.rb (0.7.4)
32
+ pry (0.15.2)
33
+ coderay (~> 1.1)
34
+ method_source (~> 1.0)
35
+ pry-byebug (3.11.0)
36
+ byebug (~> 12.0)
37
+ pry (>= 0.13, < 0.16)
38
+ pry-inline (1.0.7)
39
+ pry (> 0.10.0)
40
+ unicode (~> 0.4.4)
41
+ rake (13.3.1)
42
+ rspec (3.13.2)
43
+ rspec-core (~> 3.13.0)
44
+ rspec-expectations (~> 3.13.0)
45
+ rspec-mocks (~> 3.13.0)
46
+ rspec-core (3.13.6)
47
+ rspec-support (~> 3.13.0)
48
+ rspec-expectations (3.13.5)
49
+ diff-lcs (>= 1.2.0, < 2.0)
50
+ rspec-support (~> 3.13.0)
51
+ rspec-mocks (3.13.7)
52
+ diff-lcs (>= 1.2.0, < 2.0)
53
+ rspec-support (~> 3.13.0)
54
+ rspec-support (3.13.6)
55
+ ruby-next-core (1.1.2)
56
+ thor (1.4.0)
57
+ unicode (0.4.4.5)
58
+ yabeda (0.14.0)
59
+ anyway_config (>= 1.0, < 3)
60
+ concurrent-ruby
61
+ dry-initializer
62
+
63
+ PLATFORMS
64
+ ruby
65
+ x86_64-linux
66
+
67
+ DEPENDENCIES
68
+ appraisal
69
+ bundler
70
+ graphql (~> 2.3.0)
71
+ graphql-batch
72
+ pry
73
+ pry-byebug
74
+ pry-inline
75
+ rake (~> 13.0)
76
+ rspec (~> 3.0)
77
+ yabeda-graphql!
78
+
79
+ BUNDLED WITH
80
+ 2.7.2
@@ -2,7 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "graphql", "~> 1.13.0"
5
+ gem "graphql", "~> 2.4.0"
6
6
 
7
7
  group :development, :test do
8
8
  gem "pry"
@@ -0,0 +1,82 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ yabeda-graphql (0.2.3)
5
+ graphql (~> 2.2)
6
+ yabeda (~> 0.2)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ anyway_config (2.7.2)
12
+ ruby-next-core (~> 1.0)
13
+ appraisal (2.5.0)
14
+ bundler
15
+ rake
16
+ thor (>= 0.14.0)
17
+ base64 (0.3.0)
18
+ byebug (12.0.0)
19
+ coderay (1.1.3)
20
+ concurrent-ruby (1.3.5)
21
+ diff-lcs (1.6.2)
22
+ dry-initializer (3.2.0)
23
+ fiber-storage (1.0.1)
24
+ graphql (2.4.17)
25
+ base64
26
+ fiber-storage
27
+ logger
28
+ graphql-batch (0.6.1)
29
+ graphql (>= 1.13, < 3)
30
+ promise.rb (~> 0.7.2)
31
+ logger (1.7.0)
32
+ method_source (1.1.0)
33
+ promise.rb (0.7.4)
34
+ pry (0.15.2)
35
+ coderay (~> 1.1)
36
+ method_source (~> 1.0)
37
+ pry-byebug (3.11.0)
38
+ byebug (~> 12.0)
39
+ pry (>= 0.13, < 0.16)
40
+ pry-inline (1.0.7)
41
+ pry (> 0.10.0)
42
+ unicode (~> 0.4.4)
43
+ rake (13.3.1)
44
+ rspec (3.13.2)
45
+ rspec-core (~> 3.13.0)
46
+ rspec-expectations (~> 3.13.0)
47
+ rspec-mocks (~> 3.13.0)
48
+ rspec-core (3.13.6)
49
+ rspec-support (~> 3.13.0)
50
+ rspec-expectations (3.13.5)
51
+ diff-lcs (>= 1.2.0, < 2.0)
52
+ rspec-support (~> 3.13.0)
53
+ rspec-mocks (3.13.7)
54
+ diff-lcs (>= 1.2.0, < 2.0)
55
+ rspec-support (~> 3.13.0)
56
+ rspec-support (3.13.6)
57
+ ruby-next-core (1.1.2)
58
+ thor (1.4.0)
59
+ unicode (0.4.4.5)
60
+ yabeda (0.14.0)
61
+ anyway_config (>= 1.0, < 3)
62
+ concurrent-ruby
63
+ dry-initializer
64
+
65
+ PLATFORMS
66
+ ruby
67
+ x86_64-linux
68
+
69
+ DEPENDENCIES
70
+ appraisal
71
+ bundler
72
+ graphql (~> 2.4.0)
73
+ graphql-batch
74
+ pry
75
+ pry-byebug
76
+ pry-inline
77
+ rake (~> 13.0)
78
+ rspec (~> 3.0)
79
+ yabeda-graphql!
80
+
81
+ BUNDLED WITH
82
+ 2.7.2
@@ -2,7 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "graphql", "~> 1.11.0"
5
+ gem "graphql", "~> 2.5.0"
6
6
 
7
7
  group :development, :test do
8
8
  gem "pry"
@@ -0,0 +1,82 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ yabeda-graphql (0.2.3)
5
+ graphql (~> 2.2)
6
+ yabeda (~> 0.2)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ anyway_config (2.7.2)
12
+ ruby-next-core (~> 1.0)
13
+ appraisal (2.5.0)
14
+ bundler
15
+ rake
16
+ thor (>= 0.14.0)
17
+ base64 (0.3.0)
18
+ byebug (12.0.0)
19
+ coderay (1.1.3)
20
+ concurrent-ruby (1.3.5)
21
+ diff-lcs (1.6.2)
22
+ dry-initializer (3.2.0)
23
+ fiber-storage (1.0.1)
24
+ graphql (2.5.14)
25
+ base64
26
+ fiber-storage
27
+ logger
28
+ graphql-batch (0.6.1)
29
+ graphql (>= 1.13, < 3)
30
+ promise.rb (~> 0.7.2)
31
+ logger (1.7.0)
32
+ method_source (1.1.0)
33
+ promise.rb (0.7.4)
34
+ pry (0.15.2)
35
+ coderay (~> 1.1)
36
+ method_source (~> 1.0)
37
+ pry-byebug (3.11.0)
38
+ byebug (~> 12.0)
39
+ pry (>= 0.13, < 0.16)
40
+ pry-inline (1.0.7)
41
+ pry (> 0.10.0)
42
+ unicode (~> 0.4.4)
43
+ rake (13.3.1)
44
+ rspec (3.13.2)
45
+ rspec-core (~> 3.13.0)
46
+ rspec-expectations (~> 3.13.0)
47
+ rspec-mocks (~> 3.13.0)
48
+ rspec-core (3.13.6)
49
+ rspec-support (~> 3.13.0)
50
+ rspec-expectations (3.13.5)
51
+ diff-lcs (>= 1.2.0, < 2.0)
52
+ rspec-support (~> 3.13.0)
53
+ rspec-mocks (3.13.7)
54
+ diff-lcs (>= 1.2.0, < 2.0)
55
+ rspec-support (~> 3.13.0)
56
+ rspec-support (3.13.6)
57
+ ruby-next-core (1.1.2)
58
+ thor (1.4.0)
59
+ unicode (0.4.4.5)
60
+ yabeda (0.14.0)
61
+ anyway_config (>= 1.0, < 3)
62
+ concurrent-ruby
63
+ dry-initializer
64
+
65
+ PLATFORMS
66
+ ruby
67
+ x86_64-linux
68
+
69
+ DEPENDENCIES
70
+ appraisal
71
+ bundler
72
+ graphql (~> 2.5.0)
73
+ graphql-batch
74
+ pry
75
+ pry-byebug
76
+ pry-inline
77
+ rake (~> 13.0)
78
+ rspec (~> 3.0)
79
+ yabeda-graphql!
80
+
81
+ BUNDLED WITH
82
+ 2.7.2
@@ -1,15 +1,17 @@
1
1
  module Yabeda
2
2
  module GraphQL
3
- class Instrumentation
4
- def before_query(query)
5
- reset_cache!(query)
6
- end
7
-
8
- def after_query(query)
9
- cache(query).each do |_path, options|
10
- Yabeda.graphql.field_resolve_runtime.measure(options[:tags], options[:duration])
11
- Yabeda.graphql.fields_request_count.increment(options[:tags])
3
+ module Instrumentation
4
+ def execute_multiplex(multiplex:)
5
+ queries = multiplex.queries
6
+ queries.each { |query| reset_cache!(query) }
7
+ result = super
8
+ queries.each do |query|
9
+ cache(query).each do |_path, options|
10
+ Yabeda.graphql.field_resolve_runtime.measure(options[:tags], options[:duration])
11
+ Yabeda.graphql.fields_request_count.increment(options[:tags])
12
+ end
12
13
  end
14
+ result
13
15
  end
14
16
 
15
17
  private
@@ -1,5 +1,5 @@
1
1
  module Yabeda
2
2
  module GraphQL
3
- VERSION = "0.2.3"
3
+ VERSION = "0.3.0"
4
4
  end
5
5
  end
@@ -1,57 +1,33 @@
1
- require "graphql/tracing/platform_tracing"
2
-
3
1
  module Yabeda
4
2
  module GraphQL
5
- class YabedaTracing < ::GraphQL::Tracing::PlatformTracing
6
-
7
- self.platform_keys = {
8
- 'lex' => "graphql.lex",
9
- 'parse' => "graphql.parse",
10
- 'validate' => "graphql.validate",
11
- 'analyze_query' => "graphql.analyze",
12
- 'analyze_multiplex' => "graphql.analyze",
13
- 'execute_multiplex' => "graphql.execute",
14
- 'execute_query' => "graphql.execute",
15
- 'execute_query_lazy' => "graphql.execute",
16
- 'execute_field' => "graphql.execute",
17
- 'execute_field_lazy' => "graphql.execute"
18
- }
19
-
20
- def platform_trace(platform_key, key, data, &block)
3
+ module YabedaTracing
4
+ def execute_field(field:, query:, ast_node:, arguments:, object:, &block)
21
5
  start = ::Process.clock_gettime ::Process::CLOCK_MONOTONIC
22
6
  result = block.call
23
7
  duration = ::Process.clock_gettime(::Process::CLOCK_MONOTONIC) - start
24
8
 
25
- case key
26
- when "execute_field", "execute_field_lazy"
27
- field, path, query = extract_field_trace_data(data)
9
+ tags = extract_field_tags(field)
10
+ path = query.context.current_path
28
11
 
29
- tags = extract_field_tags(field)
30
- if path.length == 1
31
- return result if key == "execute_field" && query.schema.lazy?(result)
12
+ if path.length == 1
13
+ return result if query.schema.lazy?(result)
32
14
 
33
- if query.query?
34
- instrument_query_execution(tags)
35
- elsif query.mutation?
36
- instrument_mutation_execution(tags)
37
- elsif query.subscription?
38
- # Not implemented yet
39
- end
40
- else
41
- instrument_field_execution(query, path, tags, duration)
15
+ if query.query?
16
+ instrument_query_execution(tags)
17
+ elsif query.mutation?
18
+ instrument_mutation_execution(tags)
19
+ elsif query.subscription?
20
+ # Not implemented yet
42
21
  end
22
+ else
23
+ instrument_field_execution(query, path, tags, duration)
43
24
  end
44
25
 
45
26
  result
46
27
  end
47
28
 
48
- # See https://graphql-ruby.org/api-doc/1.10.5/GraphQL/Tracing
49
- def extract_field_trace_data(data)
50
- if data[:context] # Legacy non-interpreter mode
51
- [data[:context].field, data[:context].path, data[:context].query]
52
- else # Interpreter mode
53
- data.values_at(:field, :path, :query)
54
- end
29
+ def execute_field_lazy(field:, query:, ast_node:, arguments:, object:, &block)
30
+ execute_field(field: field, query: query, ast_node: ast_node, arguments: arguments, object: object, &block)
55
31
  end
56
32
 
57
33
  def extract_field_tags(field)
@@ -82,19 +58,6 @@ module Yabeda
82
58
  query.context.namespace(Yabeda::GraphQL)[:field_call_cache]
83
59
  end
84
60
 
85
- def platform_field_key(type, field)
86
- "#{type.graphql_name}.#{field.graphql_name}"
87
- end
88
-
89
- # We don't use these yet, but graphql-ruby require us to declare them
90
-
91
- def platform_authorized_key(type)
92
- "#{type.graphql_name}.authorized"
93
- end
94
-
95
- def platform_resolve_type_key(type)
96
- "#{type.graphql_name}.resolve_type"
97
- end
98
61
  end
99
62
  end
100
63
  end
@@ -30,8 +30,8 @@ module Yabeda
30
30
  end
31
31
 
32
32
  def self.use(schema)
33
- schema.instrument(:query, Instrumentation.new)
34
- schema.use YabedaTracing, trace_scalars: true
33
+ schema.trace_with Yabeda::GraphQL::Instrumentation
34
+ schema.trace_with Yabeda::GraphQL::YabedaTracing
35
35
  end
36
36
  end
37
37
  end
@@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
24
24
  spec.require_paths = ["lib"]
25
25
 
26
26
  spec.add_runtime_dependency "yabeda", "~> 0.2"
27
- spec.add_runtime_dependency "graphql", ">= 1.9", "< 3"
27
+ spec.add_runtime_dependency "graphql", "~> 2.2"
28
28
 
29
29
  spec.add_development_dependency "bundler"
30
30
  spec.add_development_dependency "rake", "~> 13.0"
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yabeda-graphql
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrey Novikov
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2023-05-29 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: yabeda
@@ -28,22 +27,16 @@ dependencies:
28
27
  name: graphql
29
28
  requirement: !ruby/object:Gem::Requirement
30
29
  requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: '1.9'
34
- - - "<"
30
+ - - "~>"
35
31
  - !ruby/object:Gem::Version
36
- version: '3'
32
+ version: '2.2'
37
33
  type: :runtime
38
34
  prerelease: false
39
35
  version_requirements: !ruby/object:Gem::Requirement
40
36
  requirements:
41
- - - ">="
42
- - !ruby/object:Gem::Version
43
- version: '1.9'
44
- - - "<"
37
+ - - "~>"
45
38
  - !ruby/object:Gem::Version
46
- version: '3'
39
+ version: '2.2'
47
40
  - !ruby/object:Gem::Dependency
48
41
  name: bundler
49
42
  requirement: !ruby/object:Gem::Requirement
@@ -108,7 +101,7 @@ executables: []
108
101
  extensions: []
109
102
  extra_rdoc_files: []
110
103
  files:
111
- - ".github/workflows/build-release.yml"
104
+ - ".github/workflows/release.yml"
112
105
  - ".github/workflows/test.yml"
113
106
  - ".gitignore"
114
107
  - ".rspec"
@@ -122,18 +115,14 @@ files:
122
115
  - bin/console
123
116
  - bin/setup
124
117
  - gemfiles/.bundle/config
125
- - gemfiles/graphql_1.10.gemfile
126
- - gemfiles/graphql_1.10.gemfile.lock
127
- - gemfiles/graphql_1.11.gemfile
128
- - gemfiles/graphql_1.11.gemfile.lock
129
- - gemfiles/graphql_1.12.gemfile
130
- - gemfiles/graphql_1.12.gemfile.lock
131
- - gemfiles/graphql_1.13.gemfile
132
- - gemfiles/graphql_1.13.gemfile.lock
133
- - gemfiles/graphql_1.9.gemfile
134
- - gemfiles/graphql_1.9.gemfile.lock
135
- - gemfiles/graphql_2.0.gemfile
136
- - gemfiles/graphql_2.0.gemfile.lock
118
+ - gemfiles/graphql_2.2.gemfile
119
+ - gemfiles/graphql_2.2.gemfile.lock
120
+ - gemfiles/graphql_2.3.gemfile
121
+ - gemfiles/graphql_2.3.gemfile.lock
122
+ - gemfiles/graphql_2.4.gemfile
123
+ - gemfiles/graphql_2.4.gemfile.lock
124
+ - gemfiles/graphql_2.5.gemfile
125
+ - gemfiles/graphql_2.5.gemfile.lock
137
126
  - grafana-dashboard.json
138
127
  - lib/yabeda/graphql.rb
139
128
  - lib/yabeda/graphql/instrumentation.rb
@@ -146,7 +135,6 @@ licenses:
146
135
  - MIT
147
136
  metadata:
148
137
  homepage_uri: http://github.com/yabeda-rb/yabeda-graphql
149
- post_install_message:
150
138
  rdoc_options: []
151
139
  require_paths:
152
140
  - lib
@@ -161,8 +149,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
161
149
  - !ruby/object:Gem::Version
162
150
  version: '0'
163
151
  requirements: []
164
- rubygems_version: 3.1.6
165
- signing_key:
152
+ rubygems_version: 3.6.9
166
153
  specification_version: 4
167
154
  summary: Collects metrics to monitor execution of your GraphQL queries
168
155
  test_files: []
@@ -1,14 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "graphql", "~> 1.10.0"
6
-
7
- group :development, :test do
8
- gem "pry"
9
- gem "pry-inline"
10
- gem "pry-byebug", platform: :mri
11
- gem "graphql-batch"
12
- end
13
-
14
- gemspec path: "../"
@@ -1,75 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- yabeda-graphql (0.2.1)
5
- graphql (>= 1.9, < 3)
6
- yabeda (~> 0.2)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- anyway_config (2.3.0)
12
- ruby-next-core (>= 0.14.0)
13
- appraisal (2.4.1)
14
- bundler
15
- rake
16
- thor (>= 0.14.0)
17
- byebug (11.1.3)
18
- coderay (1.1.3)
19
- concurrent-ruby (1.1.10)
20
- diff-lcs (1.5.0)
21
- dry-initializer (3.0.4)
22
- graphql (1.10.14)
23
- graphql-batch (0.5.1)
24
- graphql (>= 1.10, < 3)
25
- promise.rb (~> 0.7.2)
26
- method_source (1.0.0)
27
- promise.rb (0.7.4)
28
- pry (0.14.1)
29
- coderay (~> 1.1)
30
- method_source (~> 1.0)
31
- pry-byebug (3.8.0)
32
- byebug (~> 11.0)
33
- pry (~> 0.10)
34
- pry-inline (1.0.7)
35
- pry (> 0.10.0)
36
- unicode (~> 0.4.4)
37
- rake (13.0.6)
38
- rspec (3.11.0)
39
- rspec-core (~> 3.11.0)
40
- rspec-expectations (~> 3.11.0)
41
- rspec-mocks (~> 3.11.0)
42
- rspec-core (3.11.0)
43
- rspec-support (~> 3.11.0)
44
- rspec-expectations (3.11.0)
45
- diff-lcs (>= 1.2.0, < 2.0)
46
- rspec-support (~> 3.11.0)
47
- rspec-mocks (3.11.1)
48
- diff-lcs (>= 1.2.0, < 2.0)
49
- rspec-support (~> 3.11.0)
50
- rspec-support (3.11.0)
51
- ruby-next-core (0.15.0)
52
- thor (1.2.1)
53
- unicode (0.4.4.4)
54
- yabeda (0.11.0)
55
- anyway_config (>= 1.0, < 3)
56
- concurrent-ruby
57
- dry-initializer
58
-
59
- PLATFORMS
60
- ruby
61
-
62
- DEPENDENCIES
63
- appraisal
64
- bundler
65
- graphql (~> 1.10.0)
66
- graphql-batch
67
- pry
68
- pry-byebug
69
- pry-inline
70
- rake (~> 13.0)
71
- rspec (~> 3.0)
72
- yabeda-graphql!
73
-
74
- BUNDLED WITH
75
- 2.3.10
@@ -1,75 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- yabeda-graphql (0.2.1)
5
- graphql (>= 1.9, < 3)
6
- yabeda (~> 0.2)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- anyway_config (2.3.0)
12
- ruby-next-core (>= 0.14.0)
13
- appraisal (2.4.1)
14
- bundler
15
- rake
16
- thor (>= 0.14.0)
17
- byebug (11.1.3)
18
- coderay (1.1.3)
19
- concurrent-ruby (1.1.10)
20
- diff-lcs (1.5.0)
21
- dry-initializer (3.0.4)
22
- graphql (1.11.10)
23
- graphql-batch (0.5.1)
24
- graphql (>= 1.10, < 3)
25
- promise.rb (~> 0.7.2)
26
- method_source (1.0.0)
27
- promise.rb (0.7.4)
28
- pry (0.13.1)
29
- coderay (~> 1.1)
30
- method_source (~> 1.0)
31
- pry-byebug (3.9.0)
32
- byebug (~> 11.0)
33
- pry (~> 0.13.0)
34
- pry-inline (1.0.7)
35
- pry (> 0.10.0)
36
- unicode (~> 0.4.4)
37
- rake (13.0.6)
38
- rspec (3.11.0)
39
- rspec-core (~> 3.11.0)
40
- rspec-expectations (~> 3.11.0)
41
- rspec-mocks (~> 3.11.0)
42
- rspec-core (3.11.0)
43
- rspec-support (~> 3.11.0)
44
- rspec-expectations (3.11.0)
45
- diff-lcs (>= 1.2.0, < 2.0)
46
- rspec-support (~> 3.11.0)
47
- rspec-mocks (3.11.1)
48
- diff-lcs (>= 1.2.0, < 2.0)
49
- rspec-support (~> 3.11.0)
50
- rspec-support (3.11.0)
51
- ruby-next-core (0.15.0)
52
- thor (1.2.1)
53
- unicode (0.4.4.4)
54
- yabeda (0.11.0)
55
- anyway_config (>= 1.0, < 3)
56
- concurrent-ruby
57
- dry-initializer
58
-
59
- PLATFORMS
60
- ruby
61
-
62
- DEPENDENCIES
63
- appraisal
64
- bundler
65
- graphql (~> 1.11.0)
66
- graphql-batch
67
- pry
68
- pry-byebug
69
- pry-inline
70
- rake (~> 13.0)
71
- rspec (~> 3.0)
72
- yabeda-graphql!
73
-
74
- BUNDLED WITH
75
- 2.3.10
@@ -1,14 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "graphql", "~> 1.12.0"
6
-
7
- group :development, :test do
8
- gem "pry"
9
- gem "pry-inline"
10
- gem "pry-byebug", platform: :mri
11
- gem "graphql-batch"
12
- end
13
-
14
- gemspec path: "../"
@@ -1,75 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- yabeda-graphql (0.2.1)
5
- graphql (>= 1.9, < 3)
6
- yabeda (~> 0.2)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- anyway_config (2.3.0)
12
- ruby-next-core (>= 0.14.0)
13
- appraisal (2.4.1)
14
- bundler
15
- rake
16
- thor (>= 0.14.0)
17
- byebug (11.1.3)
18
- coderay (1.1.3)
19
- concurrent-ruby (1.1.10)
20
- diff-lcs (1.5.0)
21
- dry-initializer (3.1.1)
22
- graphql (1.12.24)
23
- graphql-batch (0.5.1)
24
- graphql (>= 1.10, < 3)
25
- promise.rb (~> 0.7.2)
26
- method_source (1.0.0)
27
- promise.rb (0.7.4)
28
- pry (0.13.1)
29
- coderay (~> 1.1)
30
- method_source (~> 1.0)
31
- pry-byebug (3.9.0)
32
- byebug (~> 11.0)
33
- pry (~> 0.13.0)
34
- pry-inline (1.0.7)
35
- pry (> 0.10.0)
36
- unicode (~> 0.4.4)
37
- rake (13.0.6)
38
- rspec (3.11.0)
39
- rspec-core (~> 3.11.0)
40
- rspec-expectations (~> 3.11.0)
41
- rspec-mocks (~> 3.11.0)
42
- rspec-core (3.11.0)
43
- rspec-support (~> 3.11.0)
44
- rspec-expectations (3.11.0)
45
- diff-lcs (>= 1.2.0, < 2.0)
46
- rspec-support (~> 3.11.0)
47
- rspec-mocks (3.11.1)
48
- diff-lcs (>= 1.2.0, < 2.0)
49
- rspec-support (~> 3.11.0)
50
- rspec-support (3.11.0)
51
- ruby-next-core (0.15.0)
52
- thor (1.2.1)
53
- unicode (0.4.4.4)
54
- yabeda (0.11.0)
55
- anyway_config (>= 1.0, < 3)
56
- concurrent-ruby
57
- dry-initializer
58
-
59
- PLATFORMS
60
- ruby
61
-
62
- DEPENDENCIES
63
- appraisal
64
- bundler
65
- graphql (~> 1.12.0)
66
- graphql-batch
67
- pry
68
- pry-byebug
69
- pry-inline
70
- rake (~> 13.0)
71
- rspec (~> 3.0)
72
- yabeda-graphql!
73
-
74
- BUNDLED WITH
75
- 2.3.10
@@ -1,75 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- yabeda-graphql (0.2.1)
5
- graphql (>= 1.9, < 3)
6
- yabeda (~> 0.2)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- anyway_config (2.3.0)
12
- ruby-next-core (>= 0.14.0)
13
- appraisal (2.4.1)
14
- bundler
15
- rake
16
- thor (>= 0.14.0)
17
- byebug (11.1.3)
18
- coderay (1.1.3)
19
- concurrent-ruby (1.1.10)
20
- diff-lcs (1.5.0)
21
- dry-initializer (3.1.1)
22
- graphql (1.13.11)
23
- graphql-batch (0.5.1)
24
- graphql (>= 1.10, < 3)
25
- promise.rb (~> 0.7.2)
26
- method_source (1.0.0)
27
- promise.rb (0.7.4)
28
- pry (0.13.1)
29
- coderay (~> 1.1)
30
- method_source (~> 1.0)
31
- pry-byebug (3.9.0)
32
- byebug (~> 11.0)
33
- pry (~> 0.13.0)
34
- pry-inline (1.0.7)
35
- pry (> 0.10.0)
36
- unicode (~> 0.4.4)
37
- rake (13.0.6)
38
- rspec (3.11.0)
39
- rspec-core (~> 3.11.0)
40
- rspec-expectations (~> 3.11.0)
41
- rspec-mocks (~> 3.11.0)
42
- rspec-core (3.11.0)
43
- rspec-support (~> 3.11.0)
44
- rspec-expectations (3.11.0)
45
- diff-lcs (>= 1.2.0, < 2.0)
46
- rspec-support (~> 3.11.0)
47
- rspec-mocks (3.11.1)
48
- diff-lcs (>= 1.2.0, < 2.0)
49
- rspec-support (~> 3.11.0)
50
- rspec-support (3.11.0)
51
- ruby-next-core (0.15.0)
52
- thor (1.2.1)
53
- unicode (0.4.4.4)
54
- yabeda (0.11.0)
55
- anyway_config (>= 1.0, < 3)
56
- concurrent-ruby
57
- dry-initializer
58
-
59
- PLATFORMS
60
- x86_64-linux
61
-
62
- DEPENDENCIES
63
- appraisal
64
- bundler
65
- graphql (~> 1.13.0)
66
- graphql-batch
67
- pry
68
- pry-byebug
69
- pry-inline
70
- rake (~> 13.0)
71
- rspec (~> 3.0)
72
- yabeda-graphql!
73
-
74
- BUNDLED WITH
75
- 2.3.10
@@ -1,75 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- yabeda-graphql (0.2.1)
5
- graphql (>= 1.9, < 3)
6
- yabeda (~> 0.2)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- anyway_config (2.3.0)
12
- ruby-next-core (>= 0.14.0)
13
- appraisal (2.4.1)
14
- bundler
15
- rake
16
- thor (>= 0.14.0)
17
- byebug (11.1.3)
18
- coderay (1.1.3)
19
- concurrent-ruby (1.1.10)
20
- diff-lcs (1.5.0)
21
- dry-initializer (3.0.4)
22
- graphql (1.9.21)
23
- graphql-batch (0.4.3)
24
- graphql (>= 1.3, < 2)
25
- promise.rb (~> 0.7.2)
26
- method_source (1.0.0)
27
- promise.rb (0.7.4)
28
- pry (0.14.1)
29
- coderay (~> 1.1)
30
- method_source (~> 1.0)
31
- pry-byebug (3.8.0)
32
- byebug (~> 11.0)
33
- pry (~> 0.10)
34
- pry-inline (1.0.7)
35
- pry (> 0.10.0)
36
- unicode (~> 0.4.4)
37
- rake (13.0.6)
38
- rspec (3.11.0)
39
- rspec-core (~> 3.11.0)
40
- rspec-expectations (~> 3.11.0)
41
- rspec-mocks (~> 3.11.0)
42
- rspec-core (3.11.0)
43
- rspec-support (~> 3.11.0)
44
- rspec-expectations (3.11.0)
45
- diff-lcs (>= 1.2.0, < 2.0)
46
- rspec-support (~> 3.11.0)
47
- rspec-mocks (3.11.1)
48
- diff-lcs (>= 1.2.0, < 2.0)
49
- rspec-support (~> 3.11.0)
50
- rspec-support (3.11.0)
51
- ruby-next-core (0.15.0)
52
- thor (1.2.1)
53
- unicode (0.4.4.4)
54
- yabeda (0.11.0)
55
- anyway_config (>= 1.0, < 3)
56
- concurrent-ruby
57
- dry-initializer
58
-
59
- PLATFORMS
60
- ruby
61
-
62
- DEPENDENCIES
63
- appraisal
64
- bundler
65
- graphql (~> 1.9.0)
66
- graphql-batch
67
- pry
68
- pry-byebug
69
- pry-inline
70
- rake (~> 13.0)
71
- rspec (~> 3.0)
72
- yabeda-graphql!
73
-
74
- BUNDLED WITH
75
- 2.3.10
@@ -1,75 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- yabeda-graphql (0.2.1)
5
- graphql (>= 1.9, < 3)
6
- yabeda (~> 0.2)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- anyway_config (2.3.0)
12
- ruby-next-core (>= 0.14.0)
13
- appraisal (2.4.1)
14
- bundler
15
- rake
16
- thor (>= 0.14.0)
17
- byebug (11.1.3)
18
- coderay (1.1.3)
19
- concurrent-ruby (1.1.10)
20
- diff-lcs (1.5.0)
21
- dry-initializer (3.1.1)
22
- graphql (2.0.5)
23
- graphql-batch (0.5.1)
24
- graphql (>= 1.10, < 3)
25
- promise.rb (~> 0.7.2)
26
- method_source (1.0.0)
27
- promise.rb (0.7.4)
28
- pry (0.13.1)
29
- coderay (~> 1.1)
30
- method_source (~> 1.0)
31
- pry-byebug (3.9.0)
32
- byebug (~> 11.0)
33
- pry (~> 0.13.0)
34
- pry-inline (1.0.7)
35
- pry (> 0.10.0)
36
- unicode (~> 0.4.4)
37
- rake (13.0.6)
38
- rspec (3.11.0)
39
- rspec-core (~> 3.11.0)
40
- rspec-expectations (~> 3.11.0)
41
- rspec-mocks (~> 3.11.0)
42
- rspec-core (3.11.0)
43
- rspec-support (~> 3.11.0)
44
- rspec-expectations (3.11.0)
45
- diff-lcs (>= 1.2.0, < 2.0)
46
- rspec-support (~> 3.11.0)
47
- rspec-mocks (3.11.1)
48
- diff-lcs (>= 1.2.0, < 2.0)
49
- rspec-support (~> 3.11.0)
50
- rspec-support (3.11.0)
51
- ruby-next-core (0.15.0)
52
- thor (1.2.1)
53
- unicode (0.4.4.4)
54
- yabeda (0.11.0)
55
- anyway_config (>= 1.0, < 3)
56
- concurrent-ruby
57
- dry-initializer
58
-
59
- PLATFORMS
60
- x86_64-linux
61
-
62
- DEPENDENCIES
63
- appraisal
64
- bundler
65
- graphql (~> 2.0.0)
66
- graphql-batch
67
- pry
68
- pry-byebug
69
- pry-inline
70
- rake (~> 13.0)
71
- rspec (~> 3.0)
72
- yabeda-graphql!
73
-
74
- BUNDLED WITH
75
- 2.3.10