stbaldricks 15.0.0.alpha.1 → 15.0.0.alpha.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1befc7db895069ebadf49a8912938f2949722509c28e3749b60c3975a5b6b492
4
- data.tar.gz: 0b06917b79898a394bed7f89043cb77003dbd1066cccdc2391e4a3bc97637da7
3
+ metadata.gz: e227814971bc43f036f273b77e3287157d6e28f38ad04641060cef2f005a24fd
4
+ data.tar.gz: 2d95e0f726ee850a3c1930f171740ad4d942ea5b863bf04df90d3fc5bc0b6f51
5
5
  SHA512:
6
- metadata.gz: 993ccd3b5b1151afd4d7e21b2228d6f96528b2c15b1c14315b817753f923525c6b61f4273b7292e03478b00e19659a288126c547a275694a3b5f88e946734e7e
7
- data.tar.gz: d3d42b70c39049da67cd0b1eee0ffc8660f4910b6fce674511177761e67259af881024cede4faf7bb3bd25b2130bf4bb8fb243e2d3a06cc2b8a423745400382c
6
+ metadata.gz: 117ea899c8c479324afc7dc668d808aef7393d341ae291f7aa10b62018fa28ff7d26f90785aba783b263ff450d08bde9e7844b9e7fe03bf51b21c6fde4d7d386
7
+ data.tar.gz: e4295e00834daa21bab6505827340ae889813a08c4f79f8e5202f9b09a60b6d74f5684b9fc2fef5031f72e19b7a135bc46dea857a43fd79b16a071003d3cebce
@@ -34,7 +34,7 @@ module SBF
34
34
  filter[:term] = term unless term.empty?
35
35
  filter[:show_hidden] = show_hidden
36
36
 
37
- find(filter: filter, order: order, limit: limit, offset: offset)
37
+ find(filter:, order:, limit:, offset:)
38
38
  end
39
39
 
40
40
  def find_by_author(author, order = {}, limit = 10, offset = 0, show_hidden: true)
@@ -45,7 +45,7 @@ module SBF
45
45
  filter[:term] = author
46
46
  filter[:show_hidden] = show_hidden
47
47
 
48
- find(filter: filter, order: order, limit: limit, offset: offset)
48
+ find(filter:, order:, limit:, offset:)
49
49
  end
50
50
 
51
51
  def find_by_category(category, order = {}, limit = 10, offset = 0, show_hidden: true)
@@ -56,7 +56,7 @@ module SBF
56
56
  filter[:term] = category
57
57
  filter[:show_hidden] = show_hidden
58
58
 
59
- find(filter: filter, order: order, limit: limit, offset: offset)
59
+ find(filter:, order:, limit:, offset:)
60
60
  end
61
61
 
62
62
  def find_by_tag(tag, order = {}, limit = 10, offset = 0, show_hidden: true)
@@ -67,7 +67,7 @@ module SBF
67
67
  filter[:term] = tag
68
68
  filter[:show_hidden] = show_hidden
69
69
 
70
- find(filter: filter, order: order, limit: limit, offset: offset)
70
+ find(filter:, order:, limit:, offset:)
71
71
  end
72
72
  end
73
73
  end
@@ -11,14 +11,14 @@ module SBF
11
11
  end
12
12
 
13
13
  def years(category)
14
- response = SBF::Client::Api::Request.post_request("#{base_uri}/years", category: category)
14
+ response = SBF::Client::Api::Request.post_request("#{base_uri}/years", category:)
15
15
  parsed_response_body = JSON.parse(response.body).symbolize!
16
16
 
17
17
  handle_parsed_response(parsed_response_body, response)
18
18
  end
19
19
 
20
20
  def groups(category, year)
21
- response = SBF::Client::Api::Request.post_request("#{base_uri}/groups", category: category, year: year)
21
+ response = SBF::Client::Api::Request.post_request("#{base_uri}/groups", category:, year:)
22
22
  parsed_response_body = JSON.parse(response.body).symbolize!
23
23
 
24
24
  handle_parsed_response(parsed_response_body, response)
@@ -42,10 +42,10 @@ module SBF
42
42
  def contacts(category, year, group_type, group_id)
43
43
  response = SBF::Client::Api::Request.post_request(
44
44
  "#{base_uri}/contacts",
45
- category: category,
46
- year: year,
47
- group_type: group_type,
48
- group_id: group_id
45
+ category:,
46
+ year:,
47
+ group_type:,
48
+ group_id:
49
49
  )
