agoo 2.11.7 → 2.13.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 +4 -4
- data/CHANGELOG.md +48 -0
- data/bin/agoo_stubs +166 -0
- data/ext/agoo/bind.c +7 -5
- data/ext/agoo/con.c +1 -1
- data/ext/agoo/gqleval.c +87 -23
- data/ext/agoo/gqleval.h +6 -0
- data/ext/agoo/gqlintro.c +175 -103
- data/ext/agoo/gqljson.c +3 -0
- data/ext/agoo/gqlvalue.c +5 -5
- data/ext/agoo/graphql.c +35 -24
- data/ext/agoo/graphql.h +11 -15
- data/ext/agoo/req.c +9 -10
- data/ext/agoo/rgraphql.c +248 -12
- data/ext/agoo/rserver.c +52 -5
- data/ext/agoo/rserver.h +8 -0
- data/ext/agoo/sdl.c +23 -26
- data/ext/agoo/sdl.h +1 -1
- data/lib/agoo.rb +1 -0
- data/lib/agoo/graphql.rb +9 -0
- data/lib/agoo/graphql/arg.rb +13 -0
- data/lib/agoo/graphql/field.rb +14 -0
- data/lib/agoo/graphql/type.rb +12 -0
- data/lib/agoo/version.rb +1 -1
- data/test/graphql_test.rb +22 -18
- metadata +8 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: agoo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.13.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Ohler
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-07-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: oj
|
@@ -34,6 +34,7 @@ description: A fast HTTP server supporting rack.
|
|
34
34
|
email: peter@ohler.com
|
35
35
|
executables:
|
36
36
|
- agoo
|
37
|
+
- agoo_stubs
|
37
38
|
extensions:
|
38
39
|
- ext/agoo/extconf.rb
|
39
40
|
extra_rdoc_files:
|
@@ -45,6 +46,7 @@ files:
|
|
45
46
|
- LICENSE
|
46
47
|
- README.md
|
47
48
|
- bin/agoo
|
49
|
+
- bin/agoo_stubs
|
48
50
|
- ext/agoo/agoo.c
|
49
51
|
- ext/agoo/atomic.h
|
50
52
|
- ext/agoo/base64.c
|
@@ -142,6 +144,10 @@ files:
|
|
142
144
|
- ext/agoo/websocket.c
|
143
145
|
- ext/agoo/websocket.h
|
144
146
|
- lib/agoo.rb
|
147
|
+
- lib/agoo/graphql.rb
|
148
|
+
- lib/agoo/graphql/arg.rb
|
149
|
+
- lib/agoo/graphql/field.rb
|
150
|
+
- lib/agoo/graphql/type.rb
|
145
151
|
- lib/agoo/version.rb
|
146
152
|
- lib/rack/handler/agoo.rb
|
147
153
|
- test/base_handler_test.rb
|