ramaze 0.3.0 → 0.3.5

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.
Files changed (122) hide show
  1. data/Rakefile +3 -2
  2. data/bin/ramaze +9 -3
  3. data/doc/AUTHORS +6 -2
  4. data/doc/CHANGELOG +272 -66
  5. data/doc/GPL +12 -13
  6. data/doc/README.html +729 -0
  7. data/doc/changes.txt +5757 -0
  8. data/doc/changes.xml +5759 -0
  9. data/doc/meta/announcement.txt +48 -39
  10. data/doc/tutorial/todolist.mkd +10 -12
  11. data/examples/blog/start.rb +1 -0
  12. data/examples/caching.rb +1 -0
  13. data/examples/element.rb +3 -0
  14. data/examples/hello.rb +1 -3
  15. data/examples/identity.rb +5 -8
  16. data/examples/layout.rb +1 -0
  17. data/examples/linking.rb +1 -0
  18. data/examples/memleak_detector.rb +1 -0
  19. data/examples/nitro_form.rb +1 -0
  20. data/examples/rammit/start.rb +1 -0
  21. data/examples/rapaste/Rakefile +7 -0
  22. data/examples/rapaste/{src/controller.rb → controller/paste.rb} +28 -3
  23. data/examples/rapaste/{src/model.rb → model/paste.rb} +0 -4
  24. data/examples/rapaste/public/css/display.css +17 -0
  25. data/examples/rapaste/spec/rapaste.rb +2 -2
  26. data/examples/rapaste/start.rb +9 -4
  27. data/examples/rapaste/{template → view}/copy.xhtml +0 -0
  28. data/examples/rapaste/{template → view}/index.xhtml +0 -0
  29. data/examples/rapaste/{template → view}/layout.xhtml +3 -0
  30. data/examples/rapaste/{template → view}/list.xhtml +4 -3
  31. data/examples/rapaste/view/search.xhtml +41 -0
  32. data/examples/rapaste/{template → view}/view.xhtml +0 -0
  33. data/examples/simple.rb +3 -3
  34. data/examples/templates/template/external.amrita +9 -9
  35. data/examples/templates/template/external.redcloth +19 -0
  36. data/examples/templates/template_amrita2.rb +40 -7
  37. data/examples/templates/template_erubis.rb +3 -3
  38. data/examples/templates/template_ezamar.rb +1 -3
  39. data/examples/templates/template_haml.rb +1 -3
  40. data/examples/templates/template_liquid.rb +3 -3
  41. data/examples/templates/template_markaby.rb +1 -3
  42. data/examples/templates/template_nagoro.rb +1 -3
  43. data/examples/templates/template_redcloth.rb +59 -0
  44. data/examples/templates/template_remarkably.rb +1 -3
  45. data/examples/templates/template_xslt.rb +1 -4
  46. data/examples/todolist/src/controller/main.rb +1 -1
  47. data/examples/todolist/start.rb +1 -2
  48. data/examples/upload/start.rb +19 -0
  49. data/examples/upload/view/index.xhtml +25 -0
  50. data/examples/whywiki/start.rb +1 -3
  51. data/examples/wikore/start.rb +3 -0
  52. data/examples/wiktacular/mkd/newpagename/current.mkd +1 -0
  53. data/examples/wiktacular/mkd/newpagename/current.mkd.bak +1 -0
  54. data/examples/wiktacular/start.rb +1 -0
  55. data/lib/proto/controller/main.rb +0 -3
  56. data/lib/proto/public/js/jquery.js +106 -93
  57. data/lib/proto/spec/main.rb +2 -5
  58. data/lib/proto/start.rb +0 -3
  59. data/lib/ramaze.rb +3 -2
  60. data/lib/ramaze/action.rb +6 -10
  61. data/lib/ramaze/adapter/lsws.rb +19 -0
  62. data/lib/ramaze/contrib/email.rb +84 -0
  63. data/lib/ramaze/contrib/email.rb-darcs-backup0 +81 -0
  64. data/lib/ramaze/contrib/gettext.rb +1 -0
  65. data/lib/ramaze/contrib/gettext/parser.rb +46 -0
  66. data/lib/ramaze/contrib/route.rb +3 -36
  67. data/lib/ramaze/controller.rb +4 -6
  68. data/lib/ramaze/controller/resolve.rb +28 -1
  69. data/lib/ramaze/dispatcher.rb +1 -1
  70. data/lib/ramaze/dispatcher/file.rb +17 -0
  71. data/lib/ramaze/global/globalstruct.rb +7 -4
  72. data/lib/ramaze/helper/auth.rb +1 -1
  73. data/lib/ramaze/helper/identity.rb +25 -15
  74. data/lib/ramaze/helper/link.rb +29 -8
  75. data/lib/ramaze/helper/maruku.rb +7 -0
  76. data/lib/ramaze/helper/partial.rb +25 -10
  77. data/lib/ramaze/route.rb +56 -0
  78. data/lib/ramaze/snippets/metaid.rb +17 -0
  79. data/lib/ramaze/spec/helper.rb +0 -2
  80. data/lib/ramaze/spec/helper/mock_http.rb +6 -0
  81. data/lib/ramaze/spec/helper/pretty_output.rb +5 -1
  82. data/lib/ramaze/store/default.rb +3 -1
  83. data/lib/ramaze/template.rb +1 -1
  84. data/lib/ramaze/template/amrita2.rb +21 -15
  85. data/lib/ramaze/template/bijou.rb +39 -0
  86. data/lib/ramaze/template/builder.rb +28 -0
  87. data/lib/ramaze/template/redcloth.rb +24 -0
  88. data/lib/ramaze/template/sass.rb +3 -1
  89. data/lib/ramaze/tool/create.rb +2 -1
  90. data/lib/ramaze/tool/localize.rb +6 -1
  91. data/lib/ramaze/trinity/request.rb +8 -0
  92. data/lib/ramaze/trinity/session.rb +8 -5
  93. data/lib/ramaze/version.rb +1 -1
  94. data/rake_tasks/gem.rake +0 -1
  95. data/rake_tasks/maintenance.rake +4 -1
  96. data/spec/contrib/route.rb +14 -63
  97. data/spec/examples/linking.rb +2 -2
  98. data/spec/examples/templates/template_redcloth.rb +28 -0
  99. data/spec/ramaze/controller/subclass.rb +21 -0
  100. data/spec/ramaze/dispatcher/file.rb +31 -0
  101. data/spec/ramaze/helper/link.rb +46 -0
  102. data/spec/ramaze/helper/partial.rb +22 -1
  103. data/spec/ramaze/helper/template/locals.xhtml +1 -0
  104. data/spec/ramaze/helper/template/recursive_locals.xhtml +7 -0
  105. data/spec/ramaze/params.rb +8 -0
  106. data/spec/ramaze/request.rb +14 -0
  107. data/spec/ramaze/route.rb +107 -0
  108. data/spec/ramaze/session.rb +4 -2
  109. data/spec/ramaze/template/amrita2.rb +21 -7
  110. data/spec/ramaze/template/amrita2/external.amrita +6 -0
  111. data/spec/ramaze/template/amrita2/sum.amrita +1 -1
  112. data/spec/ramaze/template/bijou.rb +25 -0
  113. data/spec/ramaze/template/builder.rb +55 -0
  114. data/spec/ramaze/template/builder/external.rxml +3 -0
  115. data/spec/ramaze/template/haml.rb +15 -0
  116. data/spec/ramaze/template/haml/locals.haml +1 -0
  117. data/spec/ramaze/template/redcloth.rb +38 -0
  118. data/spec/ramaze/template/redcloth/external.redcloth +1 -0
  119. metadata +472 -442
  120. data/examples/rapaste/rapaste.sqlite +0 -0
  121. data/spec/ramaze/template/amrita2/data.amrita +0 -6
  122. data/spec/ramaze/template/amrita2/index.amrita +0 -1
@@ -0,0 +1 @@
1
+ h1. <%= @num %>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ramaze
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - manveru
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-01-10 00:00:00 +09:00
12
+ date: 2008-01-28 00:00:00 +09:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -21,15 +21,6 @@ dependencies:
21
21
  - !ruby/object:Gem::Version
