deliver 0.3.2 → 0.3.3
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 +9 -0
- data/lib/deliver/ipa_uploader.rb +1 -1
- data/lib/deliver/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: 7825cad46a3db5213d94db08896c5394e18512c8
|
|
4
|
+
data.tar.gz: 31d1b651b4ace51293122a5ec0684d0892b1765d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e2988f558367ae0b5b66518a4b343cac30066c2ac021bfac6d6d01c55f40eeea6394e6f66a0135667062093e2b3b852fd7a7f0f1fe236129ebcaba99b1f95dfc
|
|
7
|
+
data.tar.gz: 2a20b2d94d1c236a16fac8416bcc355c9a6d5e1b01b394ce6074446edbd202ac00f14aa7216b7e3b9139a4951f2d4338be32a3c2d7347517f525695aad48a3dd
|
data/README.md
CHANGED
|
@@ -113,6 +113,8 @@ The screenshots are ordered alphabetically. The best way to sort them is to prep
|
|
|
113
113
|
|
|
114
114
|
To let the computer create the screenshots for you, checkout [this section of the README](#automatically-create-screenshots).
|
|
115
115
|
|
|
116
|
+
If you want to have the screenshots inside a device frame, with a background and a fancy label on top, you can use [Sketch to App Store](http://sketchtoappstore.com/).
|
|
117
|
+
|
|
116
118
|
#### Upload a new ipa file with a changelog to the App Store
|
|
117
119
|
This will submit a new update to Apple
|
|
118
120
|
```ruby
|
|
@@ -280,6 +282,13 @@ From now on, when you start ```deliver```, it will first create the new screensh
|
|
|
280
282
|
|
|
281
283
|
More information about ```snapshot``` can be found on the [Snapshot GitHub page](https://github.com/KrauseFx/snapshot).
|
|
282
284
|
|
|
285
|
+
## Jenkins integration
|
|
286
|
+
Depending on how you set up your Jenkins instance, there might be problems with the ```phantomjs``` dependency.
|
|
287
|
+
|
|
288
|
+
I've been using [Jenkins App](https://github.com/stisti/jenkins-app) for a long time, where ```Deliver``` works just fine.
|
|
289
|
+
|
|
290
|
+
You should not deploy a new App Store update after every commit, since you still have to wait for your review. Instead I recommend using Git Tags, or custom triggers to deploy a new update.
|
|
291
|
+
|
|
283
292
|
## Editing the ```Deliverfile```
|
|
284
293
|
Change syntax highlighting to *Ruby*.
|
|
285
294
|
|
data/lib/deliver/ipa_uploader.rb
CHANGED
|
@@ -135,7 +135,7 @@ module Deliver
|
|
|
135
135
|
def fetch_info_plist_file
|
|
136
136
|
Zip::File.open(@ipa_file.path) do |zipfile|
|
|
137
137
|
zipfile.each do |file|
|
|
138
|
-
if file.name.include?'.plist' and not file.name.include?
|
|
138
|
+
if file.name.include?'.plist' and not ['.bundle', '.framework'].any? { |a| file.name.include?a }
|
|
139
139
|
# We can not be completely sure, that's the correct plist file, so we have to try
|
|
140
140
|
begin
|
|
141
141
|
# The XML file has to be properly unpacked first
|
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.3.
|
|
4
|
+
version: 0.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Felix Krause
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-11-
|
|
11
|
+
date: 2014-11-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json
|