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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 15e9cc1f3e08d37be212ce3b43c2f91ab661f598
4
- data.tar.gz: 89b0f1edfb7c601d60b4f87f1b3466edf3b902c0
3
+ metadata.gz: c8ece47da94c268805eb431b20d411099c072b16
4
+ data.tar.gz: 7cbd93d666002cf928739f0a2c3355fe1b9d4943
5
5
  SHA512:
6
- metadata.gz: 141dc0a740af114bec31881051e294b55874b715d2d13f90f6a6c81dc5dd16d05852ba880055c3e71feecab2fee5c8e1628c1743826918ae30db707602c9df68
7
- data.tar.gz: 78a3d6e363ce0a9a24c2041fe32a77d4d9506ee6d9ca01424e6f1958ddd5ef9c69c88fbcfe0e049ecb3d854c0f5f5b8c6fc19995e8f0d004042a5b5f4ad54931
6
+ metadata.gz: '08569855bfec486d334afdd76354a70bceab9a28c5c074b3ea677eff3e4ba4d8cfc2eb7d139a6b13b22792f4395dc45ded3f2cad4141b5dd093c52fd20379322'
7
+ data.tar.gz: 5eb6a35ae0c90ff6ae6a3f850c5e94f4215629a80737afa2e66f956035803cef499b71ab98b6387751db63788f90c8a596e3d3a6fd97533e40121d312afc98eb
data/.gitignore CHANGED
@@ -4,6 +4,7 @@
4
4
  /_yardoc/
5
5
  /coverage/
6
6
  /doc/
7
+ /docs/
7
8
  /pkg/
8
9
  /spec/reports/
9
10
  /tmp/
data/README.md CHANGED
@@ -1,5 +1,36 @@
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
+ ```
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
@@ -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/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)/})
@@ -1,6 +1,6 @@
1
1
  module Appium
2
2
  module Core
3
- VERSION = '0.1.0'.freeze unless defined? ::Appium::Core::VERSION
3
+ VERSION = '0.1.1'.freeze unless defined? ::Appium::Core::VERSION
4
4
  DATE = '2017-11-04'.freeze unless defined? ::Appium::Core::DATE
5
5
  end
6
6
  end
@@ -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.0
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/ruby_lib
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: '0'
250
+ version: '2.2'
251
251
  required_rubygems_version: !ruby/object:Gem::Requirement
252
252
  requirements:
253
253
  - - ">="