nixenvironment 0.0.140 → 0.0.141
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/nixenvironment/archiver.rb +11 -4
- data/lib/nixenvironment/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: acf6d53aea7d6db73447ebfbbdca2da15e4a333d73bf13b2fa703f1452ab0820
|
|
4
|
+
data.tar.gz: bff85b8e2ed3b16d7e75a463916766a0279b4a906193924bde2610a574e15550
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 51d5f55ea46ff25dc6d9f6c83d2f4d7dfcc2ec7864a2e11909d4ece4006e8d35e07d2966b2f4181bc073f0c4fcc29ba194ee118a094f6b47b185ae8295d8c2c1
|
|
7
|
+
data.tar.gz: 826568a6ba3c2332a2e4ff82075edcef06b7a837fda2b32eae4cacf419ee0845fc081150e22314ddf2ff5d01b1e65e4dc5d44163c3585b622a0664247aa42699
|
|
@@ -467,14 +467,21 @@ module Nixenvironment
|
|
|
467
467
|
|
|
468
468
|
is_bundle_name_changed = false
|
|
469
469
|
|
|
470
|
-
if new_bundle_name == original_bundle_name
|
|
471
|
-
puts_header "--> Bundle name '#{
|
|
470
|
+
if new_bundle_name == original_bundle_name
|
|
471
|
+
puts_header "--> Bundle name '#{original_bundle_name}' will not be modified"
|
|
472
472
|
else
|
|
473
|
-
puts_header "--> Rename bundle name
|
|
474
|
-
set_plist_values_in_app_path(app_product_path, { 'CFBundleName' => new_bundle_name
|
|
473
|
+
puts_header "--> Rename bundle name from '#{original_bundle_name}' into '#{new_bundle_name}' in '#{app_product_path}' Info.plist ..."
|
|
474
|
+
set_plist_values_in_app_path(app_product_path, { 'CFBundleName' => new_bundle_name } )
|
|
475
475
|
is_bundle_name_changed = true
|
|
476
476
|
end
|
|
477
477
|
|
|
478
|
+
if new_bundle_name == original_bundle_display_name
|
|
479
|
+
puts_header "--> Bundle display name '#{original_bundle_display_name}' will not be modified"
|
|
480
|
+
else
|
|
481
|
+
puts_header "--> Rename bundle display name from '#{original_bundle_display_name}' into '#{new_bundle_name}' in '#{app_product_path}' Info.plist ..."
|
|
482
|
+
set_plist_values_in_app_path(app_product_path, { 'CFBundleDisplayName' => new_bundle_name } )
|
|
483
|
+
end
|
|
484
|
+
|
|
478
485
|
is_bundle_name_changed
|
|
479
486
|
end
|
|
480
487
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: nixenvironment
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.141
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Karen
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2019-02-13 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: cocoapods
|