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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dbeb448aaaa2d8c99c38e174af296ef97eeacb28
4
- data.tar.gz: 27e46876b11f16cd2017f604b8ef633d28bf0dc1
3
+ metadata.gz: 5b8e47611b6c9ace54508c7cf03de8b5b0d6df83
4
+ data.tar.gz: 88e78d3a5aec7eb74ea9ee3896aa120304cac45b
5
5
  SHA512:
6
- metadata.gz: 83ea4cdc9a215a50db7913973414eb08f36654c71cc3d290ddb30c1bcebdb8208538425ba8b720c64b673369985905b04477e6bf5ebb52de6b02282eb2eaaf0f
7
- data.tar.gz: 3c5b833771d3445b435d7b86c69af462c0b9bd9fdfa143a2f8e65abe2f0009bf304fd1a37968f74cf43534ee7ac248725d0ce57bf7bdd4cc34a509c4c35822cf
6
+ metadata.gz: b13d6bbaaff9c7b20b66c957f0c5f13e620f208b4f8ed5140fb432e12aaeaaa8fd3be501d10f25375d7d8a95e32c25068f8183fbfc57a8bcd7ed9f0d4fa9e51a
7
+ data.tar.gz: 2794a86ca86888de93658f60e21f870e9a9ee58ce82b704bc87f5457802889f9942e1bccc2c1e8b5e5c4b29e47e890be2a9bfa94f9000b9f2799e4935433464e
@@ -84,11 +84,7 @@ module Commands
84
84
  itunes_artwork = build[:itunes_artwork]
85
85
  target_file = build[:target_file]
86
86
 
87
- if archive_build then
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
- if xcode_version.nil? or xcode_version == 'latest-released' then
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
@@ -7,6 +7,6 @@
7
7
  #
8
8
  class Info
9
9
  def self.version
10
- "0.0.34"
10
+ "0.0.35"
11
11
  end
12
12
  end
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.34
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-20 00:00:00.000000000 Z
11
+ date: 2014-01-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: subcommand