deliver 1.6.3 → 1.6.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 +4 -4
- data/README.md +2 -2
- data/lib/deliver/commands_generator.rb +2 -2
- data/lib/deliver/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a7c2cb99c79977a0b8dcfd193d49244c3304e489
|
|
4
|
+
data.tar.gz: fdcdcf2980347db98a29f19de4fc6f0afafa7100
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 204940e81c8d52d7c114e6efe4a00159403973e4c8a97ec17ac586238c00d9c2de293a4fbd7e3ef2bebb0d14d4434bc9607525d0e935b72a9c00f1e17eb05a85
|
|
7
|
+
data.tar.gz: 1cccb3989fe67bcbf7f8377f9a4c98e564bb8d20083da9287a57b3a1db935e3c94a246b995aaaa19f6e1d17a655f445b85f5e1544303f51ad6ac266b6a3fc3d8
|
data/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
<b>deliver</b> •
|
|
10
10
|
<a href="https://github.com/fastlane/snapshot">snapshot</a> •
|
|
11
11
|
<a href="https://github.com/fastlane/frameit">frameit</a> •
|
|
12
|
-
<a href="https://github.com/fastlane/
|
|
12
|
+
<a href="https://github.com/fastlane/pem">pem</a> •
|
|
13
13
|
<a href="https://github.com/fastlane/sigh">sigh</a> •
|
|
14
14
|
<a href="https://github.com/fastlane/produce">produce</a> •
|
|
15
15
|
<a href="https://github.com/fastlane/cert">cert</a> •
|
|
@@ -151,7 +151,7 @@ Before actually uploading anything to iTunes, ```deliver``` will generate a HTML
|
|
|
151
151
|
- [`fastlane`](https://fastlane.tools): Connect all deployment tools into one streamlined workflow
|
|
152
152
|
- [`snapshot`](https://github.com/fastlane/snapshot): Automate taking localized screenshots of your iOS app on every device
|
|
153
153
|
- [`frameit`](https://github.com/fastlane/frameit): Quickly put your screenshots into the right device frames
|
|
154
|
-
- [`
|
|
154
|
+
- [`pem`](https://github.com/fastlane/pem): Automatically generate and renew your push notification profiles
|
|
155
155
|
- [`sigh`](https://github.com/fastlane/sigh): Because you would rather spend your time building stuff than fighting provisioning
|
|
156
156
|
- [`produce`](https://github.com/fastlane/produce): Create new iOS apps on iTunes Connect and Dev Portal using the command line
|
|
157
157
|
- [`cert`](https://github.com/fastlane/cert): Automatically create and maintain iOS code signing certificates
|
|
@@ -74,7 +74,7 @@ module Deliver
|
|
|
74
74
|
options = FastlaneCore::Configuration.create(Deliver::Options.available_options, options.__hash__)
|
|
75
75
|
options.load_configuration_file("Deliverfile")
|
|
76
76
|
Deliver::Runner.new(options) # to login...
|
|
77
|
-
path =
|
|
77
|
+
path = (FastlaneCore::Helper.fastlane_enabled? ? './fastlane' : '.')
|
|
78
78
|
Deliver::DownloadScreenshots.run(options, path)
|
|
79
79
|
end
|
|
80
80
|
end
|
|
@@ -87,7 +87,7 @@ module Deliver
|
|
|
87
87
|
options = FastlaneCore::Configuration.create(Deliver::Options.available_options, options.__hash__)
|
|
88
88
|
options.load_configuration_file("Deliverfile")
|
|
89
89
|
Deliver::Runner.new(options) # to login...
|
|
90
|
-
path =
|
|
90
|
+
path = (FastlaneCore::Helper.fastlane_enabled? ? './fastlane' : '.')
|
|
91
91
|
res = ENV["DELIVER_FORCE_OVERWRITE"]
|
|
92
92
|
res ||= agree("Do you want to overwrite existing metadata on path '#{File.expand_path(path)}/metadata'? (y/n)", true)
|
|
93
93
|
if res
|
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: 1.6.
|
|
4
|
+
version: 1.6.4
|
|
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-12-
|
|
11
|
+
date: 2015-12-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fastlane_core
|
|
@@ -289,7 +289,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
289
289
|
version: '0'
|
|
290
290
|
requirements: []
|
|
291
291
|
rubyforge_project:
|
|
292
|
-
rubygems_version: 2.4.
|
|
292
|
+
rubygems_version: 2.4.0
|
|
293
293
|
signing_key:
|
|
294
294
|
specification_version: 4
|
|
295
295
|
summary: Upload screenshots, metadata and your app to the App Store using a single
|