50
50
  parsed_response_body = JSON.parse(response.body).symbolize!
51
51
  parsed_response_body.map! { |c| SBF::Client::Contact.new(c, clear_changes: false) } if ok?(response)
@@ -10,7 +10,7 @@ module SBF
10
10
 
11
11
  response = SBF::Client::Api::Request.post_request(
12
12
  "#{base_uri}/checkout",
13
- filter: filter, order: order, limit: limit, offset: offset, with: with
13
+ filter:, order:, limit:, offset:, with:
14
14
  )
15
15
  parsed_response_body = JSON.parse(response.body).symbolize!
16
16
 
@@ -45,7 +45,7 @@ module SBF
45
45
 
46
46
  def release_checkout(checkout_id)
47
47
  response = SBF::Client::Api::Request.post_request(
48
- "#{base_uri}/release_checkout", checkout_id: checkout_id
48
+ "#{base_uri}/release_checkout", checkout_id:
49
49
  )
50
50
  parsed_response_body = JSON.parse(response.body).symbolize!
51
51
 
@@ -24,7 +24,7 @@ module SBF
24
24
  end
25
25
 
26
26
  def invite(id, year, participant_data)
27
- event_data = {id: id, year: year}
27
+ event_data = {id:, year:}
28
28
  participant_data.store(:event, event_data)
29
29
 
30
30
  response = SBF::Client::Api::Request.post_request("#{base_uri}/invite", participant_data)
@@ -15,8 +15,8 @@ module SBF
15
15
  def login!(authorization_code, redirect_uri)
16
16
  response = SBF::Client::Api::Request.post_request(
17
17
  "/#{SBF::Client::Api::VERSION}/security/facebook/login",
18
- authorization_code: authorization_code,
19
- redirect_uri: redirect_uri
18
+ authorization_code:,
19
+ redirect_uri:
20
20
  )
21
21
  parsed_response = JSON.parse(response.body).symbolize!
22
22
 
@@ -8,7 +8,7 @@ module SBF
8
8
  filter = filter.to_json unless filter.is_a? String
9
9
  with = normalize_with(with)
10
10
 
11
- response = SBF::Client::Api::Request.get_request("#{base_uri}/find_random", filter: filter, limit: limit, with: with)
11
+ response = SBF::Client::Api::Request.get_request("#{base_uri}/find_random", filter:, limit:, with:)
12
12
  parsed_response_body = JSON.parse(response.body).symbolize!
13
13
 
14
14
  if ok?(response)
@@ -75,7 +75,7 @@ module SBF
75
75
  def get(id, with = {})
76
76
  with = normalize_with(with)
77
77
 
78
- response = SBF::Client::Api::Request.get_request("#{base_uri}/get/#{id}", with: with)
78
+ response = SBF::Client::Api::Request.get_request("#{base_uri}/get/#{id}", with:)
79
79
 
80
80
  if ok?(response)
81
81
  hydrated_entity(response, {}, nil)
@@ -94,7 +94,7 @@ module SBF
94
94
  order = order.to_json unless order.is_a? String
95
95
  with = normalize_with(with)
96
96
 
97
- response = SBF::Client::Api::Request.get_request("#{base_uri}/find", filter: filter, order: order, limit: limit, offset: offset, with: with)
97
+ response = SBF::Client::Api::Request.get_request("#{base_uri}/find", filter:, order:, limit:, offset:, with:)
98
98
  parsed_response_body = JSON.parse(response.body).symbolize!
99
99
 
100
100
  if ok?(response)
@@ -128,7 +128,7 @@ module SBF
128
128
  filter = filter.to_json unless filter.is_a? String
129
129
  aggregate = aggregate.to_json unless aggregate.is_a? String
130
130
 
131
- response = SBF::Client::Api::Request.get_request("#{base_uri}/aggregate", filter: filter, aggregate: aggregate)
131
+ response = SBF::Client::Api::Request.get_request("#{base_uri}/aggregate", filter:, aggregate:)
132
132
  parsed_response_body = JSON.parse(response.body).symbolize!
133
133
  if ok?(response)
134
134
  data = parsed_response_body[:aggregate]
@@ -28,12 +28,12 @@ module SBF
28
28
  def send_contact_us_message(name, sender_email, phone, subject, body, sender_profile_id)
29
29
  response = SBF::Client::Api::Request.post_request(
30
30
  "#{base_uri}/send_contact_us_message",
31
- name: name,
32
- sender_email: sender_email,
33
- phone: phone,
34
- subject: subject,
35
- body: body,
36
- sender_profile_id: sender_profile_id
31
+ name:,
32
+ sender_email:,
33
+ phone:,
34
+ subject:,
35
+ body:,
36
+ sender_profile_id:
37
37
  )
