acts_as_living 0.1.15 → 0.1.16

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: 12b6a909f4824398a5021fc625010ea556647fcb0997b74f4e62b2783be69305
4
- data.tar.gz: 7c8b6524858879dcc73fac600f0aa50530302eb7ade4c17a4d4f6af9b284dd85
3
+ metadata.gz: 856f21c5919a8fcea61ad831f12fd5b9fb258b29f9ec5a85ce535dedb9d47e51
4
+ data.tar.gz: a38410651c7ef62461f70c0f561475f80786a7f7b3a93cc8493f88c20b1a0265
5
5
  SHA512:
6
- metadata.gz: 23499a06971844d813f54856a6b987d734d7ce6a9545d81226a8ad4e68e73da1375b91fe6741509fbeb282c05b02a1b78f5e8ee9b631557f4c59aa3ff3919a9d
7
- data.tar.gz: b1d2d9c72c27cf11ad9f956f141e235068777f9878cb77bfd12d2452d3cbae4bbb0723e4ce8ad33190cbddaddac690bd765c49d6367fb134f53f44b24c0ce1ee
6
+ metadata.gz: ad159cbc05a79900e7d4f2321f3d4bb67a8f2a15becf3e5a44e263f497817472e4693dce0d7bb33bc03698ce7028a56e2a9cb5d1e72f3bb898a46f182cb0ea10
7
+ data.tar.gz: c54a511823f00e85594bfc82229aff09f91dddc70b9d089e9fa1cfd0ea0929077b85b268f51de82ed22374c4bcf5cc66628a1d2d1078a246564cfc43d9cc7128
@@ -143,12 +143,12 @@ module ActsAsLiving::MethodsDefiner
143
143
  last_stage == stage
144
144
  end
145
145
 
146
- def first_stage_stage
146
+ def first_stage
147
147
  (stage_keys - %i[cancelled]).first
148
148
  end
149
149
 
150
150
  def first_stage?(stage)
151
- first_stage_stage == stage
151
+ first_stage == stage
152
152
  end
153
153
 
154
154
  def death
@@ -24,9 +24,9 @@ module ActsAsLiving::ValidationsDefiner
24
24
  end
25
25
 
26
26
  def stage_is_first_stage
27
- return if stage == self.class.first_stage
27
+ return if first_stage?
28
28
 
29
- errors.add(:stage, "Contract has to be initialized with '#{self.class.first_stage}' stage")
29
+ errors.add(:stage, "Contract has to be initialized with '#{first_stage}' stage")
30
30
  end
31
31
  end
32
32
  end
@@ -1,3 +1,3 @@
1
1
  module ActsAsLiving
2
- VERSION = "0.1.15"
2
+ VERSION = "0.1.16"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: acts_as_living
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.15
4
+ version: 0.1.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Guilherme Andrade