File tree 2 files changed +23
-2
lines changed
2 files changed +23
-2
lines changed Original file line number Diff line number Diff line change 1
1
# AppiumLibCore
2
2
3
+ [ ![ Gem Version] ( https://badge.fury.io/rb/appium_lib_core.svg )] ( 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
- [ Documentation] ( http://www.rubydoc.info/github/appium/ruby_lib_core )
12
+ # How to start
13
+ ## Start Appium server
14
+
15
+ ``` bash
16
+ $ npm install -g appium
17
+ $ appium
18
+ ```
6
19
20
+ ## Run tests
7
21
22
+ ``` bash
23
+ $ bundle install
24
+ $ rake test:func:android # Andorid
25
+ $ rake test:func:ios # iOS
26
+ ```
8
27
9
28
# Release
10
29
Original file line number Diff line number Diff line change @@ -4,14 +4,16 @@ $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' ]
10
12
spec . email = [ 'fly.49.89.over@gmail.com' ]
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/ruby_lib '
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)/} )
You can’t perform that action at this time.
0 commit comments