appium_capybara 1.2.0 → 1.2.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/appium_capybara.gemspec +2 -2
- data/contributing.md +23 -0
- data/lib/appium_capybara/version.rb +2 -2
- data/release_notes.md +9 -0
- metadata +4 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dcaa3b3ff61f1ef5be33c9669abbe8cb2b033904
|
|
4
|
+
data.tar.gz: 64b3658115760f7df8f50c3569e23faafa61620f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9a04e754a3d64d62d4b04937a82992cb922939e37807f0761d679d7573491dd2053668a6752f1a3667895ff0b794ca87ab071d14b96e36e58f0f7cc1cb809e24
|
|
7
|
+
data.tar.gz: fd6853ffe43d951e0405888349820b5d71b31d556b673b3ce6e4b543d653c1fca6fd52ab064b4c3fae7b100daa55d2fdcd129f84f74c0e649fd866af29b8ff11
|
data/appium_capybara.gemspec
CHANGED
|
@@ -16,11 +16,11 @@ Gem::Specification.new do |s|
|
|
|
16
16
|
s.license = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
|
|
17
17
|
s.description = s.summary = 'Enables appium support in Capybara'
|
|
18
18
|
s.description += '.' # avoid identical warning
|
|
19
|
-
s.authors = s.email = ['scott.bonebrake@gmail.com', 'code@bootstraponline.com']
|
|
19
|
+
s.authors = s.email = ['scott.bonebrake@gmail.com', 'code@bootstraponline.com', 'jason.s.carr@gmail.com']
|
|
20
20
|
s.homepage = 'https://github.com/appium/appium_capybara'
|
|
21
21
|
s.require_paths = ['lib']
|
|
22
22
|
|
|
23
|
-
s.add_runtime_dependency 'appium_lib', '
|
|
23
|
+
s.add_runtime_dependency 'appium_lib', '>= 4.1.0'
|
|
24
24
|
s.add_runtime_dependency 'capybara', '~> 2.4', '>= 2.4.1'
|
|
25
25
|
|
|
26
26
|
s.add_development_dependency 'appium_thor', '~> 0.0', '>= 0.0.7'
|
data/contributing.md
CHANGED
|
@@ -1 +1,24 @@
|
|
|
1
1
|
appium_capybara strives to follow the [GitHub Ruby style guide](https://github.com/styleguide/ruby)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
# Thor commands
|
|
5
|
+
|
|
6
|
+
```
|
|
7
|
+
$ thor list
|
|
8
|
+
default
|
|
9
|
+
-------
|
|
10
|
+
thor build # Build a new gem
|
|
11
|
+
thor bump # Bump the z version number and update the date.
|
|
12
|
+
thor bumpx # Bump the x version number, set y & z to zero, update the date.
|
|
13
|
+
thor bumpy # Bump the y version number, set z to zero, update the date.
|
|
14
|
+
thor byte # Remove non-ascii bytes from all *.rb files in the current dir
|
|
15
|
+
thor docs # Update docs
|
|
16
|
+
thor gem_install # Install gem
|
|
17
|
+
thor gem_uninstall # Uninstall gem
|
|
18
|
+
thor info # prints config info for this gem
|
|
19
|
+
thor notes # Update release notes
|
|
20
|
+
thor publish # Build and release a new gem to rubygems.org
|
|
21
|
+
thor release # Build and release a new gem to rubygems.org (same as publish)
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
To release use `thor bump` then `thor publish`
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
module Appium
|
|
2
2
|
module Capybara
|
|
3
|
-
VERSION = '1.2.
|
|
4
|
-
DATE = '2014-
|
|
3
|
+
VERSION = '1.2.1' unless defined? ::Appium::Capybara::VERSION
|
|
4
|
+
DATE = '2014-12-29' unless defined? ::Appium::Capybara::DATE
|
|
5
5
|
end
|
|
6
6
|
end
|
data/release_notes.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
#### v1.2.1 2014-12-29
|
|
2
|
+
|
|
3
|
+
- [57ad02c](https://github.com/appium/appium_capybara/commit/57ad02c3aac2c34f5710149bff6ea92d5309d421) Release 1.2.1
|
|
4
|
+
- [1ab8564](https://github.com/appium/appium_capybara/commit/1ab856478e7495347dbbd5d2737c9cc55106b3bf) Release 1.2.1
|
|
5
|
+
- [97de881](https://github.com/appium/appium_capybara/commit/97de8812b54d84d2a4681672c436f06609080334) Loosen restriction on ruby_lib version
|
|
6
|
+
- [691164f](https://github.com/appium/appium_capybara/commit/691164f033e6b952ca1fe2ce131a40c76c03e825) Update contributing.md
|
|
7
|
+
- [36233a8](https://github.com/appium/appium_capybara/commit/36233a866dfdac59fab56ea613cce6d766b5718c) Add maudineormsby to gem owner list
|
|
8
|
+
|
|
9
|
+
|
|
1
10
|
#### v1.2.0 2014-11-24
|
|
2
11
|
|
|
3
12
|
- [7c8f2c2](https://github.com/appium/appium_capybara/commit/7c8f2c238059b715488b482415f58f7021f05012) Release 1.2.0
|
metadata
CHANGED
|
@@ -1,23 +1,21 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: appium_capybara
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- scott.bonebrake@gmail.com
|
|
8
8
|
- code@bootstraponline.com
|
|
9
|
+
- jason.s.carr@gmail.com
|
|
9
10
|
autorequire:
|
|
10
11
|
bindir: bin
|
|
11
12
|
cert_chain: []
|
|
12
|
-
date: 2014-
|
|
13
|
+
date: 2014-12-29 00:00:00.000000000 Z
|
|
13
14
|
dependencies:
|
|
14
15
|
- !ruby/object:Gem::Dependency
|
|
15
16
|
name: appium_lib
|
|
16
17
|
requirement: !ruby/object:Gem::Requirement
|
|
17
18
|
requirements:
|
|
18
|
-
- - "~>"
|
|
19
|
-
- !ruby/object:Gem::Version
|
|
20
|
-
version: '4'
|
|
21
19
|
- - ">="
|
|
22
20
|
- !ruby/object:Gem::Version
|
|
23
21
|
version: 4.1.0
|
|
@@ -25,9 +23,6 @@ dependencies:
|
|
|
25
23
|
prerelease: false
|
|
26
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
27
25
|
requirements:
|
|
28
|
-
- - "~>"
|
|
29
|
-
- !ruby/object:Gem::Version
|
|
30
|
-
version: '4'
|
|
31
26
|
- - ">="
|
|
32
27
|
- !ruby/object:Gem::Version
|
|
33
28
|
version: 4.1.0
|
|
@@ -75,6 +70,7 @@ description: Enables appium support in Capybara.
|
|
|
75
70
|
email:
|
|
76
71
|
- scott.bonebrake@gmail.com
|
|
77
72
|
- code@bootstraponline.com
|
|
73
|
+
- jason.s.carr@gmail.com
|
|
78
74
|
executables: []
|
|
79
75
|
extensions: []
|
|
80
76
|
extra_rdoc_files: []
|