fastlane-plugin-saucectl 0.1.5.pre → 0.1.8.pre
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -2
- data/lib/fastlane/plugin/saucectl/helper/installer.rb +2 -2
- data/lib/fastlane/plugin/saucectl/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4399e938c86dc69bd02020009818d9bc02005f725f0b755d35c00ca28c5ae0bf
|
4
|
+
data.tar.gz: 31372ee614c61e840ae19bbcae97c6f70307b94b055fdf22cccaf87ac1bdbb23
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c38a402b2d7c15ffc1ecab5030aaddb4ba8f97e14d2a718eed1628af3fb327f7c3ee77077f5dbaac634460446768305b5a75d8ebc1fa73e68f10f091797d040a
|
7
|
+
data.tar.gz: 326652e3cdb51cc6c46ca2601bf334f42e689df189a8d0acac85033f1f9bbcfda1f620624cf3e5093321294b8fb98eb8cb38168d88d96805a3579ad3ed45019d
|
data/README.md
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
# fastlane-plugin-saucectl
|
2
2
|
|
3
3
|
[![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-saucectl)
|
4
|
-
[![
|
4
|
+
[![Gem Version](https://badge.fury.io/rb/fastlane-plugin-saucectl.svg)](https://badge.fury.io/rb/fastlane-plugin-saucectl)
|
5
|
+
[![Gem Downloads](https://img.shields.io/gem/dt/fastlane-plugin-saucectl?color=light-green)](https://img.shields.io/gem/dt/fastlane-plugin-saucectl)
|
5
6
|
|
6
7
|
## Getting Started
|
7
8
|
|
@@ -15,7 +16,7 @@ fastlane add_plugin saucectl
|
|
15
16
|
|
16
17
|
The purpose of this plugin is to simplify the set up, configuration, upload, and execution of espresso and XCUITest on the Sauce Labs platform by utilizing fastlane which will enable you to test your iOS and Android apps at scale.
|
17
18
|
|
18
|
-
**IMPORTANT:** in order for you to use this plugin to execute UI tests, your test class names must proceed with Spec
|
19
|
+
**IMPORTANT:** in order for you to use this plugin to execute UI tests, your test class names must proceed with `Spec`, `Specs`, `Tests`, or `Test`, for example `ExampleSpec`, `ExampleSpecs`, `ExampleTest`, `ExampleTests`. Your test case names must also begin with test, for example `testIDoSomething`, `testIDoSomethingElse`. This is so that the the plugin can search for test classes and their included test cases.
|
19
20
|
|
20
21
|
Failure to do this will result in missing test classes and test cases from your test run.
|
21
22
|
|
@@ -26,13 +26,13 @@ module Fastlane
|
|
26
26
|
|
27
27
|
def download_saucectl_installer
|
28
28
|
URI.open('sauce', 'wb') do |file|
|
29
|
-
file << URI.open('https://saucelabs.github.io/saucectl/install').read
|
29
|
+
file << URI.open('https://saucelabs.github.io/saucectl/install', ssl_verify_mode: OpenSSL::SSL::VERIFY_NONE).read
|
30
30
|
end
|
31
31
|
end
|
32
32
|
|
33
33
|
def execute_saucectl_installer
|
34
34
|
status = system('sh sauce')
|
35
|
-
status == 1 ? UI.user_error!("❌ failed to install saucectl
|
35
|
+
status == 1 ? UI.user_error!("❌ failed to install saucectl") : status
|
36
36
|
executable = 'saucectl'
|
37
37
|
FileUtils.mv("bin/#{executable}", executable) unless File.exist?(executable)
|
38
38
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-saucectl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.8.pre
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ian Hamilton
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-03-
|
11
|
+
date: 2022-03-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -205,14 +205,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
205
205
|
requirements:
|
206
206
|
- - ">="
|
207
207
|
- !ruby/object:Gem::Version
|
208
|
-
version: '2.
|
208
|
+
version: '2.5'
|
209
209
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
210
210
|
requirements:
|
211
211
|
- - ">"
|
212
212
|
- !ruby/object:Gem::Version
|
213
213
|
version: 1.3.1
|
214
214
|
requirements: []
|
215
|
-
rubygems_version: 3.3
|
215
|
+
rubygems_version: 3.0.3
|
216
216
|
signing_key:
|
217
217
|
specification_version: 4
|
218
218
|
summary: Simplify the set up, configuration, upload, and execution of espresso and
|