zander 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/zander/version.rb +3 -2
- data/zander.gemspec +4 -3
- metadata +10 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6aaa7c38e9278f9c8474b0c371ea89110d9a98b1
|
4
|
+
data.tar.gz: 1fe1d38ba97b125b85d8cbe7c77acff4c03a954f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5aaa95cc9d3ec254634c89caba8907afa4d4f1d2b5b848e08ca732f5cdea55aed7e50983635079cb1a9dede55f27a3b0bb51da30170b1dcf065f28b501ede945
|
7
|
+
data.tar.gz: 09b171f1e978786c8581a613b8ca935bbe48322749a00406cc23d496c6a5cfa329dcb7e9d34d9455f457705958d72b7792b2edd40957e8b216de11853dd7eb0b
|
data/lib/zander/version.rb
CHANGED
data/zander.gemspec
CHANGED
@@ -3,17 +3,18 @@ $:.unshift lib unless $:.include?(lib)
|
|
3
3
|
|
4
4
|
require 'zander/version'
|
5
5
|
|
6
|
+
readme = File.open("README.md","rb").read
|
6
7
|
Gem::Specification.new do |s|
|
7
8
|
s.name = 'zander'
|
8
9
|
s.version = Zander::VERSION
|
9
10
|
s.date = '2014-11-13'
|
10
11
|
s.licenses = ['MIT']
|
11
|
-
s.summary = "
|
12
|
-
s.description = "
|
12
|
+
s.summary = "Streamline Selenium WebDriver Testing with Zander"
|
13
|
+
s.description = readme[((readme.index("-\n"))+2)...readme.index("\n\n")]
|
13
14
|
s.authors = ["Spencer Carlson"]
|
14
15
|
s.email = 'spencerdcarlson@gmail.com'
|
15
16
|
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
16
17
|
s.executables = %w(zander)
|
17
|
-
s.homepage = ''
|
18
|
+
s.homepage = 'https://github.com/spencerdcarlson/zander'
|
18
19
|
s.require_paths = %w(lib)
|
19
20
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zander
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Spencer Carlson
|
@@ -10,7 +10,13 @@ bindir: bin
|
|
10
10
|
cert_chain: []
|
11
11
|
date: 2014-11-13 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
|
-
description:
|
13
|
+
description: "There is a problem with fron-end testing. Websites are always changing.
|
14
|
+
**Zander** audaciously \nattempts to provid a solution. Give zander two files `sites.yaml`
|
15
|
+
and `actions.yaml`, and \nit will do all the work. `sites.yaml` will hold a list
|
16
|
+
of URLs and any variables like user_name or password\nthat are assocaited to a URL.
|
17
|
+
`actions.yaml` is a list of actions to take. \nactions contain attributes like action_type
|
18
|
+
and identifier where you specify \nthe action to preform and how to identifie the
|
19
|
+
DOM element.\nSee Custom Input Example below."
|
14
20
|
email: spencerdcarlson@gmail.com
|
15
21
|
executables:
|
16
22
|
- zander
|
@@ -34,7 +40,7 @@ files:
|
|
34
40
|
- share/actions.yaml
|
35
41
|
- share/sites.yaml
|
36
42
|
- zander.gemspec
|
37
|
-
homepage:
|
43
|
+
homepage: https://github.com/spencerdcarlson/zander
|
38
44
|
licenses:
|
39
45
|
- MIT
|
40
46
|
metadata: {}
|
@@ -57,6 +63,6 @@ rubyforge_project:
|
|
57
63
|
rubygems_version: 2.2.2
|
58
64
|
signing_key:
|
59
65
|
specification_version: 4
|
60
|
-
summary:
|
66
|
+
summary: Streamline Selenium WebDriver Testing with Zander
|
61
67
|
test_files: []
|
62
68
|
has_rdoc:
|