appium_lib_core 0.1.0 → 0.1.1
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/.gitignore +1 -0
- data/README.md +32 -1
- data/appium_lib_core.gemspec +3 -1
- data/lib/appium_lib_core/version.rb +1 -1
- data/release_notes.md +5 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c8ece47da94c268805eb431b20d411099c072b16
|
|
4
|
+
data.tar.gz: 7cbd93d666002cf928739f0a2c3355fe1b9d4943
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '08569855bfec486d334afdd76354a70bceab9a28c5c074b3ea677eff3e4ba4d8cfc2eb7d139a6b13b22792f4395dc45ded3f2cad4141b5dd093c52fd20379322'
|
|
7
|
+
data.tar.gz: 5eb6a35ae0c90ff6ae6a3f850c5e94f4215629a80737afa2e66f956035803cef499b71ab98b6387751db63788f90c8a596e3d3a6fd97533e40121d312afc98eb
|
data/.gitignore
CHANGED
data/README.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# AppiumLibCore
|
|
2
2
|
|
|
3
|
+
[](https://badge.fury.io/rb/appium_lib_core)
|
|
4
|
+
|
|
5
|
+
# Documentation
|
|
6
|
+
|
|
7
|
+
- http://www.rubydoc.info/github/appium/ruby_lib_core
|
|
8
|
+
|
|
9
|
+
# base library
|
|
3
10
|
- https://github.com/appium/ruby_lib
|
|
4
11
|
|
|
5
|
-
|
|
12
|
+
# How to start
|
|
13
|
+
## Start Appium server
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
$ npm install -g appium
|
|
17
|
+
$ appium
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Run tests
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
$ bundle install
|
|
24
|
+
$ rake test:func:android # Andorid
|
|
25
|
+
$ rake test:func:ios # iOS
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
# Release
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
$ bundle exec thor bump # bumpy, bumpz
|
|
32
|
+
$ bundle exec thor release
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
# License
|
|
36
|
+
Apache License v2
|
data/appium_lib_core.gemspec
CHANGED
|
@@ -4,6 +4,8 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
require 'appium_lib_core/version'
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
|
+
spec.required_ruby_version = '>= 2.2'
|
|
8
|
+
|
|
7
9
|
spec.name = 'appium_lib_core'
|
|
8
10
|
spec.version = Appium::Core::VERSION
|
|
9
11
|
spec.authors = ['Kazuaki MATSUO']
|
|
@@ -11,7 +13,7 @@ Gem::Specification.new do |spec|
|
|
|
11
13
|
|
|
12
14
|
spec.summary = %q{Minimal Ruby library for Appium.}
|
|
13
15
|
spec.description = %q{Minimal Ruby library for Appium.}
|
|
14
|
-
spec.homepage = 'https://github.com/appium/
|
|
16
|
+
spec.homepage = 'https://github.com/appium/ruby_lib_core/'
|
|
15
17
|
spec.license = 'Apache-2.0'
|
|
16
18
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
|
17
19
|
f.match(%r{^(doc|test|spec|features)/})
|
data/release_notes.md
CHANGED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
#### v0.1.1 2017-11-04
|
|
2
|
+
|
|
3
|
+
- [e5adc6d](https://github.com/appium/ruby_lib_core/commit/e5adc6d8d4a5db312dc7c11c73445d78c6239ec5) Release 0.1.1
|
|
4
|
+
- [271ba0d](https://github.com/appium/ruby_lib_core/commit/271ba0d206293968f313178ea8f75f68b29169eb) update readme and gemspec
|
|
5
|
+
- [f95b4de](https://github.com/appium/ruby_lib_core/commit/f95b4de01f9ed4bf68646c016da3b1236b0758cc) update readme
|
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: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kazuaki MATSUO
|
|
@@ -235,7 +235,7 @@ files:
|
|
|
235
235
|
- lib/appium_lib_core/patch.rb
|
|
236
236
|
- lib/appium_lib_core/version.rb
|
|
237
237
|
- release_notes.md
|
|
238
|
-
homepage: https://github.com/appium/
|
|
238
|
+
homepage: https://github.com/appium/ruby_lib_core/
|
|
239
239
|
licenses:
|
|
240
240
|
- Apache-2.0
|
|
241
241
|
metadata: {}
|
|
@@ -247,7 +247,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
247
247
|
requirements:
|
|
248
248
|
- - ">="
|
|
249
249
|
- !ruby/object:Gem::Version
|
|
250
|
-
version: '
|
|
250
|
+
version: '2.2'
|
|
251
251
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
252
252
|
requirements:
|
|
253
253
|
- - ">="
|