ecb 0.0.35 → 0.0.36

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
  SHA1:
3
- metadata.gz: 5b8e47611b6c9ace54508c7cf03de8b5b0d6df83
4
- data.tar.gz: 88e78d3a5aec7eb74ea9ee3896aa120304cac45b
3
+ metadata.gz: 20148a66d6df48bbdeb666e78e0421750c5b14ea
4
+ data.tar.gz: 92c8307be1609a368a9fc10095d1e8566f487b1a
5
5
  SHA512:
6
- metadata.gz: b13d6bbaaff9c7b20b66c957f0c5f13e620f208b4f8ed5140fb432e12aaeaaa8fd3be501d10f25375d7d8a95e32c25068f8183fbfc57a8bcd7ed9f0d4fa9e51a
7
- data.tar.gz: 2794a86ca86888de93658f60e21f870e9a9ee58ce82b704bc87f5457802889f9942e1bccc2c1e8b5e5c4b29e47e890be2a9bfa94f9000b9f2799e4935433464e
6
+ metadata.gz: 877641dac957dc17055dbf69c133b8136f02e0063a979e6ad25ebc70f983fe629a4218b8e5b953dfb15f02ce04a04c99eaeb46462e69cc175ddf2e86701ea0ce
7
+ data.tar.gz: b3955d8bd83187a8b9f60428f5d31510952c5041139a9f4e9727b91e83e98e1b30410f8eeb842c9107ad1b3caa7ab84abf0468ddb30605dba7c762dd13f806a5
@@ -24,7 +24,7 @@ module Commands
24
24
  end
25
25
 
26
26
  def register(opts, global_options)
27
- opts.banner = "Usage: xcode_archive [options]"
27
+ opts.banner = "Usage: xcode_build [options]"
28
28
  opts.description = "Build an Xcode deliverable from the specified config."
29
29
 
30
30
  opts.on('-c', "--config name", "Required - Name of the config we are building from.") do |v|
@@ -46,22 +46,22 @@ module Commands
46
46
  end
47
47
 
48
48
  def builddistribtion(target_file, build_dir, artwork, exportName, deliverablesPath)
49
- cmd = "mkdir -p tmp/PayLoad"
49
+ cmd = "mkdir -p tmp/Payload"
50
50
  EcbSharedLib::CL.do_cmd(cmd, "#{build_dir}")
51
- cmd = "cp -Rp '#{target_file}' tmp/PayLoad"
51
+ cmd = "cp -Rp '#{target_file}' tmp/Payload"
52
52
  EcbSharedLib::CL.do_cmd(cmd, "#{build_dir}")
53
53
  export_name = exportName.split(".").first
54
54
  sym_file = "#{export_name}_dSYM.zip"
55
55
  unless "#{artwork}".nil?
56
56
  if (File.exist?("#{artwork}"))
57
- cmd = "cp '#{artwork}' #{build_dir}/tmp/PayLoad"
57
+ cmd = "cp '#{artwork}' #{build_dir}/tmp/Payload"
58
58
  EcbSharedLib::CL.do_cmd(cmd, '.')
59
59
  paths = artwork.split("/")
60
- cmd = "mv 'tmp/PayLoad/#{paths.last}' tmp/PayLoad/iTunesArtwork"
60
+ cmd = "mv 'tmp/PayLoad/#{paths.last}' tmp/Payload/iTunesArtwork"
61
61
  EcbSharedLib::CL.do_cmd(cmd, "#{build_dir}")
62
62
  end
63
63
  end
64
- cmd = "ditto -c -k --norsrc #{build_dir}/tmp/PayLoad \"#{deliverablesPath}/#{exportName}\""
64
+ cmd = "ditto -c -k --norsrc #{build_dir}/tmp/Payload \"#{deliverablesPath}/#{exportName}\""
65
65
  EcbSharedLib::CL.do_cmd(cmd, '.')
66
66
  cmd = "ditto -c -k --norsrc --keepParent '#{build_dir}/#{target_file}.dSYM' '#{deliverablesPath}/#{sym_file}'";
67
67
  EcbSharedLib::CL.do_cmd(cmd, '.')
@@ -7,6 +7,6 @@
7
7
  #
8
8
  class Info
9
9
  def self.version
10
- "0.0.35"
10
+ "0.0.36"
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.35
4
+ version: 0.0.36
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-21 00:00:00.000000000 Z
11
+ date: 2014-03-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: subcommand
@@ -148,7 +148,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
148
148
  version: '1.3'
149
149
  requirements: []
150
150
  rubyforge_project:
151
- rubygems_version: 2.2.1
151
+ rubygems_version: 2.2.0
152
152
  signing_key:
153
153
  specification_version: 4
154
154
  summary: Core Builder