mmine 0.6.1 → 0.6.2
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 +4 -4
- data/lib/mmine/notification_extension_integrator.rb +6 -0
- data/lib/mmine/version.rb +1 -1
- 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: 49206a746b2879182db5a853b699d99b645c8859b77e9e6720300f16c48693d4
|
4
|
+
data.tar.gz: fe7acb48b6c9f9abe18223c3e475b7b749e817de780edc048131663ec304a7c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2108ec38855e5a380ddf929db3b114f94a7c0aa181704ae6762e0fc3c869b74271e562b9666d2776feae03b1a42badf043f1df0f5e0d37499d095707e1246b17
|
7
|
+
data.tar.gz: 0e7452c31d311225725e30847e569ee66f217671c910c749e9e541e15d99167dfa1fc6998facd13a816470c2bb215fd15a259cd07777903fae38229285bef84f
|
@@ -295,6 +295,9 @@ class NotificationExtensionIntegrator
|
|
295
295
|
end
|
296
296
|
|
297
297
|
def setupExtensionTargetCapabilities
|
298
|
+
unless @project.root_object.attributes["TargetAttributes"]
|
299
|
+
@project.root_object.attributes["TargetAttributes"] = Hash.new
|
300
|
+
end
|
298
301
|
exitsting_capabilities = @project.root_object.attributes["TargetAttributes"][@ne_target.uuid]
|
299
302
|
mobilemessaging_capabilities = { "SystemCapabilities" =>
|
300
303
|
{
|
@@ -309,6 +312,9 @@ class NotificationExtensionIntegrator
|
|
309
312
|
end
|
310
313
|
|
311
314
|
def setupMainTargetCapabilities
|
315
|
+
unless @project.root_object.attributes["TargetAttributes"]
|
316
|
+
@project.root_object.attributes["TargetAttributes"] = Hash.new
|
317
|
+
end
|
312
318
|
exitsting_capabilities = @project.root_object.attributes["TargetAttributes"][@main_target.uuid]
|
313
319
|
mobilemessaging_capabilities = { "SystemCapabilities" =>
|
314
320
|
{
|
data/lib/mmine/version.rb
CHANGED