dtk_crd_parser 0.0.123 → 0.0.124
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/crd_parser/base_class/helper_mixins.rb +3 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e25951c9590fb5421ff128f269cf8b4aeb0714341d202a50f2807d902248e8c0
|
4
|
+
data.tar.gz: 67326b64524a8ddc95d019034f7da4766f9acfca50f7787d8d71c676df649d03
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 243f6deb965c8cf6835db8bf5758e52bcfc342f8ed290847b6de65e5326000226cfc06a3a088af33e7eda43e4a087bfccbbba4311e9808774bd135f24fa6fb0b
|
7
|
+
data.tar.gz: 27cd00a77fa354770fce6875a6724b3a2c6ee4523e70e714660f7a874841851107224e934fd701d41a0355398b3843c54d7347aba1b49fb9268e5d6c69e8a7cd
|
@@ -3,6 +3,9 @@ module DTK::CrdParser
|
|
3
3
|
module Helper
|
4
4
|
module ClassAndInstanceMixin
|
5
5
|
# Helper functions want to have available in all classes
|
6
|
+
def self.isOnSpecificNode(actionComponent)
|
7
|
+
actionComponent.include? "/"
|
8
|
+
end
|
6
9
|
|
7
10
|
def self.destructureActionComponent(actionComponent)
|
8
11
|
# regex to match component: module::name[attrName].action
|