watirgrid 0.0.7 → 0.0.8.pre
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.
- data/.document +5 -5
- data/.gitignore +22 -22
- data/EXAMPLES.rdoc +131 -131
- data/HISTORY.rdoc +18 -18
- data/LICENSE +20 -20
- data/README.rdoc +82 -82
- data/Rakefile +44 -45
- data/bin/controller +59 -59
- data/bin/provider +63 -63
- data/examples/find_by_uuid.rb +28 -28
- data/examples/google.rb +18 -18
- data/examples/info.rb +13 -13
- data/examples/restart_firefox.rb +13 -13
- data/examples/simple.rb +18 -18
- data/lib/controller.rb +104 -104
- data/lib/provider.rb +228 -242
- data/lib/watirgrid.rb +167 -167
- data/spec/grid_spec.rb +148 -148
- data/spec/spec.opts +1 -1
- data/spec/spec_helper.rb +9 -9
- data/spec/stub.rb +48 -48
- data/spec/tuples_spec.rb +46 -46
- data/spec/utilities_spec.rb +50 -50
- data/spec/watir_spec.rb +59 -0
- data/spec/watirgrid_spec.rb +51 -51
- data/spec/webdriver_spec.rb +59 -0
- data/watirgrid.gemspec +32 -13
- metadata +36 -21
metadata
CHANGED
@@ -1,7 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: watirgrid
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 961916004
|
5
|
+
prerelease: true
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
- 8
|
10
|
+
- pre
|
11
|
+
version: 0.0.8.pre
|
5
12
|
platform: ruby
|
6
13
|
authors:
|
7
14
|
- Tim Koopmans
|
@@ -9,29 +16,25 @@ autorequire:
|
|
9
16
|
bindir: bin
|
10
17
|
cert_chain: []
|
11
18
|
|
12
|
-
date: 2010-
|
19
|
+
date: 2010-10-11 00:00:00 +11:00
|
13
20
|
default_executable:
|
14
21
|
dependencies:
|
15
22
|
- !ruby/object:Gem::Dependency
|
16
23
|
name: rspec
|
17
|
-
|
18
|
-
|
19
|
-
|
24
|
+
prerelease: false
|
25
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
26
|
+
none: false
|
20
27
|
requirements:
|
21
28
|
- - ">="
|
22
29
|
- !ruby/object:Gem::Version
|
30
|
+
hash: 13
|
31
|
+
segments:
|
32
|
+
- 1
|
33
|
+
- 2
|
34
|
+
- 9
|
23
35
|
version: 1.2.9
|
24
|
-
|
25
|
-
|
26
|
-
name: uuid
|
27
|
-
type: :runtime
|
28
|
-
version_requirement:
|
29
|
-
version_requirements: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - ">="
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: 2.2.0
|
34
|
-
version:
|
36
|
+
type: :development
|
37
|
+
version_requirements: *id001
|
35
38
|
description: WatirGrid allows for distributed testing across a grid network using Watir.
|
36
39
|
email: tim.koops@gmail.com
|
37
40
|
executables:
|
@@ -68,6 +71,8 @@ files:
|
|
68
71
|
- spec/utilities_spec.rb
|
69
72
|
- spec/watirgrid_spec.rb
|
70
73
|
- watirgrid.gemspec
|
74
|
+
- spec/watir_spec.rb
|
75
|
+
- spec/webdriver_spec.rb
|
71
76
|
has_rdoc: true
|
72
77
|
homepage: http://github.com/90kts/watirgrid
|
73
78
|
licenses: []
|
@@ -78,21 +83,29 @@ rdoc_options:
|
|
78
83
|
require_paths:
|
79
84
|
- lib
|
80
85
|
required_ruby_version: !ruby/object:Gem::Requirement
|
86
|
+
none: false
|
81
87
|
requirements:
|
82
88
|
- - ">="
|
83
89
|
- !ruby/object:Gem::Version
|
90
|
+
hash: 3
|
91
|
+
segments:
|
92
|
+
- 0
|
84
93
|
version: "0"
|
85
|
-
version:
|
86
94
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
95
|
+
none: false
|
87
96
|
requirements:
|
88
|
-
- - "
|
97
|
+
- - ">"
|
89
98
|
- !ruby/object:Gem::Version
|
90
|
-
|
91
|
-
|
99
|
+
hash: 25
|
100
|
+
segments:
|
101
|
+
- 1
|
102
|
+
- 3
|
103
|
+
- 1
|
104
|
+
version: 1.3.1
|
92
105
|
requirements: []
|
93
106
|
|
94
107
|
rubyforge_project:
|
95
|
-
rubygems_version: 1.3.
|
108
|
+
rubygems_version: 1.3.7
|
96
109
|
signing_key:
|
97
110
|
specification_version: 3
|
98
111
|
summary: "WatirGrid: Web Application Testing in Ruby across a grid network."
|
@@ -102,7 +115,9 @@ test_files:
|
|
102
115
|
- spec/stub.rb
|
103
116
|
- spec/tuples_spec.rb
|
104
117
|
- spec/utilities_spec.rb
|
118
|
+
- spec/watir_spec.rb
|
105
119
|
- spec/watirgrid_spec.rb
|
120
|
+
- spec/webdriver_spec.rb
|
106
121
|
- examples/find_by_uuid.rb
|
107
122
|
- examples/google.rb
|
108
123
|
- examples/info.rb
|