snapshot 1.2.0 → 1.2.1
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/assets/SnapfileTemplate +1 -1
- data/lib/snapshot/fixes/README.md +2 -2
- data/lib/snapshot/test_command_generator.rb +1 -1
- data/lib/snapshot/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: c59deac73604573be71f7e26bf7ae7b1b1280de3
|
|
4
|
+
data.tar.gz: d0229d10b68b030f8ce312f5ba9a206cdb474398
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b8459b0158b3bc211e5a7cb4bf0cedccfc27bc70be68f158d1287a678992f0f21748a16018f5e0ac2f716dfcb8f59d922e42e13144e24803258fec1024732370
|
|
7
|
+
data.tar.gz: 2d26cc64242a0be27bf655744ed0da88fdeda607931cecf347525ba43eaece052473b81f52ba558b1e18399a2a5d1b7e76eec1186cdc2546e1ccda6598a6a05e
|
data/lib/assets/SnapfileTemplate
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
### Fixes
|
|
2
2
|
|
|
3
3
|
This directory contains all the files we don't actually want to have, but are necessary due to open radars, e.g.
|
|
4
|
-
- [
|
|
5
|
-
- [
|
|
4
|
+
- [rdar://23062925](https://openradar.appspot.com/radar?id=5056366381105152): Trigger screenshots from UI Tests
|
|
5
|
+
- [rdar://23323159](https://openradar.appspot.com/radar?id=6127019184095232): Screenshots are broken when simulator is not scaled at 100%
|
|
@@ -70,7 +70,7 @@ module Snapshot
|
|
|
70
70
|
|
|
71
71
|
device_udid = nil
|
|
72
72
|
FastlaneCore::Simulator.all.each do |sim|
|
|
73
|
-
device_udid = sim.udid if sim.name.strip == device.strip
|
|
73
|
+
device_udid = sim.udid if sim.name.strip == device.strip and sim.ios_version == Snapshot.config[:ios_version]
|
|
74
74
|
end
|
|
75
75
|
|
|
76
76
|
value = "platform=iOS Simulator,id=#{device_udid},OS=#{Snapshot.config[:ios_version]}"
|
data/lib/snapshot/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: snapshot
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Felix Krause
|
|
@@ -250,7 +250,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
250
250
|
version: '0'
|
|
251
251
|
requirements: []
|
|
252
252
|
rubyforge_project:
|
|
253
|
-
rubygems_version: 2.4.
|
|
253
|
+
rubygems_version: 2.4.6
|
|
254
254
|
signing_key:
|
|
255
255
|
specification_version: 4
|
|
256
256
|
summary: Automate taking localized screenshots of your iOS app on every device
|