yabeda-graphql 0.1.0 → 0.2.2
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 +4 -4
- data/.github/workflows/build-release.yml +82 -0
- data/.github/workflows/test.yml +53 -0
- data/Appraisals +16 -0
- data/CHANGELOG.md +31 -0
- data/Gemfile.lock +38 -34
- data/README.md +40 -6
- data/gemfiles/graphql_1.10.gemfile.lock +36 -32
- data/gemfiles/graphql_1.11.gemfile +14 -0
- data/gemfiles/graphql_1.11.gemfile.lock +75 -0
- data/gemfiles/graphql_1.12.gemfile +14 -0
- data/gemfiles/graphql_1.12.gemfile.lock +75 -0
- data/gemfiles/graphql_1.13.gemfile +14 -0
- data/gemfiles/graphql_1.13.gemfile.lock +75 -0
- data/gemfiles/graphql_1.9.gemfile.lock +35 -31
- data/gemfiles/graphql_2.0.gemfile +14 -0
- data/gemfiles/graphql_2.0.gemfile.lock +75 -0
- data/grafana-dashboard.json +483 -0
- data/lib/yabeda/graphql/instrumentation.rb +27 -0
- data/lib/yabeda/graphql/tracing.rb +10 -6
- data/lib/yabeda/graphql/version.rb +1 -1
- data/lib/yabeda/graphql.rb +7 -1
- data/yabeda-graphql-logo.png +0 -0
- data/yabeda-graphql.gemspec +1 -1
- metadata +25 -6
- data/.travis.yml +0 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c20464a4af09f93903f183db49444de64e2271b32c5b64b1006bdf957097cb99
|
4
|
+
data.tar.gz: b3e99429dc2d3f8d8484d89816c31c0f90e2136eae9936785da4a0a9763f3c8c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e8855101b02efb9cf195dd76967c37331ff83726369bab33e3982ef093f18f90e3e34cbc817b0d8f2f600d551cccbefd11bde963ff60f3e3af77d26e9e2805ff
|
7
|
+
data.tar.gz: 888fc148f9d812a62914945f22340d39397016ecbcce565119c98debbc23fbd277095365ee21f1bc34a8b7b156b7503954097c4d4dd2774e4ef5e68397e6ff53
|
@@ -0,0 +1,82 @@
|
|
1
|
+
name: Build and release gem to RubyGems
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
tags:
|
6
|
+
- v*
|
7
|
+
|
8
|
+
jobs:
|
9
|
+
release:
|
10
|
+
runs-on: ubuntu-latest
|
11
|
+
steps:
|
12
|
+
- uses: actions/checkout@v2
|
13
|
+
with:
|
14
|
+
fetch-depth: 0 # Fetch current tag as annotated. See https://github.com/actions/checkout/issues/290
|
15
|
+
- uses: ruby/setup-ruby@v1
|
16
|
+
with:
|
17
|
+
ruby-version: 2.7
|
18
|
+
- name: "Extract data from tag: version, message, body"
|
19
|
+
id: tag
|
20
|
+
run: |
|
21
|
+
git fetch --tags --force # Really fetch annotated tag. See https://github.com/actions/checkout/issues/290#issuecomment-680260080
|
22
|
+
echo ::set-output name=version::${GITHUB_REF#refs/tags/v}
|
23
|
+
echo ::set-output name=subject::$(git for-each-ref $GITHUB_REF --format='%(contents:subject)')
|
24
|
+
BODY="$(git for-each-ref $GITHUB_REF --format='%(contents:body)')"
|
25
|
+
# Extract changelog entries between this and previous version headers
|
26
|
+
escaped_version=$(echo ${GITHUB_REF#refs/tags/v} | sed -e 's/[]\/$*.^[]/\\&/g')
|
27
|
+
changelog=$(awk "BEGIN{inrelease=0} /## ${escaped_version}/{inrelease=1;next} /## [0-9]+\.[0-9]+\.[0-9]+/{inrelease=0;exit} {if (inrelease) print}" CHANGELOG.md)
|
28
|
+
# Multiline body for release. See https://github.community/t/set-output-truncates-multiline-strings/16852/5
|
29
|
+
BODY="${BODY}"$'\n'"${changelog}"
|
30
|
+
BODY="${BODY//'%'/'%25'}"
|
31
|
+
BODY="${BODY//$'\n'/'%0A'}"
|
32
|
+
BODY="${BODY//$'\r'/'%0D'}"
|
33
|
+
echo "::set-output name=body::$BODY"
|
34
|
+
# Add pre-release option if tag name has any suffix after vMAJOR.MINOR.PATCH
|
35
|
+
if [[ ${GITHUB_REF#refs/tags/} =~ ^v[0-9]+\.[0-9]+\.[0-9]+.+ ]]; then
|
36
|
+
echo ::set-output name=prerelease::true
|
37
|
+
fi
|
38
|
+
- name: Build gem
|
39
|
+
run: gem build
|
40
|
+
- name: Calculate checksums
|
41
|
+
run: sha256sum yabeda-graphql-${{ steps.tag.outputs.version }}.gem > SHA256SUM
|
42
|
+
- name: Check version
|
43
|
+
run: ls -l yabeda-graphql-${{ steps.tag.outputs.version }}.gem
|
44
|
+
- name: Create Release
|
45
|
+
id: create_release
|
46
|
+
uses: actions/create-release@v1
|
47
|
+
env:
|
48
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
49
|
+
with:
|
50
|
+
tag_name: ${{ github.ref }}
|
51
|
+
release_name: ${{ steps.tag.outputs.subject }}
|
52
|
+
body: ${{ steps.tag.outputs.body }}
|
53
|
+
draft: false
|
54
|
+
prerelease: ${{ steps.tag.outputs.prerelease }}
|
55
|
+
- name: Upload built gem as release asset
|
56
|
+
uses: actions/upload-release-asset@v1
|
57
|
+
env:
|
58
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
59
|
+
with:
|
60
|
+
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
61
|
+
asset_path: yabeda-graphql-${{ steps.tag.outputs.version }}.gem
|
62
|
+
asset_name: yabeda-graphql-${{ steps.tag.outputs.version }}.gem
|
63
|
+
asset_content_type: application/x-tar
|
64
|
+
- name: Upload checksums as release asset
|
65
|
+
uses: actions/upload-release-asset@v1
|
66
|
+
env:
|
67
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
68
|
+
with:
|
69
|
+
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
70
|
+
asset_path: SHA256SUM
|
71
|
+
asset_name: SHA256SUM
|
72
|
+
asset_content_type: text/plain
|
73
|
+
- name: Publish to GitHub packages
|
74
|
+
env:
|
75
|
+
GEM_HOST_API_KEY: Bearer ${{ secrets.GITHUB_TOKEN }}
|
76
|
+
run: |
|
77
|
+
gem push yabeda-graphql-${{ steps.tag.outputs.version }}.gem --host https://rubygems.pkg.github.com/${{ github.repository_owner }}
|
78
|
+
- name: Publish to RubyGems
|
79
|
+
env:
|
80
|
+
GEM_HOST_API_KEY: "${{ secrets.RUBYGEMS_API_KEY }}"
|
81
|
+
run: |
|
82
|
+
gem push yabeda-graphql-${{ steps.tag.outputs.version }}.gem
|
@@ -0,0 +1,53 @@
|
|
1
|
+
name: Tests
|
2
|
+
|
3
|
+
on:
|
4
|
+
pull_request:
|
5
|
+
push:
|
6
|
+
branches:
|
7
|
+
- '**'
|
8
|
+
tags-ignore:
|
9
|
+
- 'v*'
|
10
|
+
|
11
|
+
jobs:
|
12
|
+
test:
|
13
|
+
name: "GraphQL-Ruby ${{ matrix.graphql-ruby }} on Ruby ${{ matrix.ruby }}"
|
14
|
+
runs-on: ubuntu-latest
|
15
|
+
strategy:
|
16
|
+
fail-fast: false
|
17
|
+
matrix:
|
18
|
+
include:
|
19
|
+
- ruby: "3.1"
|
20
|
+
graphql-ruby: "2.0"
|
21
|
+
- ruby: "3.0"
|
22
|
+
graphql-ruby: "1.13"
|
23
|
+
- ruby: "2.7"
|
24
|
+
graphql-ruby: "1.12"
|
25
|
+
- ruby: "2.6"
|
26
|
+
graphql-ruby: "1.11"
|
27
|
+
- ruby: "2.5"
|
28
|
+
graphql-ruby: "1.10"
|
29
|
+
- ruby: "2.5"
|
30
|
+
graphql-ruby: "1.9"
|
31
|
+
container:
|
32
|
+
image: ruby:${{ matrix.ruby }}
|
33
|
+
env:
|
34
|
+
CI: true
|
35
|
+
BUNDLE_GEMFILE: gemfiles/graphql_${{ matrix.graphql-ruby }}.gemfile
|
36
|
+
steps:
|
37
|
+
- uses: actions/checkout@v2
|
38
|
+
- uses: actions/cache@v2
|
39
|
+
with:
|
40
|
+
path: vendor/bundle
|
41
|
+
key: bundle-${{ matrix.ruby }}-${{ matrix.graphql-ruby }}-${{ hashFiles('**/*.gemspec') }}-${{ hashFiles('**/Gemfile') }}
|
42
|
+
restore-keys: |
|
43
|
+
bundle-${{ matrix.ruby }}-${{ matrix.graphql-ruby }}-${{ hashFiles('**/*.gemspec') }}-${{ hashFiles('**/Gemfile') }}
|
44
|
+
bundle-${{ matrix.ruby }}-
|
45
|
+
- name: Upgrade Bundler to 2.x (for older Rubies)
|
46
|
+
run: gem install bundler -v '~> 2.0'
|
47
|
+
- name: Bundle install
|
48
|
+
run: |
|
49
|
+
bundle config path vendor/bundle
|
50
|
+
bundle install
|
51
|
+
bundle update
|
52
|
+
- name: Run RSpec
|
53
|
+
run: bundle exec rspec
|
data/Appraisals
CHANGED
@@ -5,3 +5,19 @@ end
|
|
5
5
|
appraise "graphql-1.10" do
|
6
6
|
gem "graphql", "~> 1.10.0"
|
7
7
|
end
|
8
|
+
|
9
|
+
appraise "graphql-1.11" do
|
10
|
+
gem "graphql", "~> 1.11.0"
|
11
|
+
end
|
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"
|
23
|
+
end
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
All notable changes to this project will be documented in this file.
|
4
|
+
|
5
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
6
|
+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
7
|
+
|
8
|
+
## 0.2.2 - 2022-04-04
|
9
|
+
|
10
|
+
### Fixed
|
11
|
+
|
12
|
+
- GraphQL-Ruby 2.0 compatibility (allow it in gemspec). [@Envek]
|
13
|
+
|
14
|
+
## 0.2.1 - 2021-02-09
|
15
|
+
|
16
|
+
### Fixed
|
17
|
+
|
18
|
+
- Ruby 3.0 compatibility. [@Envek]
|
19
|
+
|
20
|
+
## 0.2.0 - 2020-03-21
|
21
|
+
|
22
|
+
### Changed
|
23
|
+
|
24
|
+
- Method of hooking gem into schema. BREAKING CHANGE! [@Envek]
|
25
|
+
- Sum durations of lazy and non-lazy resolvings for every field. [@Envek]
|
26
|
+
|
27
|
+
## 0.1.0 - 2020-03-17
|
28
|
+
|
29
|
+
- Initial release of yabeda-graphql gem. [@Envek]
|
30
|
+
|
31
|
+
[@Envek]: https://github.com/Envek "Andrey Novikov"
|
data/Gemfile.lock
CHANGED
@@ -1,54 +1,58 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
yabeda-graphql (0.1
|
5
|
-
graphql (
|
4
|
+
yabeda-graphql (0.2.1)
|
5
|
+
graphql (>= 1.9, < 3)
|
6
6
|
yabeda (~> 0.2)
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: https://rubygems.org/
|
10
10
|
specs:
|
11
|
-
|
11
|
+
anyway_config (2.3.0)
|
12
|
+
ruby-next-core (>= 0.14.0)
|
13
|
+
appraisal (2.4.1)
|
12
14
|
bundler
|
13
15
|
rake
|
14
16
|
thor (>= 0.14.0)
|
15
|
-
byebug (11.1.
|
16
|
-
coderay (1.1.
|
17
|
-
concurrent-ruby (1.1.
|
18
|
-
diff-lcs (1.
|
19
|
-
dry-initializer (3.
|
20
|
-
graphql (1.
|
21
|
-
graphql-batch (0.
|
22
|
-
graphql (>= 1.
|
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)
|
23
25
|
promise.rb (~> 0.7.2)
|
24
|
-
method_source (0.
|
26
|
+
method_source (1.0.0)
|
25
27
|
promise.rb (0.7.4)
|
26
|
-
pry (0.
|
27
|
-
coderay (~> 1.1
|
28
|
-
method_source (~>
|
29
|
-
pry-byebug (3.
|
28
|
+
pry (0.13.1)
|
29
|
+
coderay (~> 1.1)
|
30
|
+
method_source (~> 1.0)
|
31
|
+
pry-byebug (3.9.0)
|
30
32
|
byebug (~> 11.0)
|
31
|
-
pry (~> 0.
|
32
|
-
pry-inline (1.0.
|
33
|
-
pry (> 0.10.0
|
33
|
+
pry (~> 0.13.0)
|
34
|
+
pry-inline (1.0.7)
|
35
|
+
pry (> 0.10.0)
|
34
36
|
unicode (~> 0.4.4)
|
35
|
-
rake (13.0.
|
36
|
-
rspec (3.
|
37
|
-
rspec-core (~> 3.
|
38
|
-
rspec-expectations (~> 3.
|
39
|
-
rspec-mocks (~> 3.
|
40
|
-
rspec-core (3.
|
41
|
-
rspec-support (~> 3.
|
42
|
-
rspec-expectations (3.
|
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
45
|
diff-lcs (>= 1.2.0, < 2.0)
|
44
|
-
rspec-support (~> 3.
|
45
|
-
rspec-mocks (3.
|
46
|
+
rspec-support (~> 3.11.0)
|
47
|
+
rspec-mocks (3.11.1)
|
46
48
|
diff-lcs (>= 1.2.0, < 2.0)
|
47
|
-
rspec-support (~> 3.
|
48
|
-
rspec-support (3.
|
49
|
-
|
49
|
+
rspec-support (~> 3.11.0)
|
50
|
+
rspec-support (3.11.0)
|
51
|
+
ruby-next-core (0.15.0)
|
52
|
+
thor (1.2.1)
|
50
53
|
unicode (0.4.4.4)
|
51
|
-
yabeda (0.
|
54
|
+
yabeda (0.11.0)
|
55
|
+
anyway_config (>= 1.0, < 3)
|
52
56
|
concurrent-ruby
|
53
57
|
dry-initializer
|
54
58
|
|
@@ -67,4 +71,4 @@ DEPENDENCIES
|
|
67
71
|
yabeda-graphql!
|
68
72
|
|
69
73
|
BUNDLED WITH
|
70
|
-
2.
|
74
|
+
2.3.10
|
data/README.md
CHANGED
@@ -1,9 +1,12 @@
|
|
1
|
-
# Yabeda::
|
1
|
+
# 
|
2
2
|
|
3
|
-
[](https://badge.fury.io/rb/yabeda-graphql)
|
4
|
+
[](https://github.com/yabeda-rb/yabeda-graphql/actions/workflows/test.yml)
|
4
5
|
|
5
6
|
Built-in metrics for [GraphQL-Ruby] monitoring out of the box! Part of the [yabeda] suite.
|
6
7
|
|
8
|
+
Get sample Grafana dashboard from [Grafana.com #14774](https://grafana.com/grafana/dashboards/14774) or from [`grafana-dashboard.json`](./grafana-dashboard.json) file.
|
9
|
+
|
7
10
|
## Installation
|
8
11
|
|
9
12
|
1. Add the gem to your Gemfile:
|
@@ -14,7 +17,7 @@ Built-in metrics for [GraphQL-Ruby] monitoring out of the box! Part of the [yabe
|
|
14
17
|
# Then add monitoring system adapter, e.g.:
|
15
18
|
# gem 'yabeda-prometheus'
|
16
19
|
|
17
|
-
# If you're using
|
20
|
+
# If you're using Rails don't forget to add plugin for it:
|
18
21
|
# gem 'yabeda-rails'
|
19
22
|
# But if not then you should run `Yabeda.configure!` manually when your app is ready.
|
20
23
|
```
|
@@ -29,7 +32,7 @@ Built-in metrics for [GraphQL-Ruby] monitoring out of the box! Part of the [yabe
|
|
29
32
|
|
30
33
|
```ruby
|
31
34
|
class YourAppSchema < GraphQL::Schema
|
32
|
-
use Yabeda::GraphQL
|
35
|
+
use Yabeda::GraphQL
|
33
36
|
end
|
34
37
|
```
|
35
38
|
|
@@ -53,8 +56,7 @@ After checking out the repo, run `bin/setup` to install dependencies.
|
|
53
56
|
Then, run fololowing commands to run the tests against all supported versions of [GraphQL-Ruby]:
|
54
57
|
|
55
58
|
```sh
|
56
|
-
|
57
|
-
GRAPHQL_RUBY_INTERPRETER=no bundle exec appraisal rspec
|
59
|
+
bundle exec appraisal rspec
|
58
60
|
```
|
59
61
|
|
60
62
|
You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
@@ -65,6 +67,38 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
65
67
|
|
66
68
|
Bug reports and pull requests are welcome on GitHub at https://github.com/yabeda-rb/yabeda-graphql.
|
67
69
|
|
70
|
+
### Releasing
|
71
|
+
|
72
|
+
1. Bump version number in `lib/yabeda/graphql/version.rb`
|
73
|
+
|
74
|
+
In case of pre-releases keep in mind [rubygems/rubygems#3086](https://github.com/rubygems/rubygems/issues/3086) and check version with command like `Gem::Version.new(Yabeda::GraphQL::VERSION).to_s`
|
75
|
+
|
76
|
+
2. Fill `CHANGELOG.md` with missing changes, add header with version and date.
|
77
|
+
|
78
|
+
3. Make a commit:
|
79
|
+
|
80
|
+
```sh
|
81
|
+
git add lib/yabeda/graphql/version.rb CHANGELOG.md
|
82
|
+
version=$(ruby -r ./lib/yabeda/graphql/version.rb -e "puts Gem::Version.new(Yabeda::GraphQL::VERSION)")
|
83
|
+
git commit --message="${version}: " --edit
|
84
|
+
```
|
85
|
+
|
86
|
+
4. Create annotated tag:
|
87
|
+
|
88
|
+
```sh
|
89
|
+
git tag v${version} --annotate --message="${version}: " --edit --sign
|
90
|
+
```
|
91
|
+
|
92
|
+
5. Fill version name into subject line and (optionally) some description (list of changes will be taken from changelog and appended automatically)
|
93
|
+
|
94
|
+
6. Push it:
|
95
|
+
|
96
|
+
```sh
|
97
|
+
git push --follow-tags
|
98
|
+
```
|
99
|
+
|
100
|
+
7. GitHub Actions will create a new release, build and push gem into RubyGems! You're done!
|
101
|
+
|
68
102
|
## License
|
69
103
|
|
70
104
|
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
@@ -1,54 +1,58 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
yabeda-graphql (0.1
|
5
|
-
graphql (
|
4
|
+
yabeda-graphql (0.2.1)
|
5
|
+
graphql (>= 1.9, < 3)
|
6
6
|
yabeda (~> 0.2)
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: https://rubygems.org/
|
10
10
|
specs:
|
11
|
-
|
11
|
+
anyway_config (2.3.0)
|
12
|
+
ruby-next-core (>= 0.14.0)
|
13
|
+
appraisal (2.4.1)
|
12
14
|
bundler
|
13
15
|
rake
|
14
16
|
thor (>= 0.14.0)
|
15
|
-
byebug (11.1.
|
16
|
-
coderay (1.1.
|
17
|
-
concurrent-ruby (1.1.
|
18
|
-
diff-lcs (1.
|
19
|
-
dry-initializer (3.0.
|
20
|
-
graphql (1.10.
|
21
|
-
graphql-batch (0.
|
22
|
-
graphql (>= 1.
|
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)
|
23
25
|
promise.rb (~> 0.7.2)
|
24
|
-
method_source (0.
|
26
|
+
method_source (1.0.0)
|
25
27
|
promise.rb (0.7.4)
|
26
|
-
pry (0.
|
27
|
-
coderay (~> 1.1
|
28
|
-
method_source (~>
|
28
|
+
pry (0.14.1)
|
29
|
+
coderay (~> 1.1)
|
30
|
+
method_source (~> 1.0)
|
29
31
|
pry-byebug (3.8.0)
|
30
32
|
byebug (~> 11.0)
|
31
33
|
pry (~> 0.10)
|
32
|
-
pry-inline (1.0.
|
33
|
-
pry (> 0.10.0
|
34
|
+
pry-inline (1.0.7)
|
35
|
+
pry (> 0.10.0)
|
34
36
|
unicode (~> 0.4.4)
|
35
|
-
rake (13.0.
|
36
|
-
rspec (3.
|
37
|
-
rspec-core (~> 3.
|
38
|
-
rspec-expectations (~> 3.
|
39
|
-
rspec-mocks (~> 3.
|
40
|
-
rspec-core (3.
|
41
|
-
rspec-support (~> 3.
|
42
|
-
rspec-expectations (3.
|
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
45
|
diff-lcs (>= 1.2.0, < 2.0)
|
44
|
-
rspec-support (~> 3.
|
45
|
-
rspec-mocks (3.
|
46
|
+
rspec-support (~> 3.11.0)
|
47
|
+
rspec-mocks (3.11.1)
|
46
48
|
diff-lcs (>= 1.2.0, < 2.0)
|
47
|
-
rspec-support (~> 3.
|
48
|
-
rspec-support (3.
|
49
|
-
|
49
|
+
rspec-support (~> 3.11.0)
|
50
|
+
rspec-support (3.11.0)
|
51
|
+
ruby-next-core (0.15.0)
|
52
|
+
thor (1.2.1)
|
50
53
|
unicode (0.4.4.4)
|
51
|
-
yabeda (0.
|
54
|
+
yabeda (0.11.0)
|
55
|
+
anyway_config (>= 1.0, < 3)
|
52
56
|
concurrent-ruby
|
53
57
|
dry-initializer
|
54
58
|
|
@@ -68,4 +72,4 @@ DEPENDENCIES
|
|
68
72
|
yabeda-graphql!
|
69
73
|
|
70
74
|
BUNDLED WITH
|
71
|
-
2.
|
75
|
+
2.3.10
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
4
|
+
|
5
|
+
gem "graphql", "~> 1.11.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: "../"
|
@@ -0,0 +1,75 @@
|
|
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
|
@@ -0,0 +1,14 @@
|
|
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: "../"
|
@@ -0,0 +1,75 @@
|
|
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
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
4
|
+
|
5
|
+
gem "graphql", "~> 1.13.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: "../"
|