mmine 0.8.3 → 0.8.4
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 +2 -2
- 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: 568339f5e23071ffc9666bac964da92680eb8d85a5a2ecc0c04cfb27e7680055
|
4
|
+
data.tar.gz: 7b8ed0e52fe86d48350b195865191238a41d5698bfca83177e9a542622400c31
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 29212428f38fb9cd2712aee30546a65fecddc19ae35495aa4113c0cc823cd67241009a11e985ac4ebdc040545671e30849ab846b54362dd6099722e9b831f4a8
|
7
|
+
data.tar.gz: ceb6b20d746a9ea5da7b1872b49c9c7f07f45c0b37aa880d04f004295773466a5e2c14b34581efffc96073849da57a1dc9f37136fb10c657cccecca3bfd90394
|
@@ -190,7 +190,7 @@ class NotificationExtensionIntegrator
|
|
190
190
|
(@main_build_configurations_release + @main_build_configurations_debug).each do |config|
|
191
191
|
bundleId = config.resolve_build_setting(key)
|
192
192
|
if bundleId == nil
|
193
|
-
plist_path = resolve_absolute_paths(config.resolve_build_setting("INFOPLIST_FILE")).first
|
193
|
+
plist_path = resolve_absolute_paths([config.resolve_build_setting("INFOPLIST_FILE")]).first
|
194
194
|
bundleId = get_xml_string_value(key, plist_path)
|
195
195
|
@logger.info("Composing #{key} from main target info plist: #{bundleId}.")
|
196
196
|
else
|
@@ -420,7 +420,7 @@ class NotificationExtensionIntegrator
|
|
420
420
|
return group_reference
|
421
421
|
end
|
422
422
|
|
423
|
-
def resolve_absolute_paths(paths)
|
423
|
+
def resolve_absolute_paths(paths)
|
424
424
|
paths.map do |path|
|
425
425
|
ret = path
|
426
426
|
["$(PROJECT_DIR)", "$PROJECT_DIR"].each do |proj_dir|
|
data/lib/mmine/version.rb
CHANGED