nixenvironment 0.0.138.1 → 0.0.139

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 80713305481b9d88cb8cea09ddc4f496e5d91ec3d076072bc26edc49c48712e6
4
- data.tar.gz: 39759e22d2bf384c5fc75e1f4d0146a47d2d2caac13f9bff2e3429fd9abd9671
3
+ metadata.gz: 7199a3599c91166a606e90076b1bf4c2e6b8272e2a070c3b3a65dfe78f0c2e82
4
+ data.tar.gz: ea47ce9897bfc8dd3f0249f142cc224df1276d780bdbdd6c7e8183fbb6319524
5
5
  SHA512:
6
- metadata.gz: 73a1692d49dbf5c71f1a1fbc7f127bc87a098c9510472cd3e4b4f8d11982afa97c91af8ae76e4b53f2a5187036501d0ec35f6de6beb84f98377b77b84be26c0d
7
- data.tar.gz: 927fea2ebf73ba5ed84a519dc1e0b9fccf1c8be1690d320f2dbd4a5798fcad9ecc26e56b757f47c7bd8dc5f86a54e340f91f31508477f27369308c90137110ab
6
+ metadata.gz: 4dfae13e9b12d8d1f868e74c74abb16d8a0d105d8ff33482b63093b04834f770698f94bf2aa0df7ce79dd67056fbebd3e88cd8aa8a5f6ffd30e997a66ba4c49f
7
+ data.tar.gz: 7000112ed4e91142d854d01586f431b3499bb0ec50aa3ae43c32ed33914f0ca290866db557e9602c716f9a9fb5becf18b4105b2a3c0e49691ab3e333487e9661
data/bin/nixenvironment CHANGED
@@ -97,6 +97,7 @@ command :build do |c|
97
97
  $build_number = options.build_number
98
98
 
99
99
  if is_unity_platform
100
+ ENV['UNITY_BUILD'] = 'UNITY_BUILD'
100
101
  unity_path = ENV[options.unity_path] || options.unity_path
101
102
  unity_build(options.config, unity_platform, unity_path, options.development_build, options.connect_profiler,
102
103
  options.keystore_path, options.keystore_password, options.key_alias_name, options.key_alias_password)
@@ -467,21 +467,14 @@ 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 '#{original_bundle_name}' will not be modified"
470
+ if new_bundle_name == original_bundle_name && new_bundle_name == original_bundle_display_name
471
+ puts_header "--> Bundle name '#{new_bundle_name}' will not be modified"
472
472
  else
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 } )
473
+ puts_header "--> Rename bundle name/bundle display name from '#{original_bundle_name}'/'#{original_bundle_display_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, 'CFBundleDisplayName' => 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
-
485
478
  is_bundle_name_changed
486
479
  end
487
480
 
@@ -1,3 +1,3 @@
1
1
  module Nixenvironment
2
- VERSION = '0.0.138.1'
2
+ VERSION = '0.0.139'
3
3
  end
@@ -48,7 +48,7 @@ module Nixenvironment
48
48
  end
49
49
 
50
50
  build_args << xc_args if xc_args.present?
51
- build_args << '| xcpretty -c; exit ${PIPESTATUS[0]}'
51
+ build_args << '| tee xcodebuild.log | xcpretty -c && cat xcodebuild.log && exit ${PIPESTATUS[0]}'
52
52
 
53
53
  execute(nil, build_args)
54
54
  end
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.138.1
4
+ version: 0.0.139
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: 2018-11-01 00:00:00.000000000 Z
12
+ date: 2018-08-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: cocoapods
@@ -337,7 +337,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
337
337
  version: '0'
338
338
  requirements: []
339
339
  rubyforge_project:
340
- rubygems_version: 2.7.7
340
+ rubygems_version: 2.7.4
341
341
  signing_key:
342
342
  specification_version: 4
343
343
  summary: NIX projects build and deploy utility