bermuda 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -0
- data/bermuda.gemspec +1 -1
- 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/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 +14 -9
- data/Gemfile.lock +0 -72
data/.gitignore
CHANGED
data/bermuda.gemspec
CHANGED
@@ -19,7 +19,7 @@ Gem::Specification.new do |s|
|
|
19
19
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
20
20
|
s.require_paths = ["lib"]
|
21
21
|
|
22
|
-
s.add_dependency "cucumber", "~> 0.
|
22
|
+
s.add_dependency "cucumber", "~> 0.10.0"
|
23
23
|
s.add_dependency "capybara", "~> 0.4.0"
|
24
24
|
|
25
25
|
s.add_development_dependency "rspec", "~> 2.0.0"
|
@@ -2,9 +2,9 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<title>Accordion</title>
|
5
|
-
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.
|
6
|
-
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.
|
7
|
-
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.
|
5
|
+
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
|
6
|
+
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.8/jquery-ui.min.js"></script>
|
7
|
+
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.8/themes/base/jquery-ui.css">
|
8
8
|
<script>
|
9
9
|
$(function() { $( "#accordion" ).accordion(); });
|
10
10
|
</script>
|
@@ -2,9 +2,9 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<title>Autocomplete</title>
|
5
|
-
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.
|
6
|
-
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.
|
7
|
-
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.
|
5
|
+
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
|
6
|
+
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.8/jquery-ui.min.js"></script>
|
7
|
+
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.8/themes/base/jquery-ui.css">
|
8
8
|
<script>
|
9
9
|
$(function() {
|
10
10
|
var availableTags = [
|
@@ -2,9 +2,9 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<title>Dialog</title>
|
5
|
-
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.
|
6
|
-
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.
|
7
|
-
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.
|
5
|
+
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
|
6
|
+
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.8/jquery-ui.min.js"></script>
|
7
|
+
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.8/themes/base/jquery-ui.css">
|
8
8
|
<script>
|
9
9
|
$(function() {
|
10
10
|
$( "#dialog" ).dialog({
|
@@ -2,9 +2,9 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<title>Progress Bar</title>
|
5
|
-
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.
|
6
|
-
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.
|
7
|
-
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.
|
5
|
+
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
|
6
|
+
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.8/jquery-ui.min.js"></script>
|
7
|
+
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.8/themes/base/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="http://ajax.googleapis.com/ajax/libs/jquery/1.4.
|
6
|
-
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.
|
7
|
-
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.
|
5
|
+
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
|
6
|
+
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.8/jquery-ui.min.js"></script>
|
7
|
+
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.8/themes/base/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="http://ajax.googleapis.com/ajax/libs/jquery/1.4.
|
6
|
-
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.
|
7
|
-
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.
|
5
|
+
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
|
6
|
+
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.8/jquery-ui.min.js"></script>
|
7
|
+
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.8/themes/base/jquery-ui.css">
|
8
8
|
<script>
|
9
9
|
$(function() { $( "#tabs" ).tabs(); });
|
10
10
|
</script>
|
data/lib/bermuda/version.rb
CHANGED
metadata
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bermuda
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 25
|
5
|
+
prerelease:
|
5
6
|
segments:
|
6
7
|
- 0
|
7
8
|
- 0
|
8
|
-
-
|
9
|
-
version: 0.0.
|
9
|
+
- 3
|
10
|
+
version: 0.0.3
|
10
11
|
platform: ruby
|
11
12
|
authors:
|
12
13
|
- John Firebaugh
|
@@ -14,7 +15,7 @@ autorequire:
|
|
14
15
|
bindir: bin
|
15
16
|
cert_chain: []
|
16
17
|
|
17
|
-
date:
|
18
|
+
date: 2011-01-16 00:00:00 -08:00
|
18
19
|
default_executable:
|
19
20
|
dependencies:
|
20
21
|
- !ruby/object:Gem::Dependency
|
@@ -25,11 +26,12 @@ dependencies:
|
|
25
26
|
requirements:
|
26
27
|
- - ~>
|
27
28
|
- !ruby/object:Gem::Version
|
29
|
+
hash: 55
|
28
30
|
segments:
|
29
31
|
- 0
|
30
|
-
-
|
31
|
-
-
|
32
|
-
version: 0.
|
32
|
+
- 10
|
33
|
+
- 0
|
34
|
+
version: 0.10.0
|
33
35
|
type: :runtime
|
34
36
|
version_requirements: *id001
|
35
37
|
- !ruby/object:Gem::Dependency
|
@@ -40,6 +42,7 @@ dependencies:
|
|
40
42
|
requirements:
|
41
43
|
- - ~>
|
42
44
|
- !ruby/object:Gem::Version
|
45
|
+
hash: 15
|
43
46
|
segments:
|
44
47
|
- 0
|
45
48
|
- 4
|
@@ -55,6 +58,7 @@ dependencies:
|
|
55
58
|
requirements:
|
56
59
|
- - ~>
|
57
60
|
- !ruby/object:Gem::Version
|
61
|
+
hash: 15
|
58
62
|
segments:
|
59
63
|
- 2
|
60
64
|
- 0
|
@@ -74,7 +78,6 @@ extra_rdoc_files: []
|
|
74
78
|
files:
|
75
79
|
- .gitignore
|
76
80
|
- Gemfile
|
77
|
-
- Gemfile.lock
|
78
81
|
- LICENSE
|
79
82
|
- README.rdoc
|
80
83
|
- Rakefile
|
@@ -107,6 +110,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
107
110
|
requirements:
|
108
111
|
- - ">="
|
109
112
|
- !ruby/object:Gem::Version
|
113
|
+
hash: 3
|
110
114
|
segments:
|
111
115
|
- 0
|
112
116
|
version: "0"
|
@@ -115,13 +119,14 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
115
119
|
requirements:
|
116
120
|
- - ">="
|
117
121
|
- !ruby/object:Gem::Version
|
122
|
+
hash: 3
|
118
123
|
segments:
|
119
124
|
- 0
|
120
125
|
version: "0"
|
121
126
|
requirements: []
|
122
127
|
|
123
128
|
rubyforge_project: bermuda
|
124
|
-
rubygems_version: 1.
|
129
|
+
rubygems_version: 1.4.1
|
125
130
|
signing_key:
|
126
131
|
specification_version: 3
|
127
132
|
summary: jQuery UI steps for cucumber and capybara
|
data/Gemfile.lock
DELETED
@@ -1,72 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
bermuda (0.0.2)
|
5
|
-
capybara (~> 0.4.0)
|
6
|
-
cucumber (~> 0.9.2)
|
7
|
-
|
8
|
-
GEM
|
9
|
-
remote: http://rubygems.org/
|
10
|
-
specs:
|
11
|
-
builder (2.1.2)
|
12
|
-
capybara (0.4.0.rc)
|
13
|
-
celerity (>= 0.7.9)
|
14
|
-
culerity (>= 0.2.4)
|
15
|
-
mime-types (>= 1.16)
|
16
|
-
nokogiri (>= 1.3.3)
|
17
|
-
rack (>= 1.0.0)
|
18
|
-
rack-test (>= 0.5.4)
|
19
|
-
selenium-webdriver (>= 0.0.27)
|
20
|
-
xpath (~> 0.1.2)
|
21
|
-
celerity (0.8.2)
|
22
|
-
childprocess (0.1.0)
|
23
|
-
ffi (~> 0.6.3)
|
24
|
-
cucumber (0.9.2)
|
25
|
-
builder (~> 2.1.2)
|
26
|
-
diff-lcs (~> 1.1.2)
|
27
|
-
gherkin (~> 2.2.5)
|
28
|
-
json (~> 1.4.6)
|
29
|
-
term-ansicolor (~> 1.0.5)
|
30
|
-
culerity (0.2.12)
|
31
|
-
diff-lcs (1.1.2)
|
32
|
-
ffi (0.6.3)
|
33
|
-
rake (>= 0.8.7)
|
34
|
-
gherkin (2.2.9)
|
35
|
-
json (~> 1.4.6)
|
36
|
-
term-ansicolor (~> 1.0.5)
|
37
|
-
json (1.4.6)
|
38
|
-
json_pure (1.4.6)
|
39
|
-
mime-types (1.16)
|
40
|
-
nokogiri (1.4.3.1)
|
41
|
-
rack (1.2.1)
|
42
|
-
rack-test (0.5.6)
|
43
|
-
rack (>= 1.0)
|
44
|
-
rake (0.8.7)
|
45
|
-
rspec (2.0.0)
|
46
|
-
rspec-core (= 2.0.0)
|
47
|
-
rspec-expectations (= 2.0.0)
|
48
|
-
rspec-mocks (= 2.0.0)
|
49
|
-
rspec-core (2.0.0)
|
50
|
-
rspec-expectations (2.0.0)
|
51
|
-
diff-lcs (>= 1.1.2)
|
52
|
-
rspec-mocks (2.0.0)
|
53
|
-
rspec-core (= 2.0.0)
|
54
|
-
rspec-expectations (= 2.0.0)
|
55
|
-
rubyzip (0.9.4)
|
56
|
-
selenium-webdriver (0.0.29)
|
57
|
-
childprocess (>= 0.0.7)
|
58
|
-
ffi (~> 0.6.3)
|
59
|
-
json_pure
|
60
|
-
rubyzip
|
61
|
-
term-ansicolor (1.0.5)
|
62
|
-
xpath (0.1.2)
|
63
|
-
nokogiri (~> 1.3)
|
64
|
-
|
65
|
-
PLATFORMS
|
66
|
-
ruby
|
67
|
-
|
68
|
-
DEPENDENCIES
|
69
|
-
bermuda!
|
70
|
-
capybara (~> 0.4.0)
|
71
|
-
cucumber (~> 0.9.2)
|
72
|
-
rspec (~> 2.0.0)
|