mmine 0.8.1 → 0.8.3
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 +7 -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: c4290f89a2a67991b7440439cc327b503af6187d1cacda10a960a181d0715fc0
|
4
|
+
data.tar.gz: a87d5f8a9d517633ba5b2d1e9c3f68ef6eac9f7ba920d035d5936261ce64d759
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a75fed26d720d19c568a1654e2f89e2d4968f0b1d6b0ec131ac41bdad3634bbfbd2baf07796bc49862bb8c1f785e673706d6bb14ceb2f2c46c71467d44f122cf
|
7
|
+
data.tar.gz: a8a01df4c03a62f7d8bcbcc6a05e08056b35cee20ded9d852aad932f188d035f3f8f824bd84f63b638947ec59ab4bde3913f16cbba9298642555a7b785eb7e0e
|
@@ -121,6 +121,13 @@ class NotificationExtensionIntegrator
|
|
121
121
|
@extension_target.frameworks_build_phase.remove_file_reference(ref)
|
122
122
|
}
|
123
123
|
|
124
|
+
unless @main_target.build_configurations.any? { |config| config.name == "Release"}
|
125
|
+
@extension_target.build_configuration_list.build_configurations.delete_if { |config| config.name == "Release"}
|
126
|
+
end
|
127
|
+
unless @main_target.build_configurations.any? { |config| config.name == "Debug"}
|
128
|
+
@extension_target.build_configuration_list.build_configurations.delete_if { |config| config.name == "Debug"}
|
129
|
+
end
|
130
|
+
|
124
131
|
@logger.info("Notification extension target debug build settings:\n#{JSON.pretty_generate(@extension_build_settings_debug)}")
|
125
132
|
@logger.info("Notification extension target release build settings:\n#{JSON.pretty_generate(@extension_build_settings_release)}")
|
126
133
|
end
|
data/lib/mmine/version.rb
CHANGED