22
22
  version: 0.7.3
23
23
  version:
24
- - !ruby/object:Gem::Dependency
25
- name: rspec
26
- version_requirement:
27
- version_requirements: !ruby/object:Gem::Requirement
28
- requirements:
29
- - - ">="
30
- - !ruby/object:Gem::Version
31
- version: 1.0.2
32
- version:
33
24
  - !ruby/object:Gem::Dependency
34
25
  name: rack
35
26
  version_requirement:
@@ -59,600 +50,639 @@ files:
59
50
  - doc/CHANGELOG
60
51
  - Rakefile
61
52
  - examples/auth
62
- - examples/auth/auth.rb
63
53
  - examples/auth/template
64
54
  - examples/auth/template/layout.haml
65
55
  - examples/auth/template/login.haml
56
+ - examples/auth/auth.rb
66
57
  - examples/blog
67
- - examples/blog/README
68
- - examples/blog/public
69
- - examples/blog/public/styles
70
- - examples/blog/public/styles/blog.css
71
- - examples/blog/spec
72
- - examples/blog/spec/blog.rb
73
58
  - examples/blog/src
74
- - examples/blog/src/controller.rb
75
59
  - examples/blog/src/model.rb
60
+ - examples/blog/src/controller.rb
76
61
  - examples/blog/src/view.rb
77
- - examples/blog/start.rb
62
+ - examples/blog/spec
63
+ - examples/blog/spec/blog.rb
64
+ - examples/blog/README
78
65
  - examples/blog/template
66
+ - examples/blog/template/new.xhtml
79
67
  - examples/blog/template/edit.xhtml
80
68
  - examples/blog/template/index.xhtml
81
- - examples/blog/template/new.xhtml
82
- - examples/caching.rb
83
- - examples/css.rb
84
- - examples/element.rb
85
- - examples/facebook.rb
86
- - examples/hello.rb
87
- - examples/identity.rb
88
- - examples/layout.rb
89
- - examples/linking.rb
90
- - examples/memleak_detector.rb
91
- - examples/nitro_form.rb
92
- - examples/ramaise.rb
93
- - examples/rammit
94
- - examples/rammit/spec
95
- - examples/rammit/spec/rammit.rb
96
- - examples/rammit/src
97
- - examples/rammit/src/controller
98
- - examples/rammit/src/controller/main.rb
99
- - examples/rammit/src/controller/page.rb
100
- - examples/rammit/src/model.rb
101
- - examples/rammit/start.rb
102
- - examples/rammit/template
103
- - examples/rammit/template/index.xhtml
104
- - examples/rammit/template/page
105
- - examples/rammit/template/page/view.xhtml
69
+ - examples/blog/public
70
+ - examples/blog/public/styles
71
+ - examples/blog/public/styles/blog.css
72
+ - examples/blog/start.rb
106
73
  - examples/rapaste
74
+ - examples/rapaste/spec
75
+ - examples/rapaste/spec/rapaste.rb
76
+ - examples/rapaste/view
77
+ - examples/rapaste/view/view.xhtml
78
+ - examples/rapaste/view/layout.xhtml
79
+ - examples/rapaste/view/search.xhtml
80
+ - examples/rapaste/view/list.xhtml
81
+ - examples/rapaste/view/copy.xhtml
82
+ - examples/rapaste/view/index.xhtml
83
+ - examples/rapaste/model
84
+ - examples/rapaste/model/paste.rb
107
85
  - examples/rapaste/Rakefile
86
+ - examples/rapaste/controller
87
+ - examples/rapaste/controller/paste.rb
108
88
  - examples/rapaste/public
89
+ - examples/rapaste/public/js
90
+ - examples/rapaste/public/js/jquery.js
109
91
  - examples/rapaste/public/css
110
- - examples/rapaste/public/css/active4d.css
111
- - examples/rapaste/public/css/all_hallows_eve.css
112
- - examples/rapaste/public/css/amy.css
113
- - examples/rapaste/public/css/blackboard.css
114
- - examples/rapaste/public/css/brilliance_black.css
115
- - examples/rapaste/public/css/brilliance_dull.css
116
- - examples/rapaste/public/css/cobalt.css
92
+ - examples/rapaste/public/css/iplastic.css
93
+ - examples/rapaste/public/css/espresso_libre.css
117
94
  - examples/rapaste/public/css/dawn.css
95
+ - examples/rapaste/public/css/active4d.css
118
96
  - examples/rapaste/public/css/display.css
119
- - examples/rapaste/public/css/eiffel.css
120
- - examples/rapaste/public/css/espresso_libre.css
97
+ - examples/rapaste/public/css/zenburnesque.css
98
+ - examples/rapaste/public/css/brilliance_black.css
121
99
  - examples/rapaste/public/css/idle.css
122
- - examples/rapaste/public/css/iplastic.css
123
- - examples/rapaste/public/css/lazy.css
100
+ - examples/rapaste/public/css/sunburst.css
101
+ - examples/rapaste/public/css/twilight.css
124
102
  - examples/rapaste/public/css/mac_classic.css
125
- - examples/rapaste/public/css/magicwb_amiga.css
126
- - examples/rapaste/public/css/pastels_on_dark.css
127
103
  - examples/rapaste/public/css/slush_poppies.css
104
+ - examples/rapaste/public/css/cobalt.css
105
+ - examples/rapaste/public/css/blackboard.css
106
+ - examples/rapaste/public/css/all_hallows_eve.css
107
+ - examples/rapaste/public/css/pastels_on_dark.css
108
+ - examples/rapaste/public/css/eiffel.css
109
+ - examples/rapaste/public/css/brilliance_dull.css
110
+ - examples/rapaste/public/css/amy.css
111
+ - examples/rapaste/public/css/magicwb_amiga.css
128
112
  - examples/rapaste/public/css/spacecadet.css
129
- - examples/rapaste/public/css/sunburst.css
130
- - examples/rapaste/public/css/twilight.css
131
- - examples/rapaste/public/css/zenburnesque.css
132
- - examples/rapaste/public/js
133
- - examples/rapaste/public/js/jquery.js
134
- - examples/rapaste/rapaste.sqlite
135
- - examples/rapaste/spec
136
- - examples/rapaste/spec/rapaste.rb
137
- - examples/rapaste/src
138
- - examples/rapaste/src/controller.rb
139
- - examples/rapaste/src/model.rb
113
+ - examples/rapaste/public/css/lazy.css
140
114
  - examples/rapaste/start.rb
141
- - examples/rapaste/template
142
- - examples/rapaste/template/copy.xhtml
143
- - examples/rapaste/template/index.xhtml
144
- - examples/rapaste/template/layout.xhtml
145
- - examples/rapaste/template/list.xhtml
146
- - examples/rapaste/template/view.xhtml
147
- - examples/simple.rb
148
- - examples/simple_auth.rb
115
+ - examples/nitro_form.rb
116
+ - examples/caching.rb
117
+ - examples/wiktacular
118
+ - examples/wiktacular/mkd
119
+ - examples/wiktacular/mkd/link
120
+ - examples/wiktacular/mkd/link/2007-07-20_19-45-51.mkd
121
+ - examples/wiktacular/mkd/link/current.mkd
122
+ - examples/wiktacular/mkd/main
123
+ - examples/wiktacular/mkd/main/2007-07-20_19-45-07.mkd
124
+ - examples/wiktacular/mkd/main/current.mkd
125
+ - examples/wiktacular/mkd/main/2007-07-20_19-21-12.mkd
126
+ - examples/wiktacular/mkd/main/2007-07-20_19-23-10.mkd
127
+ - examples/wiktacular/mkd/main/2007-07-20_16-31-33.mkd
128
+ - examples/wiktacular/mkd/newpagename
129
+ - examples/wiktacular/mkd/newpagename/current.mkd
130
+ - examples/wiktacular/mkd/newpagename/current.mkd.bak
131
+ - examples/wiktacular/mkd/testing
132
+ - examples/wiktacular/mkd/testing/2007-07-21_18-47-08.mkd
133
+ - examples/wiktacular/mkd/testing/2007-07-21_18-47-54.mkd
134
+ - examples/wiktacular/mkd/testing/current.mkd
135
+ - examples/wiktacular/mkd/testing/2007-07-21_18-46-01.mkd
136
+ - examples/wiktacular/mkd/testing/2007-07-21_18-46-32.mkd
137
+ - examples/wiktacular/mkd/testing/2007-07-20_16-43-46.mkd
138
+ - examples/wiktacular/mkd/testing/2007-07-20_19-43-50.mkd
139
+ - examples/wiktacular/mkd/markdown
140
+ - examples/wiktacular/mkd/markdown/current.mkd
141
+ - examples/wiktacular/src
142
+ - examples/wiktacular/src/model.rb
143
+ - examples/wiktacular/src/controller.rb
144
+ - examples/wiktacular/spec
145
+ - examples/wiktacular/spec/wiktacular.rb
146
+ - examples/wiktacular/README
147
+ - examples/wiktacular/template
148
+ - examples/wiktacular/template/new.xhtml
149
+ - examples/wiktacular/template/html_layout.xhtml
150
+ - examples/wiktacular/template/edit.xhtml
151
+ - examples/wiktacular/template/index.xhtml
152
+ - examples/wiktacular/public
153
+ - examples/wiktacular/public/favicon.ico
154
+ - examples/wiktacular/public/screen.css
155
+ - examples/wiktacular/start.rb
149
156
  - examples/sourceview
