shenzhen 0.13.1 → 0.13.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: 2fcd0837529d5ccdec17f9b0d41dd67378fe370d
4
- data.tar.gz: 022985d9f3a56dc3b574327d2d97b5cb8d3001ba
3
+ metadata.gz: ad3b3dc21f993a72976f88a09557910c72af4bb1
4
+ data.tar.gz: 84c9625fb055f55da14a93f4fd0d3d1271dd464b
5
5
  SHA512:
6
- metadata.gz: 6da4b41588afdd43b47e6c0e5b4d509a3103f757131d62587e9a3ee9ddbf924fff488133e466ba0e3f92e514cbdd30a3892c884e345264002fd8563eb96962ea
7
- data.tar.gz: 301fb4bf25bb69dcc66d95380a89d3c59df8fc3e3821841cefae18e5a25d336c7fe3dc5de8039189ae0d1873057e10441f520ac47d8e53d92b26e67d32243273
6
+ metadata.gz: dbced5f036292d83357491a7167848c30a636f54153e562eb120a7c59e05abf8729db83099b9013cb3c8d78ea9eb07f5dd0de1ab620fabfd20a1591b8b4efb9b
7
+ data.tar.gz: 78dc4bcb34e4c231ff236f2ac2ea3e1040cf7d5ae0c4d01291f82a7cf99ec4f47d4943ad36894faccb5a1fc9ca8ed05b18c7cdaee67b6e1764ea965ed7857d34
@@ -1,12 +1,13 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- shenzhen (0.13.1)
4
+ shenzhen (0.13.2)
5
5
  aws-sdk (~> 1.0)
6
6
  commander (~> 4.3)
7
7
  dotenv (~> 0.7)
8
8
  faraday (~> 0.8.9)
9
9
  faraday_middleware (~> 0.9)
10
+ highline (>= 1.7.1)
10
11
  json (~> 1.8)
11
12
  net-sftp (~> 2.1.2)
12
13
  plist (~> 3.1.0)
@@ -17,13 +18,13 @@ PATH
17
18
  GEM
18
19
  remote: https://rubygems.org/
19
20
  specs:
20
- aws-sdk (1.63.0)
21
- aws-sdk-v1 (= 1.63.0)
22
- aws-sdk-v1 (1.63.0)
21
+ aws-sdk (1.64.0)
22
+ aws-sdk-v1 (= 1.64.0)
23
+ aws-sdk-v1 (1.64.0)
23
24
  json (~> 1.4)
24
25
  nokogiri (>= 1.4.4)
25
- commander (4.3.0)
26
- highline (~> 1.6.11)
26
+ commander (4.3.2)
27
+ highline (~> 1.7.1)
27
28
  diff-lcs (1.2.5)
28
29
  dotenv (0.11.1)
29
30
  dotenv-deployment (~> 0.0.2)
@@ -32,7 +33,7 @@ GEM
32
33
  multipart-post (~> 1.2.0)
33
34
  faraday_middleware (0.9.1)
34
35
  faraday (>= 0.7.4, < 0.10)
35
- highline (1.6.21)
36
+ highline (1.7.1)
36
37
  json (1.8.2)
37
38
  mini_portile (0.6.2)
38
39
  multipart-post (1.2.0)
@@ -42,15 +43,20 @@ GEM
42
43
  nokogiri (1.6.6.2)
43
44
  mini_portile (~> 0.6.0)
44
45
  plist (3.1.0)
45
- rake (10.3.1)
46
- rspec (2.14.1)
47
- rspec-core (~> 2.14.0)
48
- rspec-expectations (~> 2.14.0)
49
- rspec-mocks (~> 2.14.0)
50
- rspec-core (2.14.8)
51
- rspec-expectations (2.14.5)
52
- diff-lcs (>= 1.1.3, < 2.0)
53
- rspec-mocks (2.14.6)
46
+ rake (10.4.2)
47
+ rspec (3.2.0)
48
+ rspec-core (~> 3.2.0)
49
+ rspec-expectations (~> 3.2.0)
50
+ rspec-mocks (~> 3.2.0)
51
+ rspec-core (3.2.3)
52
+ rspec-support (~> 3.2.0)
53
+ rspec-expectations (3.2.1)
54
+ diff-lcs (>= 1.2.0, < 2.0)
55
+ rspec-support (~> 3.2.0)
56
+ rspec-mocks (3.2.1)
57
+ diff-lcs (>= 1.2.0, < 2.0)
58
+ rspec-support (~> 3.2.0)
59
+ rspec-support (3.2.2)
54
60
  rubyzip (1.1.7)
55
61
  security (0.1.3)
56
62
  terminal-table (1.4.5)
data/README.md CHANGED
@@ -147,8 +147,6 @@ $ ipa distribute:itunesconnect -a me@email.com -p myitunesconnectpassword -i app
147
147
  >
148
148
  > For a fully hands-free upload, in a CI environment for example, ensure your iTunes Connect credentials are stored in your keychain, and that the keychain item has the Validation app in its 'Always allow access' list. Running Shenzhen once with the `--save-keychain` flag, and clicking `Always Allow` on the prompt will set this up for you.
149
149
 
150
- **Apps built with Swift are not currently supported by this distribution method. Although initial upload checks may pass, it will eventually fail citing "Invalid Swift Support".**
151
-
152
150
  ### Displaying Embedded .mobileprovision Information
153
151
 
154
152
  ```
@@ -16,7 +16,7 @@ module Shenzhen::Plugins
16
16
  command += " -notesPath '#{options[:notes]}'" if options[:notes]
17
17
  command += " -emails #{options[:emails]}" if options[:emails]
18
18
  command += " -groupAliases #{options[:groups]}" if options[:groups]
19
- command += " -notifications #{options[:notifications] ? 'YES' : 'NO'}" if options[:notifications]
19
+ command += " -notifications #{options[:notifications] ? 'YES' : 'NO'}"
20
20
 
21
21
  system command
22
22
  end
@@ -1,3 +1,3 @@
1
1
  module Shenzhen
2
- VERSION = '0.13.1'
2
+ VERSION = '0.13.2'
3
3
  end
@@ -15,6 +15,7 @@ Gem::Specification.new do |s|
15
15
  s.description = "CLI for Building & Distributing iOS Apps (.ipa Files)"
16
16
 
17
17
  s.add_dependency "commander", "~> 4.3"
18
+ s.add_dependency "highline", ">= 1.7.1"
18
19
  s.add_dependency "terminal-table", "~> 1.4.5"
19
20
  s.add_dependency "json", "~> 1.8"
20
21
  s.add_dependency "faraday", "~> 0.8.9"
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.13.1
4
+ version: 0.13.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: 2015-03-19 00:00:00.000000000 Z
11
+ date: 2015-04-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: commander
@@ -24,6 +24,20 @@ dependencies:
24
24
  - - ~>
25
25
  - !ruby/object:Gem::Version
26
26
  version: '4.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: highline
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: 1.7.1
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: 1.7.1
27
41
  - !ruby/object:Gem::Dependency
28
42
  name: terminal-table
29
43
  requirement: !ruby/object:Gem::Requirement