yabeda-graphql 0.1.0 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- 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
@@ -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.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,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.9.
|
21
|
-
graphql-batch (0.4.
|
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)
|
22
24
|
graphql (>= 1.3, < 2)
|
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", "~> 2.0.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 (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
|