shenzhen 0.5.3 → 0.5.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/shenzhen/commands/build.rb +3 -1
- data/lib/shenzhen/plugins/hockeyapp.rb +2 -2
- data/lib/shenzhen/version.rb +1 -1
- metadata +3 -4
- data/shenzhen-0.5.2.gem +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f833044608f4fcd81227646a34176daaeb1c6d08
|
4
|
+
data.tar.gz: 8443853a16209f5259cd2461d3d33a656a892a27
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b27879288458c6b3290b277e2f2c5b2dfe24d9d871d58319a1a5e0b24b7753a94684ce7ce8192273f839ba807bf8e2ce49d67f178c99f8afd032ead997ef7860
|
7
|
+
data.tar.gz: a5067c805286831ceb0df9eabae770ea8aa0ceaf1ac86d190c7db62eebcb3b9610b26dc0fcbeff7c0509a76d035ff728744f14e5436f265f4776c8fe17caa411
|
data/Gemfile.lock
CHANGED
@@ -13,6 +13,7 @@ command :build do |c|
|
|
13
13
|
c.option '--[no-]archive', 'Archive project after building'
|
14
14
|
c.option '-d', '--destination DESTINATION', 'Destination. Defaults to current directory'
|
15
15
|
c.option '-m', '--embed PROVISION', 'Sign .ipa file with .mobileprovision'
|
16
|
+
c.option '-i', '--identity IDENTITY', 'Identity to be used along with --embed'
|
16
17
|
c.option '--sdk SDK', 'use SDK as the name or path of the base SDK when building the project'
|
17
18
|
|
18
19
|
c.action do |args, options|
|
@@ -57,6 +58,7 @@ command :build do |c|
|
|
57
58
|
end
|
58
59
|
|
59
60
|
say_warning "Building \"#{@workspace || @project}\" with Scheme \"#{@scheme}\" and Configuration \"#{@configuration}\"\n" if $verbose
|
61
|
+
|
60
62
|
log "xcodebuild", (@workspace || @project)
|
61
63
|
|
62
64
|
actions = []
|
@@ -77,7 +79,7 @@ command :build do |c|
|
|
77
79
|
@ipa_path = File.expand_path(@ipa_name, @destination)
|
78
80
|
|
79
81
|
log "xcrun", "PackageApplication"
|
80
|
-
abort unless system %{xcrun -sdk #{@sdk} PackageApplication -v "#{@app_path}" -o "#{@ipa_path}" --embed "#{options.embed || @dsym_path}" #{'1> /dev/null' unless $verbose}}
|
82
|
+
abort unless system %{xcrun -sdk #{@sdk} PackageApplication -v "#{@app_path}" -o "#{@ipa_path}" --embed "#{options.embed || @dsym_path}" #{"-s \"#{options.identity}\"" if options.identity} #{'1> /dev/null' unless $verbose}}
|
81
83
|
|
82
84
|
log "zip", @dsym_filename
|
83
85
|
abort unless system %{cp -r "#{@dsym_path}" "#{@destination}" && zip -r "#{@dsym_filename}.zip" "#{@dsym_filename}" #{'> /dev/null' unless $verbose} && rm -rf "#{@dsym_filename}"}
|
@@ -48,7 +48,7 @@ command :'distribute:hockeyapp' do |c|
|
|
48
48
|
c.description = ""
|
49
49
|
c.option '-f', '--file FILE', ".ipa file for the build"
|
50
50
|
c.option '-d', '--dsym FILE', "zipped .dsym package for the build"
|
51
|
-
c.option '
|
51
|
+
c.option '--token TOKEN', "API Token. Available at https://rink.hockeyapp.net/manage/auth_tokens"
|
52
52
|
c.option '-i', '--identifier PUBLIC_IDENTIFIER', "Public identifier of the app you are targeting, if not specified HockeyApp will use the bundle identifier to choose the right"
|
53
53
|
c.option '-m', '--notes NOTES', "Release notes for the build (Default: Textile)"
|
54
54
|
c.option '-r', '--release RELEASE', [:alpha, :beta, :live], "Release type: 0 - Beta, 1 - Live, 2 - Alpha (Default: alpha)"
|
@@ -84,7 +84,7 @@ command :'distribute:hockeyapp' do |c|
|
|
84
84
|
when "beta", "0"
|
85
85
|
"0"
|
86
86
|
when "live", "1"
|
87
|
-
"1"
|
87
|
+
"1"
|
88
88
|
else
|
89
89
|
"2"
|
90
90
|
end
|
data/lib/shenzhen/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: shenzhen
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mattt Thompson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2014-01-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: commander
|
@@ -160,7 +160,6 @@ files:
|
|
160
160
|
- ./LICENSE
|
161
161
|
- ./Rakefile
|
162
162
|
- ./README.md
|
163
|
-
- ./shenzhen-0.5.2.gem
|
164
163
|
- ./shenzhen.gemspec
|
165
164
|
- bin/ipa
|
166
165
|
homepage: http://github.com/mattt/shenzhen
|
@@ -182,7 +181,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
182
181
|
version: '0'
|
183
182
|
requirements: []
|
184
183
|
rubyforge_project:
|
185
|
-
rubygems_version: 2.
|
184
|
+
rubygems_version: 2.1.11
|
186
185
|
signing_key:
|
187
186
|
specification_version: 4
|
188
187
|
summary: Shenzhen
|
data/shenzhen-0.5.2.gem
DELETED
Binary file
|