157
+ - examples/sourceview/template
158
+ - examples/sourceview/template/index.haml
150
159
  - examples/sourceview/public
151
- - examples/sourceview/public/coderay.css
160
+ - examples/sourceview/public/jquery.treeview.css
161
+ - examples/sourceview/public/jquery.treeview.js
162
+ - examples/sourceview/public/jquery.js
152
163
  - examples/sourceview/public/images
153
164
  - examples/sourceview/public/images/file.gif
154
165
  - examples/sourceview/public/images/folder.gif
155
166
  - examples/sourceview/public/images/tv-collapsable-last.gif
156
167
  - examples/sourceview/public/images/tv-collapsable.gif
157
- - examples/sourceview/public/images/tv-expandable-last.gif
168
+ - examples/sourceview/public/images/tv-item.gif
158
169
  - examples/sourceview/public/images/tv-expandable.gif
159
170
  - examples/sourceview/public/images/tv-item-last.gif
160
- - examples/sourceview/public/images/tv-item.gif
161
- - examples/sourceview/public/jquery.js
162
- - examples/sourceview/public/jquery.treeview.css
163
- - examples/sourceview/public/jquery.treeview.js
171
+ - examples/sourceview/public/images/tv-expandable-last.gif
172
+ - examples/sourceview/public/coderay.css
164
173
  - examples/sourceview/public/sourceview.js
165
174
  - examples/sourceview/sourceview.rb
166
- - examples/sourceview/template
167
- - examples/sourceview/template/index.haml
168
- - examples/templates
169
- - examples/templates/template
170
- - examples/templates/template/external.amrita
171
- - examples/templates/template/external.haml
172
- - examples/templates/template/external.liquid
173
- - examples/templates/template/external.mab
174
- - examples/templates/template/external.nag
175
- - examples/templates/template/external.rem
176
- - examples/templates/template/external.rhtml
177
- - examples/templates/template/external.xsl
178
- - examples/templates/template/external.zmr
179
- - examples/templates/template_amrita2.rb
180
- - examples/templates/template_erubis.rb
181
- - examples/templates/template_ezamar.rb
182
- - examples/templates/template_haml.rb
183
- - examples/templates/template_liquid.rb
184
- - examples/templates/template_markaby.rb
185
- - examples/templates/template_nagoro.rb
186
- - examples/templates/template_remarkably.rb
187
- - examples/templates/template_xslt.rb
175
+ - examples/simple_auth.rb
176
+ - examples/css.rb
177
+ - examples/memleak_detector.rb
188
178
  - examples/todolist
189
- - examples/todolist/README
190
- - examples/todolist/public
191
- - examples/todolist/public/css
192
- - examples/todolist/public/favicon.ico
193
- - examples/todolist/public/js
194
- - examples/todolist/public/js/jquery.js
195
- - examples/todolist/public/ramaze.png
196
- - examples/todolist/spec
197
- - examples/todolist/spec/todolist.rb
198
179
  - examples/todolist/src
199
- - examples/todolist/src/controller
200
- - examples/todolist/src/controller/main.rb
201
180
  - examples/todolist/src/element
202
181
  - examples/todolist/src/element/page.rb
203
182
  - examples/todolist/src/model.rb
204
- - examples/todolist/start.rb
183
+ - examples/todolist/src/controller
184
+ - examples/todolist/src/controller/main.rb
185
+ - examples/todolist/spec
186
+ - examples/todolist/spec/todolist.rb
187
+ - examples/todolist/README
205
188
  - examples/todolist/template
206
- - examples/todolist/template/index.xhtml
207
189
  - examples/todolist/template/new.xhtml
208
- - examples/whywiki
209
- - examples/whywiki/spec
210
- - examples/whywiki/spec/whywiki.rb
211
- - examples/whywiki/start.rb
212
- - examples/whywiki/template
213
- - examples/whywiki/template/edit.xhtml
214
- - examples/whywiki/template/show.xhtml
190
+ - examples/todolist/template/index.xhtml
191
+ - examples/todolist/public
192
+ - examples/todolist/public/js
193
+ - examples/todolist/public/js/jquery.js
194
+ - examples/todolist/public/css
195
+ - examples/todolist/public/favicon.ico
196
+ - examples/todolist/public/ramaze.png
197
+ - examples/todolist/start.rb
198
+ - examples/facebook.rb
199
+ - examples/rammit
200
+ - examples/rammit/src
201
+ - examples/rammit/src/model.rb
202
+ - examples/rammit/src/controller
203
+ - examples/rammit/src/controller/main.rb
204
+ - examples/rammit/src/controller/page.rb
205
+ - examples/rammit/spec
206
+ - examples/rammit/spec/rammit.rb
207
+ - examples/rammit/template
208
+ - examples/rammit/template/page
209
+ - examples/rammit/template/page/view.xhtml
210
+ - examples/rammit/template/index.xhtml
211
+ - examples/rammit/start.rb
212
+ - examples/identity.rb
213
+ - examples/upload
214
+ - examples/upload/view
215
+ - examples/upload/view/index.xhtml
216
+ - examples/upload/public
217
+ - examples/upload/start.rb
218
+ - examples/layout.rb
215
219
  - examples/wikore
216
- - examples/wikore/public
217
- - examples/wikore/spec
218
- - examples/wikore/spec/wikore.rb
219
220
  - examples/wikore/src
220
- - examples/wikore/src/controller.rb
221
221
  - examples/wikore/src/model.rb
222
- - examples/wikore/start.rb
222
+ - examples/wikore/src/controller.rb
223
+ - examples/wikore/spec
224
+ - examples/wikore/spec/wikore.rb
223
225
  - examples/wikore/template
224
226
  - examples/wikore/template/index.xhtml
