shenzhen 0.5.1 → 0.5.2

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: 662c8d1d475e2f3439b2d0a2c14f7bf5ff1b5418
4
- data.tar.gz: aa47a3775e5be5b25467221bf76c841fee055ffd
3
+ metadata.gz: 0497dbf5c9414a18f0b079368fe0bb88c218a314
4
+ data.tar.gz: 8385052946267ba5f31e8a7fd118b811575e8435
5
5
  SHA512:
6
- metadata.gz: e56f40210167d925c100c5dde26272f19231c586fadeb0a34d9b71d54e4396d189ab13a7e53c00318f2c5c6bfe4506cfb5375115a43cd3251dffa1c89f075722
7
- data.tar.gz: d6e3936ecbb5be845f25600a77e4e1c7932b0b568cfddeb548157b257dce0fcda61cdf1c96ce1a85916e09353b8fa95cc814f4e549d183f804801859186a3379
6
+ metadata.gz: b934c9703a81b6918107124a79160555e84ecacb99b46a96f433ff430a8574423328f3c34d2add6bd87f2c5c60539907ec1e10f4e4c0f7917ae415ed6184a79a
7
+ data.tar.gz: 271fa82191b960cf4ad26d49c507c67b1c2a30ccae7f7feb572813e4a4ca5883899d3560cfcbb942f75a268a90f12be2cb04f3bed7662a0884f8f58d2eabc736
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- shenzhen (0.5.1)
4
+ shenzhen (0.5.2)
5
5
  aws-sdk (~> 1.0)
6
6
  commander (~> 4.1)
7
7
  dotenv (~> 0.7)
@@ -13,26 +13,34 @@ PATH
13
13
  GEM
14
14
  remote: https://rubygems.org/
15
15
  specs:
16
- aws-sdk (1.20.0)
16
+ aws-sdk (1.26.0)
17
17
  json (~> 1.4)
18
18
  nokogiri (>= 1.4.4, < 1.6.0)
19
19
  uuidtools (~> 2.1)
20
20
  commander (4.1.5)
21
21
  highline (~> 1.6.11)
22
+ diff-lcs (1.2.5)
22
23
  dotenv (0.9.0)
23
24
  faraday (0.8.8)
24
25
  multipart-post (~> 1.2.0)
25
26
  faraday_middleware (0.9.0)
26
27
  faraday (>= 0.7.4, < 0.9)
27
- highline (1.6.19)
28
+ highline (1.6.20)
28
29
  json (1.8.1)
29
30
  multipart-post (1.2.0)
30
31
  net-sftp (2.1.2)
31
32
  net-ssh (>= 2.6.5)
32
33
  net-ssh (2.7.0)
33
34
  nokogiri (1.5.10)
34
- rake (0.9.6)
35
- rspec (0.6.4)
35
+ rake (10.1.0)
36
+ rspec (2.14.1)
37
+ rspec-core (~> 2.14.0)
38
+ rspec-expectations (~> 2.14.0)
39
+ rspec-mocks (~> 2.14.0)
40
+ rspec-core (2.14.7)
41
+ rspec-expectations (2.14.4)
42
+ diff-lcs (>= 1.1.3, < 2.0)
43
+ rspec-mocks (2.14.4)
36
44
  uuidtools (2.1.4)
37
45
 
38
46
  PLATFORMS
@@ -13,7 +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 '-sdk', '--sdk SDK', 'use SDK as the name or path of the base SDK when building the project'
16
+ c.option '--sdk SDK', 'use SDK as the name or path of the base SDK when building the project'
17
17
 
18
18
  c.action do |args, options|
19
19
  validate_xcode_version!
@@ -31,8 +31,10 @@ command :build do |c|
31
31
 
32
32
  determine_workspace_or_project! unless @workspace || @project
33
33
 
34
- determine_configuration! unless @configuration
35
- say_error "Configuration #{@configuration} not found" and abort unless (@xcodebuild_info.build_configurations.include?(@configuration) rescue false)
34
+ if @project
35
+ determine_configuration! unless @configuration
36
+ say_error "Configuration #{@configuration} not found" and abort unless (@xcodebuild_info.build_configurations.include?(@configuration) rescue false)
37
+ end
36
38
 
37
39
  determine_scheme! unless @scheme
38
40
  say_error "Scheme #{@scheme} not found" and abort unless (@xcodebuild_info.schemes.include?(@scheme) rescue false)
@@ -1,3 +1,3 @@
1
1
  module Shenzhen
2
- VERSION = '0.5.1'
2
+ VERSION = '0.5.2'
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.1
4
+ version: 0.5.2
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-13 00:00:00.000000000 Z
11
+ date: 2013-11-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: commander