38
38
 
39
39
  error = SBF::Client::ErrorEntity.new(response) unless ok?(response)
@@ -47,12 +47,12 @@ module SBF
47
47
  def send_contact_us_response_message(name, sender_email, phone, subject, body, sender_profile_id)
48
48
  response = SBF::Client::Api::Request.post_request(
49
49
  "#{base_uri}/send_contact_us_response_message",
50
- name: name,
51
- sender_email: sender_email,
52
- phone: phone,
53
- subject: subject,
54
- body: body,
55
- sender_profile_id: sender_profile_id
50
+ name:,
51
+ sender_email:,
52
+ phone:,
53
+ subject:,
54
+ body:,
55
+ sender_profile_id:
56
56
  )
57
57
 
58
58
  error = SBF::Client::ErrorEntity.new(response) unless ok?(response)
@@ -4,7 +4,7 @@ module SBF
4
4
  module Client
5
5
  class PromoEndpoint < SBF::Client::EntityEndpoint
6
6
  def render_template(body, name, promo)
7
- response = SBF::Client::Api::Request.post_request("#{base_uri}/render_email", body: body, name: name, promo: promo)
7
+ response = SBF::Client::Api::Request.post_request("#{base_uri}/render_email", body:, name:, promo:)
8
8
 
9
9
  if ok?(response)
10
10
  data = response.body
@@ -19,12 +19,12 @@ module SBF
19
19
  def send_promo_email(donation_id, name, recipient, body, ecard_send_date = nil, ecard_confirmation_email = nil)
20
20
  response = SBF::Client::Api::Request.post_request(
21
21
  "#{base_uri}/send_promo_email",
22
- donation_id: donation_id,
23
- name: name,
24
- recipient: recipient,
25
- body: body,
26
- ecard_send_date: ecard_send_date,
27
- ecard_confirmation_email: ecard_confirmation_email
22
+ donation_id:,
23
+ name:,
24
+ recipient:,
25
+ body:,
26
+ ecard_send_date:,
27
+ ecard_confirmation_email:
28
28
  )
29
29
 
30
30
  if ok?(response)
@@ -30,7 +30,7 @@ module SBF
30
30
  # Build the parameter list for search
31
31
  params = {}
32
32
  response_data = {}
33
- {model_type: model_type, search_text: search_text, filters: filters, geo_location: geo_location}.each do |k, v|
33
+ {model_type:, search_text:, filters:, geo_location:}.each do |k, v|
34
34
  params[k.to_sym] = v unless v.empty?
35
35
  end
36
36
 
@@ -13,8 +13,8 @@ module SBF
13
13
  def login!(username, password)
14
14
  response = SBF::Client::Api::Request.post_request(
15
15
  "/#{SBF::Client::Api::VERSION}/security/login",
16
- username: username,
17
- password: password
16
+ username:,
17
+ password:
18
18
  )
19
19
  parsed_response = JSON.parse(response.body).symbolize!
20
20
 
@@ -40,8 +40,8 @@ module SBF
40
40
 
41
41
  response = SBF::Client::Api::Request.post_request(
42
42
  "/#{SBF::Client::Api::VERSION}/security/list_entities_user_has_permission",
43
- permission_id: permission_id,
44
- event_years: event_years
43
+ permission_id:,
44
+ event_years:
45
45
  )
46
46
  parsed_response = JSON.parse(response.body).symbolize!
47
47
 
@@ -63,8 +63,8 @@ module SBF
63
63
 
64
64
  response = SBF::Client::Api::Request.post_request(
65
65
  "/#{SBF::Client::Api::VERSION}/security/change_password",
66
- profile_id: profile_id,
67
- password: password
66
+ profile_id:,
67
+ password:
68
68
  )
69
69
 
70
70
  unless ok?(response)
@@ -85,7 +85,7 @@ module SBF
85
85
 
86
86
  response = SBF::Client::Api::Request.post_request(
87
87
  "/#{SBF::Client::Api::VERSION}/user/disconnect_facebook",
88
- profile_id: profile_id
88
+ profile_id:
89
89
  )
90
90
 
91
91
  SBF::Client::Configuration.user_token = nil
@@ -4,6 +4,6 @@ module ModelTypeConcern
4
4
  extend ActiveSupport::Concern
5
5
 
6
6
  def keys_hash