225
- - examples/wiktacular
226
- - examples/wiktacular/README
227
- - examples/wiktacular/mkd
228
- - examples/wiktacular/mkd/link
229
- - examples/wiktacular/mkd/link/2007-07-20_19-45-51.mkd
230
- - examples/wiktacular/mkd/link/current.mkd
231
- - examples/wiktacular/mkd/main
232
- - examples/wiktacular/mkd/main/2007-07-20_16-31-33.mkd
233
- - examples/wiktacular/mkd/main/2007-07-20_19-21-12.mkd
234
- - examples/wiktacular/mkd/main/2007-07-20_19-23-10.mkd
235
- - examples/wiktacular/mkd/main/2007-07-20_19-45-07.mkd
236
- - examples/wiktacular/mkd/main/current.mkd
237
- - examples/wiktacular/mkd/markdown
238
- - examples/wiktacular/mkd/markdown/current.mkd
239
- - examples/wiktacular/mkd/testing
240
- - examples/wiktacular/mkd/testing/2007-07-20_16-43-46.mkd
241
- - examples/wiktacular/mkd/testing/2007-07-20_19-43-50.mkd
242
- - examples/wiktacular/mkd/testing/2007-07-21_18-46-01.mkd
243
- - examples/wiktacular/mkd/testing/2007-07-21_18-46-32.mkd
244
- - examples/wiktacular/mkd/testing/2007-07-21_18-47-08.mkd
245
- - examples/wiktacular/mkd/testing/2007-07-21_18-47-54.mkd
246
- - examples/wiktacular/mkd/testing/current.mkd
247
- - examples/wiktacular/public
248
- - examples/wiktacular/public/favicon.ico
249
- - examples/wiktacular/public/screen.css
250
- - examples/wiktacular/spec
251
- - examples/wiktacular/spec/wiktacular.rb
252
- - examples/wiktacular/src
253
- - examples/wiktacular/src/controller.rb
254
- - examples/wiktacular/src/model.rb
255
- - examples/wiktacular/start.rb
256
- - examples/wiktacular/template
257
- - examples/wiktacular/template/edit.xhtml
258
- - examples/wiktacular/template/html_layout.xhtml
259
- - examples/wiktacular/template/index.xhtml
260
- - examples/wiktacular/template/new.xhtml
227
+ - examples/wikore/public
228
+ - examples/wikore/start.rb
229
+ - examples/element.rb
230
+ - examples/simple.rb
231
+ - examples/whywiki
232
+ - examples/whywiki/spec
233
+ - examples/whywiki/spec/whywiki.rb
234
+ - examples/whywiki/template
235
+ - examples/whywiki/template/show.xhtml
236
+ - examples/whywiki/template/edit.xhtml
237
+ - examples/whywiki/start.rb
238
+ - examples/ramaise.rb
239
+ - examples/linking.rb
240
+ - examples/hello.rb
241
+ - examples/templates
242
+ - examples/templates/template_ezamar.rb
243
+ - examples/templates/template_erubis.rb
244
+ - examples/templates/template_nagoro.rb
245
+ - examples/templates/template_remarkably.rb
246
+ - examples/templates/template_liquid.rb
247
+ - examples/templates/template
248
+ - examples/templates/template/external.mab
249
+ - examples/templates/template/external.nag
250
+ - examples/templates/template/external.rem
251
+ - examples/templates/template/external.xsl
252
+ - examples/templates/template/external.zmr
253
+ - examples/templates/template/external.amrita
254
+ - examples/templates/template/external.liquid
255
+ - examples/templates/template/external.rhtml
256
+ - examples/templates/template/external.haml
257
+ - examples/templates/template/external.redcloth
258
+ - examples/templates/template_redcloth.rb
259
+ - examples/templates/template_amrita2.rb
260
+ - examples/templates/template_haml.rb
261
+ - examples/templates/template_markaby.rb
262
+ - examples/templates/template_xslt.rb
261
263
  - bin/ramaze
262
- - doc/AUTHORS
263
- - doc/COPYING
264
264
  - doc/GPL
265
- - doc/INSTALL
266
- - doc/LEGAL
267
- - doc/ProjectInfo
268
265
  - doc/TODO
269
266
  - doc/meta
270
- - doc/meta/announcement.txt
271
- - doc/meta/configuration.txt
272
267
  - doc/meta/internals.txt
268
+ - doc/meta/configuration.txt
269
+ - doc/meta/announcement.txt
273
270
  - doc/meta/users.kml
271
+ - doc/LEGAL
274
272
  - doc/migrate
275
273
  - doc/migrate/1110_to_1111.txt
276
274
  - doc/readme_chunks
277
275
  - doc/readme_chunks/appendix.txt
276
+ - doc/readme_chunks/thanks.txt
277
+ - doc/readme_chunks/principles.txt
278
+ - doc/readme_chunks/introduction.txt
279
+ - doc/readme_chunks/getting_started.txt
278
280
  - doc/readme_chunks/examples.txt
281
+ - doc/readme_chunks/installing.txt
279
282
  - doc/readme_chunks/features.txt
280
283
  - doc/readme_chunks/getting_help.txt
281
- - doc/readme_chunks/getting_started.txt
282
- - doc/readme_chunks/installing.txt
283
- - doc/readme_chunks/introduction.txt
284
- - doc/readme_chunks/principles.txt
285
- - doc/readme_chunks/thanks.txt
284
+ - doc/output
285
+ - doc/output/tools
286
+ - doc/output/tools/rcov
286
287
  - doc/tutorial
287
288
  - doc/tutorial/todolist.html
288
289
  - doc/tutorial/todolist.mkd
290
+ - doc/AUTHORS
291
+ - doc/README.html
292
+ - doc/INSTALL
293
+ - doc/COPYING
294
+ - doc/ProjectInfo
295
+ - doc/changes.txt
296
+ - doc/changes.xml
289
297
  - spec/contrib
290
298
  - spec/contrib/auto_params.rb
291
299
  - spec/contrib/route.rb
292
300
  - spec/contrib/sequel
293
301
  - spec/contrib/sequel/fill.rb
294
- - spec/examples
295
- - spec/examples/caching.rb
296
- - spec/examples/css.rb
297
- - spec/examples/element.rb
298
- - spec/examples/hello.rb
299
- - spec/examples/linking.rb
300
- - spec/examples/simple.rb
301
- - spec/examples/templates
302
- - spec/examples/templates/template_amrita2.rb
303
- - spec/examples/templates/template_erubis.rb
304
- - spec/examples/templates/template_ezamar.rb
305
- - spec/examples/templates/template_haml.rb
306
- - spec/examples/templates/template_liquid.rb
307
- - spec/examples/templates/template_markaby.rb
308
- - spec/examples/templates/template_remarkably.rb
309
- - spec/helper.rb
310
302
  - spec/ramaze
311
- - spec/ramaze/action
312
- - spec/ramaze/action/basics.rb
313
- - spec/ramaze/action/cache.rb
314
- - spec/ramaze/action/layout.rb
315
- - spec/ramaze/action/render.rb
316
- - spec/ramaze/action/template
317
- - spec/ramaze/action/template/bar.xhtml
318
- - spec/ramaze/action/template/instancevars
319
- - spec/ramaze/action/template/instancevars/layout.xhtml
320
- - spec/ramaze/action/template/other_wrapper.xhtml
321
- - spec/ramaze/action/template/single_wrapper.xhtml
322
- - spec/ramaze/action/template/sub
323
- - spec/ramaze/action/template/sub/sub_wrapper.xhtml
324
- - spec/ramaze/adapter
325
- - spec/ramaze/adapter/mongrel.rb
326
- - spec/ramaze/adapter/record.rb
327
- - spec/ramaze/adapter/webrick.rb
328
- - spec/ramaze/adapter.rb
329
- - spec/ramaze/cache.rb
330
- - spec/ramaze/controller
331
- - spec/ramaze/controller/resolve.rb
332
- - spec/ramaze/controller/template
333
- - spec/ramaze/controller/template/greet.xhtml
334
- - spec/ramaze/controller/template/list.xhtml
335
- - spec/ramaze/controller/template/other
336
- - spec/ramaze/controller/template/other/greet
337
- - spec/ramaze/controller/template/other/greet/other.xhtml
338
- - spec/ramaze/controller/template_resolving.rb
339
- - spec/ramaze/controller.rb
340
- - spec/ramaze/dispatcher
341
- - spec/ramaze/dispatcher/directory.rb
342
- - spec/ramaze/dispatcher/file.rb
343
- - spec/ramaze/dispatcher/public
344
- - spec/ramaze/dispatcher/public/favicon.ico
345
- - spec/ramaze/dispatcher/public/test_download.css
346
- - spec/ramaze/dispatcher.rb
347
- - spec/ramaze/element.rb
348
- - spec/ramaze/error.rb
349
- - spec/ramaze/gestalt.rb
350
- - spec/ramaze/helper
351
- - spec/ramaze/helper/aspect.rb
352
- - spec/ramaze/helper/auth.rb
353
- - spec/ramaze/helper/cache.rb
354
- - spec/ramaze/helper/cgi.rb
355
- - spec/ramaze/helper/file.rb
356
- - spec/ramaze/helper/flash.rb
357
- - spec/ramaze/helper/formatting.rb
358
- - spec/ramaze/helper/link.rb
359
- - spec/ramaze/helper/pager.rb
360
- - spec/ramaze/helper/partial.rb
361
- - spec/ramaze/helper/redirect.rb
362
- - spec/ramaze/helper/stack.rb
363
- - spec/ramaze/helper/template
364
- - spec/ramaze/helper/template/loop.xhtml
365
- - spec/ramaze/helper/template/num.xhtml
366
- - spec/ramaze/helper/template/partial.xhtml
367
- - spec/ramaze/helper/template/recursive.xhtml
368
- - spec/ramaze/helper/template/test_template.xhtml
369
- - spec/ramaze/inform
370
- - spec/ramaze/inform/informer.rb
371
- - spec/ramaze/inform/syslog.rb
372
- - spec/ramaze/localize.rb
373
- - spec/ramaze/morpher.rb
374
- - spec/ramaze/params.rb
375
- - spec/ramaze/public
376
- - spec/ramaze/public/error404.xhtml
377
- - spec/ramaze/public/favicon.ico
378
- - spec/ramaze/public/ramaze.png
379
- - spec/ramaze/public/test_download.css
380
303
  - spec/ramaze/request
