safariwatir 0.3.8 → 0.4.0
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/History.txt +21 -0
- data/Manifest +12 -0
- data/Rakefile +3 -2
- data/lib/safariwatir.rb +406 -69
- data/lib/safariwatir/element_attributes.rb +15 -0
- data/lib/safariwatir/locators.rb +127 -0
- data/lib/safariwatir/scripter.rb +205 -93
- data/safariwatir.gemspec +16 -15
- metadata +40 -14
data/safariwatir.gemspec
CHANGED
@@ -1,35 +1,36 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
spec = Gem::Specification.new do |s|
|
3
|
+
Gem::Specification.new do |s|
|
6
4
|
s.name = %q{safariwatir}
|
7
|
-
s.version = "0.
|
5
|
+
s.version = "0.4.0"
|
6
|
+
|
8
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
9
|
-
s.authors = ["Dave Hoover"
|
10
|
-
s.date =
|
8
|
+
s.authors = ["Dave Hoover"]
|
9
|
+
s.date = %q{2010-11-04}
|
11
10
|
s.description = %q{WATIR stands for "Web Application Testing in Ruby". See WATIR project for more information. This is a Safari-version of the original IE-only WATIR.}
|
12
11
|
s.email = %q{dave@obtiva.com}
|
13
|
-
s.extra_rdoc_files = ["lib/safariwatir/core_ext.rb", "lib/safariwatir/
|
14
|
-
s.files = ["lib/safariwatir
|
15
|
-
s.
|
16
|
-
s.homepage = %q{http://safariwatir.rubyforge.org/}
|
12
|
+
s.extra_rdoc_files = ["README.rdoc", "lib/safariwatir.rb", "lib/safariwatir/core_ext.rb", "lib/safariwatir/element_attributes.rb", "lib/safariwatir/locators.rb", "lib/safariwatir/scripter.rb", "lib/watir/exceptions.rb"]
|
13
|
+
s.files = ["History.txt", "README.rdoc", "Rakefile", "lib/safariwatir.rb", "lib/safariwatir/core_ext.rb", "lib/safariwatir/element_attributes.rb", "lib/safariwatir/locators.rb", "lib/safariwatir/scripter.rb", "lib/watir/exceptions.rb", "safariwatir.gemspec", "safariwatir_example.rb", "Manifest"]
|
14
|
+
s.homepage = %q{http://wiki.openqa.org/display/WTR/SafariWatir}
|
17
15
|
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Safariwatir", "--main", "README.rdoc"]
|
18
16
|
s.require_paths = ["lib"]
|
19
17
|
s.rubyforge_project = %q{safariwatir}
|
20
|
-
s.rubygems_version = %q{1.3.
|
18
|
+
s.rubygems_version = %q{1.3.7}
|
21
19
|
s.summary = %q{Automated testing tool for web applications.}
|
20
|
+
|
22
21
|
if s.respond_to? :specification_version then
|
23
22
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
24
|
-
s.specification_version =
|
25
|
-
|
23
|
+
s.specification_version = 3
|
24
|
+
|
25
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
26
|
+
s.add_runtime_dependency(%q<rb-appscript>, [">= 0"])
|
26
27
|
s.add_development_dependency(%q<rb-appscript>, [">= 0"])
|
27
28
|
else
|
28
29
|
s.add_dependency(%q<rb-appscript>, [">= 0"])
|
30
|
+
s.add_dependency(%q<rb-appscript>, [">= 0"])
|
29
31
|
end
|
30
32
|
else
|
31
33
|
s.add_dependency(%q<rb-appscript>, [">= 0"])
|
34
|
+
s.add_dependency(%q<rb-appscript>, [">= 0"])
|
32
35
|
end
|
33
36
|
end
|
34
|
-
|
35
|
-
Gem::Builder.new(spec).build if $0 == __FILE__
|
metadata
CHANGED
@@ -1,35 +1,51 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: safariwatir
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
+
hash: 15
|
4
5
|
prerelease: false
|
5
6
|
segments:
|
6
7
|
- 0
|
7
|
-
-
|
8
|
-
-
|
9
|
-
version: 0.
|
8
|
+
- 4
|
9
|
+
- 0
|
10
|
+
version: 0.4.0
|
10
11
|
platform: ruby
|
11
12
|
authors:
|
12
13
|
- Dave Hoover
|
13
|
-
- Tom Copeland
|
14
14
|
autorequire:
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-
|
18
|
+
date: 2010-11-04 00:00:00 -06:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
22
22
|
name: rb-appscript
|
23
23
|
prerelease: false
|
24
24
|
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
25
26
|
requirements:
|
26
27
|
- - ">="
|
27
28
|
- !ruby/object:Gem::Version
|
29
|
+
hash: 3
|
28
30
|
segments:
|
29
31
|
- 0
|
30
32
|
version: "0"
|
31
|
-
type: :
|
33
|
+
type: :runtime
|
32
34
|
version_requirements: *id001
|
35
|
+
- !ruby/object:Gem::Dependency
|
36
|
+
name: rb-appscript
|
37
|
+
prerelease: false
|
38
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
hash: 3
|
44
|
+
segments:
|
45
|
+
- 0
|
46
|
+
version: "0"
|
47
|
+
type: :development
|
48
|
+
version_requirements: *id002
|
33
49
|
description: WATIR stands for "Web Application Testing in Ruby". See WATIR project for more information. This is a Safari-version of the original IE-only WATIR.
|
34
50
|
email: dave@obtiva.com
|
35
51
|
executables: []
|
@@ -37,22 +53,28 @@ executables: []
|
|
37
53
|
extensions: []
|
38
54
|
|
39
55
|
extra_rdoc_files:
|
56
|
+
- README.rdoc
|
57
|
+
- lib/safariwatir.rb
|
40
58
|
- lib/safariwatir/core_ext.rb
|
59
|
+
- lib/safariwatir/element_attributes.rb
|
60
|
+
- lib/safariwatir/locators.rb
|
41
61
|
- lib/safariwatir/scripter.rb
|
42
|
-
- lib/safariwatir.rb
|
43
62
|
- lib/watir/exceptions.rb
|
44
|
-
- README.rdoc
|
45
63
|
files:
|
64
|
+
- History.txt
|
65
|
+
- README.rdoc
|
66
|
+
- Rakefile
|
67
|
+
- lib/safariwatir.rb
|
46
68
|
- lib/safariwatir/core_ext.rb
|
69
|
+
- lib/safariwatir/element_attributes.rb
|
70
|
+
- lib/safariwatir/locators.rb
|
47
71
|
- lib/safariwatir/scripter.rb
|
48
|
-
- lib/safariwatir.rb
|
49
72
|
- lib/watir/exceptions.rb
|
50
|
-
- Rakefile
|
51
|
-
- README.rdoc
|
52
73
|
- safariwatir.gemspec
|
53
74
|
- safariwatir_example.rb
|
75
|
+
- Manifest
|
54
76
|
has_rdoc: true
|
55
|
-
homepage: http://
|
77
|
+
homepage: http://wiki.openqa.org/display/WTR/SafariWatir
|
56
78
|
licenses: []
|
57
79
|
|
58
80
|
post_install_message:
|
@@ -66,16 +88,20 @@ rdoc_options:
|
|
66
88
|
require_paths:
|
67
89
|
- lib
|
68
90
|
required_ruby_version: !ruby/object:Gem::Requirement
|
91
|
+
none: false
|
69
92
|
requirements:
|
70
93
|
- - ">="
|
71
94
|
- !ruby/object:Gem::Version
|
95
|
+
hash: 3
|
72
96
|
segments:
|
73
97
|
- 0
|
74
98
|
version: "0"
|
75
99
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
100
|
+
none: false
|
76
101
|
requirements:
|
77
102
|
- - ">="
|
78
103
|
- !ruby/object:Gem::Version
|
104
|
+
hash: 11
|
79
105
|
segments:
|
80
106
|
- 1
|
81
107
|
- 2
|
@@ -83,9 +109,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
83
109
|
requirements: []
|
84
110
|
|
85
111
|
rubyforge_project: safariwatir
|
86
|
-
rubygems_version: 1.3.
|
112
|
+
rubygems_version: 1.3.7
|
87
113
|
signing_key:
|
88
|
-
specification_version:
|
114
|
+
specification_version: 3
|
89
115
|
summary: Automated testing tool for web applications.
|
90
116
|
test_files: []
|
91
117
|
|