snapshot 1.16.3 → 1.16.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 +3 -3
- data/lib/assets/SnapfileTemplate +2 -1
- data/lib/snapshot/detect_values.rb +1 -0
- data/lib/snapshot/test_command_generator.rb +0 -1
- data/lib/snapshot/version.rb +2 -2
- metadata +9 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 97482d5ed2982c0c57556d26b8ca34266e66d6bd
|
|
4
|
+
data.tar.gz: 7dde1f8cbbb7690d1427724c94793187f2ef7b1f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a459a7f88520eb667bf9bd25404cc2e620e6fe43c32c87a9ded112d04348d942b05d7aa6f11b3ae9cad11d15ccd5b8c64d63003889b1c2161b5c9433c3a1e257
|
|
7
|
+
data.tar.gz: cf9fdd7545dc049882eecba4c127f23d0393d3ed4b3f4d008309268049ff3d317b3849fcb78bf99d40b21b32e85d2b558d8a400d9129d38381114d1c632b7a87
|
data/README.md
CHANGED
|
@@ -33,7 +33,7 @@ snapshot
|
|
|
33
33
|
[](https://github.com/fastlane/fastlane/blob/master/snapshot/LICENSE)
|
|
34
34
|
[](http://rubygems.org/gems/snapshot)
|
|
35
35
|
|
|
36
|
-
###### Automate taking localized screenshots of your iOS
|
|
36
|
+
###### Automate taking localized screenshots of your iOS and tvOS apps on every device
|
|
37
37
|
|
|
38
38
|
<hr />
|
|
39
39
|
<h4 align="center">
|
|
@@ -41,7 +41,7 @@ snapshot
|
|
|
41
41
|
</h4>
|
|
42
42
|
<hr />
|
|
43
43
|
|
|
44
|
-
_snapshot_ generates localized iOS screenshots for different device types and languages for the App Store and can be uploaded using ([`deliver`](https://github.com/fastlane/fastlane/tree/master/deliver)).
|
|
44
|
+
_snapshot_ generates localized iOS and tvOS screenshots for different device types and languages for the App Store and can be uploaded using ([`deliver`](https://github.com/fastlane/fastlane/tree/master/deliver)).
|
|
45
45
|
|
|
46
46
|
You have to manually create 20 (languages) x 6 (devices) x 5 (screenshots) = **600 screenshots**.
|
|
47
47
|
|
|
@@ -254,7 +254,7 @@ add_photos ["MyTestApp/Assets/demo.jpg"]
|
|
|
254
254
|
|
|
255
255
|
### Completely reset all simulators
|
|
256
256
|
|
|
257
|
-
You can run this command in the terminal to delete and re-create all iOS simulators:
|
|
257
|
+
You can run this command in the terminal to delete and re-create all iOS and tvOS simulators:
|
|
258
258
|
|
|
259
259
|
```
|
|
260
260
|
snapshot reset_simulators
|
data/lib/assets/SnapfileTemplate
CHANGED
|
@@ -42,6 +42,7 @@ module Snapshot
|
|
|
42
42
|
# Full list: ["iPhone 4s", "iPhone 5", "iPhone 5s", "iPhone 6", "iPhone 6 Plus", "iPhone 6s", "iPhone 6s Plus"]
|
|
43
43
|
next if sim.name.include?("6s") # same screen resolution as iPhone 6, or iPhone 6s Plus
|
|
44
44
|
next if sim.name.include?("5s") # same screen resolution as iPhone 5
|
|
45
|
+
|
|
45
46
|
next if sim.name.include?("Apple TV")
|
|
46
47
|
|
|
47
48
|
config[:devices] << sim.name
|
|
@@ -33,7 +33,6 @@ module Snapshot
|
|
|
33
33
|
|
|
34
34
|
options = []
|
|
35
35
|
options += project_path_array
|
|
36
|
-
options << "-configuration '#{config[:configuration]}'" if config[:configuration]
|
|
37
36
|
options << "-sdk '#{config[:sdk]}'" if config[:sdk]
|
|
38
37
|
options << "-derivedDataPath '#{derived_data_path}'"
|
|
39
38
|
|
data/lib/snapshot/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: snapshot
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.16.
|
|
4
|
+
version: 1.16.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: 2016-
|
|
11
|
+
date: 2016-11-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fastimage
|
|
@@ -30,7 +30,7 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - ">="
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 0.
|
|
33
|
+
version: 0.57.0
|
|
34
34
|
- - "<"
|
|
35
35
|
- !ruby/object:Gem::Version
|
|
36
36
|
version: 1.0.0
|
|
@@ -40,7 +40,7 @@ dependencies:
|
|
|
40
40
|
requirements:
|
|
41
41
|
- - ">="
|
|
42
42
|
- !ruby/object:Gem::Version
|
|
43
|
-
version: 0.
|
|
43
|
+
version: 0.57.0
|
|
44
44
|
- - "<"
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
46
|
version: 1.0.0
|
|
@@ -224,7 +224,8 @@ dependencies:
|
|
|
224
224
|
- - "~>"
|
|
225
225
|
- !ruby/object:Gem::Version
|
|
226
226
|
version: 0.44.0
|
|
227
|
-
description: Automate taking localized screenshots of your iOS
|
|
227
|
+
description: Automate taking localized screenshots of your iOS and tvOS apps on every
|
|
228
|
+
device
|
|
228
229
|
email:
|
|
229
230
|
- snapshot@krausefx.com
|
|
230
231
|
executables:
|
|
@@ -279,9 +280,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
279
280
|
version: '0'
|
|
280
281
|
requirements: []
|
|
281
282
|
rubyforge_project:
|
|
282
|
-
rubygems_version: 2.
|
|
283
|
+
rubygems_version: 2.2.2
|
|
283
284
|
signing_key:
|
|
284
285
|
specification_version: 4
|
|
285
|
-
summary: Automate taking localized screenshots of your iOS
|
|
286
|
+
summary: Automate taking localized screenshots of your iOS and tvOS apps on every
|
|
287
|
+
device
|
|
286
288
|
test_files: []
|
|
287
289
|
has_rdoc:
|