381
304
  - spec/ramaze/request/mongrel.rb
382
- - spec/ramaze/request/thin.rb
383
305
  - spec/ramaze/request/webrick.rb
384
- - spec/ramaze/request.rb
385
- - spec/ramaze/session.rb
306
+ - spec/ramaze/request/thin.rb
386
307
  - spec/ramaze/store
387
308
  - spec/ramaze/store/default.rb
309
+ - spec/ramaze/error.rb
388
310
  - spec/ramaze/template
389
- - spec/ramaze/template/amrita2
390
- - spec/ramaze/template/amrita2/data.amrita
391
- - spec/ramaze/template/amrita2/index.amrita
392
- - spec/ramaze/template/amrita2/sum.amrita
393
- - spec/ramaze/template/amrita2.rb
311
+ - spec/ramaze/template/haml
312
+ - spec/ramaze/template/haml/index.haml
313
+ - spec/ramaze/template/haml/locals.haml
314
+ - spec/ramaze/template/haml/with_vars.haml
315
+ - spec/ramaze/template/sass
316
+ - spec/ramaze/template/sass/file.css.sass
317
+ - spec/ramaze/template/xslt
318
+ - spec/ramaze/template/xslt/products.xsl
319
+ - spec/ramaze/template/xslt/concat_words.xsl
320
+ - spec/ramaze/template/xslt/index.xsl
321
+ - spec/ramaze/template/xslt/ruby_version.xsl
322
+ - spec/ramaze/template/markaby.rb
323
+ - spec/ramaze/template/xslt.rb
324
+ - spec/ramaze/template/redcloth.rb
325
+ - spec/ramaze/template/sass.rb
326
+ - spec/ramaze/template/ezamar.rb
327
+ - spec/ramaze/template/erubis.rb
328
+ - spec/ramaze/template/nagoro.rb
329
+ - spec/ramaze/template/markaby
330
+ - spec/ramaze/template/markaby/external.mab
331
+ - spec/ramaze/template/markaby/sum.mab
332
+ - spec/ramaze/template/remarkably
333
+ - spec/ramaze/template/remarkably/external.rem
334
+ - spec/ramaze/template/remarkably/sum.rem
335
+ - spec/ramaze/template/liquid.rb
336
+ - spec/ramaze/template/remarkably.rb
394
337
  - spec/ramaze/template/erubis
395
338
  - spec/ramaze/template/erubis/sum.rhtml
396
- - spec/ramaze/template/erubis.rb
397
339
  - spec/ramaze/template/ezamar
398
- - spec/ramaze/template/ezamar/another
399
- - spec/ramaze/template/ezamar/another/long
400
- - spec/ramaze/template/ezamar/another/long/action.zmr
340
+ - spec/ramaze/template/ezamar/sum.zmr
341
+ - spec/ramaze/template/ezamar/other__index.xhtml
342
+ - spec/ramaze/template/ezamar/nested.zmr
401
343
  - spec/ramaze/template/ezamar/combined.zmr
402
- - spec/ramaze/template/ezamar/file_only.zmr
403
344
  - spec/ramaze/template/ezamar/index.zmr
404
- - spec/ramaze/template/ezamar/nested.zmr
405
- - spec/ramaze/template/ezamar/other__index.xhtml
406
345
  - spec/ramaze/template/ezamar/some__long__action.zmr
407
- - spec/ramaze/template/ezamar/sum.zmr
408
- - spec/ramaze/template/ezamar.rb
409
- - spec/ramaze/template/haml
410
- - spec/ramaze/template/haml/index.haml
411
- - spec/ramaze/template/haml/with_vars.haml
412
- - spec/ramaze/template/haml.rb
346
+ - spec/ramaze/template/ezamar/file_only.zmr
347
+ - spec/ramaze/template/ezamar/another
348
+ - spec/ramaze/template/ezamar/another/long
349
+ - spec/ramaze/template/ezamar/another/long/action.zmr
350
+ - spec/ramaze/template/builder.rb
413
351
  - spec/ramaze/template/liquid
414
352
  - spec/ramaze/template/liquid/index.liquid
415
353
  - spec/ramaze/template/liquid/products.liquid
416
- - spec/ramaze/template/liquid.rb
417
- - spec/ramaze/template/markaby
418
- - spec/ramaze/template/markaby/external.mab
419
- - spec/ramaze/template/markaby/sum.mab
420
- - spec/ramaze/template/markaby.rb
354
+ - spec/ramaze/template/haml.rb
421
355
  - spec/ramaze/template/nagoro
422
- - spec/ramaze/template/nagoro/another
423
- - spec/ramaze/template/nagoro/another/long
424
- - spec/ramaze/template/nagoro/another/long/action.nag
356
+ - spec/ramaze/template/nagoro/sum.nag
357
+ - spec/ramaze/template/nagoro/nested.nag
425
358
  - spec/ramaze/template/nagoro/combined.nag
426
- - spec/ramaze/template/nagoro/file_only.nag
427
359
  - spec/ramaze/template/nagoro/index.nag
428
- - spec/ramaze/template/nagoro/nested.nag
429
360
  - spec/ramaze/template/nagoro/some__long__action.nag
430
- - spec/ramaze/template/nagoro/sum.nag
431
- - spec/ramaze/template/nagoro.rb
361
+ - spec/ramaze/template/nagoro/file_only.nag
362
+ - spec/ramaze/template/nagoro/another
363
+ - spec/ramaze/template/nagoro/another/long
364
+ - spec/ramaze/template/nagoro/another/long/action.nag
432
365
  - spec/ramaze/template/ramaze
433
366
  - spec/ramaze/template/ramaze/external.test
