ecb 0.0.34 → 0.0.35
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/commands/xcode_build.rb +3 -7
- data/lib/info.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: 5b8e47611b6c9ace54508c7cf03de8b5b0d6df83
|
4
|
+
data.tar.gz: 88e78d3a5aec7eb74ea9ee3896aa120304cac45b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b13d6bbaaff9c7b20b66c957f0c5f13e620f208b4f8ed5140fb432e12aaeaaa8fd3be501d10f25375d7d8a95e32c25068f8183fbfc57a8bcd7ed9f0d4fa9e51a
|
7
|
+
data.tar.gz: 2794a86ca86888de93658f60e21f870e9a9ee58ce82b704bc87f5457802889f9942e1bccc2c1e8b5e5c4b29e47e890be2a9bfa94f9000b9f2799e4935433464e
|
data/lib/commands/xcode_build.rb
CHANGED
@@ -84,11 +84,7 @@ module Commands
|
|
84
84
|
itunes_artwork = build[:itunes_artwork]
|
85
85
|
target_file = build[:target_file]
|
86
86
|
|
87
|
-
|
88
|
-
archive = 'archive'
|
89
|
-
else
|
90
|
-
archive = ''
|
91
|
-
end
|
87
|
+
archive = archive_build ? 'archive' : ''
|
92
88
|
|
93
89
|
cmd = "xcodebuild #{archive} -workspace #{workspace} -scheme #{scheme} -xcconfig '#{xcconfig}' -configuration #{configuration} -archivePath '#{deliverablesPath}/#{archiveName}' #{extra_configs}"
|
94
90
|
if EcbSharedLib::CL.do_cmd_result(cmd, '.') != 0
|
@@ -127,8 +123,8 @@ module Commands
|
|
127
123
|
cmd = "rm -Rf #{deliverablesPath}"
|
128
124
|
EcbSharedLib::CL.do_cmd(cmd, '.')
|
129
125
|
|
130
|
-
xcode_version = info[:xcode_version]
|
131
|
-
|
126
|
+
xcode_version = info[:xcode_version].nil? ? "" : info[:xcode_version]
|
127
|
+
unless File.exists?("/Applications/Xcode#{xcode_version}.app")
|
132
128
|
cmd = "sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer"
|
133
129
|
else
|
134
130
|
cmd = "sudo xcode-select --switch /Applications/Xcode#{xcode_version}.app/Contents/Developer"
|
data/lib/info.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ecb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.35
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rick Hoiberg
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-01-
|
11
|
+
date: 2014-01-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: subcommand
|