appium_thor 2.0.6 → 2.1.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 38875a28ac864ff69b68afbfdecf71f06a528c4d70fcad2a28864400918bc631
4
- data.tar.gz: 6f16c392c229b4715493e981825a3a8fb009d81e85eaa7277c69c96de8a8da0b
3
+ metadata.gz: 96139b1406874bb460132d2b19135508e41c3d04a6412a877480bc99c12460b2
4
+ data.tar.gz: 2b3b9cc3c876fbeb4b28cf3b0a56de75e50fb8b2af158c20f6b984a41d00c5c9
5
5
  SHA512:
6
- metadata.gz: 666758c994fc6b98393c8a9147514222d11088632154b09e7a6e51e9de06ed42c8e17c98b3aff982654b8d2ac3fcf22def3397c429d7a421b13b35c9e7770490
7
- data.tar.gz: 9744a558cc1f669bd842e18888e3599062406746cf680fa65f82d5573426e81b5e04c0f492b0934877ae5dccb162071ff1d64a59a9ce2067a024b8270fc915b5
6
+ metadata.gz: d0e0ca1cf7c2c3343215ef0d41bc1d5c2af954664ae25a2afa165106ea1331872f747af3ba3859c0f28b870c1da1fc8da65737a2d0010737abdd89ea7cd35254
7
+ data.tar.gz: 3a962c6eb306b11b0ed524b045538a2dfd479f0af9604b5a02b03b43d5eeacce2b4c712150f1c80dcbac3e34eae01e61fbcc9c43f00d614772ffe59caa34e2a5
data/README.md CHANGED
@@ -1,7 +1,6 @@
1
1
  # appium_thor
2
2
 
3
- [![Gem Version](https://badge.fury.io/rb/appium_thor.svg)](https://rubygems.org/gems/appium_thor)
4
-
3
+ [![Gem Version](https://badge.fury.io/rb/appium_thor.svg)](https://badge.fury.io/rb/appium_thor)
5
4
 
6
5
  Appium Thor helpers for appium's gems (appium_lib, appium_capybara).
7
6
 
data/appium_thor.gemspec CHANGED
@@ -1,11 +1,10 @@
1
1
  require_relative 'lib/appium_thor/version'
2
2
 
3
3
  Gem::Specification.new do |s|
4
- s.required_ruby_version = '>= 3.0'
4
+ s.required_ruby_version = '>= 3.1'
5
5
 
6
6
  s.name = 'appium_thor'
7
7
  s.version = Appium::Thor::VERSION
8
- s.date = Appium::Thor::DATE
9
8
  s.license = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
10
9
  s.description = s.summary = 'Thor tasks for Appium gems.'
11
10
  s.authors = ['code@bootstraponline.com', 'Kazuaki Matsuo']
@@ -13,7 +12,7 @@ Gem::Specification.new do |s|
13
12
  s.homepage = 'https://github.com/appium/appium_thor'
14
13
  s.require_paths = ['lib']
15
14
 
16
- s.add_runtime_dependency 'thor', '>= 0.19', '< 2.0'
15
+ s.add_dependency 'thor', '>= 0.19', '< 2.0'
17
16
 
18
17
  s.files = `git ls-files`.split "\n"
19
18
  end
@@ -1,6 +1,6 @@
1
1
  module Appium
2
2
  module Thor
3
- VERSION = '2.0.6' unless defined? ::Appium::Thor::VERSION
4
- DATE = '2024-04-27' unless defined? ::Appium::Thor::DATE
3
+ VERSION = '2.1.0' unless defined? ::Appium::Thor::VERSION
4
+ DATE = '2025-01-25' unless defined? ::Appium::Thor::DATE
5
5
  end
6
6
  end
data/release_notes.md CHANGED
@@ -1,3 +1,10 @@
1
+ #### v2.1.0 2025-01-25
2
+
3
+ - [52ccc71](https://github.com/appium/appium_thor/commit/52ccc7110becccfe7d91d1333ac25ae0c2298117) Release 2.1.0
4
+ - [74d2946](https://github.com/appium/appium_thor/commit/74d2946fe8cfbf5af710785cbff3be1dfc45a2f1) feat: update ruby version
5
+ - [9049fdf](https://github.com/appium/appium_thor/commit/9049fdf6272c9f68fe3f8f19a01b3a4768c111a6) docs: update badge
6
+
7
+
1
8
  #### v2.0.6 2024-04-27
2
9
 
3
10
  - [a135b43](https://github.com/appium/appium_thor/commit/a135b43f742cb1aa7acc2269502b010fed518b29) Release 2.0.6
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appium_thor
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.6
4
+ version: 2.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - code@bootstraponline.com
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2024-04-27 00:00:00.000000000 Z
12
+ date: 2025-01-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: thor
@@ -64,14 +64,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
64
64
  requirements:
65
65
  - - ">="
66
66
  - !ruby/object:Gem::Version
67
- version: '3.0'
67
+ version: '3.1'
68
68
  required_rubygems_version: !ruby/object:Gem::Requirement
69
69
  requirements:
70
70
  - - ">="
71
71
  - !ruby/object:Gem::Version
72
72
  version: '0'
73
73
  requirements: []
74
- rubygems_version: 3.3.27
74
+ rubygems_version: 3.5.9
75
75
  signing_key:
76
76
  specification_version: 4
77
77
  summary: Thor tasks for Appium gems.