snm-enum-transition 0.1.0 → 0.1.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: 553f66e61a7a58bbc3d64fa123f903e8f0e416a600f2d0313766bc35c9e00358
4
- data.tar.gz: 1740b4d0b5f255e6f9d7674eb86f56c3345f73a4add555c23b6f120981e4819d
3
+ metadata.gz: 98c4797b5c7432b0ab2a0d928a44a1be67acb53e56d024b07de6a72165b72868
4
+ data.tar.gz: cdfacf27c6fc2d9bfe581e75d1834c070fecae231fe1f6cb70abbe14e25bd7a7
5
5
  SHA512:
6
- metadata.gz: 7d894a61696c6b7139c85f1cbbb8ce4e610840124973a08fdf2dc9a82a0b242f0b59c76aa692f55f5f513b033be990d1547846d9c88e35f140b5c3a32cf065ff
7
- data.tar.gz: dad1895e522b52acdef011088ea7c5822495b6f42e0f1f35ba160236a0462ba852c077cc41367fe667d6c5044ae72256a9a7f1360cae24e88b58e6d5fd25b8c8
6
+ metadata.gz: 7c0cda22340bded805767deca2757e803972c108cc8e05498b6c3e88f6e79855677529c06c744f3427af96db05e6ba37d9b96c3ccaf40eaff282884049aa2a39
7
+ data.tar.gz: ac31f4d29fdc7e799b55cf8d03a38e13925c3915a3c4a6831e0bf048475895f5c8db6ee52053888950e49c6c04bef48440321d49894cb11666b1ffdad057a23a
data/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ <a href="https://badge.fury.io/rb/snm-enum-transition"><img src="https://badge.fury.io/rb/snm-enum-transition.svg" alt="Gem Version" height="18"></a>
2
+
1
3
  # Snm::Enum::Transition
2
4
  Active Record ENUM based state machine. Whether you can control enum transation from one state to another state. Suppose you have an user model and you want to once user has been rejected he can't be verified, You can achive this job easily using this library.
3
5
 
@@ -1,7 +1,7 @@
1
1
  module Snm
2
2
  module Enum
3
3
  module Transition
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.2"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: snm-enum-transition
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - snmmaurya
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 7.0.8.4
19
+ version: '5.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: 7.0.8.4
26
+ version: '5.0'
27
27
  description: Active Record ENUM based state machine. Whether you can control enum
28
28
  transation from one state to another state. Suppose you have an user model and you
29
29
  want to once user has been rejected he can't be verified, You can achive this job