swifter_enum 0.9.5 → 0.9.6
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bc0cc85f030b595af2b26f01beabc39a89ca0b93225e15f89dbe4bb42a584769
|
4
|
+
data.tar.gz: 4b59b30641a70706fd33cf194ae9d3fb74dc9bb79431dcaf125be229df73853e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e76f0fdc3fc9fdce9f4765ec015c1081f24b7a39ae406969156e40912f5265174050aca81167d6d5631540e26531f604f7b80ad0cd7ae4c3efb63413f0f2cf1c
|
7
|
+
data.tar.gz: 95e05c2e64a25feb0de2c20b62cca2faa522bd55b173b8c592cb56ed30b847dc645391dae8da7dfb69dfe3d555feade28f3968004dc2b84b6337f204abb3f9dd
|
data/lib/swifter_enum/base.rb
CHANGED
@@ -3,18 +3,18 @@ require "active_model"
|
|
3
3
|
module SwifterEnum
|
4
4
|
class SwifterEnumValidator < ActiveModel::EachValidator
|
5
5
|
def validate_each(record, attribute, a_value)
|
6
|
-
if
|
7
|
-
record.errors.add(attribute, "#{a_value.value} is not a valid subclass of SwifterEnum")
|
8
|
-
end
|
9
|
-
|
10
|
-
if a_value.value.nil?
|
6
|
+
if a_value.nil?
|
11
7
|
return if options[:allow_nil]
|
12
8
|
|
13
9
|
record.errors.add(attribute, "nil value for #{attribute} is not allowed")
|
10
|
+
return
|
11
|
+
end
|
12
|
+
|
13
|
+
if !a_value.is_a?(SwifterEnum::Base) || a_value.instance_of?(SwifterEnum::Base)
|
14
|
+
record.errors.add(attribute, "#{a_value.value} is not a valid subclass of SwifterEnum")
|
14
15
|
end
|
15
16
|
|
16
17
|
unless a_value.class.values.key?(a_value.value)
|
17
|
-
# binding.b
|
18
18
|
record.errors.add(attribute, "#{a_value.value} is not a valid #{attribute} type")
|
19
19
|
end
|
20
20
|
end
|
data/lib/swifter_enum/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: swifter_enum
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rob Jonson
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-09-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|