shenzhen 0.5.1 → 0.5.2
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 +4 -4
- data/Gemfile.lock +13 -5
- data/lib/shenzhen/commands/build.rb +5 -3
- data/lib/shenzhen/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0497dbf5c9414a18f0b079368fe0bb88c218a314
|
4
|
+
data.tar.gz: 8385052946267ba5f31e8a7fd118b811575e8435
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b934c9703a81b6918107124a79160555e84ecacb99b46a96f433ff430a8574423328f3c34d2add6bd87f2c5c60539907ec1e10f4e4c0f7917ae415ed6184a79a
|
7
|
+
data.tar.gz: 271fa82191b960cf4ad26d49c507c67b1c2a30ccae7f7feb572813e4a4ca5883899d3560cfcbb942f75a268a90f12be2cb04f3bed7662a0884f8f58d2eabc736
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
shenzhen (0.5.
|
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.
|
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.
|
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 (
|
35
|
-
rspec (
|
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 '
|
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
|
-
|
35
|
-
|
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)
|
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.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-
|
11
|
+
date: 2013-11-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: commander
|