ramaze 2009.01 → 2009.02
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +1 -1
- data/cache.yaml +7 -0
- data/doc/CHANGELOG +134 -0
- data/doc/readme_chunks/getting_help.txt +1 -1
- data/doc/tutorial/todolist.html +1 -1
- data/doc/tutorial/todolist.mkd +2 -2
- data/examples/app/wiktacular/template/html_layout.xhtml +1 -1
- data/lib/proto/view/index.xhtml +2 -2
- data/lib/ramaze/contrib/gettext/po.rb +23 -23
- data/lib/ramaze/controller/resolve.rb +1 -1
- data/lib/ramaze/current.rb +0 -59
- data/lib/ramaze/current/request.rb +11 -2
- data/lib/ramaze/current/session/flash.rb +1 -0
- data/lib/ramaze/helper/flash.rb +17 -2
- data/lib/ramaze/helper/paginate.rb +1 -1
- data/lib/ramaze/helper/redirect.rb +1 -1
- data/lib/ramaze/helper/user.rb +1 -1
- data/lib/ramaze/log/syslog.rb +36 -36
- data/lib/ramaze/snippets/ramaze/fiber.rb +3 -4
- data/lib/ramaze/tool/localize.rb +1 -1
- data/lib/ramaze/version.rb +1 -1
- data/rake_tasks/conf.rake +16 -2
- data/rake_tasks/gem.rake +1 -1
- data/ramaze.gemspec +4 -168
- data/spec/ramaze/log/syslog.rb +62 -59
- data/spec/ramaze/view/ezamar/external.xhtml +8 -0
- data/test.out +1588 -0
- metadata +24 -7
- data/ramaze-2008.11.gem +0 -0
data/lib/ramaze/tool/localize.rb
CHANGED
data/lib/ramaze/version.rb
CHANGED
data/rake_tasks/conf.rake
CHANGED
@@ -36,12 +36,26 @@ RDOC_FILES = %W[
|
|
36
36
|
POST_INSTALL_MESSAGE = %{
|
37
37
|
#{'=' * 60}
|
38
38
|
|
39
|
+
|
39
40
|
Thank you for installing Ramaze!
|
40
|
-
You can now do following:
|
41
41
|
|
42
|
-
|
42
|
+
At this point, you can learn how to use Ramaze at
|
43
|
+
the main website, http://ramaze.net .
|
44
|
+
|
45
|
+
Alternatively, you can work off a skeletal prototype project
|
46
|
+
using the 'ramaze' command:
|
47
|
+
|
43
48
|
ramaze --create yourproject
|
44
49
|
|
50
|
+
Feel free to ask questions in our IRC channel:
|
51
|
+
irc.freenode.net #ramaze
|
52
|
+
http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
53
|
+
|
54
|
+
Enjoy! :)
|
55
|
+
|
56
|
+
-- The Ramaze team
|
57
|
+
|
58
|
+
|
45
59
|
#{'=' * 60}
|
46
60
|
}.strip
|
47
61
|
|
data/rake_tasks/gem.rake
CHANGED
data/ramaze.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = "ramaze"
|
3
|
-
s.version = "
|
3
|
+
s.version = "2009.02"
|
4
4
|
|
5
5
|
s.summary = "Ramaze is a simple and modular web framework"
|
6
6
|
s.description = "Ramaze is a simple and modular web framework"
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |s|
|
|
8
8
|
s.has_rdoc = true
|
9
9
|
s.author = "Michael 'manveru' Fellinger"
|
10
10
|
s.email = "m.fellinger@gmail.com"
|
11
|
-
s.homepage = "http://ramaze.
|
11
|
+
s.homepage = "http://ramaze.net"
|
12
12
|
s.rubyforge_project = "ramaze"
|
13
13
|
s.executables = ["ramaze"]
|
14
14
|
s.bindir = "bin"
|
@@ -30,10 +30,8 @@ http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
|
30
30
|
s.files = [
|
31
31
|
"README.markdown",
|
32
32
|
"Rakefile",
|
33
|
-
"benchmark",
|
34
33
|
"benchmark/results.txt",
|
35
34
|
"benchmark/run.rb",
|
36
|
-
"benchmark/suite",
|
37
35
|
"benchmark/suite/minimal.rb",
|
38
36
|
"benchmark/suite/no_informer.rb",
|
39
37
|
"benchmark/suite/no_sessions.rb",
|
@@ -50,9 +48,7 @@ http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
|
50
48
|
"benchmark/suite/template_redcloth.rb",
|
51
49
|
"benchmark/suite/template_tenjin.rb",
|
52
50
|
"benchmark/test.rb",
|
53
|
-
"bin",
|
54
51
|
"bin/ramaze",
|
55
|
-
"doc",
|
56
52
|
"doc/AUTHORS",
|
57
53
|
"doc/CHANGELOG",
|
58
54
|
"doc/COPYING",
|
@@ -61,12 +57,10 @@ http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
|
61
57
|
"doc/INSTALL",
|
62
58
|
"doc/LEGAL",
|
63
59
|
"doc/TODO",
|
64
|
-
"doc/meta",
|
65
60
|
"doc/meta/announcement.txt",
|
66
61
|
"doc/meta/configuration.txt",
|
67
62
|
"doc/meta/internals.txt",
|
68
63
|
"doc/meta/users.kml",
|
69
|
-
"doc/readme_chunks",
|
70
64
|
"doc/readme_chunks/appendix.txt",
|
71
65
|
"doc/readme_chunks/examples.txt",
|
72
66
|
"doc/readme_chunks/features.txt",
|
@@ -76,58 +70,34 @@ http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
|
76
70
|
"doc/readme_chunks/introduction.txt",
|
77
71
|
"doc/readme_chunks/principles.txt",
|
78
72
|
"doc/readme_chunks/thanks.txt",
|
79
|
-
"doc/tutorial",
|
80
73
|
"doc/tutorial/todolist.html",
|
81
74
|
"doc/tutorial/todolist.mkd",
|
82
|
-
"examples",
|
83
|
-
"examples/app",
|
84
|
-
"examples/app/auth",
|
85
75
|
"examples/app/auth/auth.rb",
|
86
|
-
"examples/app/auth/template",
|
87
76
|
"examples/app/auth/template/layout.haml",
|
88
77
|
"examples/app/auth/template/login.haml",
|
89
|
-
"examples/app/blog",
|
90
78
|
"examples/app/blog/README",
|
91
|
-
"examples/app/blog/controller",
|
92
79
|
"examples/app/blog/controller/main.rb",
|
93
|
-
"examples/app/blog/model",
|
94
80
|
"examples/app/blog/model/entry.rb",
|
95
|
-
"examples/app/blog/public",
|
96
|
-
"examples/app/blog/public/styles",
|
97
81
|
"examples/app/blog/public/styles/blog.css",
|
98
|
-
"examples/app/blog/spec",
|
99
82
|
"examples/app/blog/spec/blog.rb",
|
100
83
|
"examples/app/blog/start.rb",
|
101
|
-
"examples/app/blog/view",
|
102
84
|
"examples/app/blog/view/edit.xhtml",
|
103
85
|
"examples/app/blog/view/index.xhtml",
|
104
86
|
"examples/app/blog/view/layout.xhtml",
|
105
87
|
"examples/app/blog/view/new.xhtml",
|
106
|
-
"examples/app/chat",
|
107
|
-
"examples/app/chat/model",
|
108
88
|
"examples/app/chat/model/history.rb",
|
109
89
|
"examples/app/chat/model/message.rb",
|
110
|
-
"examples/app/chat/public",
|
111
|
-
"examples/app/chat/public/css",
|
112
90
|
"examples/app/chat/public/css/chat.css",
|
113
|
-
"examples/app/chat/public/js",
|
114
91
|
"examples/app/chat/public/js/chat.js",
|
115
92
|
"examples/app/chat/public/js/jquery.js",
|
116
93
|
"examples/app/chat/start.rb",
|
117
|
-
"examples/app/chat/view",
|
118
94
|
"examples/app/chat/view/chat.xhtml",
|
119
95
|
"examples/app/chat/view/index.xhtml",
|
120
96
|
"examples/app/chat/view/layout.xhtml",
|
121
|
-
"examples/app/localization",
|
122
97
|
"examples/app/localization/start.rb",
|
123
|
-
"examples/app/rapaste",
|
124
98
|
"examples/app/rapaste/Rakefile",
|
125
|
-
"examples/app/rapaste/controller",
|
126
99
|
"examples/app/rapaste/controller/paste.rb",
|
127
|
-
"examples/app/rapaste/model",
|
128
100
|
"examples/app/rapaste/model/paste.rb",
|
129
|
-
"examples/app/rapaste/public",
|
130
|
-
"examples/app/rapaste/public/css",
|
131
101
|
"examples/app/rapaste/public/css/active4d.css",
|
132
102
|
"examples/app/rapaste/public/css/all_hallows_eve.css",
|
133
103
|
"examples/app/rapaste/public/css/amy.css",
|
@@ -150,22 +120,16 @@ http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
|
150
120
|
"examples/app/rapaste/public/css/sunburst.css",
|
151
121
|
"examples/app/rapaste/public/css/twilight.css",
|
152
122
|
"examples/app/rapaste/public/css/zenburnesque.css",
|
153
|
-
"examples/app/rapaste/public/js",
|
154
123
|
"examples/app/rapaste/public/js/jquery.js",
|
155
|
-
"examples/app/rapaste/spec",
|
156
124
|
"examples/app/rapaste/spec/rapaste.rb",
|
157
125
|
"examples/app/rapaste/start.rb",
|
158
|
-
"examples/app/rapaste/view",
|
159
126
|
"examples/app/rapaste/view/copy.xhtml",
|
160
127
|
"examples/app/rapaste/view/index.xhtml",
|
161
128
|
"examples/app/rapaste/view/layout.xhtml",
|
162
129
|
"examples/app/rapaste/view/list.xhtml",
|
163
130
|
"examples/app/rapaste/view/search.xhtml",
|
164
131
|
"examples/app/rapaste/view/view.xhtml",
|
165
|
-
"examples/app/sourceview",
|
166
|
-
"examples/app/sourceview/public",
|
167
132
|
"examples/app/sourceview/public/coderay.css",
|
168
|
-
"examples/app/sourceview/public/images",
|
169
133
|
"examples/app/sourceview/public/images/file.gif",
|
170
134
|
"examples/app/sourceview/public/images/folder.gif",
|
171
135
|
"examples/app/sourceview/public/images/tv-collapsable-last.gif",
|
@@ -179,62 +143,38 @@ http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
|
179
143
|
"examples/app/sourceview/public/jquery.treeview.js",
|
180
144
|
"examples/app/sourceview/public/sourceview.js",
|
181
145
|
"examples/app/sourceview/sourceview.rb",
|
182
|
-
"examples/app/sourceview/template",
|
183
146
|
"examples/app/sourceview/template/index.haml",
|
184
|
-
"examples/app/todolist",
|
185
147
|
"examples/app/todolist/README",
|
186
|
-
"examples/app/todolist/public",
|
187
148
|
"examples/app/todolist/public/favicon.ico",
|
188
|
-
"examples/app/todolist/public/js",
|
189
149
|
"examples/app/todolist/public/js/jquery.js",
|
190
150
|
"examples/app/todolist/public/ramaze.png",
|
191
|
-
"examples/app/todolist/spec",
|
192
151
|
"examples/app/todolist/spec/todolist.rb",
|
193
|
-
"examples/app/todolist/src",
|
194
|
-
"examples/app/todolist/src/controller",
|
195
152
|
"examples/app/todolist/src/controller/main.rb",
|
196
|
-
"examples/app/todolist/src/element",
|
197
153
|
"examples/app/todolist/src/element/page.rb",
|
198
154
|
"examples/app/todolist/src/model.rb",
|
199
155
|
"examples/app/todolist/start.rb",
|
200
|
-
"examples/app/todolist/template",
|
201
156
|
"examples/app/todolist/template/index.xhtml",
|
202
157
|
"examples/app/todolist/template/new.xhtml",
|
203
|
-
"examples/app/upload",
|
204
158
|
"examples/app/upload/start.rb",
|
205
|
-
"examples/app/upload/view",
|
206
159
|
"examples/app/upload/view/index.xhtml",
|
207
|
-
"examples/app/whywiki",
|
208
|
-
"examples/app/whywiki/spec",
|
209
160
|
"examples/app/whywiki/spec/whywiki.rb",
|
210
161
|
"examples/app/whywiki/start.rb",
|
211
|
-
"examples/app/whywiki/template",
|
212
162
|
"examples/app/whywiki/template/edit.xhtml",
|
213
163
|
"examples/app/whywiki/template/show.xhtml",
|
214
|
-
"examples/app/wikore",
|
215
|
-
"examples/app/wikore/spec",
|
216
164
|
"examples/app/wikore/spec/wikore.rb",
|
217
|
-
"examples/app/wikore/src",
|
218
165
|
"examples/app/wikore/src/controller.rb",
|
219
166
|
"examples/app/wikore/src/model.rb",
|
220
167
|
"examples/app/wikore/start.rb",
|
221
|
-
"examples/app/wikore/template",
|
222
168
|
"examples/app/wikore/template/index.xhtml",
|
223
|
-
"examples/app/wiktacular",
|
224
169
|
"examples/app/wiktacular/README",
|
225
|
-
"examples/app/wiktacular/mkd",
|
226
|
-
"examples/app/wiktacular/mkd/link",
|
227
170
|
"examples/app/wiktacular/mkd/link/2007-07-20_19-45-51.mkd",
|
228
171
|
"examples/app/wiktacular/mkd/link/current.mkd",
|
229
|
-
"examples/app/wiktacular/mkd/main",
|
230
172
|
"examples/app/wiktacular/mkd/main/2007-07-20_16-31-33.mkd",
|
231
173
|
"examples/app/wiktacular/mkd/main/2007-07-20_19-21-12.mkd",
|
232
174
|
"examples/app/wiktacular/mkd/main/2007-07-20_19-23-10.mkd",
|
233
175
|
"examples/app/wiktacular/mkd/main/2007-07-20_19-45-07.mkd",
|
234
176
|
"examples/app/wiktacular/mkd/main/current.mkd",
|
235
|
-
"examples/app/wiktacular/mkd/markdown",
|
236
177
|
"examples/app/wiktacular/mkd/markdown/current.mkd",
|
237
|
-
"examples/app/wiktacular/mkd/testing",
|
238
178
|
"examples/app/wiktacular/mkd/testing/2007-07-20_16-43-46.mkd",
|
239
179
|
"examples/app/wiktacular/mkd/testing/2007-07-20_19-43-50.mkd",
|
240
180
|
"examples/app/wiktacular/mkd/testing/2007-07-21_18-46-01.mkd",
|
@@ -242,21 +182,16 @@ http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
|
242
182
|
"examples/app/wiktacular/mkd/testing/2007-07-21_18-47-08.mkd",
|
243
183
|
"examples/app/wiktacular/mkd/testing/2007-07-21_18-47-54.mkd",
|
244
184
|
"examples/app/wiktacular/mkd/testing/current.mkd",
|
245
|
-
"examples/app/wiktacular/public",
|
246
185
|
"examples/app/wiktacular/public/favicon.ico",
|
247
186
|
"examples/app/wiktacular/public/screen.css",
|
248
|
-
"examples/app/wiktacular/spec",
|
249
187
|
"examples/app/wiktacular/spec/wiktacular.rb",
|
250
|
-
"examples/app/wiktacular/src",
|
251
188
|
"examples/app/wiktacular/src/controller.rb",
|
252
189
|
"examples/app/wiktacular/src/model.rb",
|
253
190
|
"examples/app/wiktacular/start.rb",
|
254
|
-
"examples/app/wiktacular/template",
|
255
191
|
"examples/app/wiktacular/template/edit.xhtml",
|
256
192
|
"examples/app/wiktacular/template/html_layout.xhtml",
|
257
193
|
"examples/app/wiktacular/template/index.xhtml",
|
258
194
|
"examples/app/wiktacular/template/new.xhtml",
|
259
|
-
"examples/basic",
|
260
195
|
"examples/basic/element.rb",
|
261
196
|
"examples/basic/gestalt.rb",
|
262
197
|
"examples/basic/hello.rb",
|
@@ -264,7 +199,6 @@ http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
|
264
199
|
"examples/basic/linking.rb",
|
265
200
|
"examples/basic/partial.rb",
|
266
201
|
"examples/basic/simple.rb",
|
267
|
-
"examples/helpers",
|
268
202
|
"examples/helpers/cache.rb",
|
269
203
|
"examples/helpers/form_with_sequel.rb",
|
270
204
|
"examples/helpers/httpdigest.rb",
|
@@ -274,7 +208,6 @@ http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
|
274
208
|
"examples/helpers/provide.rb",
|
275
209
|
"examples/helpers/rest.rb",
|
276
210
|
"examples/helpers/simple_captcha.rb",
|
277
|
-
"examples/misc",
|
278
211
|
"examples/misc/css.rb",
|
279
212
|
"examples/misc/facebook.rb",
|
280
213
|
"examples/misc/memleak_detector.rb",
|
@@ -283,8 +216,6 @@ http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
|
283
216
|
"examples/misc/rapp.rb",
|
284
217
|
"examples/misc/sequel_scaffolding.rb",
|
285
218
|
"examples/misc/simple_auth.rb",
|
286
|
-
"examples/templates",
|
287
|
-
"examples/templates/template",
|
288
219
|
"examples/templates/template/external.amrita",
|
289
220
|
"examples/templates/template/external.haml",
|
290
221
|
"examples/templates/template/external.liquid",
|
@@ -307,35 +238,24 @@ http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
|
307
238
|
"examples/templates/template_remarkably.rb",
|
308
239
|
"examples/templates/template_tenjin.rb",
|
309
240
|
"examples/templates/template_xslt.rb",
|
310
|
-
"lib",
|
311
|
-
"lib/proto",
|
312
|
-
"lib/proto/controller",
|
313
241
|
"lib/proto/controller/init.rb",
|
314
242
|
"lib/proto/controller/main.rb",
|
315
|
-
"lib/proto/model",
|
316
243
|
"lib/proto/model/init.rb",
|
317
|
-
"lib/proto/public",
|
318
|
-
"lib/proto/public/css",
|
244
|
+
"lib/proto/public/.htaccess",
|
319
245
|
"lib/proto/public/css/ramaze_error.css",
|
320
246
|
"lib/proto/public/dispatch.fcgi",
|
321
247
|
"lib/proto/public/favicon.ico",
|
322
|
-
"lib/proto/public/js",
|
323
248
|
"lib/proto/public/js/jquery.js",
|
324
249
|
"lib/proto/public/ramaze.png",
|
325
|
-
"lib/proto/spec",
|
326
250
|
"lib/proto/spec/main.rb",
|
327
251
|
"lib/proto/start.rb",
|
328
252
|
"lib/proto/start.ru",
|
329
|
-
"lib/proto/view",
|
330
253
|
"lib/proto/view/error.xhtml",
|
331
254
|
"lib/proto/view/index.xhtml",
|
332
255
|
"lib/proto/view/page.xhtml",
|
333
|
-
"lib/ramaze",
|
334
256
|
"lib/ramaze.rb",
|
335
|
-
"lib/ramaze/action",
|
336
257
|
"lib/ramaze/action.rb",
|
337
258
|
"lib/ramaze/action/render.rb",
|
338
|
-
"lib/ramaze/adapter",
|
339
259
|
"lib/ramaze/adapter.rb",
|
340
260
|
"lib/ramaze/adapter/base.rb",
|
341
261
|
"lib/ramaze/adapter/cgi.rb",
|
@@ -349,21 +269,17 @@ http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
|
349
269
|
"lib/ramaze/adapter/swiftiplied_mongrel.rb",
|
350
270
|
"lib/ramaze/adapter/thin.rb",
|
351
271
|
"lib/ramaze/adapter/webrick.rb",
|
352
|
-
"lib/ramaze/cache",
|
353
272
|
"lib/ramaze/cache.rb",
|
354
273
|
"lib/ramaze/cache/file.rb",
|
355
274
|
"lib/ramaze/cache/memcached.rb",
|
356
275
|
"lib/ramaze/cache/memory.rb",
|
357
276
|
"lib/ramaze/cache/yaml_store.rb",
|
358
|
-
"lib/ramaze/contrib",
|
359
277
|
"lib/ramaze/contrib.rb",
|
360
278
|
"lib/ramaze/contrib/email.rb",
|
361
|
-
"lib/ramaze/contrib/facebook",
|
362
279
|
"lib/ramaze/contrib/facebook.rb",
|
363
280
|
"lib/ramaze/contrib/facebook/facebook.rb",
|
364
281
|
"lib/ramaze/contrib/file_cache.rb",
|
365
282
|
"lib/ramaze/contrib/gems.rb",
|
366
|
-
"lib/ramaze/contrib/gettext",
|
367
283
|
"lib/ramaze/contrib/gettext.rb",
|
368
284
|
"lib/ramaze/contrib/gettext/mo.rb",
|
369
285
|
"lib/ramaze/contrib/gettext/parser.rb",
|
@@ -372,27 +288,22 @@ http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
|
372
288
|
"lib/ramaze/contrib/maruku_uv.rb",
|
373
289
|
"lib/ramaze/contrib/profiling.rb",
|
374
290
|
"lib/ramaze/contrib/rest.rb",
|
375
|
-
"lib/ramaze/contrib/sequel",
|
376
291
|
"lib/ramaze/contrib/sequel/create_join.rb",
|
377
292
|
"lib/ramaze/contrib/sequel/fill.rb",
|
378
293
|
"lib/ramaze/contrib/sequel/form_field.rb",
|
379
294
|
"lib/ramaze/contrib/sequel/image.rb",
|
380
295
|
"lib/ramaze/contrib/sequel/relation.rb",
|
381
296
|
"lib/ramaze/contrib/sequel_cache.rb",
|
382
|
-
"lib/ramaze/controller",
|
383
297
|
"lib/ramaze/controller.rb",
|
384
298
|
"lib/ramaze/controller/error.rb",
|
385
299
|
"lib/ramaze/controller/main.rb",
|
386
300
|
"lib/ramaze/controller/resolve.rb",
|
387
|
-
"lib/ramaze/current",
|
388
301
|
"lib/ramaze/current.rb",
|
389
302
|
"lib/ramaze/current/request.rb",
|
390
303
|
"lib/ramaze/current/response.rb",
|
391
|
-
"lib/ramaze/current/session",
|
392
304
|
"lib/ramaze/current/session.rb",
|
393
305
|
"lib/ramaze/current/session/flash.rb",
|
394
306
|
"lib/ramaze/current/session/hash.rb",
|
395
|
-
"lib/ramaze/dispatcher",
|
396
307
|
"lib/ramaze/dispatcher.rb",
|
397
308
|
"lib/ramaze/dispatcher/action.rb",
|
398
309
|
"lib/ramaze/dispatcher/directory.rb",
|
@@ -400,10 +311,10 @@ http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
|
400
311
|
"lib/ramaze/dispatcher/file.rb",
|
401
312
|
"lib/ramaze/error.rb",
|
402
313
|
"lib/ramaze/gestalt.rb",
|
403
|
-
"lib/ramaze/helper",
|
404
314
|
"lib/ramaze/helper.rb",
|
405
315
|
"lib/ramaze/helper/aspect.rb",
|
406
316
|
"lib/ramaze/helper/auth.rb",
|
317
|
+
"lib/ramaze/helper/bench.rb",
|
407
318
|
"lib/ramaze/helper/cache.rb",
|
408
319
|
"lib/ramaze/helper/cgi.rb",
|
409
320
|
"lib/ramaze/helper/flash.rb",
|
@@ -431,7 +342,6 @@ http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
|
431
342
|
"lib/ramaze/helper/ultraviolet.rb",
|
432
343
|
"lib/ramaze/helper/user.rb",
|
433
344
|
"lib/ramaze/helper/xhtml.rb",
|
434
|
-
"lib/ramaze/log",
|
435
345
|
"lib/ramaze/log.rb",
|
436
346
|
"lib/ramaze/log/analogger.rb",
|
437
347
|
"lib/ramaze/log/growl.rb",
|
@@ -443,7 +353,6 @@ http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
|
443
353
|
"lib/ramaze/log/rotatinginformer.rb",
|
444
354
|
"lib/ramaze/log/syslog.rb",
|
445
355
|
"lib/ramaze/log/xosd.rb",
|
446
|
-
"lib/ramaze/option",
|
447
356
|
"lib/ramaze/option.rb",
|
448
357
|
"lib/ramaze/option/dsl.rb",
|
449
358
|
"lib/ramaze/option/holder.rb",
|
@@ -453,24 +362,18 @@ http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
|
453
362
|
"lib/ramaze/reloader/watch_stat.rb",
|
454
363
|
"lib/ramaze/route.rb",
|
455
364
|
"lib/ramaze/setup.rb",
|
456
|
-
"lib/ramaze/snippets",
|
457
365
|
"lib/ramaze/snippets.rb",
|
458
|
-
"lib/ramaze/snippets/array",
|
459
366
|
"lib/ramaze/snippets/array/put_within.rb",
|
460
|
-
"lib/ramaze/snippets/binding",
|
461
367
|
"lib/ramaze/snippets/binding/locals.rb",
|
462
368
|
"lib/ramaze/snippets/blankslate.rb",
|
463
369
|
"lib/ramaze/snippets/dictionary.rb",
|
464
370
|
"lib/ramaze/snippets/divide.rb",
|
465
371
|
"lib/ramaze/snippets/fiber.rb",
|
466
|
-
"lib/ramaze/snippets/kernel",
|
467
372
|
"lib/ramaze/snippets/kernel/constant.rb",
|
468
373
|
"lib/ramaze/snippets/kernel/pretty_inspect.rb",
|
469
374
|
"lib/ramaze/snippets/metaid.rb",
|
470
|
-
"lib/ramaze/snippets/numeric",
|
471
375
|
"lib/ramaze/snippets/numeric/filesize_format.rb",
|
472
376
|
"lib/ramaze/snippets/numeric/time.rb",
|
473
|
-
"lib/ramaze/snippets/object",
|
474
377
|
"lib/ramaze/snippets/object/__dir__.rb",
|
475
378
|
"lib/ramaze/snippets/object/acquire.rb",
|
476
379
|
"lib/ramaze/snippets/object/instance_variable_defined.rb",
|
@@ -478,9 +381,7 @@ http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
|
478
381
|
"lib/ramaze/snippets/object/scope.rb",
|
479
382
|
"lib/ramaze/snippets/object/traits.rb",
|
480
383
|
"lib/ramaze/snippets/ordered_set.rb",
|
481
|
-
"lib/ramaze/snippets/proc",
|
482
384
|
"lib/ramaze/snippets/proc/locals.rb",
|
483
|
-
"lib/ramaze/snippets/ramaze",
|
484
385
|
"lib/ramaze/snippets/ramaze/acquire.rb",
|
485
386
|
"lib/ramaze/snippets/ramaze/caller_info.rb",
|
486
387
|
"lib/ramaze/snippets/ramaze/caller_lines.rb",
|
@@ -488,7 +389,6 @@ http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
|
488
389
|
"lib/ramaze/snippets/ramaze/fiber.rb",
|
489
390
|
"lib/ramaze/snippets/ramaze/state.rb",
|
490
391
|
"lib/ramaze/snippets/ramaze/struct.rb",
|
491
|
-
"lib/ramaze/snippets/string",
|
492
392
|
"lib/ramaze/snippets/string/camel_case.rb",
|
493
393
|
"lib/ramaze/snippets/string/color.rb",
|
494
394
|
"lib/ramaze/snippets/string/each.rb",
|
@@ -498,11 +398,8 @@ http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
|
498
398
|
"lib/ramaze/snippets/string/snake_case.rb",
|
499
399
|
"lib/ramaze/snippets/string/start_with.rb",
|
500
400
|
"lib/ramaze/snippets/string/unindent.rb",
|
501
|
-
"lib/ramaze/snippets/thread",
|
502
401
|
"lib/ramaze/snippets/thread/into.rb",
|
503
|
-
"lib/ramaze/spec",
|
504
402
|
"lib/ramaze/spec.rb",
|
505
|
-
"lib/ramaze/spec/helper",
|
506
403
|
"lib/ramaze/spec/helper.rb",
|
507
404
|
"lib/ramaze/spec/helper/bacon.rb",
|
508
405
|
"lib/ramaze/spec/helper/browser.rb",
|
@@ -511,14 +408,11 @@ http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
|
511
408
|
"lib/ramaze/spec/helper/requester.rb",
|
512
409
|
"lib/ramaze/spec/helper/simple_http.rb",
|
513
410
|
"lib/ramaze/spec/helper/snippets.rb",
|
514
|
-
"lib/ramaze/store",
|
515
411
|
"lib/ramaze/store/default.rb",
|
516
|
-
"lib/ramaze/template",
|
517
412
|
"lib/ramaze/template.rb",
|
518
413
|
"lib/ramaze/template/amrita2.rb",
|
519
414
|
"lib/ramaze/template/builder.rb",
|
520
415
|
"lib/ramaze/template/erubis.rb",
|
521
|
-
"lib/ramaze/template/ezamar",
|
522
416
|
"lib/ramaze/template/ezamar.rb",
|
523
417
|
"lib/ramaze/template/ezamar/element.rb",
|
524
418
|
"lib/ramaze/template/ezamar/engine.rb",
|
@@ -537,7 +431,6 @@ http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
|
537
431
|
"lib/ramaze/template/tagz.rb",
|
538
432
|
"lib/ramaze/template/tenjin.rb",
|
539
433
|
"lib/ramaze/template/xslt.rb",
|
540
|
-
"lib/ramaze/tool",
|
541
434
|
"lib/ramaze/tool.rb",
|
542
435
|
"lib/ramaze/tool/create.rb",
|
543
436
|
"lib/ramaze/tool/daemonize.rb",
|
@@ -548,9 +441,7 @@ http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
|
548
441
|
"lib/ramaze/tool/record.rb",
|
549
442
|
"lib/ramaze/trinity.rb",
|
550
443
|
"lib/ramaze/version.rb",
|
551
|
-
"lib/vendor",
|
552
444
|
"lib/vendor/bacon.rb",
|
553
|
-
"rake_tasks",
|
554
445
|
"rake_tasks/conf.rake",
|
555
446
|
"rake_tasks/coverage.rake",
|
556
447
|
"rake_tasks/gem.rake",
|
@@ -560,12 +451,8 @@ http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
|
560
451
|
"rake_tasks/release.rake",
|
561
452
|
"rake_tasks/spec.rake",
|
562
453
|
"ramaze.gemspec",
|
563
|
-
"spec",
|
564
|
-
"spec/contrib",
|
565
454
|
"spec/contrib/profiling.rb",
|
566
|
-
"spec/contrib/sequel",
|
567
455
|
"spec/contrib/sequel/fill.rb",
|
568
|
-
"spec/examples",
|
569
456
|
"spec/examples/caching.rb",
|
570
457
|
"spec/examples/css.rb",
|
571
458
|
"spec/examples/element.rb",
|
@@ -573,7 +460,6 @@ http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
|
573
460
|
"spec/examples/linking.rb",
|
574
461
|
"spec/examples/simple.rb",
|
575
462
|
"spec/examples/simple_auth.rb",
|
576
|
-
"spec/examples/templates",
|
577
463
|
"spec/examples/templates/template_amrita2.rb",
|
578
464
|
"spec/examples/templates/template_erubis.rb",
|
579
465
|
"spec/examples/templates/template_ezamar.rb",
|
@@ -584,59 +470,44 @@ http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
|
584
470
|
"spec/examples/templates/template_remarkably.rb",
|
585
471
|
"spec/examples/templates/template_tenjin.rb",
|
586
472
|
"spec/helper.rb",
|
587
|
-
"spec/ramaze",
|
588
|
-
"spec/ramaze/action",
|
589
473
|
"spec/ramaze/action/basics.rb",
|
590
474
|
"spec/ramaze/action/cache.rb",
|
591
475
|
"spec/ramaze/action/file_cache.rb",
|
592
476
|
"spec/ramaze/action/layout.rb",
|
593
477
|
"spec/ramaze/action/render.rb",
|
594
|
-
"spec/ramaze/action/view",
|
595
478
|
"spec/ramaze/action/view/bar.xhtml",
|
596
|
-
"spec/ramaze/action/view/instancevars",
|
597
479
|
"spec/ramaze/action/view/instancevars/layout.xhtml",
|
598
480
|
"spec/ramaze/action/view/other_wrapper.xhtml",
|
599
481
|
"spec/ramaze/action/view/single_wrapper.xhtml",
|
600
|
-
"spec/ramaze/action/view/sub",
|
601
482
|
"spec/ramaze/action/view/sub/sub_wrapper.xhtml",
|
602
|
-
"spec/ramaze/adapter",
|
603
483
|
"spec/ramaze/adapter.rb",
|
604
484
|
"spec/ramaze/adapter/ebb.rb",
|
605
485
|
"spec/ramaze/adapter/mongrel.rb",
|
606
486
|
"spec/ramaze/adapter/record.rb",
|
607
487
|
"spec/ramaze/adapter/webrick.rb",
|
608
488
|
"spec/ramaze/cache.rb",
|
609
|
-
"spec/ramaze/controller",
|
610
489
|
"spec/ramaze/controller.rb",
|
611
490
|
"spec/ramaze/controller/actionless_templates.rb",
|
612
491
|
"spec/ramaze/controller/resolve.rb",
|
613
492
|
"spec/ramaze/controller/subclass.rb",
|
614
493
|
"spec/ramaze/controller/template_resolving.rb",
|
615
|
-
"spec/ramaze/controller/view",
|
616
494
|
"spec/ramaze/controller/view/bar.xhtml",
|
617
|
-
"spec/ramaze/controller/view/base",
|
618
495
|
"spec/ramaze/controller/view/base/another.xhtml",
|
619
496
|
"spec/ramaze/controller/view/greet.xhtml",
|
620
497
|
"spec/ramaze/controller/view/list.xhtml",
|
621
|
-
"spec/ramaze/controller/view/other",
|
622
|
-
"spec/ramaze/controller/view/other/greet",
|
623
498
|
"spec/ramaze/controller/view/other/greet/other.xhtml",
|
624
499
|
"spec/ramaze/controller/view/other_wrapper.xhtml",
|
625
|
-
"spec/ramaze/current",
|
626
500
|
"spec/ramaze/current/request.rb",
|
627
501
|
"spec/ramaze/current/session.rb",
|
628
|
-
"spec/ramaze/dispatcher",
|
629
502
|
"spec/ramaze/dispatcher.rb",
|
630
503
|
"spec/ramaze/dispatcher/directory.rb",
|
631
504
|
"spec/ramaze/dispatcher/file.rb",
|
632
|
-
"spec/ramaze/dispatcher/public",
|
633
505
|
"spec/ramaze/dispatcher/public/favicon.ico",
|
634
506
|
"spec/ramaze/dispatcher/public/file name.txt",
|
635
507
|
"spec/ramaze/dispatcher/public/test_download.css",
|
636
508
|
"spec/ramaze/element.rb",
|
637
509
|
"spec/ramaze/error.rb",
|
638
510
|
"spec/ramaze/gestalt.rb",
|
639
|
-
"spec/ramaze/helper",
|
640
511
|
"spec/ramaze/helper/aspect.rb",
|
641
512
|
"spec/ramaze/helper/auth.rb",
|
642
513
|
"spec/ramaze/helper/cache.rb",
|
@@ -652,7 +523,6 @@ http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
|
652
523
|
"spec/ramaze/helper/simple_captcha.rb",
|
653
524
|
"spec/ramaze/helper/stack.rb",
|
654
525
|
"spec/ramaze/helper/user.rb",
|
655
|
-
"spec/ramaze/helper/view",
|
656
526
|
"spec/ramaze/helper/view/locals.xhtml",
|
657
527
|
"spec/ramaze/helper/view/loop.xhtml",
|
658
528
|
"spec/ramaze/helper/view/num.xhtml",
|
@@ -662,46 +532,34 @@ http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
|
662
532
|
"spec/ramaze/helper/view/recursive_locals.xhtml",
|
663
533
|
"spec/ramaze/helper/view/test_template.xhtml",
|
664
534
|
"spec/ramaze/localize.rb",
|
665
|
-
"spec/ramaze/log",
|
666
535
|
"spec/ramaze/log/informer.rb",
|
667
536
|
"spec/ramaze/log/syslog.rb",
|
668
537
|
"spec/ramaze/morpher.rb",
|
669
538
|
"spec/ramaze/params.rb",
|
670
|
-
"spec/ramaze/public",
|
671
539
|
"spec/ramaze/public/error404.xhtml",
|
672
540
|
"spec/ramaze/public/favicon.ico",
|
673
541
|
"spec/ramaze/public/ramaze.png",
|
674
542
|
"spec/ramaze/public/test_download.css",
|
675
|
-
"spec/ramaze/request",
|
676
543
|
"spec/ramaze/request.rb",
|
677
544
|
"spec/ramaze/request/ebb.rb",
|
678
545
|
"spec/ramaze/request/mongrel.rb",
|
679
546
|
"spec/ramaze/request/thin.rb",
|
680
547
|
"spec/ramaze/request/webrick.rb",
|
681
|
-
"spec/ramaze/rewrite",
|
682
548
|
"spec/ramaze/rewrite.rb",
|
683
549
|
"spec/ramaze/rewrite/file.css",
|
684
550
|
"spec/ramaze/route.rb",
|
685
551
|
"spec/ramaze/session.rb",
|
686
|
-
"spec/ramaze/store",
|
687
552
|
"spec/ramaze/store/default.rb",
|
688
553
|
"spec/ramaze/struct.rb",
|
689
|
-
"spec/ramaze/template",
|
690
554
|
"spec/ramaze/template.rb",
|
691
|
-
"spec/ramaze/template/amrita2",
|
692
555
|
"spec/ramaze/template/amrita2.rb",
|
693
556
|
"spec/ramaze/template/amrita2/external.amrita",
|
694
557
|
"spec/ramaze/template/amrita2/sum.amrita",
|
695
|
-
"spec/ramaze/template/builder",
|
696
558
|
"spec/ramaze/template/builder.rb",
|
697
559
|
"spec/ramaze/template/builder/external.rxml",
|
698
|
-
"spec/ramaze/template/erubis",
|
699
560
|
"spec/ramaze/template/erubis.rb",
|
700
561
|
"spec/ramaze/template/erubis/sum.rhtml",
|
701
|
-
"spec/ramaze/template/ezamar",
|
702
562
|
"spec/ramaze/template/ezamar.rb",
|
703
|
-
"spec/ramaze/template/ezamar/another",
|
704
|
-
"spec/ramaze/template/ezamar/another/long",
|
705
563
|
"spec/ramaze/template/ezamar/another/long/action.zmr",
|
706
564
|
"spec/ramaze/template/ezamar/combined.zmr",
|
707
565
|
"spec/ramaze/template/ezamar/file_only.zmr",
|
@@ -710,23 +568,17 @@ http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
|
710
568
|
"spec/ramaze/template/ezamar/other__index.xhtml",
|
711
569
|
"spec/ramaze/template/ezamar/some__long__action.zmr",
|
712
570
|
"spec/ramaze/template/ezamar/sum.zmr",
|
713
|
-
"spec/ramaze/template/haml",
|
714
571
|
"spec/ramaze/template/haml.rb",
|
715
572
|
"spec/ramaze/template/haml/index.haml",
|
716
573
|
"spec/ramaze/template/haml/locals.haml",
|
717
574
|
"spec/ramaze/template/haml/with_vars.haml",
|
718
|
-
"spec/ramaze/template/liquid",
|
719
575
|
"spec/ramaze/template/liquid.rb",
|
720
576
|
"spec/ramaze/template/liquid/index.liquid",
|
721
577
|
"spec/ramaze/template/liquid/products.liquid",
|
722
|
-
"spec/ramaze/template/markaby",
|
723
578
|
"spec/ramaze/template/markaby.rb",
|
724
579
|
"spec/ramaze/template/markaby/external.mab",
|
725
580
|
"spec/ramaze/template/markaby/sum.mab",
|
726
|
-
"spec/ramaze/template/nagoro",
|
727
581
|
"spec/ramaze/template/nagoro.rb",
|
728
|
-
"spec/ramaze/template/nagoro/another",
|
729
|
-
"spec/ramaze/template/nagoro/another/long",
|
730
582
|
"spec/ramaze/template/nagoro/another/long/action.nag",
|
731
583
|
"spec/ramaze/template/nagoro/combined.nag",
|
732
584
|
"spec/ramaze/template/nagoro/file_only.nag",
|
@@ -734,53 +586,37 @@ http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
|
|
734
586
|
"spec/ramaze/template/nagoro/nested.nag",
|
735
587
|
"spec/ramaze/template/nagoro/some__long__action.nag",
|
736
588
|
"spec/ramaze/template/nagoro/sum.nag",
|
737
|
-
"spec/ramaze/template/ramaze",
|
738
589
|
"spec/ramaze/template/ramaze/external.test",
|
739
|
-
"spec/ramaze/template/redcloth",
|
740
590
|
"spec/ramaze/template/redcloth.rb",
|
741
591
|
"spec/ramaze/template/redcloth/external.redcloth",
|
742
|
-
"spec/ramaze/template/remarkably",
|
743
592
|
"spec/ramaze/template/remarkably.rb",
|
744
593
|
"spec/ramaze/template/remarkably/external.rem",
|
745
594
|
"spec/ramaze/template/remarkably/sum.rem",
|
746
|
-
"spec/ramaze/template/sass",
|
747
595
|
"spec/ramaze/template/sass.rb",
|
748
596
|
"spec/ramaze/template/sass/file.css.sass",
|
749
|
-
"spec/ramaze/template/tagz",
|
750
597
|
"spec/ramaze/template/tagz.rb",
|
751
598
|
"spec/ramaze/template/tagz/external.tagz",
|
752
599
|
"spec/ramaze/template/tagz/sum.tagz",
|
753
|
-
"spec/ramaze/template/tenjin",
|
754
600
|
"spec/ramaze/template/tenjin.rb",
|
755
601
|
"spec/ramaze/template/tenjin/external.tenjin",
|
756
|
-
"spec/ramaze/template/xslt",
|
757
602
|
"spec/ramaze/template/xslt.rb",
|
758
603
|
"spec/ramaze/template/xslt/concat_words.xsl",
|
759
604
|
"spec/ramaze/template/xslt/index.xsl",
|
760
605
|
"spec/ramaze/template/xslt/products.xsl",
|
761
606
|
"spec/ramaze/template/xslt/ruby_version.xsl",
|
762
|
-
"spec/snippets",
|
763
|
-
"spec/snippets/array",
|
764
607
|
"spec/snippets/array/put_within.rb",
|
765
|
-
"spec/snippets/binding",
|
766
608
|
"spec/snippets/binding/locals.rb",
|
767
|
-
"spec/snippets/kernel",
|
768
609
|
"spec/snippets/kernel/constant.rb",
|
769
|
-
"spec/snippets/numeric",
|
770
610
|
"spec/snippets/numeric/filesize_format.rb",
|
771
611
|
"spec/snippets/numeric/time.rb",
|
772
|
-
"spec/snippets/object",
|
773
612
|
"spec/snippets/object/__dir__.rb",
|
774
613
|
"spec/snippets/ordered_set.rb",
|
775
|
-
"spec/snippets/ramaze",
|
776
614
|
"spec/snippets/ramaze/acquire.rb",
|
777
615
|
"spec/snippets/ramaze/caller_info.rb",
|
778
616
|
"spec/snippets/ramaze/caller_lines.rb",
|
779
|
-
"spec/snippets/string",
|
780
617
|
"spec/snippets/string/camel_case.rb",
|
781
618
|
"spec/snippets/string/color.rb",
|
782
619
|
"spec/snippets/string/snake_case.rb",
|
783
620
|
"spec/snippets/string/unindent.rb",
|
784
|
-
"spec/snippets/thread",
|
785
621
|
"spec/snippets/thread/into.rb"]
|
786
622
|
end
|