dynamic-active-model 0.4.5 → 0.4.6
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6ef466cf4634fec36648e25312d9a4729988584a86cb5dfc071c49b5515a5845
|
4
|
+
data.tar.gz: 895ea1c5eb60706bbc795c75b4f15aca8e833d3cb56d390985973d4d32053e0f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0c2055798c8e10c2f3d1172f9b9c7d99983cd61da0a88b512528e8c43b2d309179d5cb6c15f00890c66c9fd1c29e8b1e34ed5ba3c0e0d103418f9d11b22e167a
|
7
|
+
data.tar.gz: 2d5e76d0d77276fd867b160d33ebfa59d2cb790a5968a30b8a94942fecda9aadcd6703c5b58b2d12bb5d8cd673b264ff472a00398a391f959b7670a060570f18
|
@@ -6,8 +6,15 @@ module DynamicActiveModel
|
|
6
6
|
module DangerousAttributesPatch
|
7
7
|
def self.included(base)
|
8
8
|
if base.attribute_names
|
9
|
-
columns_to_ignore = base.
|
10
|
-
|
9
|
+
columns_to_ignore = base.columns.select do |column|
|
10
|
+
if column.type == :boolean
|
11
|
+
base.dangerous_attribute_method?(column.name)
|
12
|
+
base.dangerous_attribute_method?(column.name + '?')
|
13
|
+
else
|
14
|
+
base.dangerous_attribute_method?(column.name)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
base.ignored_columns = columns_to_ignore.map(&:name)
|
11
18
|
end
|
12
19
|
end
|
13
20
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dynamic-active-model
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Doug Youch
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-03-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|