screengrab 0.5.4 → 0.5.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/screengrab/runner.rb +2 -2
- data/version.properties +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 32ed18656b9f74be59398a3c10a2e8a80104b583
|
4
|
+
data.tar.gz: 487915e40c8748765a43e3765293428d6243312d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c9d3366c0370a1139df8d6be5ef9ced736c798631627cd3fb2581904d0569950395356ab7f1ed21b9b20d35485d667dcafa9d4a5e4ea1d579bc9280e09ced20
|
7
|
+
data.tar.gz: e475d27efe7b9bdfd8ee683eb53013b93980b7cdadc1e604d3a68cc8a844354055e711b396114061d2058a0f224ba474f66b61c57429e07165d183656a07258c
|
data/lib/screengrab/runner.rb
CHANGED
@@ -177,13 +177,13 @@ module Screengrab
|
|
177
177
|
|
178
178
|
def install_apks(device_serial, app_apk_path, tests_apk_path)
|
179
179
|
UI.message 'Installing app APK'
|
180
|
-
apk_install_output = run_adb_command("adb -s #{device_serial} install -r #{app_apk_path}",
|
180
|
+
apk_install_output = run_adb_command("adb -s #{device_serial} install -r #{app_apk_path.shellescape}",
|
181
181
|
print_all: true,
|
182
182
|
print_command: true)
|
183
183
|
UI.user_error! "App APK could not be installed" if apk_install_output.include?("Failure [")
|
184
184
|
|
185
185
|
UI.message 'Installing tests APK'
|
186
|
-
apk_install_output = run_adb_command("adb -s #{device_serial} install -r #{tests_apk_path}",
|
186
|
+
apk_install_output = run_adb_command("adb -s #{device_serial} install -r #{tests_apk_path.shellescape}",
|
187
187
|
print_all: true,
|
188
188
|
print_command: true)
|
189
189
|
UI.user_error! "Tests APK could not be installed" if apk_install_output.include?("Failure [")
|
data/version.properties
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: screengrab
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrea Falcone
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2016-10-
|
12
|
+
date: 2016-10-11 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: fastlane_core
|
@@ -17,7 +17,7 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - ">="
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: 0.52.
|
20
|
+
version: 0.52.1
|
21
21
|
- - "<"
|
22
22
|
- !ruby/object:Gem::Version
|
23
23
|
version: 1.0.0
|
@@ -27,7 +27,7 @@ dependencies:
|
|
27
27
|
requirements:
|
28
28
|
- - ">="
|
29
29
|
- !ruby/object:Gem::Version
|
30
|
-
version: 0.52.
|
30
|
+
version: 0.52.1
|
31
31
|
- - "<"
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: 1.0.0
|
@@ -228,7 +228,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
228
228
|
version: '0'
|
229
229
|
requirements: []
|
230
230
|
rubyforge_project:
|
231
|
-
rubygems_version: 2.5.1
|
231
|
+
rubygems_version: 2.4.5.1
|
232
232
|
signing_key:
|
233
233
|
specification_version: 4
|
234
234
|
summary: Automated localized screenshots of your Android app on every device
|