stbaldricks 6.10.0.alpha.2 → 6.10.0.alpha.3

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: 1605c99bb055c957dc88f932a4989f14ba6a025c8a29a906998b5782b26af4c0
4
- data.tar.gz: 71a3dbdc25e0215bc4aaaea6a7937f5a900563a4c4a2a21dd037fcb786b7dc24
3
+ metadata.gz: 7d2c95822ef58ba63f3c3adcbe5cad0abd46d011cdf8575408561d1424d1248c
4
+ data.tar.gz: 978126f5013285afd5396faca112357ec9cc806d6c9955a7a46d3bcdbb857a42
5
5
  SHA512:
6
- metadata.gz: c4d48872dfc10f7f5f89226c66620c4be43b3e3972541497906d35054f6615712eb745d71d5b8760126a971941d136e9c93000e653bd606e42f2c6c6b38b7d9e
7
- data.tar.gz: 334c0a5d02c2f826e04b0697dacb3434092e8abb324ba1fde15c3e13ddf455eb0dbc672f2c632aa996cbe4a55f590db5e14cc5f4afd4bdcce2b22566e44794e3
6
+ metadata.gz: f41a1feb7106d66ac5aa23aefdaaa1ab0e1713e1f1140950a0cb64fbb94f206353fad36607573352719c356c7f216cacb6439e722150da3c0b6ee2ffab0b4ddf
7
+ data.tar.gz: b22015c01e0e9f73ed807639ae8457ebf3eca17c87e6988d6cc07ec21f8ebdf8d854c95293d3d2036a169ad29cdd0d9faafafbd4943289b383a9501b45f0c20d
@@ -300,6 +300,7 @@ module SBF
300
300
  attr_accessor :amount
301
301
  attr_accessor :fee_amount
302
302
  attr_accessor :display_name
303
+
303
304
  multitype_attr_accessor(
304
305
  :recipient,
305
306
  [
@@ -6,6 +6,7 @@ module SBF
6
6
  module Status
7
7
  ACTIVE = 'active'
8
8
  PENDING = 'pending'
9
+ SUSPENDED = 'suspended'
9
10
  end
10
11
  end
11
12
  end
@@ -146,10 +146,7 @@ module SBF
146
146
  entity_attr_accessor :salon, 'SBF::Client::Participant::Roles::Barber::Salon'
147
147
  end
148
148
 
149
- class Shavee < SBF::Client::Participant::Roles::Role
150
- attr_accessor :requested_shavee_packet
151
- end
152
-
149
+ class Shavee < SBF::Client::Participant::Roles::Role; end
153
150
  class Volunteer < SBF::Client::Participant::Roles::Role; end
154
151
  class ShaveeRecruiter < SBF::Client::Participant::Roles::Role; end
155
152
  class TeamCaptain < SBF::Client::Participant::Roles::Role; end
@@ -152,7 +152,6 @@ module SBF
152
152
  class FullRecurringGift < SBF::Client::RecurringGift
153
153
  attr_accessor :status
154
154
  attr_accessor :amount
155
- attr_accessor :fee_amount
156
155
  attr_accessor :billing_day_of_month
157
156
  attr_accessor :last_collected_at
158
157
  attr_accessor :last_failed_at
@@ -237,16 +236,6 @@ module SBF
237
236
  ],
238
237
  optional: true
239
238
  )
240
-
241
- def amount=(value)
242
- amount_will_change!
243
- @amount = value.to_s.gsub(/[^0-9\.]/, '').to_f
244
- end
245
-
246
- def fee_amount=(value)
247
- fee_amount_will_change!
248
- @fee_amount = value.to_s.gsub(/[^0-9\.]/, '').to_f
249
- end
250
239
  end
251
240
  end
252
241
  end
@@ -1,5 +1,5 @@
1
1
  module SBF
2
2
  module Client
3
- VERSION = '6.10.0.alpha.2'
3
+ VERSION = '6.10.0.alpha.3'
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: 6.10.0.alpha.2
4
+ version: 6.10.0.alpha.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Firespring
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-12-12 00:00:00.000000000 Z
11
+ date: 2018-12-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemodel