morse_fields_validator 1.1.1 → 1.1.2
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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 48c54ac2b234c81347e277539e438d5a70d8a418
|
4
|
+
data.tar.gz: cd9f035343ef6753a04cb1a934b91fb1198ce9b6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 42257d3905cad22a61d7c85f74d821f9edd42089f8bb07da04ff79bfb04f3b11091579a195d7d55db003c59bcf957adc23d3e7fbc2b16787f413150a8f23c78b
|
7
|
+
data.tar.gz: 8c4fb599a52d18bc507323f98a7a57f8c977ed7bdde79b2819775b5f1584454d0d6815b425f46ebb62221c5c515005702bfd08c119c9b896bca58f69090b24e5
|
@@ -14,11 +14,11 @@ module FieldsValidator
|
|
14
14
|
end
|
15
15
|
|
16
16
|
def required_attributes
|
17
|
-
defined?(super) and super.is_a?(Array) ? super : []
|
17
|
+
(defined?(super) and super.is_a?(Array)) ? super : []
|
18
18
|
end
|
19
19
|
|
20
20
|
def required_database_fields
|
21
|
-
defined?(super) and super.is_a?(Array) ? super : []
|
21
|
+
(defined?(super) and super.is_a?(Array)) ? super : []
|
22
22
|
end
|
23
23
|
|
24
24
|
end
|