graphiti_gql 0.2.28 → 0.2.31
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +2 -0
- data/lib/graphiti_gql/active_resource.rb +10 -8
- data/lib/graphiti_gql/graphiti_hax.rb +64 -2
- data/lib/graphiti_gql/loaders/belongs_to.rb +24 -11
- data/lib/graphiti_gql/loaders/many.rb +8 -4
- data/lib/graphiti_gql/log_subscriber.rb +5 -2
- data/lib/graphiti_gql/schema/fields/attribute.rb +10 -2
- data/lib/graphiti_gql/schema/fields/show.rb +1 -1
- data/lib/graphiti_gql/schema/list_arguments.rb +0 -1
- data/lib/graphiti_gql/schema/registry.rb +1 -2
- data/lib/graphiti_gql/schema/resource_type.rb +11 -0
- data/lib/graphiti_gql/schema.rb +4 -0
- data/lib/graphiti_gql/spec_helper.rb +3 -0
- data/lib/graphiti_gql/version.rb +1 -1
- metadata +2 -3
- data/Gemfile.lock +0 -94
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ba3f305f68fc23193bb245eff566feb18eaec47a775c5f0fdab8177707b564f8
|
4
|
+
data.tar.gz: 3f96b0cee52d9aa3c3968f125487d26f85f6bdb7acc13c2d457a2bc4feb65e11
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c05e7c4dc7b7908a1b3f43b40cba6b5bcf6bbda4c2b26be4555783a4d27018e249e22d1e3feb8e1d0df09e35b62fc0f98759f4d0e9b16edc9725199dd79d19dc
|
7
|
+
data.tar.gz: '049cb6c5201efa3a6921c5e964dbb7064dc70a7d5930c480bcf59b9466d839779a11c41a7d66cc7434d778ed200a94c0fc75a6736ff4b38817d453788cfc8318'
|
data/.gitignore
CHANGED
@@ -37,18 +37,20 @@ module GraphitiGql
|
|
37
37
|
def edge(name, node_id)
|
38
38
|
found = @edges[name].empty? ? nil : @edges[name]
|
39
39
|
if found && node_id
|
40
|
-
found.find
|
40
|
+
found.find do |f|
|
41
|
+
gql_node_id = f.instance_variable_get(:@node_id)
|
42
|
+
gql_node_id == node_id ||
|
43
|
+
gql_node_id == node_id.to_s ||
|
44
|
+
gql_node_id == @resource.gid(node_id)
|
45
|
+
end
|
41
46
|
else
|
42
47
|
found
|
43
48
|
end
|
44
49
|
end
|
45
50
|
|
46
|
-
def
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
def int_id
|
51
|
-
decoded_id.to_i
|
51
|
+
def _id
|
52
|
+
deserialized = @resource.deserialize_gid(id)
|
53
|
+
deserialized.to_i.to_s == deserialized ? deserialized.to_i : deserialized
|
52
54
|
end
|
53
55
|
end
|
54
56
|
|
@@ -77,7 +79,7 @@ module GraphitiGql
|
|
77
79
|
data # fire query
|
78
80
|
Node.new(underscore(data[data.keys.first]), @resource)
|
79
81
|
else
|
80
|
-
nodes.find { |n| n.id == id.to_s }
|
82
|
+
nodes.find { |n| n.id == id.to_s || n.id == @resource.gid(id) }
|
81
83
|
end
|
82
84
|
end
|
83
85
|
|
@@ -71,13 +71,46 @@ module GraphitiGql
|
|
71
71
|
end
|
72
72
|
|
73
73
|
class_methods do
|
74
|
+
def gid(*ids)
|
75
|
+
ids = ids[0] if ids[0].is_a?(Array) && ids.length == 1
|
76
|
+
gids = ids.map { |id| serialize_gid(id) }
|
77
|
+
ids.length == 1 ? gids.first : gids
|
78
|
+
end
|
79
|
+
|
80
|
+
def serialize_gid(id)
|
81
|
+
Base64.encode64("#{graphql_name}/#{id}")
|
82
|
+
end
|
83
|
+
|
84
|
+
def deserialize_gid(gid, integer = true)
|
85
|
+
id = Base64.decode64(gid).split("/").last
|
86
|
+
id.to_i.to_s == id ? id.to_i : id
|
87
|
+
end
|
88
|
+
|
74
89
|
def config
|
75
90
|
return @config if @config
|
76
91
|
super
|
77
92
|
@config = @config.merge(value_objects: {}, is_value_object: false)
|
78
93
|
end
|
79
94
|
|
95
|
+
def graphql_name
|
96
|
+
@graphql_name ||= begin
|
97
|
+
if name.nil?
|
98
|
+
'Unknown'
|
99
|
+
else
|
100
|
+
name.gsub('Resource', '').gsub('::', '')
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
80
105
|
def attribute(*args)
|
106
|
+
# new default is :gid, not integer_id
|
107
|
+
if args[0] == :id && args[1] == :integer_id
|
108
|
+
args[1] = :gid
|
109
|
+
opts = args.extract_options!
|
110
|
+
opts[:null] = false
|
111
|
+
args << opts
|
112
|
+
end
|
113
|
+
|
81
114
|
super(*args).tap do
|
82
115
|
opts = args.extract_options!
|
83
116
|
att = config[:attributes][args[0]]
|
@@ -320,6 +353,7 @@ module GraphitiGql
|
|
320
353
|
description: 'Datetime with milliseconds'
|
321
354
|
}
|
322
355
|
|
356
|
+
# Support ranges
|
323
357
|
[:string, :integer, :float, :datetime, :precise_datetime].each do |kind|
|
324
358
|
duped_hash = Graphiti::Util::Hash.deep_dup(Graphiti::Types[:hash])
|
325
359
|
type = Graphiti::Types[:"#{kind}_range"] = duped_hash
|
@@ -334,6 +368,29 @@ module GraphitiGql
|
|
334
368
|
}
|
335
369
|
end
|
336
370
|
|
371
|
+
# Support gid
|
372
|
+
gid_going_out = ->(id) {
|
373
|
+
resource.gid(id)
|
374
|
+
}
|
375
|
+
|
376
|
+
gid_coming_in = definition.constructor do |input|
|
377
|
+
if defined?(ApplicationResource)
|
378
|
+
ApplicationResource.deserialize_gid(input)
|
379
|
+
else
|
380
|
+
Graphiti::Resource.deserialize_gid(input)
|
381
|
+
end
|
382
|
+
end
|
383
|
+
|
384
|
+
# Register it with Graphiti
|
385
|
+
Graphiti::Types[:gid] = {
|
386
|
+
params: gid_coming_in,
|
387
|
+
read: gid_going_out,
|
388
|
+
write: gid_coming_in,
|
389
|
+
kind: 'scalar',
|
390
|
+
canonical_name: :gid,
|
391
|
+
description: 'Globally-unique identifier',
|
392
|
+
}
|
393
|
+
|
337
394
|
module ActiveRecordAdapterExtras
|
338
395
|
extend ActiveSupport::Concern
|
339
396
|
|
@@ -344,6 +401,8 @@ module GraphitiGql
|
|
344
401
|
alias_method :filter_precise_datetime_gte, :filter_gte
|
345
402
|
alias_method :filter_precise_datetime_eq, :filter_eq
|
346
403
|
alias_method :filter_precise_datetime_not_eq, :filter_not_eq
|
404
|
+
alias_method :filter_gid_eq, :filter_eq
|
405
|
+
alias_method :filter_gid_not_eq, :filter_not_eq
|
347
406
|
end
|
348
407
|
|
349
408
|
# TODO: integration specs mysql vs postgres for case sensitivity
|
@@ -393,11 +452,14 @@ module GraphitiGql
|
|
393
452
|
class << self
|
394
453
|
alias :old_default_operators :default_operators
|
395
454
|
def default_operators
|
396
|
-
old_default_operators.merge({
|
397
|
-
precise_datetime: numerical_operators,
|
455
|
+
ops = old_default_operators.merge({
|
456
|
+
precise_datetime: numerical_operators - [:not_eq],
|
398
457
|
string_enum: [:eq, :not_eq],
|
399
458
|
integer_enum: [:eq, :not_eq],
|
459
|
+
gid: [:eq, :not_eq]
|
400
460
|
})
|
461
|
+
ops[:datetime] = ops[:datetime] - [:not_eq]
|
462
|
+
ops
|
401
463
|
end
|
402
464
|
end
|
403
465
|
end
|
@@ -1,6 +1,10 @@
|
|
1
1
|
module GraphitiGql
|
2
2
|
module Loaders
|
3
|
-
class FakeRecord < Struct.new(:id, :type)
|
3
|
+
class FakeRecord < Struct.new(:id, :type, :graphiti_resource)
|
4
|
+
def initialize(*args)
|
5
|
+
super
|
6
|
+
@__graphiti_resource = graphiti_resource
|
7
|
+
end
|
4
8
|
end
|
5
9
|
|
6
10
|
class BelongsTo < GraphQL::Batch::Loader
|
@@ -16,16 +20,16 @@ module GraphitiGql
|
|
16
20
|
ids.compact!
|
17
21
|
return if ids.empty?
|
18
22
|
|
19
|
-
if @params[:simpleid]
|
23
|
+
if @params[:simpleid] && !to_polymorphic_resource?
|
20
24
|
if @sideload.type == :polymorphic_belongs_to
|
21
25
|
ids.each do |id|
|
22
26
|
child = @sideload.children.values.find { |c| c.group_name == id[:type].to_sym }
|
23
27
|
type = Schema::Registry.instance.get(child.resource.class, interface: false)[:type]
|
24
|
-
fulfill(id, FakeRecord.new(id[:id], type))
|
28
|
+
fulfill(id, FakeRecord.new(id[:id], type, child.resource))
|
25
29
|
end
|
26
30
|
else
|
27
31
|
type = Schema::Registry.instance.get(@sideload.resource.class)[:type]
|
28
|
-
ids.each { |id| fulfill(id, FakeRecord.new(id, type)) }
|
32
|
+
ids.each { |id| fulfill(id, FakeRecord.new(id, type, @sideload.resource)) }
|
29
33
|
end
|
30
34
|
return
|
31
35
|
end
|
@@ -40,9 +44,10 @@ module GraphitiGql
|
|
40
44
|
payload.each_pair do |key, value|
|
41
45
|
params = { filter: {} }
|
42
46
|
klass = @sideload.children.values.find { |c| c.group_name == key.to_sym }
|
43
|
-
|
44
|
-
|
45
|
-
|
47
|
+
filter_ids = value.map { |id| @sideload.resource.class.gid(id.to_s) }
|
48
|
+
params = @params.merge({
|
49
|
+
filter: { id: { eq: filter_ids } }
|
50
|
+
})
|
46
51
|
|
47
52
|
futures << Concurrent::Future.execute do
|
48
53
|
{ type: key, data: klass.resource.class.all(params).data }
|
@@ -50,14 +55,16 @@ module GraphitiGql
|
|
50
55
|
end
|
51
56
|
values = futures.map(&:value)
|
52
57
|
ids.each do |id|
|
53
|
-
|
54
|
-
|
58
|
+
records_for_type = values.find { |v| v[:type] == id[:type] }
|
59
|
+
corresponding = records_for_type[:data].find { |r| r.id == id[:id] }
|
60
|
+
fulfill(id, corresponding)
|
55
61
|
end
|
56
62
|
else
|
57
63
|
resource = Schema.registry.get(@sideload.resource.class)[:resource]
|
58
|
-
params =
|
64
|
+
params = @params.deep_dup
|
59
65
|
unless resource.singular
|
60
|
-
|
66
|
+
filter_ids = ids.map { |id| @sideload.resource.class.gid(id.to_s) }
|
67
|
+
params[:filter] = {id: { eq: filter_ids } }
|
61
68
|
end
|
62
69
|
records = resource.all(params).data
|
63
70
|
if resource.singular
|
@@ -68,6 +75,12 @@ module GraphitiGql
|
|
68
75
|
end
|
69
76
|
end
|
70
77
|
end
|
78
|
+
|
79
|
+
private
|
80
|
+
|
81
|
+
def to_polymorphic_resource?
|
82
|
+
@sideload.resource.polymorphic? && @sideload.type != :polymorphic_belongs_to
|
83
|
+
end
|
71
84
|
end
|
72
85
|
end
|
73
86
|
end
|
@@ -15,7 +15,7 @@ module GraphitiGql
|
|
15
15
|
|
16
16
|
def initialize(sideload, params)
|
17
17
|
@sideload = sideload
|
18
|
-
@params = params
|
18
|
+
@params = params.merge(typecast_filters: false)
|
19
19
|
end
|
20
20
|
|
21
21
|
def perform(parent_records)
|
@@ -34,6 +34,7 @@ module GraphitiGql
|
|
34
34
|
pk
|
35
35
|
end
|
36
36
|
end
|
37
|
+
ids.compact!
|
37
38
|
|
38
39
|
build_params(ids, parent_records)
|
39
40
|
resource = Schema.registry.get(@sideload.resource.class)[:resource]
|
@@ -53,13 +54,16 @@ module GraphitiGql
|
|
53
54
|
if @sideload.polymorphic_as
|
54
55
|
type = ids[0][:"#{@sideload.polymorphic_as}_type"]
|
55
56
|
foreign_keys = ids.map { |id| id[@sideload.foreign_key] }
|
57
|
+
foreign_keys.map! { |id| @sideload.parent_resource.class.gid(id) }
|
56
58
|
@params[:filter][:"#{@sideload.polymorphic_as}_type"] = type
|
57
|
-
@params[:filter][@sideload.foreign_key] = foreign_keys
|
59
|
+
@params[:filter][@sideload.foreign_key] = foreign_keys
|
58
60
|
elsif @sideload.type == :many_to_many
|
61
|
+
filter_ids = ids.map { |id| @sideload.parent_resource.class.gid(id) }
|
59
62
|
fk = @sideload.foreign_key.values.first
|
60
|
-
@params[:filter].merge!(fk => { eq:
|
63
|
+
@params[:filter].merge!(fk => { eq: filter_ids })
|
61
64
|
elsif !@sideload.parent_resource.class.singular
|
62
|
-
|
65
|
+
filter_ids = ids.map { |id| @sideload.parent_resource.class.gid(id) }
|
66
|
+
@params[:filter].merge!(@sideload.foreign_key => { eq: filter_ids })
|
63
67
|
end
|
64
68
|
|
65
69
|
if @params[:stats]
|
@@ -35,7 +35,9 @@ module GraphitiGql
|
|
35
35
|
num_results = payload[:results].length
|
36
36
|
klasses = payload[:results].map(&:class).map(&:name).uniq
|
37
37
|
color = num_results == 0 ? :yellow : :green
|
38
|
-
|
38
|
+
stmt = "#{indent} #{num_results} #{"result".pluralize(num_results)}"
|
39
|
+
stmt << " of #{"type".pluralize(klasses.length)} #{klasses.to_sentence}" if num_results > 0
|
40
|
+
add_chunk(stmt, color, true)
|
39
41
|
|
40
42
|
took = ((stop - start) * 1000.0).round(2)
|
41
43
|
add_chunk("#{indent} Took: #{took}ms", :magenta, true)
|
@@ -75,7 +77,7 @@ end|, :white, true)
|
|
75
77
|
Graphiti.info("❌🚨 Response contained errors!", :red, true)
|
76
78
|
response_errors.each do |err|
|
77
79
|
Graphiti.info("#{err['extensions']['code']} - #{err['message']}", :red, true)
|
78
|
-
Graphiti.info("#{err['path'].join(".")}", :red, false)
|
80
|
+
Graphiti.info("#{err['path'].join(".")}", :red, false) if err['path']
|
79
81
|
end
|
80
82
|
end
|
81
83
|
else
|
@@ -153,6 +155,7 @@ end|, :white, true)
|
|
153
155
|
|
154
156
|
def thin_path
|
155
157
|
path = Graphiti.context[:object][:current_path]
|
158
|
+
return [] unless path
|
156
159
|
path.reject do |p|
|
157
160
|
p.is_a?(Integer) ||
|
158
161
|
p == "nodes" ||
|
@@ -37,7 +37,16 @@ module GraphitiGql
|
|
37
37
|
end
|
38
38
|
end
|
39
39
|
return if value.nil?
|
40
|
-
|
40
|
+
|
41
|
+
caster = Graphiti::Types[_config[:type]][:read]
|
42
|
+
# Dry::Types can't be instance_exec'd
|
43
|
+
# This dependency has probably served it's purpose and can be
|
44
|
+
# refactored away
|
45
|
+
if caster.is_a?(Proc)
|
46
|
+
instance_exec(value, &caster)
|
47
|
+
else
|
48
|
+
caster.call(value)
|
49
|
+
end
|
41
50
|
end
|
42
51
|
end
|
43
52
|
|
@@ -51,7 +60,6 @@ module GraphitiGql
|
|
51
60
|
if !field_type
|
52
61
|
canonical_graphiti_type = Graphiti::Types.name_for(@config[:type])
|
53
62
|
field_type = GQL_TYPE_MAP[canonical_graphiti_type.to_sym]
|
54
|
-
field_type = String if @name == :id
|
55
63
|
end
|
56
64
|
field_type = [field_type] if @config[:type].to_s.starts_with?("array_of")
|
57
65
|
field_type
|
@@ -12,7 +12,7 @@ module GraphitiGql
|
|
12
12
|
null: true,
|
13
13
|
extras: [:lookahead]
|
14
14
|
unless @registered[:resource].singular
|
15
|
-
field.argument(:id,
|
15
|
+
field.argument(:id, GraphQL::Types::ID, required: true)
|
16
16
|
end
|
17
17
|
_registered = @registered
|
18
18
|
query.define_method name do |**arguments|
|
@@ -141,6 +141,17 @@ module GraphitiGql
|
|
141
141
|
klass = Class.new(Schema.base_object)
|
142
142
|
end
|
143
143
|
|
144
|
+
klass.define_method :resource do
|
145
|
+
return @resource if @resource
|
146
|
+
resource = object.instance_variable_get(:@__graphiti_resource)
|
147
|
+
resource_class = resource.class
|
148
|
+
if resource_class.polymorphic? && !resource_class.polymorphic_child?
|
149
|
+
resource_class = resource_class.resource_for_model(object)
|
150
|
+
end
|
151
|
+
@resource = resource_class
|
152
|
+
resource_class
|
153
|
+
end
|
154
|
+
|
144
155
|
klass
|
145
156
|
end
|
146
157
|
|
data/lib/graphiti_gql/schema.rb
CHANGED
@@ -33,6 +33,7 @@ module GraphitiGql
|
|
33
33
|
integer_id: String,
|
34
34
|
string: String,
|
35
35
|
uuid: String,
|
36
|
+
gid: GraphQL::Types::ID,
|
36
37
|
integer: Integer,
|
37
38
|
big_integer: GraphQL::Types::BigInt,
|
38
39
|
float: Float,
|
@@ -68,7 +69,9 @@ module GraphitiGql
|
|
68
69
|
end
|
69
70
|
|
70
71
|
def self.base_object
|
72
|
+
return @base_object if @base_object
|
71
73
|
klass = Class.new(GraphQL::Schema::Object)
|
74
|
+
|
72
75
|
# TODO make this config maybe
|
73
76
|
if defined?(ActionView)
|
74
77
|
klass.send(:include, ActionView::Helpers::TranslationHelper)
|
@@ -79,6 +82,7 @@ module GraphitiGql
|
|
79
82
|
end
|
80
83
|
end
|
81
84
|
end
|
85
|
+
@base_object = klass
|
82
86
|
klass
|
83
87
|
end
|
84
88
|
|
data/lib/graphiti_gql/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: graphiti_gql
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.31
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lee Richmond
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-08-
|
11
|
+
date: 2022-08-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: graphql
|
@@ -126,7 +126,6 @@ files:
|
|
126
126
|
- ".rspec"
|
127
127
|
- ".travis.yml"
|
128
128
|
- Gemfile
|
129
|
-
- Gemfile.lock
|
130
129
|
- LICENSE.txt
|
131
130
|
- README.md
|
132
131
|
- Rakefile
|
data/Gemfile.lock
DELETED
@@ -1,94 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
graphiti_gql (0.2.27)
|
5
|
-
activemodel (> 6.0, < 8.0)
|
6
|
-
graphiti (~> 1.3.9)
|
7
|
-
graphql (~> 2.0)
|
8
|
-
graphql-batch (~> 0.5)
|
9
|
-
|
10
|
-
GEM
|
11
|
-
remote: https://rubygems.org/
|
12
|
-
specs:
|
13
|
-
activemodel (7.0.3)
|
14
|
-
activesupport (= 7.0.3)
|
15
|
-
activesupport (7.0.3)
|
16
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
17
|
-
i18n (>= 1.6, < 2)
|
18
|
-
minitest (>= 5.1)
|
19
|
-
tzinfo (~> 2.0)
|
20
|
-
byebug (11.1.3)
|
21
|
-
coderay (1.1.3)
|
22
|
-
concurrent-ruby (1.1.10)
|
23
|
-
diff-lcs (1.5.0)
|
24
|
-
dry-container (0.10.1)
|
25
|
-
concurrent-ruby (~> 1.0)
|
26
|
-
dry-core (0.8.1)
|
27
|
-
concurrent-ruby (~> 1.0)
|
28
|
-
dry-inflector (0.3.0)
|
29
|
-
dry-logic (1.2.0)
|
30
|
-
concurrent-ruby (~> 1.0)
|
31
|
-
dry-core (~> 0.5, >= 0.5)
|
32
|
-
dry-types (1.5.1)
|
33
|
-
concurrent-ruby (~> 1.0)
|
34
|
-
dry-container (~> 0.3)
|
35
|
-
dry-core (~> 0.5, >= 0.5)
|
36
|
-
dry-inflector (~> 0.1, >= 0.1.2)
|
37
|
-
dry-logic (~> 1.0, >= 1.0.2)
|
38
|
-
graphiti (1.3.9)
|
39
|
-
activesupport (>= 5.2)
|
40
|
-
concurrent-ruby (~> 1.0)
|
41
|
-
dry-types (>= 0.15.0, < 2.0)
|
42
|
-
graphiti_errors (~> 1.1.0)
|
43
|
-
jsonapi-renderer (~> 0.2, >= 0.2.2)
|
44
|
-
jsonapi-serializable (~> 0.3.0)
|
45
|
-
graphiti_errors (1.1.2)
|
46
|
-
jsonapi-serializable (~> 0.1)
|
47
|
-
graphql (2.0.12)
|
48
|
-
graphql-batch (0.5.1)
|
49
|
-
graphql (>= 1.10, < 3)
|
50
|
-
promise.rb (~> 0.7.2)
|
51
|
-
i18n (1.12.0)
|
52
|
-
concurrent-ruby (~> 1.0)
|
53
|
-
jsonapi-renderer (0.2.2)
|
54
|
-
jsonapi-serializable (0.3.1)
|
55
|
-
jsonapi-renderer (~> 0.2.0)
|
56
|
-
method_source (1.0.0)
|
57
|
-
minitest (5.16.2)
|
58
|
-
promise.rb (0.7.4)
|
59
|
-
pry (0.13.1)
|
60
|
-
coderay (~> 1.1)
|
61
|
-
method_source (~> 1.0)
|
62
|
-
pry-byebug (3.9.0)
|
63
|
-
byebug (~> 11.0)
|
64
|
-
pry (~> 0.13.0)
|
65
|
-
rake (10.5.0)
|
66
|
-
rspec (3.11.0)
|
67
|
-
rspec-core (~> 3.11.0)
|
68
|
-
rspec-expectations (~> 3.11.0)
|
69
|
-
rspec-mocks (~> 3.11.0)
|
70
|
-
rspec-core (3.11.0)
|
71
|
-
rspec-support (~> 3.11.0)
|
72
|
-
rspec-expectations (3.11.0)
|
73
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
74
|
-
rspec-support (~> 3.11.0)
|
75
|
-
rspec-mocks (3.11.1)
|
76
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
77
|
-
rspec-support (~> 3.11.0)
|
78
|
-
rspec-support (3.11.0)
|
79
|
-
tzinfo (2.0.5)
|
80
|
-
concurrent-ruby (~> 1.0)
|
81
|
-
|
82
|
-
PLATFORMS
|
83
|
-
arm64-darwin-21
|
84
|
-
|
85
|
-
DEPENDENCIES
|
86
|
-
bundler (~> 2.3)
|
87
|
-
graphiti_gql!
|
88
|
-
pry
|
89
|
-
pry-byebug
|
90
|
-
rake (~> 10.0)
|
91
|
-
rspec (~> 3.0)
|
92
|
-
|
93
|
-
BUNDLED WITH
|
94
|
-
2.3.12
|