7
- model_type.nil? ? super : super.merge(model_type: model_type)
7
+ model_type.nil? ? super : super.merge(model_type:)
8
8
  end
9
9
  end
@@ -4,6 +4,6 @@ module TypeConcern
4
4
  extend ActiveSupport::Concern
5
5
 
6
6
  def keys_hash
7
- type.nil? ? super : super.merge(type: type)
7
+ type.nil? ? super : super.merge(type:)
8
8
  end
9
9
  end
@@ -37,7 +37,7 @@ module SBF
37
37
  end
38
38
 
39
39
  def keys_hash
40
- year.nil? ? super : super.merge(year: year)
40
+ year.nil? ? super : super.merge(year:)
41
41
  end
42
42
 
43
43
  class Photos < SBF::Client::BaseEntity
@@ -93,7 +93,7 @@ module SBF
93
93
  end
94
94
 
95
95
  def dirty_data(with_keys: false)
96
- data = super(with_keys: with_keys)
96
+ data = super(with_keys:)
97
97
  data[:event].delete(:id) if data[:event] && data[:event][:id].nil?
98
98
  data
99
99
  end
@@ -43,7 +43,7 @@ module SBF
43
43
  IN_MAINTENANCE = 'in_maintenance'.freeze
44
44
  IN_REMISSION = 'in_remission'.freeze
45
45
  NED = 'no_evidence_of_disease'.freeze
46
- CANCER_FREE = 'cancer-free'.freeze
46
+ CANCER_FREE = 'cancer_free'.freeze
47
47
  OTHER_LIVING = 'other_living'.freeze
48
48
  end
49
49
 
@@ -2,7 +2,6 @@
2
2
  patch_dir = File.expand_path('../../patches', __dir__)
3
3
  Dir["#{patch_dir}/*.rb"].sort.each { |file| require file }
4
4
 
5
- require 'set'
6
5
  require 'stbaldricks/client'
7
6
  require 'stbaldricks/entities/concerns/entity_response_concern'
8
7
  require 'active_model'
@@ -29,10 +28,8 @@ module SBF
29
28
  # If disallow instantiation has been set, raise an error if someone is trying to call initilaize
30
29
  raise SBF::Client::Error, 'Initialize is not valid on a base object. Use the full or partial version' unless self.class.allow_instantiation?
31
30
 
32
- super()
33
-
34
31
  @errors = SBF::Client::Entity::Errors.new(self)
35
- initialize_attributes(**data)
32
+ initialize_attributes(data)
36
33
  reload_recursive if clear_changes
37
34
  end
38
35
 
@@ -105,7 +102,7 @@ module SBF
105
102
  end
106
103
 
107
104
  def keys_hash
108
- (respond_to?(:id) && id) ? {id: id} : {}
105
+ (respond_to?(:id) && id) ? {id:} : {}
109
106
  end
110
107
 
111
108
  # Mimic ActiveRecord::AttributeAssignment alias
@@ -292,17 +289,17 @@ module SBF
292
289
  # for the given inputs and then function the same as the multitype attribute accessors do.
293
290
  def self.entity_attr_reader(attribute, full_class, partial_class = nil, optional: false)
294
291
  mapping_for_single_class = [[ELSE, full_class, partial_class]]
295
- multitype_attr_reader(attribute, mapping_for_single_class, optional: optional)
292
+ multitype_attr_reader(attribute, mapping_for_single_class, optional:)
296
293
  end
297
294
 
298
295
  def self.entity_attr_writer(attribute, full_class, partial_class = nil, optional: false)
299
296
  mapping_for_single_class = [[ELSE, full_class, partial_class]]
300
- multitype_attr_writer(attribute, mapping_for_single_class, optional: optional)
297
+ multitype_attr_writer(attribute, mapping_for_single_class, optional:)
301
298
  end
302
299
 
303
300
  def self.entity_attr_accessor(attribute, full_class, partial_class = nil, optional: false)
304
301
  mapping_for_single_class = [[ELSE, full_class, partial_class]]
305
- multitype_attr_accessor(attribute, mapping_for_single_class, optional: optional)
302
+ multitype_attr_accessor(attribute, mapping_for_single_class, optional:)
306
303
  end
307
304
  ###########################################################################################
308
305
 
@@ -340,17 +337,17 @@ module SBF
340
337
  # for the given inputs and then function the same as the multitype attribute accessors do.
341
338
  def self.entity_collection_attr_reader(attribute, full_class, partial_class = nil, optional: false)
