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 +4 -4
- data/README.md +2 -0
- data/lib/snm/enum/transition/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 98c4797b5c7432b0ab2a0d928a44a1be67acb53e56d024b07de6a72165b72868
|
4
|
+
data.tar.gz: cdfacf27c6fc2d9bfe581e75d1834c070fecae231fe1f6cb70abbe14e25bd7a7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
|
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.
|
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:
|
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:
|
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
|