appium_lib_core 13.1.2 → 13.1.3
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 +4 -4
- data/CHANGELOG.md +7 -0
- data/appium_lib_core.gemspec +25 -0
- data/lib/appium_lib_core/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2a3e07bd8b81e3b5ff0429d7d3c786373bcaaa89c88c141561079357e0cd30c4
|
|
4
|
+
data.tar.gz: 1f1867c731d2a84f9d4853f48c2c9e9e1cb7e2c8e5e262a1e4f4230dfbe31e7e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1addf77654cbd05b97054d930104d8635c32718cb7841682fd011910887cc1a31adae15d81cc20d8282e1b7babdad1a0c3bbd82d6e6cf5772465988c715b68c5
|
|
7
|
+
data.tar.gz: '0190a838d93f05ef1bad95db3166f8a47731155465031ddd4dba8635761bbe518c6aba08da049c7f5163c25b5585b21f20ab3230d39b663ab2d201365d2804ed'
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
New entries are generated by Release Please. Historical commit-level details through 13.1.0 remain in `release_notes.md`.
|
|
4
4
|
|
|
5
|
+
## [13.1.3](https://github.com/appium/ruby_lib_core/compare/v13.1.2...v13.1.3) (2026-09-13)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* keep gemspec ([3c01c45](https://github.com/appium/ruby_lib_core/commit/3c01c4536e07f427b87cb040f8d79d1348ae6c29))
|
|
11
|
+
|
|
5
12
|
## [13.1.2](https://github.com/appium/ruby_lib_core/compare/v13.1.1...v13.1.2) (2026-09-13)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
require_relative 'lib/appium_lib_core/version'
|
|
2
|
+
|
|
3
|
+
Gem::Specification.new do |spec|
|
|
4
|
+
spec.required_ruby_version = Gem::Requirement.new('>= 3.1')
|
|
5
|
+
|
|
6
|
+
spec.name = 'appium_lib_core'
|
|
7
|
+
spec.version = Appium::Core::VERSION
|
|
8
|
+
spec.authors = ['Kazuaki MATSUO']
|
|
9
|
+
spec.email = ['fly.49.89.over@gmail.com']
|
|
10
|
+
|
|
11
|
+
spec.summary = 'Minimal Ruby library for Appium.'
|
|
12
|
+
spec.description = 'Core Ruby client for Appium, extending Selenium WebDriver with Appium-specific commands.'
|
|
13
|
+
spec.homepage = 'https://github.com/appium/ruby_lib_core/'
|
|
14
|
+
spec.license = 'Apache-2.0'
|
|
15
|
+
spec.files = Dir.glob(%w[lib/**/*.rb sig/**/*.rbs README.md LICENSE.txt CHANGELOG.md appium_lib_core.gemspec])
|
|
16
|
+
spec.require_paths = ['lib']
|
|
17
|
+
|
|
18
|
+
spec.add_dependency 'selenium-webdriver', '~> 4.21'
|
|
19
|
+
|
|
20
|
+
spec.metadata['rubygems_mfa_required'] = 'true'
|
|
21
|
+
spec.metadata['source_code_uri'] = spec.homepage
|
|
22
|
+
spec.metadata['bug_tracker_uri'] = 'https://github.com/appium/ruby_lib_core/issues'
|
|
23
|
+
spec.metadata['changelog_uri'] = 'https://github.com/appium/ruby_lib_core/blob/master/CHANGELOG.md'
|
|
24
|
+
spec.metadata['documentation_uri'] = 'https://www.rubydoc.info/gems/appium_lib_core'
|
|
25
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: appium_lib_core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 13.1.
|
|
4
|
+
version: 13.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kazuaki MATSUO
|
|
@@ -34,6 +34,7 @@ files:
|
|
|
34
34
|
- CHANGELOG.md
|
|
35
35
|
- LICENSE.txt
|
|
36
36
|
- README.md
|
|
37
|
+
- appium_lib_core.gemspec
|
|
37
38
|
- lib/appium_lib_core.rb
|
|
38
39
|
- lib/appium_lib_core/android.rb
|
|
39
40
|
- lib/appium_lib_core/android/device.rb
|