Skip to content

Commit 271ba0d

Browse files
committed
update readme and gemspec
1 parent f95b4de commit 271ba0d

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

README.md

+20-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,29 @@
11
# AppiumLibCore
22

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
310
- https://github.com/appium/ruby_lib
411

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+
```
619

20+
## Run tests
721

22+
```bash
23+
$ bundle install
24+
$ rake test:func:android # Andorid
25+
$ rake test:func:ios # iOS
26+
```
827

928
# Release
1029

appium_lib_core.gemspec

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,16 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
44
require 'appium_lib_core/version'
55

66
Gem::Specification.new do |spec|
7+
spec.required_ruby_version = '>= 2.2'
8+
79
spec.name = 'appium_lib_core'
810
spec.version = Appium::Core::VERSION
911
spec.authors = ['Kazuaki MATSUO']
1012
spec.email = ['fly.49.89.over@gmail.com']
1113

1214
spec.summary = %q{Minimal Ruby library for Appium.}
1315
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/'
1517
spec.license = 'Apache-2.0'
1618
spec.files = `git ls-files -z`.split("\x0").reject do |f|
1719
f.match(%r{^(doc|test|spec|features)/})

0 commit comments

Comments
 (0)