nixenvironment 0.0.16 → 0.0.17
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/bin/nixenvironment +8 -5
- data/lib/nixenvironment/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 39e76a59a16f97b12ab2ffc6159ad4d7cb4d2973
|
|
4
|
+
data.tar.gz: 897a20085d5fc9782a4b4f65cd3d95c5b4c3bed5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 01ae0131a80546d5be728ff5abb038bb0ce018e4a01127756042c8b169b71ee8e6c2ba4405b025b1ffe1dac3b8e1ac8f90727a85a3ac26cf39138dc194bb1646
|
|
7
|
+
data.tar.gz: b30b298bdecddb0b081a296ded44a56e91390644fe0b0a4961b050216ab8392a284ab1f228e010134ab0d3a0b5864ccb5364950f42e3a4de8c0913ba9a922052
|
data/bin/nixenvironment
CHANGED
|
@@ -70,7 +70,7 @@ command :build do |c|
|
|
|
70
70
|
enable_ci_build(options.ci_build)
|
|
71
71
|
build_settings = setup(options.config)
|
|
72
72
|
prebuild(build_settings, options.config)
|
|
73
|
-
build(options.config, options.ipa)
|
|
73
|
+
build(build_settings, options.config, options.ipa)
|
|
74
74
|
restore_info_plist
|
|
75
75
|
end
|
|
76
76
|
end
|
|
@@ -362,7 +362,7 @@ def prebuild(build_settings, config)
|
|
|
362
362
|
# system("#{tag_icons} @config['ICONS_PATH']")
|
|
363
363
|
end
|
|
364
364
|
|
|
365
|
-
def build(config, ipa)
|
|
365
|
+
def build(build_settings, config, ipa)
|
|
366
366
|
build = File.join(BUILD_SCRIPTS_PATH, 'Build.py')
|
|
367
367
|
|
|
368
368
|
build_success = nil
|
|
@@ -374,14 +374,16 @@ def build(config, ipa)
|
|
|
374
374
|
--configuration \"#{config}\"\
|
|
375
375
|
--sdk \"#{@config['SDK']}\"\
|
|
376
376
|
--env-var-prefix \"#{@config['ENV_VAR_PREFIX']}\"\
|
|
377
|
-
DEBUG_INFORMATION_FORMAT=\"dwarf-with-dsym\"
|
|
377
|
+
DEBUG_INFORMATION_FORMAT=\"dwarf-with-dsym\"\
|
|
378
|
+
DWARF_DSYM_FOLDER_PATH=\"#{build_settings['CONFIGURATION_BUILD_DIR']}\"")
|
|
378
379
|
else
|
|
379
380
|
build_success = system("#{build} --project \"#{@config['PROJECT_TO_BUILD']}\"\
|
|
380
381
|
--scheme \"#{@config['WORKSPACE_SCHEME_TO_BUILD']}\"\
|
|
381
382
|
--configuration \"#{config}\"\
|
|
382
383
|
--sdk \"#{@config['SDK']}\"\
|
|
383
384
|
--env-var-prefix \"#{@config['ENV_VAR_PREFIX']}\"\
|
|
384
|
-
DEBUG_INFORMATION_FORMAT=\"dwarf-with-dsym\"
|
|
385
|
+
DEBUG_INFORMATION_FORMAT=\"dwarf-with-dsym\"\
|
|
386
|
+
DWARF_DSYM_FOLDER_PATH=\"#{build_settings['CONFIGURATION_BUILD_DIR']}\"")
|
|
385
387
|
end
|
|
386
388
|
elsif @config['WORKSPACE_TO_BUILD'] and @config['WORKSPACE_TO_BUILD'].length > 0
|
|
387
389
|
build_success = system("#{build} --workspace \"#{@config['WORKSPACE_TO_BUILD']}\"\
|
|
@@ -389,7 +391,8 @@ def build(config, ipa)
|
|
|
389
391
|
--configuration \"#{config}\"\
|
|
390
392
|
--sdk \"#{@config['SDK']}\"\
|
|
391
393
|
--env-var-prefix \"#{@config['ENV_VAR_PREFIX']}\"\
|
|
392
|
-
DEBUG_INFORMATION_FORMAT=\"dwarf-with-dsym\"
|
|
394
|
+
DEBUG_INFORMATION_FORMAT=\"dwarf-with-dsym\"\
|
|
395
|
+
DWARF_DSYM_FOLDER_PATH=\"#{build_settings['CONFIGURATION_BUILD_DIR']}\"")
|
|
393
396
|
end
|
|
394
397
|
|
|
395
398
|
unless build_success
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.17
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Karen Arzumanian
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-12-
|
|
11
|
+
date: 2014-12-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|