434
- - spec/ramaze/template/remarkably
435
- - spec/ramaze/template/remarkably/external.rem
436
- - spec/ramaze/template/remarkably/sum.rem
437
- - spec/ramaze/template/remarkably.rb
438
- - spec/ramaze/template/sass
439
- - spec/ramaze/template/sass/file.css.sass
440
- - spec/ramaze/template/sass.rb
441
- - spec/ramaze/template/xslt
442
- - spec/ramaze/template/xslt/concat_words.xsl
443
- - spec/ramaze/template/xslt/index.xsl
444
- - spec/ramaze/template/xslt/products.xsl
445
- - spec/ramaze/template/xslt/ruby_version.xsl
446
- - spec/ramaze/template/xslt.rb
367
+ - spec/ramaze/template/amrita2
368
+ - spec/ramaze/template/amrita2/sum.amrita
369
+ - spec/ramaze/template/amrita2/external.amrita
370
+ - spec/ramaze/template/amrita2.rb
371
+ - spec/ramaze/template/redcloth
372
+ - spec/ramaze/template/redcloth/external.redcloth
373
+ - spec/ramaze/template/bijou.rb
374
+ - spec/ramaze/template/builder
375
+ - spec/ramaze/template/builder/external.rxml
376
+ - spec/ramaze/cache.rb
377
+ - spec/ramaze/action
378
+ - spec/ramaze/action/basics.rb
379
+ - spec/ramaze/action/template
380
+ - spec/ramaze/action/template/sub
381
+ - spec/ramaze/action/template/sub/sub_wrapper.xhtml
382
+ - spec/ramaze/action/template/bar.xhtml
383
+ - spec/ramaze/action/template/single_wrapper.xhtml
384
+ - spec/ramaze/action/template/other_wrapper.xhtml
385
+ - spec/ramaze/action/template/instancevars
386
+ - spec/ramaze/action/template/instancevars/layout.xhtml
387
+ - spec/ramaze/action/cache.rb
388
+ - spec/ramaze/action/layout.rb
389
+ - spec/ramaze/action/render.rb
447
390
  - spec/ramaze/template.rb
391
+ - spec/ramaze/helper
392
+ - spec/ramaze/helper/pager.rb
393
+ - spec/ramaze/helper/link.rb
394
+ - spec/ramaze/helper/template
395
+ - spec/ramaze/helper/template/num.xhtml
396
+ - spec/ramaze/helper/template/locals.xhtml
397
+ - spec/ramaze/helper/template/test_template.xhtml
398
+ - spec/ramaze/helper/template/partial.xhtml
399
+ - spec/ramaze/helper/template/recursive.xhtml
400
+ - spec/ramaze/helper/template/recursive_locals.xhtml
401
+ - spec/ramaze/helper/template/loop.xhtml
402
+ - spec/ramaze/helper/cache.rb
403
+ - spec/ramaze/helper/partial.rb
404
+ - spec/ramaze/helper/file.rb
405
+ - spec/ramaze/helper/cgi.rb
406
+ - spec/ramaze/helper/redirect.rb
407
+ - spec/ramaze/helper/flash.rb
408
+ - spec/ramaze/helper/stack.rb
409
+ - spec/ramaze/helper/formatting.rb
410
+ - spec/ramaze/helper/auth.rb
411
+ - spec/ramaze/helper/aspect.rb
412
+ - spec/ramaze/adapter.rb
413
+ - spec/ramaze/localize.rb
414
+ - spec/ramaze/inform
415
+ - spec/ramaze/inform/informer.rb
416
+ - spec/ramaze/inform/syslog.rb
448
417
  - spec/ramaze/trinity
449
418
  - spec/ramaze/trinity/request.rb
450
419
  - spec/ramaze/trinity/session.rb
420
+ - spec/ramaze/adapter
421
+ - spec/ramaze/adapter/mongrel.rb
422
+ - spec/ramaze/adapter/webrick.rb
423
+ - spec/ramaze/adapter/record.rb
424
+ - spec/ramaze/request.rb
425
+ - spec/ramaze/controller
426
+ - spec/ramaze/controller/resolve.rb
427
+ - spec/ramaze/controller/template_resolving.rb
428
+ - spec/ramaze/controller/template
429
+ - spec/ramaze/controller/template/other
430
+ - spec/ramaze/controller/template/other/greet
431
+ - spec/ramaze/controller/template/other/greet/other.xhtml
432
+ - spec/ramaze/controller/template/greet.xhtml
433
+ - spec/ramaze/controller/template/list.xhtml
434
+ - spec/ramaze/controller/subclass.rb
435
+ - spec/ramaze/controller.rb
436
+ - spec/ramaze/public
437
+ - spec/ramaze/public/favicon.ico
438
+ - spec/ramaze/public/ramaze.png
439
+ - spec/ramaze/public/test_download.css
440
+ - spec/ramaze/public/error404.xhtml
441
+ - spec/ramaze/route.rb
442
+ - spec/ramaze/dispatcher.rb
443
+ - spec/ramaze/dispatcher
444
+ - spec/ramaze/dispatcher/file.rb
445
+ - spec/ramaze/dispatcher/public
446
+ - spec/ramaze/dispatcher/public/favicon.ico
447
+ - spec/ramaze/dispatcher/public/test_download.css
448
+ - spec/ramaze/dispatcher/directory.rb
449
+ - spec/ramaze/gestalt.rb
450
+ - spec/ramaze/session.rb
451
+ - spec/ramaze/element.rb
452
+ - spec/ramaze/morpher.rb
453
+ - spec/ramaze/params.rb
454
+ - spec/examples
455
+ - spec/examples/caching.rb
456
+ - spec/examples/css.rb
457
+ - spec/examples/element.rb
458
+ - spec/examples/simple.rb
459
+ - spec/examples/linking.rb
460
+ - spec/examples/hello.rb
461
+ - spec/examples/templates
462
+ - spec/examples/templates/template_ezamar.rb
463
+ - spec/examples/templates/template_erubis.rb
464
+ - spec/examples/templates/template_remarkably.rb
465
+ - spec/examples/templates/template_liquid.rb
466
+ - spec/examples/templates/template_redcloth.rb
467
+ - spec/examples/templates/template_amrita2.rb
468
+ - spec/examples/templates/template_haml.rb
469
+ - spec/examples/templates/template_markaby.rb
470
+ - spec/helper.rb
451
471
  - spec/snippets
472
+ - spec/snippets/ordered_set.rb
452
473
  - spec/snippets/array
453
474
  - spec/snippets/array/put_within.rb
454
475
  - spec/snippets/divide.rb
455
476
  - spec/snippets/kernel
456
- - spec/snippets/kernel/__dir__.rb
457
- - spec/snippets/kernel/acquire.rb
458
477
  - spec/snippets/kernel/constant.rb
459
- - spec/snippets/numeric
460
- - spec/snippets/numeric/filesize_format.rb
461
- - spec/snippets/ordered_set.rb
478
+ - spec/snippets/kernel/acquire.rb
479
+ - spec/snippets/kernel/__dir__.rb
462
480
  - spec/snippets/ramaze
463
- - spec/snippets/ramaze/caller_info.rb
464
481
  - spec/snippets/ramaze/caller_lines.rb
482
+ - spec/snippets/ramaze/caller_info.rb
483
+ - spec/snippets/thread
484
+ - spec/snippets/thread/into.rb
465
485
  - spec/snippets/string
466
- - spec/snippets/string/camel_case.rb
467
486
  - spec/snippets/string/color.rb
468
- - spec/snippets/string/snake_case.rb
469
487
  - spec/snippets/string/unindent.rb
488
+ - spec/snippets/string/camel_case.rb
489
+ - spec/snippets/string/snake_case.rb
470
490
  - spec/snippets/struct
471
491
  - spec/snippets/struct/fill.rb
472
492
  - spec/snippets/struct/values_at.rb
473
493
  - spec/snippets/symbol
474
494
  - spec/snippets/symbol/to_proc.rb
475
- - spec/snippets/thread
476
- - spec/snippets/thread/into.rb
495
+ - spec/snippets/numeric
496
+ - spec/snippets/numeric/filesize_format.rb
477
497
  - lib/proto
498
+ - lib/proto/spec
499
+ - lib/proto/spec/main.rb
500
+ - lib/proto/view
501
+ - lib/proto/view/error.xhtml
502
+ - lib/proto/view/page.xhtml
503
+ - lib/proto/view/index.xhtml
504
+ - lib/proto/model
478
505
  - lib/proto/controller
479
506
  - lib/proto/controller/main.rb
480
- - lib/proto/model
481
507
  - lib/proto/public
508
+ - lib/proto/public/js
509
+ - lib/proto/public/js/jquery.js
482
510
  - lib/proto/public/css
483
511
  - lib/proto/public/css/ramaze_error.css
484
512
  - lib/proto/public/favicon.ico
485
- - lib/proto/public/js
486
- - lib/proto/public/js/jquery.js
487
513
  - lib/proto/public/ramaze.png
