ecb 0.0.42 → 0.0.43
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.
- data/lib/commands/xcode_build.rb +159 -143
- data/lib/info.rb +1 -1
- metadata +119 -101
- checksums.yaml +0 -7
data/lib/commands/xcode_build.rb
CHANGED
@@ -6,151 +6,167 @@
|
|
6
6
|
# http://www.ebay.com
|
7
7
|
#
|
8
8
|
module Commands
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
end
|
17
|
-
|
18
|
-
# required options
|
19
|
-
def required_options
|
20
|
-
@required_options ||= Set.new [
|
21
|
-
:config,
|
22
|
-
:deliverables,
|
23
|
-
]
|
24
|
-
end
|
25
|
-
|
26
|
-
def register(opts, global_options)
|
27
|
-
opts.banner = "Usage: xcode_build [options]"
|
28
|
-
opts.description = "Build an Xcode deliverable from the specified config."
|
29
|
-
|
30
|
-
opts.on('-c', "--config name", "Required - Name of the config we are building from.") do |v|
|
31
|
-
options[:config] = v
|
32
|
-
end
|
33
|
-
|
34
|
-
opts.on('-d', "--deliverables deliverablesPath", "Path to build the deliverables") do |v|
|
35
|
-
options[:deliverables] = v
|
36
|
-
end
|
37
|
-
|
38
|
-
opts.on('-a', "--archive-build", "Do archive build") do |v|
|
39
|
-
options[:archive_build] = true
|
40
|
-
end
|
41
|
-
|
42
|
-
opts.on('-b', "--branch config branch name", "Use build config branch") do |v|
|
43
|
-
options[:branch] = v
|
44
|
-
end
|
45
|
-
|
46
|
-
end
|
47
|
-
|
48
|
-
def builddistribtion(target_file, build_dir, artwork, exportName, deliverablesPath)
|
49
|
-
cmd = "mkdir -p tmp/Payload"
|
50
|
-
EcbSharedLib::CL.do_cmd(cmd, "#{build_dir}")
|
51
|
-
cmd = "cp -Rp '#{target_file}' tmp/Payload"
|
52
|
-
EcbSharedLib::CL.do_cmd(cmd, "#{build_dir}")
|
53
|
-
export_name = exportName.split(".").first
|
54
|
-
sym_file = "#{export_name}_dSYM.zip"
|
55
|
-
unless "#{artwork}".nil?
|
56
|
-
if (File.exist?("#{artwork}"))
|
57
|
-
cmd = "cp '#{artwork}' #{build_dir}/tmp/Payload"
|
58
|
-
EcbSharedLib::CL.do_cmd(cmd, '.')
|
59
|
-
paths = artwork.split("/")
|
60
|
-
cmd = "mv 'tmp/PayLoad/#{paths.last}' tmp/Payload/iTunesArtwork"
|
61
|
-
EcbSharedLib::CL.do_cmd(cmd, "#{build_dir}")
|
9
|
+
class XcodeBuild
|
10
|
+
|
11
|
+
# holds the options that were passed
|
12
|
+
# you can set any initial defaults here
|
13
|
+
def options
|
14
|
+
@options ||= {
|
15
|
+
}
|
62
16
|
end
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
# prepare a single repo and create a local and tracking branch if it should have one
|
71
|
-
# if the repo specifies a branch then we will do the initial fetch from that branch
|
72
|
-
# if the create_dev_branch flag is set, we will create a local and tracking branch with
|
73
|
-
# the developer initials prepended
|
74
|
-
def do_build(build, deliverablesPath, archive_build)
|
75
|
-
workspace = build[:workspace]
|
76
|
-
scheme = build[:scheme]
|
77
|
-
xcconfig = build[:xcconfig]
|
78
|
-
archiveName = build[:archiveName]
|
79
|
-
exportName = build[:exportName]
|
80
|
-
configuration = build[:configuration]
|
81
|
-
extra_configs = build[:extra_configs]
|
82
|
-
provisioning_file = build[:provisioning_file]
|
83
|
-
build_dir = build[:build_dir]
|
84
|
-
itunes_artwork = build[:itunes_artwork]
|
85
|
-
target_file = build[:target_file]
|
86
|
-
|
87
|
-
archive = archive_build ? 'archive' : ''
|
88
|
-
|
89
|
-
cmd = "xcodebuild #{archive} -workspace #{workspace} -scheme #{scheme} -xcconfig '#{xcconfig}' -configuration #{configuration} -archivePath '#{deliverablesPath}/#{archiveName}' #{extra_configs}"
|
90
|
-
if EcbSharedLib::CL.do_cmd_result(cmd, '.') != 0
|
91
|
-
raise "Xcode Build failed."
|
92
|
-
end
|
93
|
-
if archive_build then
|
94
|
-
cmd = "xcodebuild -exportArchive -exportFormat IPA -archivePath '#{deliverablesPath}/#{archiveName}' -exportPath '#{deliverablesPath}/#{exportName}' -exportProvisioningProfile '#{provisioning_file}'"
|
95
|
-
if EcbSharedLib::CL.do_cmd_result(cmd, '.') != 0
|
96
|
-
raise "Xcode Export Archive failed."
|
17
|
+
|
18
|
+
# required options
|
19
|
+
def required_options
|
20
|
+
@required_options ||= Set.new [
|
21
|
+
:config,
|
22
|
+
:deliverables,
|
23
|
+
]
|
97
24
|
end
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
# Now that we have the json, prepare the world by creating a directory with the config name and placing
|
123
|
-
# the various repos beneath that. The directory is created relative to the current directory.
|
124
|
-
|
125
|
-
cmd = "security unlock-keychain -p #{build_config[:login_password]} ~/Library/Keychains/login.keychain"
|
126
|
-
EcbSharedLib::CL.do_cmd(cmd, '.')
|
127
|
-
|
128
|
-
cmd = "rm -Rf #{deliverablesPath}"
|
129
|
-
EcbSharedLib::CL.do_cmd(cmd, '.')
|
25
|
+
|
26
|
+
def register(opts, global_options)
|
27
|
+
opts.banner = "Usage: xcode_build [options]"
|
28
|
+
opts.description = "Build an Xcode deliverable from the specified config."
|
29
|
+
|
30
|
+
opts.on('-c', "--config name", "Required - Name of the config we are building from.") do |v|
|
31
|
+
options[:config] = v
|
32
|
+
end
|
33
|
+
|
34
|
+
opts.on('-d', "--deliverables deliverablesPath", "Path to build the deliverables") do |v|
|
35
|
+
options[:deliverables] = v
|
36
|
+
end
|
37
|
+
|
38
|
+
opts.on('-a', "--archive-build", "Do archive build") do |v|
|
39
|
+
options[:archive_build] = true
|
40
|
+
end
|
41
|
+
|
42
|
+
opts.on('-b', "--branch config branch name", "Use build config branch") do |v|
|
43
|
+
options[:branch] = v
|
44
|
+
end
|
45
|
+
opts.on('-i', "--copy-appicon", "copy icons for iTunesArtWork") do |v|
|
46
|
+
options[:copy_appicon] = true
|
47
|
+
end
|
130
48
|
|
131
|
-
xcode_version = info[:xcode_version].nil? ? "" : info[:xcode_version]
|
132
|
-
unless File.exists?("/Applications/Xcode#{xcode_version}.app")
|
133
|
-
cmd = "sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer"
|
134
|
-
else
|
135
|
-
cmd = "sudo xcode-select --switch /Applications/Xcode#{xcode_version}.app/Contents/Developer"
|
136
|
-
end
|
137
|
-
EcbSharedLib::CL.do_cmd(cmd, '.')
|
138
|
-
|
139
|
-
builds = info[:builds]
|
140
|
-
builds.each do |build|
|
141
|
-
info_plist = info[:info_plist]
|
142
|
-
enterprise_info_plist = info[:enterprise_info_plist]
|
143
|
-
if build[:build_type] == "enterprise" &&
|
144
|
-
!info_plist.nil? && !enterprise_info_plist.nil? then
|
145
|
-
cmd = "rm #{info_plist}"
|
146
|
-
EcbSharedLib::CL.do_cmd(cmd, '.')
|
147
|
-
cmd = "cp #{enterprise_info_plist} #{info_plist}"
|
148
|
-
EcbSharedLib::CL.do_cmd(cmd, '.')
|
149
49
|
end
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
50
|
+
|
51
|
+
def builddistribution(target_file, build_dir, artwork, exportName, deliverablesPath, appicon)
|
52
|
+
cmd = "mkdir -p tmp/Payload"
|
53
|
+
EcbSharedLib::CL.do_cmd(cmd, "#{build_dir}")
|
54
|
+
cmd = "cp -Rp '#{target_file}' tmp/Payload"
|
55
|
+
EcbSharedLib::CL.do_cmd(cmd, "#{build_dir}")
|
56
|
+
export_name = exportName.split(".").first
|
57
|
+
sym_file = "#{export_name}_dSYM.zip"
|
58
|
+
if (!artwork.nil?) then
|
59
|
+
if (appicon == true and File.exist?("#{artwork}")) then
|
60
|
+
cmd = "cp '#{artwork}' #{build_dir}/tmp/"
|
61
|
+
EcbSharedLib::CL.do_cmd(cmd, '.')
|
62
|
+
paths = artwork.split("/")
|
63
|
+
cmd = "mv 'tmp/#{paths.last}' tmp/iTunesArtwork"
|
64
|
+
EcbSharedLib::CL.do_cmd(cmd, "#{build_dir}")
|
65
|
+
end
|
66
|
+
end
|
67
|
+
#cmd = "ditto -c -k --norsrc #{build_dir}/tmp/Payload \"#{deliverablesPath}/#{exportName}\""
|
68
|
+
cmd = "ditto -c -k --norsrc #{build_dir}/tmp \"#{deliverablesPath}/#{exportName}\""
|
69
|
+
EcbSharedLib::CL.do_cmd(cmd, '.')
|
70
|
+
cmd = "ditto -c -k --norsrc --keepParent '#{build_dir}/#{target_file}.dSYM' '#{deliverablesPath}/#{sym_file}'";
|
71
|
+
EcbSharedLib::CL.do_cmd(cmd, '.')
|
72
|
+
end
|
73
|
+
|
74
|
+
# prepare a single repo and create a local and tracking branch if it should have one
|
75
|
+
# if the repo specifies a branch then we will do the initial fetch from that branch
|
76
|
+
# if the create_dev_branch flag is set, we will create a local and tracking branch with
|
77
|
+
# the developer initials prepended
|
78
|
+
def do_build(build, deliverablesPath, archive_build, copy_appicon)
|
79
|
+
workspace = build[:workspace]
|
80
|
+
scheme = build[:scheme]
|
81
|
+
xcconfig = build[:xcconfig]
|
82
|
+
archiveName = build[:archiveName]
|
83
|
+
exportName = build[:exportName]
|
84
|
+
configuration = build[:configuration]
|
85
|
+
extra_configs = build[:extra_configs]
|
86
|
+
provisioning_file = build[:provisioning_file]
|
87
|
+
build_dir = build[:build_dir]
|
88
|
+
itunes_artwork = build[:itunes_artwork]
|
89
|
+
target_file = build[:target_file]
|
90
|
+
|
91
|
+
archive = archive_build ? 'archive' : ''
|
92
|
+
cmd = "xcodebuild #{archive} -workspace #{workspace} -scheme #{scheme} -xcconfig '#{xcconfig}' -configuration #{configuration} -archivePath '#{deliverablesPath}/#{archiveName}' #{extra_configs}"
|
93
|
+
if EcbSharedLib::CL.do_cmd_result(cmd, '.') != 0
|
94
|
+
raise "Xcode Build failed."
|
95
|
+
end
|
96
|
+
if archive_build then
|
97
|
+
cmd = "xcodebuild -exportArchive -exportFormat IPA -archivePath '#{deliverablesPath}/#{archiveName}' -exportPath '#{deliverablesPath}/#{exportName}' -exportProvisioningProfile '#{provisioning_file}'"
|
98
|
+
if EcbSharedLib::CL.do_cmd_result(cmd, '.') != 0
|
99
|
+
raise "Xcode Export Archive failed."
|
100
|
+
end
|
101
|
+
cmd = "ditto -c -k --norsrc #{archiveName} #{archiveName}.zip"
|
102
|
+
EcbSharedLib::CL.do_cmd(cmd, "#{deliverablesPath}")
|
103
|
+
export_name = exportName.split(".").first
|
104
|
+
sym_file = "#{export_name}_dSYM.zip"
|
105
|
+
cmd = "ditto -c -k --norsrc --keepParent '#{build_dir}/#{target_file}.dSYM' '#{deliverablesPath}/#{sym_file}'";
|
106
|
+
EcbSharedLib::CL.do_cmd(cmd, '.')
|
107
|
+
if (copy_appicon == true and File.exist?("#{itunes_artwork}")) then
|
108
|
+
cmd = "mv #{deliverablesPath}/#{export_name}.ipa #{deliverablesPath}/#{export_name}.zip"
|
109
|
+
EcbSharedLib::CL.do_cmd(cmd, ".")
|
110
|
+
cmd = "unzip #{deliverablesPath}/#{export_name}.zip -d #{deliverablesPath}/#{export_name}"
|
111
|
+
EcbSharedLib::CL.do_cmd(cmd, '.')
|
112
|
+
cmd = "cp '#{itunes_artwork}' #{deliverablesPath}/#{export_name}/iTunesArtwork"
|
113
|
+
EcbSharedLib::CL.do_cmd(cmd, '.')
|
114
|
+
cmd = " ditto -c -k --norsrc #{deliverablesPath}/#{export_name} #{deliverablesPath}/#{export_name}.ipa"
|
115
|
+
EcbSharedLib::CL.do_cmd(cmd, '.')
|
116
|
+
end
|
117
|
+
|
118
|
+
|
119
|
+
else
|
120
|
+
builddistribution(target_file, build_dir, itunes_artwork, exportName, deliverablesPath, copy_appicon)
|
121
|
+
end
|
122
|
+
end
|
123
|
+
|
124
|
+
def run(global_options)
|
125
|
+
# see if we can open the config file - we append the .config suffix
|
126
|
+
# the file is expected to be in JSON format
|
127
|
+
config_name = options[:config]
|
128
|
+
config_branch = options[:branch]
|
129
|
+
config_branch = 'master' if config_branch.nil? || config_branch.empty?
|
130
|
+
deliverablesPath = options[:deliverables]
|
131
|
+
archive_build = options[:archive_build]
|
132
|
+
copy_appicon = options[:copy_appicon]
|
133
|
+
|
134
|
+
config_repo_url = EcbSharedLib.prepare_config_repo(config_branch)
|
135
|
+
info = EcbSharedLib.read_repo_config(config_repo_url, config_name)
|
136
|
+
build_config = EcbSharedLib.read_build_config(config_repo_url)
|
137
|
+
|
138
|
+
# Now that we have the json, prepare the world by creating a directory with the config name and placing
|
139
|
+
# the various repos beneath that. The directory is created relative to the current directory.
|
140
|
+
|
141
|
+
cmd = "security unlock-keychain -p #{build_config[:login_password]} ~/Library/Keychains/login.keychain"
|
142
|
+
EcbSharedLib::CL.do_cmd(cmd, '.')
|
143
|
+
|
144
|
+
cmd = "rm -Rf #{deliverablesPath}"
|
145
|
+
EcbSharedLib::CL.do_cmd(cmd, '.')
|
146
|
+
|
147
|
+
xcode_version = info[:xcode_version].nil? ? "" : info[:xcode_version]
|
148
|
+
unless File.exists?("/Applications/Xcode#{xcode_version}.app")
|
149
|
+
cmd = "sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer"
|
150
|
+
else
|
151
|
+
cmd = "sudo xcode-select --switch /Applications/Xcode#{xcode_version}.app/Contents/Developer"
|
152
|
+
end
|
153
|
+
EcbSharedLib::CL.do_cmd(cmd, '.')
|
154
|
+
|
155
|
+
builds = info[:builds]
|
156
|
+
builds.each do |build|
|
157
|
+
info_plist = info[:info_plist]
|
158
|
+
enterprise_info_plist = info[:enterprise_info_plist]
|
159
|
+
if build[:build_type] == "enterprise" &&
|
160
|
+
!info_plist.nil? && !enterprise_info_plist.nil? then
|
161
|
+
cmd = "rm #{info_plist}"
|
162
|
+
EcbSharedLib::CL.do_cmd(cmd, '.')
|
163
|
+
cmd = "cp #{enterprise_info_plist} #{info_plist}"
|
164
|
+
EcbSharedLib::CL.do_cmd(cmd, '.')
|
165
|
+
end
|
166
|
+
do_build(build, deliverablesPath, archive_build, copy_appicon)
|
167
|
+
cmd = "git checkout ."
|
168
|
+
EcbSharedLib::CL.do_cmd(cmd, '.')
|
169
|
+
end
|
170
|
+
end
|
171
|
+
end
|
156
172
|
end
|
data/lib/info.rb
CHANGED
metadata
CHANGED
@@ -1,119 +1,125 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: ecb
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 0
|
8
|
+
- 43
|
9
|
+
version: 0.0.43
|
5
10
|
platform: ruby
|
6
|
-
authors:
|
11
|
+
authors:
|
7
12
|
- Rick Hoiberg
|
8
13
|
autorequire:
|
9
14
|
bindir: bin
|
10
15
|
cert_chain: []
|
11
|
-
|
12
|
-
|
13
|
-
|
16
|
+
|
17
|
+
date: 2014-04-04 00:00:00 -07:00
|
18
|
+
default_executable:
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
14
21
|
name: subcommand
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - ~>
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '1.0'
|
20
|
-
- - '>='
|
21
|
-
- !ruby/object:Gem::Version
|
22
|
-
version: 1.0.0
|
23
|
-
type: :runtime
|
24
22
|
prerelease: false
|
25
|
-
|
26
|
-
requirements:
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
27
25
|
- - ~>
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
|
30
|
-
|
31
|
-
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
segments:
|
28
|
+
- 1
|
29
|
+
- 0
|
30
|
+
version: "1.0"
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
segments:
|
34
|
+
- 1
|
35
|
+
- 0
|
36
|
+
- 0
|
32
37
|
version: 1.0.0
|
33
|
-
- !ruby/object:Gem::Dependency
|
34
|
-
name: json_pure
|
35
|
-
requirement: !ruby/object:Gem::Requirement
|
36
|
-
requirements:
|
37
|
-
- - ~>
|
38
|
-
- !ruby/object:Gem::Version
|
39
|
-
version: '1.5'
|
40
|
-
- - '>='
|
41
|
-
- !ruby/object:Gem::Version
|
42
|
-
version: 1.5.2
|
43
38
|
type: :runtime
|
39
|
+
version_requirements: *id001
|
40
|
+
- !ruby/object:Gem::Dependency
|
41
|
+
name: json_pure
|
44
42
|
prerelease: false
|
45
|
-
|
46
|
-
requirements:
|
43
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
47
45
|
- - ~>
|
48
|
-
- !ruby/object:Gem::Version
|
49
|
-
|
50
|
-
|
51
|
-
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
segments:
|
48
|
+
- 1
|
49
|
+
- 5
|
50
|
+
version: "1.5"
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
segments:
|
54
|
+
- 1
|
55
|
+
- 5
|
56
|
+
- 2
|
52
57
|
version: 1.5.2
|
53
|
-
- !ruby/object:Gem::Dependency
|
54
|
-
name: ruby-hmac
|
55
|
-
requirement: !ruby/object:Gem::Requirement
|
56
|
-
requirements:
|
57
|
-
- - ~>
|
58
|
-
- !ruby/object:Gem::Version
|
59
|
-
version: '0.4'
|
60
|
-
- - '>='
|
61
|
-
- !ruby/object:Gem::Version
|
62
|
-
version: 0.4.0
|
63
58
|
type: :runtime
|
59
|
+
version_requirements: *id002
|
60
|
+
- !ruby/object:Gem::Dependency
|
61
|
+
name: ruby-hmac
|
64
62
|
prerelease: false
|
65
|
-
|
66
|
-
requirements:
|
63
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
67
65
|
- - ~>
|
68
|
-
- !ruby/object:Gem::Version
|
69
|
-
|
70
|
-
|
71
|
-
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
segments:
|
68
|
+
- 0
|
69
|
+
- 4
|
70
|
+
version: "0.4"
|
71
|
+
- - ">="
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
segments:
|
74
|
+
- 0
|
75
|
+
- 4
|
76
|
+
- 0
|
72
77
|
version: 0.4.0
|
73
|
-
- !ruby/object:Gem::Dependency
|
74
|
-
name: highline
|
75
|
-
requirement: !ruby/object:Gem::Requirement
|
76
|
-
requirements:
|
77
|
-
- - '='
|
78
|
-
- !ruby/object:Gem::Version
|
79
|
-
version: 1.6.12
|
80
78
|
type: :runtime
|
79
|
+
version_requirements: *id003
|
80
|
+
- !ruby/object:Gem::Dependency
|
81
|
+
name: highline
|
81
82
|
prerelease: false
|
82
|
-
|
83
|
-
requirements:
|
84
|
-
- -
|
85
|
-
- !ruby/object:Gem::Version
|
83
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
84
|
+
requirements:
|
85
|
+
- - "="
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
segments:
|
88
|
+
- 1
|
89
|
+
- 6
|
90
|
+
- 12
|
86
91
|
version: 1.6.12
|
87
|
-
- !ruby/object:Gem::Dependency
|
88
|
-
name: plist
|
89
|
-
requirement: !ruby/object:Gem::Requirement
|
90
|
-
requirements:
|
91
|
-
- - ~>
|
92
|
-
- !ruby/object:Gem::Version
|
93
|
-
version: '3.1'
|
94
|
-
- - '>='
|
95
|
-
- !ruby/object:Gem::Version
|
96
|
-
version: 3.1.0
|
97
92
|
type: :runtime
|
93
|
+
version_requirements: *id004
|
94
|
+
- !ruby/object:Gem::Dependency
|
95
|
+
name: plist
|
98
96
|
prerelease: false
|
99
|
-
|
100
|
-
requirements:
|
97
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
98
|
+
requirements:
|
101
99
|
- - ~>
|
102
|
-
- !ruby/object:Gem::Version
|
103
|
-
|
104
|
-
|
105
|
-
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
segments:
|
102
|
+
- 3
|
103
|
+
- 1
|
104
|
+
version: "3.1"
|
105
|
+
- - ">="
|
106
|
+
- !ruby/object:Gem::Version
|
107
|
+
segments:
|
108
|
+
- 3
|
109
|
+
- 1
|
110
|
+
- 0
|
106
111
|
version: 3.1.0
|
112
|
+
type: :runtime
|
113
|
+
version_requirements: *id005
|
107
114
|
description: Various utility commands for building eBay mobile Core
|
108
115
|
email:
|
109
|
-
executables:
|
116
|
+
executables:
|
110
117
|
- ecb
|
111
118
|
extensions: []
|
119
|
+
|
112
120
|
extra_rdoc_files: []
|
113
|
-
|
114
|
-
|
115
|
-
- bin/ecb
|
116
|
-
- lib/commands.rb
|
121
|
+
|
122
|
+
files:
|
117
123
|
- lib/commands/promote.rb
|
118
124
|
- lib/commands/randombranch.rb
|
119
125
|
- lib/commands/shell.rb
|
@@ -121,35 +127,47 @@ files:
|
|
121
127
|
- lib/commands/verify_provision.rb
|
122
128
|
- lib/commands/version.rb
|
123
129
|
- lib/commands/xcode_build.rb
|
130
|
+
- lib/commands.rb
|
124
131
|
- lib/ebmsharedlib/monkey_patches.rb
|
125
132
|
- lib/ebmsharedlib/options.rb
|
126
133
|
- lib/ebmsharedlib/utilities.rb
|
127
134
|
- lib/ecb.rb
|
128
135
|
- lib/info.rb
|
129
136
|
- lib/printer.rb
|
137
|
+
- bin/ecb
|
138
|
+
- LICENSE
|
139
|
+
has_rdoc: true
|
130
140
|
homepage:
|
131
141
|
licenses: []
|
132
|
-
|
142
|
+
|
133
143
|
post_install_message:
|
134
|
-
rdoc_options:
|
144
|
+
rdoc_options:
|
135
145
|
- --charset=UTF-8
|
136
|
-
require_paths:
|
146
|
+
require_paths:
|
137
147
|
- lib
|
138
148
|
- lib/commands
|
139
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
140
|
-
requirements:
|
141
|
-
- -
|
142
|
-
- !ruby/object:Gem::Version
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
150
|
+
requirements:
|
151
|
+
- - ">="
|
152
|
+
- !ruby/object:Gem::Version
|
153
|
+
segments:
|
154
|
+
- 1
|
155
|
+
- 8
|
156
|
+
version: "1.8"
|
157
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
158
|
+
requirements:
|
159
|
+
- - ">="
|
160
|
+
- !ruby/object:Gem::Version
|
161
|
+
segments:
|
162
|
+
- 1
|
163
|
+
- 3
|
164
|
+
version: "1.3"
|
149
165
|
requirements: []
|
166
|
+
|
150
167
|
rubyforge_project:
|
151
|
-
rubygems_version:
|
168
|
+
rubygems_version: 1.3.6
|
152
169
|
signing_key:
|
153
|
-
specification_version:
|
170
|
+
specification_version: 3
|
154
171
|
summary: Core Builder
|
155
172
|
test_files: []
|
173
|
+
|
checksums.yaml
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
---
|
2
|
-
SHA1:
|
3
|
-
metadata.gz: f07b006133d82d68d5f7ab13e16073c2a8146bc6
|
4
|
-
data.tar.gz: 28b771ba00a3da77257d16c3317f72cdd528b321
|
5
|
-
SHA512:
|
6
|
-
metadata.gz: b8b2ba329b4b95baac5a0639e2e23389f51140fc05dd12979cdd21b801d7b6c03cd791a2b26d82f532dd54b928ccfe0aea0437f2b262b62e23426754d7587571
|
7
|
-
data.tar.gz: 5757107a182d03f065ff56c63035b8d0e86f3a4f3da9ec942bbf5a305fd6ba186a219456ddd6550a4e1237e50fa2ca49624e1bd3f8f88173582bc36a90f011b4
|