342
339
  mapping_for_single_class = [[ELSE, full_class, partial_class]]
343
- multitype_collection_attr_reader(attribute, mapping_for_single_class, optional: optional)
340
+ multitype_collection_attr_reader(attribute, mapping_for_single_class, optional:)
344
341
  end
345
342
 
346
343
  def self.entity_collection_attr_writer(attribute, full_class, partial_class = nil, optional: false)
347
344
  mapping_for_single_class = [[ELSE, full_class, partial_class]]
348
- multitype_collection_attr_writer(attribute, mapping_for_single_class, optional: optional)
345
+ multitype_collection_attr_writer(attribute, mapping_for_single_class, optional:)
349
346
  end
350
347
 
351
348
  def self.entity_collection_attr_accessor(attribute, full_class, partial_class = nil, optional: false)
352
349
  mapping_for_single_class = [[ELSE, full_class, partial_class]]
353
- multitype_collection_attr_accessor(attribute, mapping_for_single_class, optional: optional)
350
+ multitype_collection_attr_accessor(attribute, mapping_for_single_class, optional:)
354
351
  end
355
352
  ###########################################################################################
356
353
 
@@ -419,7 +416,7 @@ module SBF
419
416
  return partial_class if partial_class && (value.keys - partial_class.defined_attributes.to_a).empty?
420
417
 
421
418
  # Otherwise
422
- return full_class if full_class
419
+ full_class
423
420
 
424
421
  else
425
422
  # No class conversion if the value is already an entity
@@ -6,7 +6,7 @@ module SBF
6
6
  attr_accessor :is_enabled, :custom_url_segment
7
7
  attr_reader :url
8
8
 