488
- - lib/proto/spec
489
- - lib/proto/spec/main.rb
490
514
  - lib/proto/start.rb
491
- - lib/proto/view
492
- - lib/proto/view/error.xhtml
493
- - lib/proto/view/index.xhtml
494
- - lib/proto/view/page.xhtml
515
+ - lib/ramaze.rb
495
516
  - lib/ramaze
496
- - lib/ramaze/action
497
- - lib/ramaze/action/render.rb
498
- - lib/ramaze/action.rb
499
- - lib/ramaze/adapter
500
- - lib/ramaze/adapter/base.rb
501
- - lib/ramaze/adapter/cgi.rb
502
- - lib/ramaze/adapter/evented_mongrel.rb
503
- - lib/ramaze/adapter/fcgi.rb
504
- - lib/ramaze/adapter/mongrel.rb
505
- - lib/ramaze/adapter/swiftiplied_mongrel.rb
506
- - lib/ramaze/adapter/thin.rb
507
- - lib/ramaze/adapter/webrick.rb
508
- - lib/ramaze/adapter.rb
509
- - lib/ramaze/cache
510
- - lib/ramaze/cache/memcached.rb
511
- - lib/ramaze/cache/memory.rb
512
- - lib/ramaze/cache/yaml_store.rb
513
- - lib/ramaze/cache.rb
517
+ - lib/ramaze/spec
518
+ - lib/ramaze/spec/helper
519
+ - lib/ramaze/spec/helper/browser.rb
520
+ - lib/ramaze/spec/helper/snippets.rb
521
+ - lib/ramaze/spec/helper/simple_http.rb
522
+ - lib/ramaze/spec/helper/mock_http.rb
523
+ - lib/ramaze/spec/helper/bacon.rb
524
+ - lib/ramaze/spec/helper/pretty_output.rb
525
+ - lib/ramaze/spec/helper/requester.rb
526
+ - lib/ramaze/spec/helper.rb
527
+ - lib/ramaze/tool
528
+ - lib/ramaze/tool/mime_types.yaml
529
+ - lib/ramaze/tool/record.rb
530
+ - lib/ramaze/tool/mime.rb
531
+ - lib/ramaze/tool/localize.rb
532
+ - lib/ramaze/tool/create.rb
514
533
  - lib/ramaze/contrib
534
+ - lib/ramaze/contrib/email.rb-darcs-backup0
535
+ - lib/ramaze/contrib/facebook
536
+ - lib/ramaze/contrib/facebook/facebook.rb
537
+ - lib/ramaze/contrib/email.rb
515
538
  - lib/ramaze/contrib/auto_params
516
539
  - lib/ramaze/contrib/auto_params/get_args.rb
540
+ - lib/ramaze/contrib/gzip_filter.rb
517
541
  - lib/ramaze/contrib/auto_params.rb
518
- - lib/ramaze/contrib/facebook
519
- - lib/ramaze/contrib/facebook/facebook.rb
520
- - lib/ramaze/contrib/facebook.rb
542
+ - lib/ramaze/contrib/gettext.rb
521
543
  - lib/ramaze/contrib/gettext
544
+ - lib/ramaze/contrib/gettext/parser.rb
522
545
  - lib/ramaze/contrib/gettext/mo.rb
523
546
  - lib/ramaze/contrib/gettext/po.rb
524
- - lib/ramaze/contrib/gettext.rb
525
- - lib/ramaze/contrib/gzip_filter.rb
547
+ - lib/ramaze/contrib/facebook.rb
526
548
  - lib/ramaze/contrib/route.rb
527
549
  - lib/ramaze/contrib/sequel
528
550
  - lib/ramaze/contrib/sequel/fill.rb
529
- - lib/ramaze/contrib.rb
530
- - lib/ramaze/controller
531
- - lib/ramaze/controller/error.rb
532
- - lib/ramaze/controller/main.rb
533
- - lib/ramaze/controller/resolve.rb
534
- - lib/ramaze/controller.rb
535
- - lib/ramaze/dispatcher
536
- - lib/ramaze/dispatcher/action.rb
537
- - lib/ramaze/dispatcher/directory.rb
538
- - lib/ramaze/dispatcher/error.rb
539
- - lib/ramaze/dispatcher/file.rb
540
- - lib/ramaze/dispatcher.rb
551
+ - lib/ramaze/cache
552
+ - lib/ramaze/cache/yaml_store.rb
553
+ - lib/ramaze/cache/memcached.rb
554
+ - lib/ramaze/cache/memory.rb
555
+ - lib/ramaze/store
556
+ - lib/ramaze/store/default.rb
541
557
  - lib/ramaze/error.rb
542
- - lib/ramaze/gestalt.rb
558
+ - lib/ramaze/template
559
+ - lib/ramaze/template/markaby.rb
560
+ - lib/ramaze/template/xslt.rb
561
+ - lib/ramaze/template/redcloth.rb
562
+ - lib/ramaze/template/sass.rb
563
+ - lib/ramaze/template/ezamar.rb
564
+ - lib/ramaze/template/erubis.rb
565
+ - lib/ramaze/template/nagoro.rb
566
+ - lib/ramaze/template/liquid.rb
567
+ - lib/ramaze/template/remarkably.rb
568
+ - lib/ramaze/template/ezamar
569
+ - lib/ramaze/template/ezamar/render_partial.rb
570
+ - lib/ramaze/template/ezamar/engine.rb
571
+ - lib/ramaze/template/ezamar/element.rb
572
+ - lib/ramaze/template/ezamar/morpher.rb
573
+ - lib/ramaze/template/builder.rb
574
+ - lib/ramaze/template/haml.rb
575
+ - lib/ramaze/template/none.rb
576
+ - lib/ramaze/template/amrita2.rb
577
+ - lib/ramaze/template/bijou.rb
578
+ - lib/ramaze/cache.rb
579
+ - lib/ramaze/snippets.rb
580
+ - lib/ramaze/action
581
+ - lib/ramaze/action/render.rb
582
+ - lib/ramaze/template.rb
543
583
  - lib/ramaze/global
544
- - lib/ramaze/global/dsl.rb
545
584
  - lib/ramaze/global/globalstruct.rb
546
- - lib/ramaze/global.rb
585
+ - lib/ramaze/global/dsl.rb
547
586
  - lib/ramaze/helper
548
- - lib/ramaze/helper/aspect.rb
549
- - lib/ramaze/helper/auth.rb
550
- - lib/ramaze/helper/cache.rb
551
- - lib/ramaze/helper/cgi.rb
552
- - lib/ramaze/helper/file.rb
553
- - lib/ramaze/helper/flash.rb
554
- - lib/ramaze/helper/formatting.rb
555
- - lib/ramaze/helper/identity.rb
556
- - lib/ramaze/helper/inform.rb
557
- - lib/ramaze/helper/link.rb
558
587
  - lib/ramaze/helper/markaby.rb
559
- - lib/ramaze/helper/nitroform.rb
588
+ - lib/ramaze/helper/sequel.rb
560
589
  - lib/ramaze/helper/pager.rb
590
+ - lib/ramaze/helper/link.rb
591
+ - lib/ramaze/helper/cache.rb
561
592
  - lib/ramaze/helper/partial.rb
593
+ - lib/ramaze/helper/maruku.rb
594
+ - lib/ramaze/helper/file.rb
595
+ - lib/ramaze/helper/cgi.rb
562
596
  - lib/ramaze/helper/redirect.rb
563
- - lib/ramaze/helper/sequel.rb
597
+ - lib/ramaze/helper/identity.rb
598
+ - lib/ramaze/helper/flash.rb
564
599
  - lib/ramaze/helper/stack.rb
565
- - lib/ramaze/helper.rb
600
+ - lib/ramaze/helper/formatting.rb
601
+ - lib/ramaze/helper/auth.rb
602
+ - lib/ramaze/helper/aspect.rb
603
+ - lib/ramaze/helper/nitroform.rb
604
+ - lib/ramaze/helper/inform.rb
605
+ - lib/ramaze/adapter.rb
606
+ - lib/ramaze/tool.rb
566
607
  - lib/ramaze/inform
