stbaldricks 10.3.0.alpha.1 → 10.3.0.alpha.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a12c5112f0bff99a35a5d238378725bf60f708dbf5905053b7da1c7fe2fd9433
4
- data.tar.gz: 2be89af5ab01879ba273ca67a2a4a7d57adc296b680641357ccbff0a8f3a1f11
3
+ metadata.gz: e3226dbe5016f2281a73a36aeda2e6e8f71d282047acd7282bfbb226b8509e6d
4
+ data.tar.gz: cf908e517da3b8050c93890cc0f41107d5f17d98ad0950fb11bdfed1d26f5200
5
5
  SHA512:
6
- metadata.gz: 17f67fb3f3a58475e55adbef711e34abb96c3613004290cb7984f367c6fe789dccb60f5546ae4f6269eacd4d2ae8917175fc994def9a82f3dcc7523aeba5878a
7
- data.tar.gz: 6a54bd0b4816cbac39160d11aae5ea22da06e88e03494b7a1bfa42a7e6263210abf5bd0b9b3d0772fce99c24d95a06e83b1287449eeb67d46981dbf331bf6fdb
6
+ metadata.gz: 10191639dac701aa056138dc14053007dc55ba49f585eeb907af9492144083df3dbf282d718b344dfd4e95efec5489511aba4e4dcaa365ad2589cfacf3457015
7
+ data.tar.gz: cb150dac2cf4e88102345de422d52cd81fd6af5b653222df2e03b8fc8ef0d6af1b145ecb75e1c0e3a19a861a2d8e987486a31f200ac8b8bad81dabccd17d269a
@@ -24,7 +24,6 @@ module SBF
24
24
  action :external_sync
25
25
 
26
26
  disallow_instantiation
27
-
28
27
  class EmployerMatching < SBF::Client::BaseEntity
29
28
  attr_accessor :is_match, :employer, :matched_donation_id
30
29
 
@@ -298,7 +297,6 @@ module SBF
298
297
  class PartialDonation < SBF::Client::Donation
299
298
  attr_accessor :id
300
299
  end
301
-
302
300
  class FullDonation < SBF::Client::Donation
303
301
  attr_accessor :id
304
302
  attr_accessor :status
@@ -133,7 +133,6 @@ module SBF
133
133
  MUNICIPALITY = 'municipality'
134
134
  OTHER = 'other'
135
135
  LEGACY = 'legacy'
136
- VIRTUAL = 'virtual'
137
136
  end
138
137
 
139
138
  attr_accessor :type
@@ -206,7 +206,6 @@ module SBF
206
206
  end
207
207
  end
208
208
  end
209
-
210
209
  class Occupation < SBF::Client::BaseEntity
211
210
  module Type
212
211
  STUDENT = 'Student'
@@ -178,7 +178,6 @@ module SBF
178
178
  class PartialRecurringGift < SBF::Client::RecurringGift
179
179
  attr_accessor :id
180
180
  end
181
-
182
181
  class FullRecurringGift < SBF::Client::RecurringGift
183
182
  attr_accessor :status
184
183
  attr_accessor :event_year
@@ -1,5 +1,5 @@
1
1
  module SBF
2
2
  module Client
3
- VERSION = '10.3.0.alpha.1'
3
+ VERSION = '10.3.0.alpha.2'
4
4
  end
5
5
  end
@@ -6,7 +6,7 @@ module Faker
6
6
  def ascii_last_name
7
7
  loop do
8
8
  name = last_name
9
- return name if /^[a-zA-Z]*$/.match(name)
9
+ return name if /^[a-zA-Z]*$/.match?(name)
10
10
  end
11
11
  end
12
12
  end
@@ -19,7 +19,7 @@ module Faker
19
19
  def ascii_city
20
20
  loop do
21
21
  name = city
22
- return name if /^[a-zA-Z]*$/.match(name)
22
+ return name if /^[a-zA-Z]*$/.match?(name)
23
23
  end
24
24
  end
25
25
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stbaldricks
3
3
  version: !ruby/object:Gem::Version
4
- version: 10.3.0.alpha.1
4
+ version: 10.3.0.alpha.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Firespring
@@ -234,6 +234,20 @@ dependencies:
234
234
  - - ">="
235
235
  - !ruby/object:Gem::Version
236
236
  version: '0'
237
+ - !ruby/object:Gem::Dependency
238
+ name: rubocop-performance
239
+ requirement: !ruby/object:Gem::Requirement
240
+ requirements:
241
+ - - ">="
242
+ - !ruby/object:Gem::Version
243
+ version: '0'
244
+ type: :development
245
+ prerelease: false
246
+ version_requirements: !ruby/object:Gem::Requirement
247
+ requirements:
248
+ - - ">="
249
+ - !ruby/object:Gem::Version
250
+ version: '0'
237
251
  - !ruby/object:Gem::Dependency
238
252
  name: simplecov
239
253
  requirement: !ruby/object:Gem::Requirement