9
- HTTP_REGEX = %r{^https?://}.freeze
9
+ HTTP_REGEX = %r{^https?://}
10
10
 
11
11
  def url_with_scheme
12
12
  url.insert(0, 'https:') unless url.empty? || HTTP_REGEX.match(url)
@@ -1,6 +1,5 @@
1
1
  require 'stbaldricks/entities/lib/base'
2
2
  require 'stbaldricks/enums/permission'
3
- require 'set'
4
3
 
5
4
  module SBF
6
5
  module Client
@@ -14,7 +14,7 @@ module SBF
14
14
  TWITCH = 'twitch'.freeze
15
15
  end
16
16
 
17
- attr_accessor :id, :type, :identifier, :title, :caption
17
+ attr_accessor :id, :type, :identifier, :title, :caption, :is_chat_enabled
18
18
  end
19
19
  end
20
20
  end
@@ -42,8 +42,8 @@ module SBF
42
42
  end
43
43
 
44
44
  def instance_action(name)
45
- define_method(name) do |*args|
46
- result = endpoint.send(name, self, *args)
45
+ define_method(name) do |*args, **keywords|
46
+ result = endpoint.send(name, self, *args, **keywords)
47
47
  result unless result.is_a?(SBF::Client::TopLevelEntity)
48
48
  (%i(save create).include?(name) && result.errors?) ? false : result
49
49
  end
@@ -51,8 +51,8 @@ module SBF
51
51
 
52
52
  def class_action(name)
53
53
  singleton_class.class_eval do
54
- define_method(name) do |*args|
55
- endpoint.send(name, *args)
54
+ define_method(name) do |*args, **keywords|
55
+ endpoint.send(name, *args, **keywords)
56
56
  end
57
57
  end
58
58
  end
@@ -61,8 +61,8 @@ module SBF
61
61
  instance_action(name) if %i(save create).include?(name)
62
62
 
63
63
  if name == :update
64
- define_method(name) do |*args|
65
- result = endpoint.update(id, self, *args)
64
+ define_method(name) do |*args, **keywords|
65
+ result = endpoint.update(id, self, *args, **keywords)
66
66
  result unless result.is_a?(SBF::Client::TopLevelEntity)
67
67
  result.errors? ? false : result
68
68
  end
@@ -194,7 +194,7 @@ module SBF
194
194
  IN_MAINTENANCE = 'In maintenance'.freeze
195
195
  LOST_TO_CANCER = 'Lost to cancer'.freeze
196
196
  @list = {
197
- CANCER_FREE => 'cancer-free',
197
+ CANCER_FREE => 'cancer_free',
198
198
  IN_REMISSION => 'in_remission',
199
199
  IN_TREATMENT => 'in_treatment',
200
200
  IN_MAINTENANCE => 'in_maintenance',
@@ -26,9 +26,9 @@ module SBF
26
26
 
27
27
  def to_hash
28
28
  {
29
- http_code: http_code,
30
- data: data,
31
- error: error
29
+ http_code:,
30
+ data:,
31
+ error:
32
32
  }
33
33
  end
34
34
  end
@@ -112,7 +112,7 @@ module SBF
112
112
  private_class_method :valid_uri?
113
113
 
114
114
  def self.verify_ssl_peer?
115
- (ENV.fetch('VERIFY_SSL_PEER', true)).to_b
115
+ ENV.fetch('VERIFY_SSL_PEER', true).to_b
116
116
  end
117
117
  private_class_method :verify_ssl_peer?
118
118
  end
@@ -1,5 +1,5 @@
1
1
  module SBF
2
2
  module Client
3
- VERSION = '15.0.0.alpha.1'.freeze
3
+ VERSION = '15.0.0.alpha.2'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stbaldricks
3
3
  version: !ruby/object:Gem::Version
4
- version: 15.0.0.alpha.1
4
+ version: 15.0.0.alpha.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Firespring
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-08-19 00:00:00.000000000 Z
11
+ date: 2023-08-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemodel
@@ -128,40 +128,40 @@ dependencies:
128
128
  requirements:
129
129
  - - '='
130
130
  - !ruby/object:Gem::Version
131
- version: 0.13.1
131
+ version: 0.14.2
132
132
  type: :development
133
133
  prerelease: false
134
134
  version_requirements: !ruby/object:Gem::Requirement
135
135
  requirements:
136
136
  - - '='
137
137
  - !ruby/object:Gem::Version
138
- version: 0.13.1
138
+ version: 0.14.2
139
139
  - !ruby/object:Gem::Dependency
140
140
  name: pry-byebug
141
141
  requirement: !ruby/object:Gem::Requirement
142
142
  requirements:
143
143
  - - '='
144
144
  - !ruby/object:Gem::Version
145
- version: 3.9.0
145
+ version: 3.10.1
146
146
  type: :development
147
147
  prerelease: false
148
148
  version_requirements: !ruby/object:Gem::Requirement
149
149
  requirements:
150
150
  - - '='
151
151
  - !ruby/object:Gem::Version
152
- version: 3.9.0
152
+ version: 3.10.1
153
153
  - !ruby/object:Gem::Dependency
154
154
  name: pry-remote
155
155
  requirement: !ruby/object:Gem::Requirement
156
156
  requirements:
157
- - - "~>"
157
+ - - '='
158
158
  - !ruby/object:Gem::Version
159
159
  version: 0.1.8
160
160
  type: :development
161
161
  prerelease: false
162
162
  version_requirements: !ruby/object:Gem::Requirement
163
163
  requirements:
164
- - - "~>"
164
+ - - '='
165
165
  - !ruby/object:Gem::Version
166
166
  version: 0.1.8
167
167
  - !ruby/object:Gem::Dependency
@@ -226,28 +226,28 @@ dependencies:
226
226
  requirements:
227
227
  - - '='
228
228
  - !ruby/object:Gem::Version
229
- version: 1.30.1
229
+ version: 1.56.0
230
230
  type: :development
231
231
  prerelease: false
232
232
  version_requirements: !ruby/object:Gem::Requirement
233
233
  requirements:
234
234
  - - '='
235
235
  - !ruby/object:Gem::Version
236
- version: 1.30.1
236
+ version: 1.56.0
237
237
  - !ruby/object:Gem::Dependency
238
238
  name: rubocop-performance
239
239
  requirement: !ruby/object:Gem::Requirement
240
240
  requirements:
241
- - - "~>"
241
+ - - '='
242
242
  - !ruby/object:Gem::Version
243
- version: 1.10.2
243
+ version: 1.19.0
244
244
  type: :development
245
245
  prerelease: false
246
246
  version_requirements: !ruby/object:Gem::Requirement
247
247
  requirements:
248
- - - "~>"
248
+ - - '='
249
249
  - !ruby/object:Gem::Version
250
- version: 1.10.2
250
+ version: 1.19.0
251
251
  - !ruby/object:Gem::Dependency
252
252
  name: simplecov
253
253
  requirement: !ruby/object:Gem::Requirement
@@ -463,7 +463,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
463
463
  requirements:
464
464
  - - ">="
465
465
  - !ruby/object:Gem::Version
466
- version: 2.7.0
466
+ version: 3.2.2
467
467
  required_rubygems_version: !ruby/object:Gem::Requirement
468
468
  requirements:
469
469
  - - ">"