fastlane-plugin-saucectl 0.1.6.pre → 0.1.7.pre

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ef06de19364379f2f875cef720dc633aa7183766a4d471274f53d660c17920c8
4
- data.tar.gz: 5908aea97ba3ae4b2ef539ebd4d772c1d90f65ef0aa7978c39416263c6bb17ec
3
+ metadata.gz: 07be5f798087388a45ce875f92ffe4892fe728fdfa8825cc88924f11cb101994
4
+ data.tar.gz: f385ab9dc55f2aac8c5504e3ce86da06b150153fd57ce4dba280153b03e3435d
5
5
  SHA512:
6
- metadata.gz: dda5e7f653297d58c86e3d1fdec85d646dbdc0524e4c97e690195274d58fcc8ad11897d9f6f6865b6804820612a3ba2b5c986616c673768d33a9a1ea7e1d44df
7
- data.tar.gz: fbc36e7c6358194523241bb7c2373c15516fd521d528fb4992b9fdef3c1402d21221e5b1185de1708e212fa08e4af823da07302e143bc014525d07db1aca7525
6
+ metadata.gz: 57ed2142cc42c0d766e4f19d829c5d37f3d16db60f269f8cc309143a9f9cc56228f66100e2aa8e6fc0aaabf31be1c8604c4f75936ec55beb6588321ea844e54b
7
+ data.tar.gz: d774d1c3692854870497e886e2c76a8f37439077cbcf3a5ae7815ddb9c0033c70cca449209db8af5a675b37068cfdd1aea264ab0e462a4789fa40af25c59abaa
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
- [![codecov](https://codecov.io/gh/ianrhamilton/fastlane-plugin-rsaucectl/branch/main/graph/badge.svg?token=NSVhqgYFYv)](https://codecov.io/gh/ianrhamilton/fastlane-plugin-saucectl)
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, 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
+ **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,7 +26,7 @@ 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
 
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Saucectl
3
- VERSION = "0.1.6.pre"
3
+ VERSION = "0.1.7.pre"
4
4
  end
5
5
  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.6.pre
4
+ version: 0.1.7.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-23 00:00:00.000000000 Z
11
+ date: 2022-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -212,7 +212,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
212
212
  - !ruby/object:Gem::Version
213
213
  version: 1.3.1
214
214
  requirements: []
215
- rubygems_version: 3.3.7
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