shenzhen 0.5.3 → 0.5.4

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: 434920930a3f06ca4414754435e66b0060afa76f
4
- data.tar.gz: 43c12a78d90ef06a02a0f4dfdf5987402a4df459
3
+ metadata.gz: f833044608f4fcd81227646a34176daaeb1c6d08
4
+ data.tar.gz: 8443853a16209f5259cd2461d3d33a656a892a27
5
5
  SHA512:
6
- metadata.gz: 047fc5fcb47bface4c56ee73c53800fbf081eff27f13b12701e4c79f0b82e59b33534533023ad7759251a088d9f6f3377f048c72633f11893186add77ae9380d
7
- data.tar.gz: 0095e20037404ebf9fe309d3f40845931a44dd8bfe574a2bae456ca2a8f8c9eada02d08e2d3897c25d6c6a150791508b3d68d172ae2e0a4894cd1c7bee05c957
6
+ metadata.gz: b27879288458c6b3290b277e2f2c5b2dfe24d9d871d58319a1a5e0b24b7753a94684ce7ce8192273f839ba807bf8e2ce49d67f178c99f8afd032ead997ef7860
7
+ data.tar.gz: a5067c805286831ceb0df9eabae770ea8aa0ceaf1ac86d190c7db62eebcb3b9610b26dc0fcbeff7c0509a76d035ff728744f14e5436f265f4776c8fe17caa411
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- shenzhen (0.5.3)
4
+ shenzhen (0.5.4)
5
5
  aws-sdk (~> 1.0)
6
6
  commander (~> 4.1)
7
7
  dotenv (~> 0.7)
@@ -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 '-t', '--token TOKEN', "API Token. Available at https://rink.hockeyapp.net/manage/auth_tokens"
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
@@ -1,3 +1,3 @@
1
1
  module Shenzhen
2
- VERSION = '0.5.3'
2
+ VERSION = '0.5.4'
3
3
  end
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.3
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: 2013-11-17 00:00:00.000000000 Z
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.0.3
184
+ rubygems_version: 2.1.11
186
185
  signing_key:
187
186
  specification_version: 4
188
187
  summary: Shenzhen
Binary file