bermuda 0.0.3 → 0.0.4
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/.gitignore +3 -0
- data/Gemfile +3 -0
- data/Rakefile +14 -1
- data/bermuda.gemspec +4 -3
- data/features/step_definitions.feature +1 -0
- data/features/support/env.rb +1 -0
- data/features/support/public/accordion.html +3 -3
- data/features/support/public/autocomplete.html +3 -3
- data/features/support/public/dialog.html +3 -3
- data/features/support/public/jquery-ui/1.8.10.css +571 -0
- data/features/support/public/jquery-ui/1.8.10.js +11544 -0
- data/features/support/public/jquery-ui/1.8.8.css +570 -0
- data/features/support/public/jquery-ui/1.8.8.js +11524 -0
- data/features/support/public/jquery-ui/1.8.9.css +571 -0
- data/features/support/public/jquery-ui/1.8.9.js +11530 -0
- data/features/support/public/jquery/1.4.4.js +7179 -0
- data/features/support/public/jquery/1.5.1.js +8316 -0
- data/features/support/public/progressbar.html +3 -3
- data/features/support/public/slider.html +3 -3
- data/features/support/public/tabs.html +3 -3
- data/lib/bermuda/version.rb +1 -1
- metadata +102 -103
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
<html>
|
|
3
3
|
<head>
|
|
4
4
|
<title>Progress Bar</title>
|
|
5
|
-
<script src="
|
|
6
|
-
<script src="
|
|
7
|
-
<link rel="stylesheet" href="
|
|
5
|
+
<script src="jquery.js"></script>
|
|
6
|
+
<script src="jquery-ui.js"></script>
|
|
7
|
+
<link rel="stylesheet" href="jquery-ui.css">
|
|
8
8
|
<script>
|
|
9
9
|
$(function() { $( "#progressbar" ).progressbar({value: 37}); });
|
|
10
10
|
</script>
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
<html>
|
|
3
3
|
<head>
|
|
4
4
|
<title>Slider</title>
|
|
5
|
-
<script src="
|
|
6
|
-
<script src="
|
|
7
|
-
<link rel="stylesheet" href="
|
|
5
|
+
<script src="jquery.js"></script>
|
|
6
|
+
<script src="jquery-ui.js"></script>
|
|
7
|
+
<link rel="stylesheet" href="jquery-ui.css">
|
|
8
8
|
<script>
|
|
9
9
|
$(function() { $( "#slider" ).slider(); });
|
|
10
10
|
</script>
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
<html>
|
|
3
3
|
<head>
|
|
4
4
|
<title>Tabs</title>
|
|
5
|
-
<script src="
|
|
6
|
-
<script src="
|
|
7
|
-
<link rel="stylesheet" href="
|
|
5
|
+
<script src="jquery.js"></script>
|
|
6
|
+
<script src="jquery-ui.js"></script>
|
|
7
|
+
<link rel="stylesheet" href="jquery-ui.css">
|
|
8
8
|
<script>
|
|
9
9
|
$(function() { $( "#tabs" ).tabs(); });
|
|
10
10
|
</script>
|
data/lib/bermuda/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,74 +1,64 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bermuda
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash: 25
|
|
5
4
|
prerelease:
|
|
6
|
-
|
|
7
|
-
- 0
|
|
8
|
-
- 0
|
|
9
|
-
- 3
|
|
10
|
-
version: 0.0.3
|
|
5
|
+
version: 0.0.4
|
|
11
6
|
platform: ruby
|
|
12
7
|
authors:
|
|
13
|
-
- John Firebaugh
|
|
8
|
+
- John Firebaugh
|
|
14
9
|
autorequire:
|
|
15
10
|
bindir: bin
|
|
16
11
|
cert_chain: []
|
|
17
12
|
|
|
18
|
-
date: 2011-
|
|
19
|
-
default_executable:
|
|
13
|
+
date: 2011-05-18 00:00:00 Z
|
|
20
14
|
dependencies:
|
|
21
|
-
- !ruby/object:Gem::Dependency
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
- 0
|
|
66
|
-
version: 2.0.0
|
|
67
|
-
type: :development
|
|
68
|
-
version_requirements: *id003
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: cucumber
|
|
17
|
+
prerelease: false
|
|
18
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
19
|
+
none: false
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: 0.10.0
|
|
24
|
+
type: :runtime
|
|
25
|
+
version_requirements: *id001
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: capybara
|
|
28
|
+
prerelease: false
|
|
29
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
30
|
+
none: false
|
|
31
|
+
requirements:
|
|
32
|
+
- - ">="
|
|
33
|
+
- !ruby/object:Gem::Version
|
|
34
|
+
version: 0.4.0
|
|
35
|
+
type: :runtime
|
|
36
|
+
version_requirements: *id002
|
|
37
|
+
- !ruby/object:Gem::Dependency
|
|
38
|
+
name: rspec
|
|
39
|
+
prerelease: false
|
|
40
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
|
41
|
+
none: false
|
|
42
|
+
requirements:
|
|
43
|
+
- - ~>
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: "2.0"
|
|
46
|
+
type: :development
|
|
47
|
+
version_requirements: *id003
|
|
48
|
+
- !ruby/object:Gem::Dependency
|
|
49
|
+
name: capybara-firebug
|
|
50
|
+
prerelease: false
|
|
51
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
|
52
|
+
none: false
|
|
53
|
+
requirements:
|
|
54
|
+
- - ">="
|
|
55
|
+
- !ruby/object:Gem::Version
|
|
56
|
+
version: "0"
|
|
57
|
+
type: :development
|
|
58
|
+
version_requirements: *id004
|
|
69
59
|
description: Provides cucumber step definitions for testing jQuery UI widget interactions with capybara
|
|
70
60
|
email:
|
|
71
|
-
- john.firebaugh@gmail.com
|
|
61
|
+
- john.firebaugh@gmail.com
|
|
72
62
|
executables: []
|
|
73
63
|
|
|
74
64
|
extensions: []
|
|
@@ -76,27 +66,34 @@ extensions: []
|
|
|
76
66
|
extra_rdoc_files: []
|
|
77
67
|
|
|
78
68
|
files:
|
|
79
|
-
- .gitignore
|
|
80
|
-
- Gemfile
|
|
81
|
-
- LICENSE
|
|
82
|
-
- README.rdoc
|
|
83
|
-
- Rakefile
|
|
84
|
-
- bermuda.gemspec
|
|
85
|
-
- features/step_definitions.feature
|
|
86
|
-
- features/step_definitions/web_steps.rb
|
|
87
|
-
- features/support/env.rb
|
|
88
|
-
- features/support/public/accordion.html
|
|
89
|
-
- features/support/public/autocomplete.html
|
|
90
|
-
- features/support/public/dialog.html
|
|
91
|
-
- features/support/public/
|
|
92
|
-
- features/support/public/
|
|
93
|
-
- features/support/public/
|
|
94
|
-
- features/support/
|
|
95
|
-
-
|
|
96
|
-
-
|
|
97
|
-
-
|
|
98
|
-
-
|
|
99
|
-
|
|
69
|
+
- .gitignore
|
|
70
|
+
- Gemfile
|
|
71
|
+
- LICENSE
|
|
72
|
+
- README.rdoc
|
|
73
|
+
- Rakefile
|
|
74
|
+
- bermuda.gemspec
|
|
75
|
+
- features/step_definitions.feature
|
|
76
|
+
- features/step_definitions/web_steps.rb
|
|
77
|
+
- features/support/env.rb
|
|
78
|
+
- features/support/public/accordion.html
|
|
79
|
+
- features/support/public/autocomplete.html
|
|
80
|
+
- features/support/public/dialog.html
|
|
81
|
+
- features/support/public/jquery-ui/1.8.10.css
|
|
82
|
+
- features/support/public/jquery-ui/1.8.10.js
|
|
83
|
+
- features/support/public/jquery-ui/1.8.8.css
|
|
84
|
+
- features/support/public/jquery-ui/1.8.8.js
|
|
85
|
+
- features/support/public/jquery-ui/1.8.9.css
|
|
86
|
+
- features/support/public/jquery-ui/1.8.9.js
|
|
87
|
+
- features/support/public/jquery/1.4.4.js
|
|
88
|
+
- features/support/public/jquery/1.5.1.js
|
|
89
|
+
- features/support/public/progressbar.html
|
|
90
|
+
- features/support/public/slider.html
|
|
91
|
+
- features/support/public/tabs.html
|
|
92
|
+
- features/support/selectors.rb
|
|
93
|
+
- lib/bermuda.rb
|
|
94
|
+
- lib/bermuda/cucumber.rb
|
|
95
|
+
- lib/bermuda/version.rb
|
|
96
|
+
- lib/bermuda/xpath.rb
|
|
100
97
|
homepage: http://rubygems.org/gems/bermuda
|
|
101
98
|
licenses: []
|
|
102
99
|
|
|
@@ -104,40 +101,42 @@ post_install_message:
|
|
|
104
101
|
rdoc_options: []
|
|
105
102
|
|
|
106
103
|
require_paths:
|
|
107
|
-
- lib
|
|
104
|
+
- lib
|
|
108
105
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
109
106
|
none: false
|
|
110
107
|
requirements:
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
segments:
|
|
115
|
-
- 0
|
|
116
|
-
version: "0"
|
|
108
|
+
- - ">="
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: "0"
|
|
117
111
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
118
112
|
none: false
|
|
119
113
|
requirements:
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
segments:
|
|
124
|
-
- 0
|
|
125
|
-
version: "0"
|
|
114
|
+
- - ">="
|
|
115
|
+
- !ruby/object:Gem::Version
|
|
116
|
+
version: "0"
|
|
126
117
|
requirements: []
|
|
127
118
|
|
|
128
119
|
rubyforge_project: bermuda
|
|
129
|
-
rubygems_version: 1.
|
|
120
|
+
rubygems_version: 1.7.2
|
|
130
121
|
signing_key:
|
|
131
122
|
specification_version: 3
|
|
132
123
|
summary: jQuery UI steps for cucumber and capybara
|
|
133
124
|
test_files:
|
|
134
|
-
- features/step_definitions.feature
|
|
135
|
-
- features/step_definitions/web_steps.rb
|
|
136
|
-
- features/support/env.rb
|
|
137
|
-
- features/support/public/accordion.html
|
|
138
|
-
- features/support/public/autocomplete.html
|
|
139
|
-
- features/support/public/dialog.html
|
|
140
|
-
- features/support/public/
|
|
141
|
-
- features/support/public/
|
|
142
|
-
- features/support/public/
|
|
143
|
-
- features/support/
|
|
125
|
+
- features/step_definitions.feature
|
|
126
|
+
- features/step_definitions/web_steps.rb
|
|
127
|
+
- features/support/env.rb
|
|
128
|
+
- features/support/public/accordion.html
|
|
129
|
+
- features/support/public/autocomplete.html
|
|
130
|
+
- features/support/public/dialog.html
|
|
131
|
+
- features/support/public/jquery-ui/1.8.10.css
|
|
132
|
+
- features/support/public/jquery-ui/1.8.10.js
|
|
133
|
+
- features/support/public/jquery-ui/1.8.8.css
|
|
134
|
+
- features/support/public/jquery-ui/1.8.8.js
|
|
135
|
+
- features/support/public/jquery-ui/1.8.9.css
|
|
136
|
+
- features/support/public/jquery-ui/1.8.9.js
|
|
137
|
+
- features/support/public/jquery/1.4.4.js
|
|
138
|
+
- features/support/public/jquery/1.5.1.js
|
|
139
|
+
- features/support/public/progressbar.html
|
|
140
|
+
- features/support/public/slider.html
|
|
141
|
+
- features/support/public/tabs.html
|
|
142
|
+
- features/support/selectors.rb
|