artemis 0.7.0 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +83 -7
- data/Appraisals +9 -0
- data/CHANGELOG.md +19 -2
- data/artemis.gemspec +1 -1
- data/gemfiles/rails_71.gemfile +14 -0
- data/gemfiles/rails_edge.gemfile +1 -0
- data/lib/artemis/adapters/net_http_persistent_adapter.rb +6 -0
- data/lib/artemis/railtie.rb +1 -1
- data/lib/artemis/version.rb +1 -1
- data/spec/adapters_spec.rb +9 -2
- data/spec/autoloading_spec.rb +55 -49
- data/spec/callbacks_spec.rb +6 -6
- data/spec/client_spec.rb +84 -78
- data/spec/endpoint_spec.rb +11 -7
- data/spec/fixtures/github/_repository_fields.graphql +12 -0
- data/spec/fixtures/github/repository.graphql +6 -0
- data/spec/fixtures/github/schema.json +165225 -0
- data/spec/fixtures/github/user.graphql +6 -0
- data/spec/fixtures/github/user_repositories.graphql +13 -0
- data/spec/fixtures/github.rb +2 -0
- data/spec/fixtures/responses/github/repository.yml +17 -0
- data/spec/fixtures/responses/github/user.json +10 -0
- data/spec/spec_helper.rb +3 -3
- data/spec/test_helper_spec.rb +32 -32
- metadata +16 -15
- data/spec/fixtures/metaphysics/_artist_fields.graphql +0 -4
- data/spec/fixtures/metaphysics/artist.graphql +0 -7
- data/spec/fixtures/metaphysics/artists.graphql +0 -8
- data/spec/fixtures/metaphysics/artwork.graphql +0 -8
- data/spec/fixtures/metaphysics/schema.json +0 -49811
- data/spec/fixtures/metaphysics.rb +0 -2
- data/spec/fixtures/responses/metaphysics/artist.yml +0 -24
- data/spec/fixtures/responses/metaphysics/artwork.json +0 -12
@@ -1,24 +0,0 @@
|
|
1
|
-
yayoi_kusama:
|
2
|
-
data:
|
3
|
-
artist:
|
4
|
-
name: Yayoi Kusama
|
5
|
-
birthday: 1929/03/22
|
6
|
-
|
7
|
-
leonardo_da_vinci:
|
8
|
-
data:
|
9
|
-
artist:
|
10
|
-
name: Leonardo da Vinci
|
11
|
-
birthday: 1452/04/15
|
12
|
-
|
13
|
-
yuki:
|
14
|
-
data:
|
15
|
-
artist:
|
16
|
-
name: Yuki Nishijima
|
17
|
-
birthday: <%= Date.today.year %>/01/01
|
18
|
-
|
19
|
-
yoshiki:
|
20
|
-
data:
|
21
|
-
artist:
|
22
|
-
id: artist-yoshiki
|
23
|
-
name: Artist Yoshiki
|
24
|
-
birthday: null
|