deliver 0.8.2 → 0.8.3.pre
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/lib/deliver/app.rb +1 -0
- data/lib/deliver/itunes_transporter.rb +2 -2
- data/lib/deliver/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cbc5b0dcf5913a906945219b4d2aac359ab1f2b8
|
|
4
|
+
data.tar.gz: 3e536bcc6d16d25bb51c1d9cb319ee736aae1e8d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7473962e971d6a7bc82cc00250cc2d6ad6154ef0560325410cb3314217facefb76eb2832c77c66485a5a76de4a95fd61f054acc8628364bdb73af39ff9e6579c
|
|
7
|
+
data.tar.gz: 3985f7c05da0d45272b6be36819b504a56eee4fa57a1d2719025a6c2150e2393098233e2aa7e76923162cb8a26814cf1999dde7a80268a579da7acf07f110dd4
|
data/lib/deliver/app.rb
CHANGED
|
@@ -47,6 +47,7 @@ module Deliver
|
|
|
47
47
|
Helper.log.warn "App doesn't seem to be in the App Store yet or is not available in the US App Store. Using the iTC API instead."
|
|
48
48
|
# Use the iTunes Connect API instead: make that default in the future
|
|
49
49
|
self.apple_id = FastlaneCore::ItunesConnect.new.find_apple_id(app_identifier)
|
|
50
|
+
raise "Couldn't find Apple ID" unless self.apple_id
|
|
50
51
|
end
|
|
51
52
|
rescue
|
|
52
53
|
unless Helper.is_test?
|
|
@@ -180,7 +180,7 @@ module Deliver
|
|
|
180
180
|
|
|
181
181
|
def build_download_command(username, password, apple_id, destination = "/tmp")
|
|
182
182
|
[
|
|
183
|
-
Helper.transporter_path,
|
|
183
|
+
'"' + Helper.transporter_path + '"',
|
|
184
184
|
"-m lookupMetadata",
|
|
185
185
|
"-u \"#{username}\"",
|
|
186
186
|
"-p '#{escaped_password(password)}'",
|
|
@@ -191,7 +191,7 @@ module Deliver
|
|
|
191
191
|
|
|
192
192
|
def build_upload_command(username, password, source = "/tmp")
|
|
193
193
|
[
|
|
194
|
-
Helper.transporter_path,
|
|
194
|
+
'"' + Helper.transporter_path + '"',
|
|
195
195
|
"-m upload",
|
|
196
196
|
"-u \"#{username}\"",
|
|
197
197
|
"-p '#{escaped_password(password)}'",
|
data/lib/deliver/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: deliver
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.3.pre
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Felix Krause
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-04-
|
|
11
|
+
date: 2015-04-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fastlane_core
|
|
@@ -265,9 +265,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
265
265
|
version: 2.0.0
|
|
266
266
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
267
267
|
requirements:
|
|
268
|
-
- - '
|
|
268
|
+
- - '>'
|
|
269
269
|
- !ruby/object:Gem::Version
|
|
270
|
-
version:
|
|
270
|
+
version: 1.3.1
|
|
271
271
|
requirements: []
|
|
272
272
|
rubyforge_project:
|
|
273
273
|
rubygems_version: 2.2.2
|