devise_scim 0.1.12 → 0.1.14
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: f7eff3b7611a100515b696047c48a06bd6522ee74b08ca4dc1b6bafcc80dc0ca
|
|
4
|
+
data.tar.gz: 287fc4272e08dbc2025994b5e03bdb9d1ac94d836da7bc213d5157f01f0127b6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3ce6b3b4b645c9e3f454551895f67b5b3243b8a067b1f0693afea3a625861a317a53615816483807425b20c96a85e04d20e8ff478e1de3d46134f02b9185516c
|
|
7
|
+
data.tar.gz: df4c4ba45af8f26c96f2a403975eb0d2dc8af669e56b00efe843daa068badf349da2564ef7120171f28108d44aa4c8bc89f8c7e6aaf922b9e02d19a117a393ce
|
data/CHANGELOG.md
CHANGED
|
@@ -32,7 +32,7 @@ module DeviseScim
|
|
|
32
32
|
when Conjunction then visit(node.left).and(visit(node.right))
|
|
33
33
|
when Disjunction then visit(node.left).or(visit(node.right))
|
|
34
34
|
when AttrPath then visit_attr_path(node)
|
|
35
|
-
else raise InvalidFilter, "Unknown AST node: #{node.class}"
|
|
35
|
+
else raise InvalidFilter, "Unknown AST node: #{node.class}" # :nocov:
|
|
36
36
|
end
|
|
37
37
|
end
|
|
38
38
|
|
|
@@ -53,7 +53,7 @@ module DeviseScim
|
|
|
53
53
|
when "ge" then col.gteq(val)
|
|
54
54
|
when "lt" then col.lt(val)
|
|
55
55
|
when "le" then col.lteq(val)
|
|
56
|
-
else raise InvalidFilter, "Unknown operator '#{node.op}'"
|
|
56
|
+
else raise InvalidFilter, "Unknown operator '#{node.op}'" # :nocov:
|
|
57
57
|
end
|
|
58
58
|
end
|
|
59
59
|
# rubocop:enable Metrics/CyclomaticComplexity
|
data/lib/devise_scim/version.rb
CHANGED