567
- - lib/ramaze/inform/analogger.rb
608
+ - lib/ramaze/inform/informer.rb
609
+ - lib/ramaze/inform/xosd.rb
610
+ - lib/ramaze/inform/syslog.rb
568
611
  - lib/ramaze/inform/growl.rb
612
+ - lib/ramaze/inform/knotify.rb
569
613
  - lib/ramaze/inform/hub.rb
570
- - lib/ramaze/inform/informer.rb
571
614
  - lib/ramaze/inform/informing.rb
572
- - lib/ramaze/inform/knotify.rb
573
- - lib/ramaze/inform/syslog.rb
574
- - lib/ramaze/inform/xosd.rb
575
- - lib/ramaze/inform.rb
615
+ - lib/ramaze/inform/analogger.rb
616
+ - lib/ramaze/trinity
617
+ - lib/ramaze/trinity/response.rb
618
+ - lib/ramaze/trinity/request.rb
619
+ - lib/ramaze/trinity/session.rb
620
+ - lib/ramaze/contrib.rb
621
+ - lib/ramaze/adapter
622
+ - lib/ramaze/adapter/mongrel.rb
623
+ - lib/ramaze/adapter/fcgi.rb
624
+ - lib/ramaze/adapter/webrick.rb
625
+ - lib/ramaze/adapter/lsws.rb
626
+ - lib/ramaze/adapter/thin.rb
627
+ - lib/ramaze/adapter/cgi.rb
628
+ - lib/ramaze/adapter/evented_mongrel.rb
629
+ - lib/ramaze/adapter/base.rb
630
+ - lib/ramaze/adapter/swiftiplied_mongrel.rb
631
+ - lib/ramaze/controller
632
+ - lib/ramaze/controller/resolve.rb
633
+ - lib/ramaze/controller/error.rb
634
+ - lib/ramaze/controller/main.rb
635
+ - lib/ramaze/controller.rb
636
+ - lib/ramaze/route.rb
637
+ - lib/ramaze/sourcereload.rb
638
+ - lib/ramaze/dispatcher.rb
639
+ - lib/ramaze/dispatcher
640
+ - lib/ramaze/dispatcher/error.rb
641
+ - lib/ramaze/dispatcher/file.rb
642
+ - lib/ramaze/dispatcher/directory.rb
643
+ - lib/ramaze/dispatcher/action.rb
644
+ - lib/ramaze/trinity.rb
645
+ - lib/ramaze/gestalt.rb
646
+ - lib/ramaze/global.rb
647
+ - lib/ramaze/action.rb
648
+ - lib/ramaze/helper.rb
576
649
  - lib/ramaze/snippets
650
+ - lib/ramaze/snippets/dictionary.rb
651
+ - lib/ramaze/snippets/ordered_set.rb
577
652
  - lib/ramaze/snippets/array
578
653
  - lib/ramaze/snippets/array/put_within.rb
579
654
  - lib/ramaze/snippets/blankslate.rb
580
- - lib/ramaze/snippets/dictionary.rb
581
655
  - lib/ramaze/snippets/divide.rb
582
656
  - lib/ramaze/snippets/kernel
583
- - lib/ramaze/snippets/kernel/__dir__.rb
657
+ - lib/ramaze/snippets/kernel/constant.rb
584
658
  - lib/ramaze/snippets/kernel/acquire.rb
585
659
  - lib/ramaze/snippets/kernel/aquire.rb
586
- - lib/ramaze/snippets/kernel/constant.rb
587
660
  - lib/ramaze/snippets/kernel/pretty_inspect.rb
588
- - lib/ramaze/snippets/numeric
589
- - lib/ramaze/snippets/numeric/filesize_format.rb
661
+ - lib/ramaze/snippets/kernel/__dir__.rb
590
662
  - lib/ramaze/snippets/object
591
663
  - lib/ramaze/snippets/object/traits.rb
592
- - lib/ramaze/snippets/ordered_set.rb
593
664
  - lib/ramaze/snippets/ramaze
594
- - lib/ramaze/snippets/ramaze/caller_info.rb
595
665
  - lib/ramaze/snippets/ramaze/caller_lines.rb
666
+ - lib/ramaze/snippets/ramaze/caller_info.rb
667
+ - lib/ramaze/snippets/thread
668
+ - lib/ramaze/snippets/thread/into.rb
596
669
  - lib/ramaze/snippets/string
597
- - lib/ramaze/snippets/string/camel_case.rb
598
- - lib/ramaze/snippets/string/color.rb
599
670
  - lib/ramaze/snippets/string/each.rb
671
+ - lib/ramaze/snippets/string/color.rb
600
672
  - lib/ramaze/snippets/string/ord.rb
601
- - lib/ramaze/snippets/string/snake_case.rb
602
673
  - lib/ramaze/snippets/string/unindent.rb
674
+ - lib/ramaze/snippets/string/camel_case.rb
675
+ - lib/ramaze/snippets/string/snake_case.rb
603
676
  - lib/ramaze/snippets/struct
604
677
  - lib/ramaze/snippets/struct/fill.rb
605
678
  - lib/ramaze/snippets/struct/values_at.rb
606
679
  - lib/ramaze/snippets/symbol
607
680
  - lib/ramaze/snippets/symbol/to_proc.rb
608
- - lib/ramaze/snippets/thread
609
- - lib/ramaze/snippets/thread/into.rb
610
- - lib/ramaze/snippets.rb
611
- - lib/ramaze/sourcereload.rb
612
- - lib/ramaze/spec
613
- - lib/ramaze/spec/helper
614
- - lib/ramaze/spec/helper/bacon.rb
615
- - lib/ramaze/spec/helper/browser.rb
616
- - lib/ramaze/spec/helper/mock_http.rb
617
- - lib/ramaze/spec/helper/pretty_output.rb
618
- - lib/ramaze/spec/helper/requester.rb
619
- - lib/ramaze/spec/helper/simple_http.rb
620
- - lib/ramaze/spec/helper/snippets.rb
621
- - lib/ramaze/spec/helper.rb
622
- - lib/ramaze/store
623
- - lib/ramaze/store/default.rb
624
- - lib/ramaze/template
625
- - lib/ramaze/template/amrita2.rb
626
- - lib/ramaze/template/erubis.rb
627
- - lib/ramaze/template/ezamar
628
- - lib/ramaze/template/ezamar/element.rb
629
- - lib/ramaze/template/ezamar/engine.rb
630
- - lib/ramaze/template/ezamar/morpher.rb
631
- - lib/ramaze/template/ezamar/render_partial.rb
632
- - lib/ramaze/template/ezamar.rb
633
- - lib/ramaze/template/haml.rb
634
- - lib/ramaze/template/liquid.rb
635
- - lib/ramaze/template/markaby.rb
636
- - lib/ramaze/template/nagoro.rb
637
- - lib/ramaze/template/none.rb
638
- - lib/ramaze/template/remarkably.rb
639
- - lib/ramaze/template/sass.rb
640
- - lib/ramaze/template/xslt.rb
641
- - lib/ramaze/template.rb
642
- - lib/ramaze/tool
643
- - lib/ramaze/tool/create.rb
644
- - lib/ramaze/tool/localize.rb
645
- - lib/ramaze/tool/mime.rb
646
- - lib/ramaze/tool/mime_types.yaml
647
- - lib/ramaze/tool/record.rb
648
- - lib/ramaze/tool.rb
649
- - lib/ramaze/trinity
650
- - lib/ramaze/trinity/request.rb
651
- - lib/ramaze/trinity/response.rb
652
- - lib/ramaze/trinity/session.rb
653
- - lib/ramaze/trinity.rb
681
+ - lib/ramaze/snippets/numeric
682
+ - lib/ramaze/snippets/numeric/filesize_format.rb
683
+ - lib/ramaze/snippets/metaid.rb
654
684
  - lib/ramaze/version.rb
655
- - lib/ramaze.rb
685
+ - lib/ramaze/inform.rb
656
686
  - lib/vendor
657
687
  - lib/vendor/bacon.rb
658
688
  - rake_tasks/conf.rake