cucumba 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/History.md +33 -0
- data/Manifest.txt +79 -0
- data/PostInstall.txt +7 -0
- data/README.rdoc +59 -0
- data/Rakefile +33 -0
- data/config/website.yml.sample +2 -0
- data/cucumba.gemspec +52 -0
- data/generators/cucumba/USAGE +9 -0
- data/generators/cucumba/cucumba_generator.rb +23 -0
- data/generators/cucumba/templates/config.yml +15 -0
- data/generators/cucumba/templates/cucumba +18 -0
- data/lib/cucumba.rb +49 -0
- data/lib/cucumba/drb.rb +52 -0
- data/lib/cucumba/rails.rb +60 -0
- data/lib/cucumba/rails/model.rb +26 -0
- data/lib/cucumba/rails/runner.rb +73 -0
- data/lib/cucumba/server.rb +14 -0
- data/script/console +10 -0
- data/script/destroy +14 -0
- data/script/generate +14 -0
- data/script/txt2html +71 -0
- data/spec/cucumba_configuration_spec.rb +97 -0
- data/spec/cucumba_spec_rails.rb +59 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +23 -0
- data/spec/support/sample_app/README +1 -0
- data/spec/support/sample_app/Rakefile +10 -0
- data/spec/support/sample_app/app/controllers/application_controller.rb +4 -0
- data/spec/support/sample_app/app/controllers/users_controller.rb +83 -0
- data/spec/support/sample_app/app/helpers/application_helper.rb +2 -0
- data/spec/support/sample_app/app/helpers/users_helper.rb +2 -0
- data/spec/support/sample_app/app/models/user.rb +9 -0
- data/spec/support/sample_app/app/views/layouts/users.html.erb +17 -0
- data/spec/support/sample_app/app/views/users/edit.html.erb +20 -0
- data/spec/support/sample_app/app/views/users/index.html.erb +22 -0
- data/spec/support/sample_app/app/views/users/new.html.erb +19 -0
- data/spec/support/sample_app/app/views/users/show.html.erb +13 -0
- data/spec/support/sample_app/config/boot.rb +110 -0
- data/spec/support/sample_app/config/database.yml +22 -0
- data/spec/support/sample_app/config/environment.rb +12 -0
- data/spec/support/sample_app/config/environments/development.rb +17 -0
- data/spec/support/sample_app/config/environments/production.rb +28 -0
- data/spec/support/sample_app/config/environments/test.rb +29 -0
- data/spec/support/sample_app/config/initializers/cookie_verification_secret.rb +7 -0
- data/spec/support/sample_app/config/initializers/new_rails_defaults.rb +21 -0
- data/spec/support/sample_app/config/initializers/session_store.rb +15 -0
- data/spec/support/sample_app/config/routes.rb +6 -0
- data/spec/support/sample_app/db/schema.rb +21 -0
- data/spec/support/sample_app/public/404.html +30 -0
- data/spec/support/sample_app/public/422.html +30 -0
- data/spec/support/sample_app/public/500.html +30 -0
- data/spec/support/sample_app/public/favicon.ico +0 -0
- data/spec/support/sample_app/public/images/rails.png +0 -0
- data/spec/support/sample_app/public/index.html +275 -0
- data/spec/support/sample_app/public/javascripts/application.js +2 -0
- data/spec/support/sample_app/public/javascripts/controls.js +963 -0
- data/spec/support/sample_app/public/javascripts/dragdrop.js +973 -0
- data/spec/support/sample_app/public/javascripts/effects.js +1128 -0
- data/spec/support/sample_app/public/javascripts/prototype.js +4320 -0
- data/spec/support/sample_app/public/robots.txt +5 -0
- data/spec/support/sample_app/public/stylesheets/scaffold.css +54 -0
- data/spec/support/sample_app/script/about +4 -0
- data/spec/support/sample_app/script/console +3 -0
- data/spec/support/sample_app/script/dbconsole +3 -0
- data/spec/support/sample_app/script/destroy +3 -0
- data/spec/support/sample_app/script/generate +3 -0
- data/spec/support/sample_app/script/performance/benchmarker +3 -0
- data/spec/support/sample_app/script/performance/profiler +3 -0
- data/spec/support/sample_app/script/plugin +3 -0
- data/spec/support/sample_app/script/runner +3 -0
- data/spec/support/sample_app/script/server +3 -0
- data/spec/support/sample_app_run.sh +11 -0
- data/tasks/rspec.rake +26 -0
- data/tasks/yard.rake +14 -0
- data/website/index.html +11 -0
- data/website/index.txt +81 -0
- data/website/javascripts/rounded_corners_lite.inc.js +285 -0
- data/website/stylesheets/screen.css +159 -0
- data/website/template.html.erb +50 -0
- metadata +248 -0
@@ -0,0 +1,159 @@
|
|
1
|
+
body {
|
2
|
+
background-color: #8DBD82;
|
3
|
+
font-family: "Georgia", sans-serif;
|
4
|
+
font-size: 16px;
|
5
|
+
line-height: 1.6em;
|
6
|
+
padding: 1.6em 0 0 0;
|
7
|
+
color: #333;
|
8
|
+
}
|
9
|
+
h1, h2, h3, h4, h5, h6 {
|
10
|
+
color: #444;
|
11
|
+
}
|
12
|
+
h1 {
|
13
|
+
font-family: sans-serif;
|
14
|
+
font-weight: normal;
|
15
|
+
font-size: 4em;
|
16
|
+
line-height: 0.8em;
|
17
|
+
letter-spacing: -0.1ex;
|
18
|
+
margin: 5px;
|
19
|
+
}
|
20
|
+
li {
|
21
|
+
padding: 0;
|
22
|
+
margin: 0;
|
23
|
+
list-style-type: square;
|
24
|
+
}
|
25
|
+
a {
|
26
|
+
color: #5E5AFF;
|
27
|
+
background-color: #A1DDB1;
|
28
|
+
font-weight: normal;
|
29
|
+
text-decoration: underline;
|
30
|
+
}
|
31
|
+
blockquote {
|
32
|
+
font-size: 90%;
|
33
|
+
font-style: italic;
|
34
|
+
border-left: 1px solid #111;
|
35
|
+
padding-left: 1em;
|
36
|
+
}
|
37
|
+
.caps {
|
38
|
+
font-size: 80%;
|
39
|
+
}
|
40
|
+
|
41
|
+
#main {
|
42
|
+
width: 55em;
|
43
|
+
padding: 0;
|
44
|
+
margin: 0 auto;
|
45
|
+
}
|
46
|
+
.coda {
|
47
|
+
text-align: right;
|
48
|
+
color: #77f;
|
49
|
+
font-size: smaller;
|
50
|
+
}
|
51
|
+
|
52
|
+
table {
|
53
|
+
font-size: 90%;
|
54
|
+
line-height: 1.4em;
|
55
|
+
color: #ff8;
|
56
|
+
background-color: #111;
|
57
|
+
padding: 2px 10px 2px 10px;
|
58
|
+
border-style: dashed;
|
59
|
+
}
|
60
|
+
|
61
|
+
th {
|
62
|
+
color: #fff;
|
63
|
+
}
|
64
|
+
|
65
|
+
td {
|
66
|
+
padding: 2px 10px 2px 10px;
|
67
|
+
}
|
68
|
+
|
69
|
+
.success {
|
70
|
+
color: #0CC52B;
|
71
|
+
}
|
72
|
+
|
73
|
+
.failed {
|
74
|
+
color: #E90A1B;
|
75
|
+
}
|
76
|
+
|
77
|
+
.unknown {
|
78
|
+
color: #995000;
|
79
|
+
}
|
80
|
+
pre, code {
|
81
|
+
font-family: monospace;
|
82
|
+
font-size: 90%;
|
83
|
+
line-height: 1.4em;
|
84
|
+
color: #ff8;
|
85
|
+
background-color: #111;
|
86
|
+
width: 40em;
|
87
|
+
padding: 2px 10px 2px 10px;
|
88
|
+
}
|
89
|
+
.comment { color: #aaa; font-style: italic; }
|
90
|
+
.keyword { color: #eff; font-weight: bold; }
|
91
|
+
.punct { color: #eee; font-weight: bold; }
|
92
|
+
.symbol { color: #0bb; }
|
93
|
+
.string { color: #6b4; }
|
94
|
+
.ident { color: #ff8; }
|
95
|
+
.constant { color: #66f; }
|
96
|
+
.regex { color: #ec6; }
|
97
|
+
.number { color: #F99; }
|
98
|
+
.expr { color: #227; }
|
99
|
+
|
100
|
+
.sidebar {
|
101
|
+
float: right;
|
102
|
+
}
|
103
|
+
|
104
|
+
#version {
|
105
|
+
width: 217px;
|
106
|
+
text-align: right;
|
107
|
+
font-family: sans-serif;
|
108
|
+
font-weight: normal;
|
109
|
+
color: #141331;
|
110
|
+
padding: 15px 20px 10px 20px;
|
111
|
+
margin: 0 auto;
|
112
|
+
margin-top: 15px;
|
113
|
+
background-color: #9A5535;
|
114
|
+
border: 3px solid #7E393E;
|
115
|
+
}
|
116
|
+
|
117
|
+
#version .numbers {
|
118
|
+
display: block;
|
119
|
+
font-size: 4em;
|
120
|
+
line-height: 0.8em;
|
121
|
+
letter-spacing: -0.1ex;
|
122
|
+
margin-bottom: 15px;
|
123
|
+
}
|
124
|
+
|
125
|
+
#version p {
|
126
|
+
text-decoration: none;
|
127
|
+
color: #F1F4FF;
|
128
|
+
background-color: #9A5535;
|
129
|
+
margin: 0;
|
130
|
+
padding: 0;
|
131
|
+
}
|
132
|
+
|
133
|
+
#version a {
|
134
|
+
text-decoration: none;
|
135
|
+
color: #F1F4FF;
|
136
|
+
background-color: #9A5535;
|
137
|
+
}
|
138
|
+
|
139
|
+
.clickable {
|
140
|
+
cursor: pointer;
|
141
|
+
cursor: hand;
|
142
|
+
}
|
143
|
+
|
144
|
+
#twitter_search {
|
145
|
+
margin: 40px 0 10px 15px;
|
146
|
+
color: #F1F4FF;
|
147
|
+
background-color: #9A5535;
|
148
|
+
border: 3px solid #7E393E;
|
149
|
+
}
|
150
|
+
|
151
|
+
#twitter_search h3 {
|
152
|
+
color: #F1F4FF;
|
153
|
+
margin-bottom: 0px;
|
154
|
+
}
|
155
|
+
|
156
|
+
#twitter_search center b {
|
157
|
+
display: none;
|
158
|
+
}
|
159
|
+
|
@@ -0,0 +1,50 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
4
|
+
<head>
|
5
|
+
<link rel="stylesheet" href="stylesheets/screen.css" type="text/css" media="screen" />
|
6
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
7
|
+
<title>
|
8
|
+
<%= title %>
|
9
|
+
</title>
|
10
|
+
<script src="javascripts/rounded_corners_lite.inc.js" type="text/javascript"></script>
|
11
|
+
<style>
|
12
|
+
|
13
|
+
</style>
|
14
|
+
<script type="text/javascript">
|
15
|
+
window.onload = function() {
|
16
|
+
settings = {
|
17
|
+
tl: { radius: 10 },
|
18
|
+
tr: { radius: 10 },
|
19
|
+
bl: { radius: 10 },
|
20
|
+
br: { radius: 10 },
|
21
|
+
antiAlias: true,
|
22
|
+
autoPad: true,
|
23
|
+
validTags: ["div"]
|
24
|
+
}
|
25
|
+
var versionBox = new curvyCorners(settings, document.getElementById("version"));
|
26
|
+
versionBox.applyCornersToAll();
|
27
|
+
}
|
28
|
+
</script>
|
29
|
+
</head>
|
30
|
+
<body>
|
31
|
+
<div id="main">
|
32
|
+
|
33
|
+
<h1><%= title %></h1>
|
34
|
+
<div class="sidebar">
|
35
|
+
<div id="version" class="clickable" onclick='document.location = "<%= download %>"; return false'>
|
36
|
+
<p>Get Version</p>
|
37
|
+
<a href="<%= download %>" class="numbers"><%= version %></a>
|
38
|
+
</div>
|
39
|
+
</div>
|
40
|
+
<%= body %>
|
41
|
+
<p class="coda">
|
42
|
+
<a href="FIXME email">FIXME full name</a>, <%= modified.pretty %><br>
|
43
|
+
Theme extended from <a href="http://rb2js.rubyforge.org/">Paul Battley</a>
|
44
|
+
</p>
|
45
|
+
</div>
|
46
|
+
|
47
|
+
<!-- insert site tracking codes here, like Google Urchin -->
|
48
|
+
|
49
|
+
</body>
|
50
|
+
</html>
|
metadata
ADDED
@@ -0,0 +1,248 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: cucumba
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 21
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
- 5
|
10
|
+
version: 0.0.5
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- kucaahbe
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2010-10-04 00:00:00 +03:00
|
19
|
+
default_executable:
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
name: yard
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
hash: 5
|
30
|
+
segments:
|
31
|
+
- 0
|
32
|
+
- 6
|
33
|
+
- 1
|
34
|
+
version: 0.6.1
|
35
|
+
type: :development
|
36
|
+
version_requirements: *id001
|
37
|
+
- !ruby/object:Gem::Dependency
|
38
|
+
name: bluecloth
|
39
|
+
prerelease: false
|
40
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - "="
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
hash: 29
|
46
|
+
segments:
|
47
|
+
- 2
|
48
|
+
- 0
|
49
|
+
- 9
|
50
|
+
version: 2.0.9
|
51
|
+
type: :development
|
52
|
+
version_requirements: *id002
|
53
|
+
- !ruby/object:Gem::Dependency
|
54
|
+
name: rails
|
55
|
+
prerelease: false
|
56
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - "="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
hash: 19
|
62
|
+
segments:
|
63
|
+
- 2
|
64
|
+
- 3
|
65
|
+
- 8
|
66
|
+
version: 2.3.8
|
67
|
+
type: :development
|
68
|
+
version_requirements: *id003
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: sqlite3-ruby
|
71
|
+
prerelease: false
|
72
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - "="
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
hash: 25
|
78
|
+
segments:
|
79
|
+
- 1
|
80
|
+
- 3
|
81
|
+
- 1
|
82
|
+
version: 1.3.1
|
83
|
+
type: :development
|
84
|
+
version_requirements: *id004
|
85
|
+
- !ruby/object:Gem::Dependency
|
86
|
+
name: rspec
|
87
|
+
prerelease: false
|
88
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
90
|
+
requirements:
|
91
|
+
- - "="
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
hash: 27
|
94
|
+
segments:
|
95
|
+
- 1
|
96
|
+
- 3
|
97
|
+
- 0
|
98
|
+
version: 1.3.0
|
99
|
+
type: :development
|
100
|
+
version_requirements: *id005
|
101
|
+
- !ruby/object:Gem::Dependency
|
102
|
+
name: hoe
|
103
|
+
prerelease: false
|
104
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
105
|
+
none: false
|
106
|
+
requirements:
|
107
|
+
- - ">="
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
hash: 19
|
110
|
+
segments:
|
111
|
+
- 2
|
112
|
+
- 6
|
113
|
+
- 2
|
114
|
+
version: 2.6.2
|
115
|
+
type: :development
|
116
|
+
version_requirements: *id006
|
117
|
+
description: |-
|
118
|
+
If you develop more than one rails applications
|
119
|
+
that communicate with each other and you need to test them
|
120
|
+
with something like capybara and also whant to communicate with database -
|
121
|
+
this gem will help you
|
122
|
+
email:
|
123
|
+
- kucaahbe@ukr.net
|
124
|
+
executables: []
|
125
|
+
|
126
|
+
extensions: []
|
127
|
+
|
128
|
+
extra_rdoc_files:
|
129
|
+
- Manifest.txt
|
130
|
+
- PostInstall.txt
|
131
|
+
- website/index.txt
|
132
|
+
files:
|
133
|
+
- History.md
|
134
|
+
- Manifest.txt
|
135
|
+
- PostInstall.txt
|
136
|
+
- README.rdoc
|
137
|
+
- Rakefile
|
138
|
+
- config/website.yml.sample
|
139
|
+
- cucumba.gemspec
|
140
|
+
- generators/cucumba/USAGE
|
141
|
+
- generators/cucumba/cucumba_generator.rb
|
142
|
+
- generators/cucumba/templates/config.yml
|
143
|
+
- generators/cucumba/templates/cucumba
|
144
|
+
- lib/cucumba.rb
|
145
|
+
- lib/cucumba/drb.rb
|
146
|
+
- lib/cucumba/rails.rb
|
147
|
+
- lib/cucumba/rails/model.rb
|
148
|
+
- lib/cucumba/rails/runner.rb
|
149
|
+
- lib/cucumba/server.rb
|
150
|
+
- script/console
|
151
|
+
- script/destroy
|
152
|
+
- script/generate
|
153
|
+
- script/txt2html
|
154
|
+
- spec/cucumba_configuration_spec.rb
|
155
|
+
- spec/cucumba_spec_rails.rb
|
156
|
+
- spec/spec.opts
|
157
|
+
- spec/spec_helper.rb
|
158
|
+
- spec/support/sample_app/README
|
159
|
+
- spec/support/sample_app/Rakefile
|
160
|
+
- spec/support/sample_app/app/controllers/application_controller.rb
|
161
|
+
- spec/support/sample_app/app/controllers/users_controller.rb
|
162
|
+
- spec/support/sample_app/app/helpers/application_helper.rb
|
163
|
+
- spec/support/sample_app/app/helpers/users_helper.rb
|
164
|
+
- spec/support/sample_app/app/models/user.rb
|
165
|
+
- spec/support/sample_app/app/views/layouts/users.html.erb
|
166
|
+
- spec/support/sample_app/app/views/users/edit.html.erb
|
167
|
+
- spec/support/sample_app/app/views/users/index.html.erb
|
168
|
+
- spec/support/sample_app/app/views/users/new.html.erb
|
169
|
+
- spec/support/sample_app/app/views/users/show.html.erb
|
170
|
+
- spec/support/sample_app/config/boot.rb
|
171
|
+
- spec/support/sample_app/config/database.yml
|
172
|
+
- spec/support/sample_app/config/environment.rb
|
173
|
+
- spec/support/sample_app/config/environments/development.rb
|
174
|
+
- spec/support/sample_app/config/environments/production.rb
|
175
|
+
- spec/support/sample_app/config/environments/test.rb
|
176
|
+
- spec/support/sample_app/config/initializers/cookie_verification_secret.rb
|
177
|
+
- spec/support/sample_app/config/initializers/new_rails_defaults.rb
|
178
|
+
- spec/support/sample_app/config/initializers/session_store.rb
|
179
|
+
- spec/support/sample_app/config/routes.rb
|
180
|
+
- spec/support/sample_app/db/schema.rb
|
181
|
+
- spec/support/sample_app/public/404.html
|
182
|
+
- spec/support/sample_app/public/422.html
|
183
|
+
- spec/support/sample_app/public/500.html
|
184
|
+
- spec/support/sample_app/public/favicon.ico
|
185
|
+
- spec/support/sample_app/public/images/rails.png
|
186
|
+
- spec/support/sample_app/public/index.html
|
187
|
+
- spec/support/sample_app/public/javascripts/application.js
|
188
|
+
- spec/support/sample_app/public/javascripts/controls.js
|
189
|
+
- spec/support/sample_app/public/javascripts/dragdrop.js
|
190
|
+
- spec/support/sample_app/public/javascripts/effects.js
|
191
|
+
- spec/support/sample_app/public/javascripts/prototype.js
|
192
|
+
- spec/support/sample_app/public/robots.txt
|
193
|
+
- spec/support/sample_app/public/stylesheets/scaffold.css
|
194
|
+
- spec/support/sample_app/script/about
|
195
|
+
- spec/support/sample_app/script/console
|
196
|
+
- spec/support/sample_app/script/dbconsole
|
197
|
+
- spec/support/sample_app/script/destroy
|
198
|
+
- spec/support/sample_app/script/generate
|
199
|
+
- spec/support/sample_app/script/performance/benchmarker
|
200
|
+
- spec/support/sample_app/script/performance/profiler
|
201
|
+
- spec/support/sample_app/script/plugin
|
202
|
+
- spec/support/sample_app/script/runner
|
203
|
+
- spec/support/sample_app/script/server
|
204
|
+
- spec/support/sample_app_run.sh
|
205
|
+
- tasks/rspec.rake
|
206
|
+
- tasks/yard.rake
|
207
|
+
- website/index.html
|
208
|
+
- website/index.txt
|
209
|
+
- website/javascripts/rounded_corners_lite.inc.js
|
210
|
+
- website/stylesheets/screen.css
|
211
|
+
- website/template.html.erb
|
212
|
+
has_rdoc: true
|
213
|
+
homepage: http://github.com/hxcoding/cucumba
|
214
|
+
licenses: []
|
215
|
+
|
216
|
+
post_install_message: PostInstall.txt
|
217
|
+
rdoc_options:
|
218
|
+
- --main
|
219
|
+
- README.rdoc
|
220
|
+
require_paths:
|
221
|
+
- lib
|
222
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
223
|
+
none: false
|
224
|
+
requirements:
|
225
|
+
- - ">="
|
226
|
+
- !ruby/object:Gem::Version
|
227
|
+
hash: 3
|
228
|
+
segments:
|
229
|
+
- 0
|
230
|
+
version: "0"
|
231
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
232
|
+
none: false
|
233
|
+
requirements:
|
234
|
+
- - ">="
|
235
|
+
- !ruby/object:Gem::Version
|
236
|
+
hash: 3
|
237
|
+
segments:
|
238
|
+
- 0
|
239
|
+
version: "0"
|
240
|
+
requirements: []
|
241
|
+
|
242
|
+
rubyforge_project: cucumba
|
243
|
+
rubygems_version: 1.3.7
|
244
|
+
signing_key:
|
245
|
+
specification_version: 3
|
246
|
+
summary: If you develop more than one rails applications that communicate with each other and you need to test them with something like capybara and also whant to communicate with database - this gem will help you
|
247
|
+
test_files: []
|
248
|
+
|