fastlane-plugin-saucectl 0.1.6.pre → 0.1.10.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: 7b541afd17beb46529fcf9cc5f41ad423f0fba87d4ee44a5b0a5b5624cd97a48
4
+ data.tar.gz: f1c4e08892d579ea854a74cea8bceceb9b2f2e49826a1ad53798cb2c7a5fcf34
5
5
  SHA512:
6
- metadata.gz: dda5e7f653297d58c86e3d1fdec85d646dbdc0524e4c97e690195274d58fcc8ad11897d9f6f6865b6804820612a3ba2b5c986616c673768d33a9a1ea7e1d44df
7
- data.tar.gz: fbc36e7c6358194523241bb7c2373c15516fd521d528fb4992b9fdef3c1402d21221e5b1185de1708e212fa08e4af823da07302e143bc014525d07db1aca7525
6
+ metadata.gz: '093215e064f8e678857f4724e1e7c44bbae917e9f1a1abf82a1ea3f69e5f4e10616999f0d3d55c599f755a43bdcf579e5db21dd6ca2644a4f9ad8f585e7cdb6e'
7
+ data.tar.gz: 59e081017b84b9be9ef4aded8598a67b05aee191b0821a39b2c9424cf988c4dcf821ee42289ed240882636486cbacae7c30eeff9e06edfaaa667afe492f85449
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,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: #{stderr}") : status
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
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Saucectl
3
- VERSION = "0.1.6.pre"
3
+ VERSION = '0.1.10.pre'.freeze
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.10.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
@@ -196,7 +196,7 @@ homepage: https://github.com/ianrhamilton/fastlane-plugin-saucectl
196
196
  licenses:
197
197
  - MIT
198
198
  metadata:
199
- rubygems_mfa_required: 'true'
199
+ rubygems_mfa_required: 'false'
200
200
  post_install_message:
201
201
  rdoc_options: []
202
202
  require_paths:
@@ -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