ramaze 0.3.9.1 → 2023.01.06

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 (781) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +3 -0
  3. data/README.md +125 -0
  4. data/Rakefile +13 -186
  5. data/bin/ramaze +4 -149
  6. data/examples/app/auth/layout/auth.xhtml +25 -0
  7. data/examples/app/auth/start.rb +25 -0
  8. data/examples/app/auth/view/index.xhtml +4 -0
  9. data/examples/app/auth/view/login.xhtml +20 -0
  10. data/examples/app/auth/view/secret.xhtml +1 -0
  11. data/examples/app/blog/app.rb +23 -0
  12. data/examples/app/blog/config.ru +19 -0
  13. data/examples/app/blog/controller/init.rb +30 -0
  14. data/examples/app/blog/controller/posts.rb +223 -0
  15. data/examples/app/blog/controller/users.rb +152 -0
  16. data/examples/app/blog/layout/default.xhtml +61 -0
  17. data/examples/app/blog/migrations/01_create_schema.rb +50 -0
  18. data/examples/app/blog/model/comment.rb +42 -0
  19. data/examples/app/blog/model/init.rb +44 -0
  20. data/examples/app/blog/model/post.rb +33 -0
  21. data/examples/app/blog/model/user.rb +100 -0
  22. data/examples/app/blog/public/css/grid.css +107 -0
  23. data/examples/app/blog/public/css/layout.css +203 -0
  24. data/examples/app/blog/public/css/reset.css +123 -0
  25. data/examples/app/blog/public/css/text.css +109 -0
  26. data/examples/app/blog/public/dispatch.fcgi +11 -0
  27. data/examples/app/blog/public/favicon.ico +0 -0
  28. data/examples/app/blog/public/images/bg.png +0 -0
  29. data/examples/app/blog/start.rb +20 -0
  30. data/examples/app/blog/view/feed.xhtml +23 -0
  31. data/examples/app/blog/view/form.xhtml +11 -0
  32. data/examples/app/blog/view/index.xhtml +44 -0
  33. data/examples/app/blog/view/users/form.xhtml +12 -0
  34. data/examples/app/blog/view/users/index.xhtml +30 -0
  35. data/examples/app/blog/view/users/login.xhtml +8 -0
  36. data/examples/app/blog/view/view.xhtml +68 -0
  37. data/examples/app/chat/layout/default.xhtml +13 -0
  38. data/examples/app/chat/model/history.rb +38 -0
  39. data/examples/app/chat/model/message.rb +7 -0
  40. data/examples/app/chat/public/css/chat.css +9 -0
  41. data/examples/app/chat/public/js/chat.js +28 -0
  42. data/{lib/proto → examples/app/chat}/public/js/jquery.js +75 -15
  43. data/examples/app/chat/start.rb +39 -0
  44. data/examples/app/chat/view/chat.xhtml +9 -0
  45. data/examples/app/chat/view/index.xhtml +7 -0
  46. data/examples/app/localization/locale/de.yaml +5 -0
  47. data/examples/app/localization/locale/en.yaml +5 -0
  48. data/examples/app/localization/locale/ja.yaml +5 -0
  49. data/examples/app/localization/start.rb +48 -0
  50. data/examples/app/todolist/controller/init.rb +11 -0
  51. data/examples/app/todolist/controller/task.rb +39 -0
  52. data/examples/app/todolist/layout/default.xhtml +14 -0
  53. data/examples/app/todolist/model/init.rb +14 -0
  54. data/examples/app/todolist/model/task.rb +39 -0
  55. data/examples/app/todolist/public/css/screen.css +63 -0
  56. data/examples/app/todolist/start.rb +7 -0
  57. data/examples/app/todolist/view/index.xhtml +29 -0
  58. data/examples/{upload → app/upload}/start.rb +7 -3
  59. data/examples/app/whywiki/spec/whywiki.rb +56 -0
  60. data/examples/{whywiki → app/whywiki}/start.rb +10 -9
  61. data/examples/{whywiki/template → app/whywiki/view}/edit.xhtml +2 -2
  62. data/examples/app/whywiki/view/show.xhtml +20 -0
  63. data/examples/{wikore → app/wikore}/spec/wikore.rb +7 -9
  64. data/examples/{wikore → app/wikore}/src/controller.rb +9 -11
  65. data/examples/{wikore → app/wikore}/src/model.rb +11 -13
  66. data/examples/app/wikore/start.rb +9 -0
  67. data/examples/{wiktacular/template/html_layout.xhtml → app/wiktacular/layout/application.xhtml} +1 -1
  68. data/examples/{wiktacular → app/wiktacular}/mkd/main/2007-07-20_19-21-12.mkd +1 -1
  69. data/examples/app/wiktacular/mkd/main/2007-07-20_19-23-10.mkd +2 -0
  70. data/examples/app/wiktacular/mkd/main/2007-07-20_19-45-07.mkd +2 -0
  71. data/examples/app/wiktacular/mkd/main/current.mkd +2 -0
  72. data/examples/{wiktacular → app/wiktacular}/mkd/markdown/current.mkd +2 -2
  73. data/examples/app/wiktacular/mkd/testing/2007-07-20_16-43-46.mkd +2 -0
  74. data/examples/{wiktacular → app/wiktacular}/mkd/testing/2007-07-20_19-43-50.mkd +2 -2
  75. data/examples/{wiktacular → app/wiktacular}/mkd/testing/2007-07-21_18-46-01.mkd +11 -11
  76. data/examples/{wiktacular → app/wiktacular}/mkd/testing/2007-07-21_18-46-32.mkd +12 -12
  77. data/examples/{wiktacular → app/wiktacular}/mkd/testing/2007-07-21_18-47-08.mkd +16 -16
  78. data/examples/{wiktacular → app/wiktacular}/mkd/testing/2007-07-21_18-47-54.mkd +16 -16
  79. data/examples/{wiktacular → app/wiktacular}/mkd/testing/current.mkd +16 -16
  80. data/examples/{wiktacular → app/wiktacular}/spec/wiktacular.rb +39 -40
  81. data/examples/{wiktacular → app/wiktacular}/src/controller.rb +18 -18
  82. data/examples/{wiktacular → app/wiktacular}/src/model.rb +30 -14
  83. data/examples/{wiktacular → app/wiktacular}/start.rb +1 -1
  84. data/examples/{wiktacular/template → app/wiktacular/view}/edit.xhtml +2 -2
  85. data/examples/{wiktacular/template → app/wiktacular/view}/new.xhtml +1 -1
  86. data/examples/{element.rb → basic/element.rb} +5 -3
  87. data/examples/basic/gestalt.rb +26 -0
  88. data/examples/basic/hello.rb +14 -0
  89. data/examples/{layout.rb → basic/layout.rb} +2 -2
  90. data/examples/basic/linking.rb +29 -0
  91. data/examples/basic/partial.rb +26 -0
  92. data/examples/{simple.rb → basic/simple.rb} +9 -12
  93. data/examples/{caching.rb → helpers/cache.rb} +9 -7
  94. data/examples/helpers/paginate.rb +71 -0
  95. data/examples/helpers/rest.rb +28 -0
  96. data/examples/helpers/simple_captcha.rb +29 -0
  97. data/examples/{css.rb → misc/css.rb} +6 -12
  98. data/examples/misc/memleak_detector.rb +37 -0
  99. data/examples/misc/nagoro_element.rb +43 -0
  100. data/examples/{ramaise.rb → misc/ramaise.rb} +2 -2
  101. data/examples/misc/rapp.rb +56 -0
  102. data/examples/misc/sequel_scaffolding.rb +45 -0
  103. data/examples/misc/serve_directory.rb +6 -0
  104. data/examples/templates/template_erubis.rb +9 -10
  105. data/examples/templates/template_ezamar.rb +8 -7
  106. data/examples/templates/template_haml.rb +7 -8
  107. data/examples/templates/template_liquid.rb +20 -19
  108. data/examples/templates/template_markaby.rb +6 -7
  109. data/examples/templates/template_mustache.rb +70 -0
  110. data/examples/templates/template_nagoro.rb +6 -7
  111. data/examples/templates/template_redcloth.rb +8 -9
  112. data/examples/templates/template_remarkably.rb +8 -9
  113. data/examples/templates/template_tenjin.rb +10 -15
  114. data/examples/templates/{template → view}/external.haml +4 -4
  115. data/examples/templates/{template → view}/external.mab +4 -4
  116. data/examples/templates/view/external.mt +29 -0
  117. data/examples/templates/{template → view}/external.nag +4 -4
  118. data/examples/templates/{template → view}/external.redcloth +4 -4
  119. data/examples/templates/{template → view}/external.rem +4 -4
  120. data/examples/templates/{template → view}/external.rhtml +6 -6
  121. data/examples/templates/{template → view}/external.tenjin +4 -4
  122. data/examples/templates/{template → view}/external.zmr +6 -6
  123. data/guide/AUTHORS +80 -0
  124. data/guide/CHANGELOG +20210 -0
  125. data/guide/LICENSE +19 -0
  126. data/guide/_static/logo.png +0 -0
  127. data/guide/_static/logo.svg +49 -0
  128. data/guide/css/common.css +20 -0
  129. data/guide/general/cache.md +168 -0
  130. data/guide/general/configuration.md +169 -0
  131. data/guide/general/contributing.md +182 -0
  132. data/guide/general/controllers.md +210 -0
  133. data/guide/general/helpers.md +89 -0
  134. data/guide/general/installation.md +59 -0
  135. data/guide/general/logging.md +96 -0
  136. data/guide/general/middlewares.md +111 -0
  137. data/guide/general/models.md +79 -0
  138. data/{doc/readme_chunks/principles.txt → guide/general/principles.md} +15 -17
  139. data/guide/general/ramaze_command.md +110 -0
  140. data/guide/general/routes.md +82 -0
  141. data/guide/general/sessions.md +210 -0
  142. data/guide/general/special_thanks.md +69 -0
  143. data/guide/general/testing.md +228 -0
  144. data/guide/general/upgrading.md +85 -0
  145. data/guide/general/views.md +335 -0
  146. data/lib/proto/Gemfile +4 -0
  147. data/lib/proto/README.md +35 -0
  148. data/lib/proto/Rakefile +1 -0
  149. data/lib/proto/app.rb +9 -0
  150. data/lib/proto/config.ru +19 -0
  151. data/lib/proto/controller/init.rb +18 -0
  152. data/lib/proto/controller/main.rb +13 -10
  153. data/lib/proto/layout/default.xhtml +57 -0
  154. data/lib/proto/public/css/grid.css +107 -0
  155. data/lib/proto/public/css/layout.css +81 -0
  156. data/lib/proto/public/css/reset.css +123 -0
  157. data/lib/proto/public/css/text.css +109 -0
  158. data/lib/proto/public/favicon.ico +0 -0
  159. data/lib/proto/public/images/bg.png +0 -0
  160. data/lib/proto/spec/helper.rb +39 -0
  161. data/lib/proto/task/ramaze.rake +57 -0
  162. data/lib/proto/view/index.xhtml +36 -25
  163. data/lib/ramaze/app.rb +198 -0
  164. data/lib/ramaze/bin/create.rb +92 -0
  165. data/lib/ramaze/bin/runner.rb +127 -0
  166. data/lib/ramaze/cache/lru.rb +88 -0
  167. data/lib/ramaze/cache/memcache.rb +219 -0
  168. data/lib/ramaze/cache/moneta.rb +143 -0
  169. data/lib/ramaze/cache/redis.rb +163 -0
  170. data/lib/ramaze/cache/sequel.rb +373 -0
  171. data/lib/ramaze/cache.rb +42 -82
  172. data/lib/ramaze/controller/default.rb +25 -0
  173. data/lib/ramaze/controller.rb +184 -224
  174. data/lib/ramaze/current.rb +17 -68
  175. data/lib/ramaze/default_middleware.rb +24 -0
  176. data/lib/ramaze/files.rb +59 -0
  177. data/lib/ramaze/gestalt.rb +95 -63
  178. data/lib/ramaze/helper/auth.rb +107 -107
  179. data/lib/ramaze/helper/bench.rb +51 -0
  180. data/lib/ramaze/helper/blue_form.rb +683 -0
  181. data/lib/ramaze/helper/cache.rb +108 -130
  182. data/lib/ramaze/helper/csrf.rb +191 -0
  183. data/lib/ramaze/helper/email.rb +116 -0
  184. data/lib/ramaze/helper/erector.rb +113 -0
  185. data/lib/ramaze/helper/flash.rb +42 -39
  186. data/lib/ramaze/helper/formatting.rb +200 -35
  187. data/lib/ramaze/helper/gestalt.rb +49 -0
  188. data/lib/ramaze/helper/gravatar.rb +75 -0
  189. data/lib/ramaze/helper/identity.rb +93 -68
  190. data/lib/ramaze/helper/layout.rb +128 -0
  191. data/lib/ramaze/helper/link.rb +52 -119
  192. data/lib/ramaze/helper/localize.rb +143 -0
  193. data/lib/ramaze/helper/markaby.rb +26 -24
  194. data/lib/ramaze/helper/maruku.rb +15 -6
  195. data/lib/ramaze/helper/paginate.rb +315 -0
  196. data/lib/ramaze/helper/remarkably.rb +14 -0
  197. data/lib/ramaze/helper/request_accessor.rb +20 -0
  198. data/lib/ramaze/helper/send_file.rb +34 -0
  199. data/lib/ramaze/helper/simple_captcha.rb +61 -0
  200. data/lib/ramaze/helper/stack.rb +72 -62
  201. data/lib/ramaze/helper/tagz.rb +13 -12
  202. data/lib/ramaze/helper/thread.rb +25 -0
  203. data/lib/ramaze/helper/upload.rb +525 -0
  204. data/lib/ramaze/helper/user.rb +260 -39
  205. data/lib/ramaze/helper/xhtml.rb +122 -0
  206. data/lib/ramaze/helper.rb +8 -79
  207. data/lib/ramaze/log/hub.rb +41 -32
  208. data/lib/ramaze/log/informer.rb +128 -104
  209. data/lib/ramaze/log/logger.rb +25 -15
  210. data/lib/ramaze/log/logging.rb +46 -27
  211. data/lib/ramaze/log/rotatinginformer.rb +237 -0
  212. data/lib/ramaze/log/syslog.rb +57 -31
  213. data/lib/ramaze/log.rb +16 -15
  214. data/lib/ramaze/reloader/watch_inotify.rb +84 -0
  215. data/lib/ramaze/reloader/watch_stat.rb +58 -0
  216. data/lib/ramaze/reloader.rb +212 -0
  217. data/lib/ramaze/request.rb +126 -0
  218. data/lib/ramaze/response.rb +67 -0
  219. data/lib/ramaze/snippets/object/__dir__.rb +25 -0
  220. data/lib/ramaze/snippets/ramaze/deprecated.rb +23 -0
  221. data/lib/ramaze/snippets/string/camel_case.rb +17 -14
  222. data/lib/ramaze/snippets/string/color.rb +27 -24
  223. data/lib/ramaze/snippets/string/esc.rb +25 -25
  224. data/lib/ramaze/snippets/string/snake_case.rb +16 -13
  225. data/lib/ramaze/snippets/string/unindent.rb +24 -11
  226. data/lib/ramaze/snippets.rb +21 -6
  227. data/lib/ramaze/spec/bacon.rb +44 -0
  228. data/lib/ramaze/spec/helper/bacon.rb +4 -4
  229. data/lib/ramaze/spec/helper/pretty_output.rb +9 -1
  230. data/lib/ramaze/spec/helper/snippets.rb +11 -1
  231. data/lib/ramaze/spec/helper/template_examples.rb +22 -0
  232. data/lib/ramaze/version.rb +4 -13
  233. data/lib/ramaze/view/erector.rb +116 -0
  234. data/lib/ramaze/view/erubis.rb +26 -0
  235. data/lib/ramaze/view/ezamar.rb +27 -0
  236. data/lib/ramaze/view/gestalt.rb +20 -0
  237. data/lib/ramaze/view/haml.rb +27 -0
  238. data/lib/ramaze/view/liquid.rb +99 -0
  239. data/lib/ramaze/view/lokar.rb +18 -0
  240. data/lib/ramaze/view/mustache.rb +46 -0
  241. data/lib/ramaze/view/nagoro/render_partial.rb +32 -0
  242. data/lib/ramaze/view/nagoro.rb +44 -0
  243. data/lib/ramaze/view/remarkably.rb +22 -0
  244. data/lib/ramaze/view/sass.rb +22 -0
  245. data/lib/ramaze/view/slim.rb +43 -0
  246. data/lib/ramaze/view/slippers.rb +51 -0
  247. data/lib/ramaze/view/tagz.rb +67 -0
  248. data/lib/ramaze/view/tenjin.rb +32 -0
  249. data/lib/ramaze/view.rb +35 -0
  250. data/lib/ramaze.rb +60 -100
  251. data/lib/vendor/route_exceptions.rb +42 -0
  252. data/ramaze.gemspec +61 -0
  253. data/spec/examples/caching.rb +5 -8
  254. data/spec/examples/css.rb +3 -4
  255. data/spec/examples/element.rb +4 -4
  256. data/spec/examples/hello.rb +4 -5
  257. data/spec/examples/linking.rb +3 -4
  258. data/spec/examples/misc/sequel_scaffolding.rb +18 -0
  259. data/spec/examples/simple.rb +3 -8
  260. data/spec/examples/templates/template_erubis.rb +8 -18
  261. data/spec/examples/templates/template_ezamar.rb +9 -19
  262. data/spec/examples/templates/template_haml.rb +8 -20
  263. data/spec/examples/templates/template_liquid.rb +8 -24
  264. data/spec/examples/templates/template_markaby.rb +10 -19
  265. data/spec/examples/templates/template_mustache.rb +13 -0
  266. data/spec/examples/templates/template_nagoro.rb +13 -0
  267. data/spec/examples/templates/template_remarkably.rb +8 -18
  268. data/spec/examples/templates/template_tenjin.rb +8 -23
  269. data/spec/examples/todolist.rb +33 -0
  270. data/spec/helper.rb +14 -3
  271. data/spec/ramaze/action/render.rb +9 -17
  272. data/spec/ramaze/action/view/other_wrapper.erb +1 -0
  273. data/spec/ramaze/action/view/sub/sub_wrapper.xhtml +1 -0
  274. data/spec/ramaze/app/location.rb +43 -0
  275. data/spec/ramaze/app.rb +50 -0
  276. data/spec/ramaze/bin/app/config.ru +11 -0
  277. data/spec/ramaze/bin/create.rb +28 -0
  278. data/spec/ramaze/bin/runner.rb +30 -0
  279. data/spec/ramaze/cache/lru.rb +48 -0
  280. data/spec/ramaze/cache/memcache.rb +69 -0
  281. data/spec/ramaze/cache/moneta.rb +53 -0
  282. data/spec/ramaze/cache/redis.rb +58 -0
  283. data/spec/ramaze/cache/sequel.rb +60 -0
  284. data/spec/ramaze/controller/actionless_templates.rb +16 -12
  285. data/spec/ramaze/controller/lonely_mapping.rb +18 -0
  286. data/spec/ramaze/controller/mapping.rb +63 -0
  287. data/spec/ramaze/controller/provide_inheritance.rb +40 -0
  288. data/spec/ramaze/controller/resolve.rb +9 -11
  289. data/spec/ramaze/controller/subclass.rb +22 -7
  290. data/spec/ramaze/controller/template_resolving.rb +23 -61
  291. data/spec/ramaze/controller/view/bar.xhtml +1 -0
  292. data/spec/ramaze/controller/view/base/another.xhtml +1 -0
  293. data/spec/ramaze/dispatcher/directory.rb +61 -33
  294. data/spec/ramaze/dispatcher/file.rb +65 -47
  295. data/spec/ramaze/error.rb +54 -64
  296. data/spec/ramaze/files/public_1/plain.txt +1 -0
  297. data/spec/ramaze/files/public_2/rich.txt +1 -0
  298. data/spec/ramaze/files.rb +30 -0
  299. data/spec/ramaze/gestalt.rb +28 -21
  300. data/spec/ramaze/helper/auth.rb +47 -29
  301. data/spec/ramaze/helper/bench.rb +21 -0
  302. data/spec/ramaze/helper/blue_form.rb +807 -0
  303. data/spec/ramaze/helper/cache.rb +65 -84
  304. data/spec/ramaze/helper/csrf.rb +64 -0
  305. data/spec/ramaze/helper/email.rb +69 -0
  306. data/spec/ramaze/helper/flash.rb +22 -101
  307. data/spec/ramaze/helper/formatting.rb +100 -6
  308. data/spec/ramaze/helper/gestalt.rb +18 -0
  309. data/spec/ramaze/helper/gravatar.rb +43 -0
  310. data/spec/ramaze/helper/layout/alternative.xhtml +5 -0
  311. data/spec/ramaze/helper/layout/default.xhtml +5 -0
  312. data/spec/ramaze/helper/layout.rb +109 -0
  313. data/spec/ramaze/helper/link.rb +48 -102
  314. data/spec/ramaze/helper/localize.rb +65 -0
  315. data/spec/ramaze/helper/maruku.rb +22 -0
  316. data/spec/ramaze/helper/paginate.rb +304 -0
  317. data/spec/ramaze/helper/request_accessor.rb +22 -0
  318. data/spec/ramaze/helper/simple_captcha.rb +45 -0
  319. data/spec/ramaze/helper/stack.rb +54 -41
  320. data/spec/ramaze/helper/upload.rb +150 -0
  321. data/spec/ramaze/helper/uploads/text_1.txt +1 -0
  322. data/spec/ramaze/helper/uploads/text_2.txt +1 -0
  323. data/spec/ramaze/helper/user.rb +63 -20
  324. data/spec/ramaze/helper/xhtml.rb +54 -0
  325. data/spec/ramaze/log/informer.rb +30 -28
  326. data/spec/ramaze/log/logging.rb +66 -0
  327. data/spec/ramaze/log/syslog.rb +89 -4
  328. data/spec/ramaze/params.rb +12 -16
  329. data/spec/ramaze/request.rb +51 -160
  330. data/spec/ramaze/rewrite/file.css +1 -0
  331. data/spec/ramaze/session/lru.rb +58 -0
  332. data/spec/ramaze/session/memcache.rb +66 -0
  333. data/spec/ramaze/session/redis.rb +63 -0
  334. data/spec/ramaze/session/sequel.rb +62 -0
  335. data/spec/ramaze/view/erector/external_view.erector +5 -0
  336. data/spec/ramaze/view/erector/index.erector +5 -0
  337. data/spec/ramaze/view/erector/layout.erector +13 -0
  338. data/spec/ramaze/view/erector/tables.erector +23 -0
  339. data/spec/ramaze/view/erector/view.erector +6 -0
  340. data/spec/ramaze/view/erector.rb +68 -0
  341. data/spec/ramaze/view/erubis/external.rhtml +8 -0
  342. data/spec/ramaze/view/erubis/sum.rhtml +1 -0
  343. data/spec/ramaze/view/erubis.rb +73 -0
  344. data/spec/ramaze/view/ezamar/external.zmr +8 -0
  345. data/spec/ramaze/view/ezamar/sum.zmr +1 -0
  346. data/spec/ramaze/view/ezamar.rb +73 -0
  347. data/spec/ramaze/view/gestalt/external.ges +8 -0
  348. data/spec/ramaze/view/gestalt.rb +94 -0
  349. data/spec/ramaze/view/haml/external.haml +5 -0
  350. data/spec/ramaze/view/haml/sum.haml +2 -0
  351. data/spec/ramaze/view/haml.rb +114 -0
  352. data/spec/ramaze/view/liquid/external.liquid +8 -0
  353. data/spec/ramaze/view/liquid/sum.liquid +1 -0
  354. data/spec/ramaze/view/liquid.rb +73 -0
  355. data/spec/ramaze/view/lokar/external.lok +8 -0
  356. data/spec/ramaze/view/lokar/sum.lok +1 -0
  357. data/spec/ramaze/view/lokar.rb +78 -0
  358. data/spec/ramaze/view/mustache/external.mt +8 -0
  359. data/spec/ramaze/view/mustache/sum.mt +1 -0
  360. data/spec/ramaze/view/mustache.rb +77 -0
  361. data/spec/ramaze/view/nagoro/external.nag +8 -0
  362. data/spec/ramaze/view/nagoro/sum.nag +1 -0
  363. data/spec/ramaze/view/nagoro.rb +78 -0
  364. data/spec/ramaze/view/remarkably.rb +49 -0
  365. data/spec/ramaze/view/sass.rb +73 -0
  366. data/spec/ramaze/view/slim/external.slim +5 -0
  367. data/spec/ramaze/view/slim/external_vars.slim +5 -0
  368. data/spec/ramaze/view/slim.rb +49 -0
  369. data/spec/ramaze/view/slippers/external.st +8 -0
  370. data/spec/ramaze/view/slippers/sum.st +1 -0
  371. data/spec/ramaze/view/slippers.rb +49 -0
  372. data/spec/ramaze/{template → view}/tagz.rb +20 -31
  373. data/spec/ramaze/view/tenjin/external.rbhtml +8 -0
  374. data/spec/ramaze/view/tenjin/sum.rbhtml +1 -0
  375. data/spec/ramaze/view/tenjin.rb +57 -0
  376. data/spec/ramaze/view.rb +36 -0
  377. data/spec/snippets/object/__dir__.rb +17 -0
  378. data/spec/snippets/ramaze/lru_hash.rb +88 -0
  379. data/spec/snippets/string/camel_case.rb +4 -1
  380. data/spec/snippets/string/color.rb +4 -1
  381. data/spec/snippets/string/snake_case.rb +4 -1
  382. data/spec/snippets/string/unindent.rb +10 -1
  383. data/tasks/authors.rake +17 -0
  384. data/tasks/bacon.rake +81 -0
  385. data/tasks/changelog.rake +20 -0
  386. data/tasks/gems.rake +15 -0
  387. data/tasks/release.rake +38 -0
  388. data/tasks/todo.rake +31 -0
  389. data/tasks/yard.rake +13 -0
  390. metadata +813 -714
  391. data/doc/AUTHORS +0 -25
  392. data/doc/CHANGELOG +0 -5757
  393. data/doc/COPYING +0 -56
  394. data/doc/FAQ +0 -92
  395. data/doc/GPL +0 -339
  396. data/doc/INSTALL +0 -34
  397. data/doc/LEGAL +0 -26
  398. data/doc/ProjectInfo +0 -53
  399. data/doc/README +0 -435
  400. data/doc/TODO +0 -29
  401. data/doc/meta/announcement.txt +0 -126
  402. data/doc/meta/configuration.txt +0 -162
  403. data/doc/meta/internals.txt +0 -278
  404. data/doc/meta/users.kml +0 -64
  405. data/doc/migrate/1110_to_1111.txt +0 -131
  406. data/doc/readme_chunks/appendix.txt +0 -10
  407. data/doc/readme_chunks/examples.txt +0 -38
  408. data/doc/readme_chunks/features.txt +0 -148
  409. data/doc/readme_chunks/getting_help.txt +0 -5
  410. data/doc/readme_chunks/getting_started.txt +0 -18
  411. data/doc/readme_chunks/installing.txt +0 -46
  412. data/doc/readme_chunks/introduction.txt +0 -18
  413. data/doc/readme_chunks/thanks.txt +0 -59
  414. data/doc/tutorial/todolist.html +0 -816
  415. data/doc/tutorial/todolist.mkd +0 -736
  416. data/examples/auth/auth.rb +0 -54
  417. data/examples/auth/template/layout.haml +0 -20
  418. data/examples/auth/template/login.haml +0 -16
  419. data/examples/blog/README +0 -3
  420. data/examples/blog/controller/main.rb +0 -29
  421. data/examples/blog/model/entry.rb +0 -30
  422. data/examples/blog/public/styles/blog.css +0 -132
  423. data/examples/blog/spec/blog.rb +0 -87
  424. data/examples/blog/start.rb +0 -7
  425. data/examples/blog/view/edit.xhtml +0 -17
  426. data/examples/blog/view/index.xhtml +0 -17
  427. data/examples/blog/view/layout.xhtml +0 -11
  428. data/examples/blog/view/new.xhtml +0 -16
  429. data/examples/hello.rb +0 -15
  430. data/examples/linking.rb +0 -29
  431. data/examples/memleak_detector.rb +0 -32
  432. data/examples/nitro_form.rb +0 -23
  433. data/examples/rammit/spec/rammit.rb +0 -30
  434. data/examples/rammit/src/controller/main.rb +0 -3
  435. data/examples/rammit/src/controller/page.rb +0 -16
  436. data/examples/rammit/src/model.rb +0 -33
  437. data/examples/rammit/start.rb +0 -8
  438. data/examples/rammit/template/index.xhtml +0 -14
  439. data/examples/rammit/template/page/view.xhtml +0 -4
  440. data/examples/rapaste/Rakefile +0 -35
  441. data/examples/rapaste/controller/paste.rb +0 -94
  442. data/examples/rapaste/model/paste.rb +0 -55
  443. data/examples/rapaste/public/css/active4d.css +0 -114
  444. data/examples/rapaste/public/css/all_hallows_eve.css +0 -72
  445. data/examples/rapaste/public/css/amy.css +0 -147
  446. data/examples/rapaste/public/css/blackboard.css +0 -88
  447. data/examples/rapaste/public/css/brilliance_black.css +0 -605
  448. data/examples/rapaste/public/css/brilliance_dull.css +0 -599
  449. data/examples/rapaste/public/css/cobalt.css +0 -149
  450. data/examples/rapaste/public/css/dawn.css +0 -121
  451. data/examples/rapaste/public/css/display.css +0 -197
  452. data/examples/rapaste/public/css/eiffel.css +0 -121
  453. data/examples/rapaste/public/css/espresso_libre.css +0 -109
  454. data/examples/rapaste/public/css/idle.css +0 -62
  455. data/examples/rapaste/public/css/iplastic.css +0 -80
  456. data/examples/rapaste/public/css/lazy.css +0 -73
  457. data/examples/rapaste/public/css/mac_classic.css +0 -123
  458. data/examples/rapaste/public/css/magicwb_amiga.css +0 -104
  459. data/examples/rapaste/public/css/pastels_on_dark.css +0 -188
  460. data/examples/rapaste/public/css/slush_poppies.css +0 -85
  461. data/examples/rapaste/public/css/spacecadet.css +0 -51
  462. data/examples/rapaste/public/css/sunburst.css +0 -180
  463. data/examples/rapaste/public/css/twilight.css +0 -137
  464. data/examples/rapaste/public/css/zenburnesque.css +0 -91
  465. data/examples/rapaste/public/js/jquery.js +0 -11
  466. data/examples/rapaste/spec/rapaste.rb +0 -49
  467. data/examples/rapaste/start.rb +0 -24
  468. data/examples/rapaste/view/copy.xhtml +0 -10
  469. data/examples/rapaste/view/index.xhtml +0 -9
  470. data/examples/rapaste/view/layout.xhtml +0 -25
  471. data/examples/rapaste/view/list.xhtml +0 -29
  472. data/examples/rapaste/view/search.xhtml +0 -41
  473. data/examples/rapaste/view/view.xhtml +0 -37
  474. data/examples/simple_auth.rb +0 -23
  475. data/examples/sourceview/public/coderay.css +0 -104
  476. data/examples/sourceview/public/images/file.gif +0 -0
  477. data/examples/sourceview/public/images/folder.gif +0 -0
  478. data/examples/sourceview/public/images/tv-collapsable-last.gif +0 -0
  479. data/examples/sourceview/public/images/tv-collapsable.gif +0 -0
  480. data/examples/sourceview/public/images/tv-expandable-last.gif +0 -0
  481. data/examples/sourceview/public/images/tv-expandable.gif +0 -0
  482. data/examples/sourceview/public/images/tv-item-last.gif +0 -0
  483. data/examples/sourceview/public/images/tv-item.gif +0 -0
  484. data/examples/sourceview/public/jquery.js +0 -11
  485. data/examples/sourceview/public/jquery.treeview.css +0 -48
  486. data/examples/sourceview/public/jquery.treeview.js +0 -223
  487. data/examples/sourceview/public/sourceview.js +0 -52
  488. data/examples/sourceview/sourceview.rb +0 -77
  489. data/examples/sourceview/template/index.haml +0 -59
  490. data/examples/templates/template/external.amrita +0 -19
  491. data/examples/templates/template/external.xsl +0 -57
  492. data/examples/templates/template_amrita2.rb +0 -74
  493. data/examples/templates/template_xslt.rb +0 -49
  494. data/examples/todolist/README +0 -1
  495. data/examples/todolist/public/js/jquery.js +0 -1923
  496. data/examples/todolist/public/ramaze.png +0 -0
  497. data/examples/todolist/spec/todolist.rb +0 -132
  498. data/examples/todolist/src/controller/main.rb +0 -70
  499. data/examples/todolist/src/element/page.rb +0 -31
  500. data/examples/todolist/src/model.rb +0 -14
  501. data/examples/todolist/start.rb +0 -11
  502. data/examples/todolist/template/index.xhtml +0 -17
  503. data/examples/todolist/template/new.xhtml +0 -7
  504. data/examples/whywiki/spec/whywiki.rb +0 -58
  505. data/examples/whywiki/template/show.xhtml +0 -18
  506. data/examples/wikore/start.rb +0 -9
  507. data/examples/wiktacular/mkd/main/2007-07-20_19-23-10.mkd +0 -2
  508. data/examples/wiktacular/mkd/main/2007-07-20_19-45-07.mkd +0 -2
  509. data/examples/wiktacular/mkd/main/current.mkd +0 -2
  510. data/examples/wiktacular/mkd/testing/2007-07-20_16-43-46.mkd +0 -2
  511. data/lib/proto/public/css/ramaze_error.css +0 -90
  512. data/lib/proto/public/dispatch.fcgi +0 -11
  513. data/lib/proto/public/ramaze.png +0 -0
  514. data/lib/proto/spec/main.rb +0 -24
  515. data/lib/proto/start.rb +0 -8
  516. data/lib/proto/start.ru +0 -8
  517. data/lib/proto/view/error.xhtml +0 -64
  518. data/lib/proto/view/page.xhtml +0 -15
  519. data/lib/ramaze/action/render.rb +0 -163
  520. data/lib/ramaze/action.rb +0 -136
  521. data/lib/ramaze/adapter/base.rb +0 -59
  522. data/lib/ramaze/adapter/cgi.rb +0 -24
  523. data/lib/ramaze/adapter/ebb.rb +0 -32
  524. data/lib/ramaze/adapter/evented_mongrel.rb +0 -7
  525. data/lib/ramaze/adapter/fcgi.rb +0 -24
  526. data/lib/ramaze/adapter/lsws.rb +0 -23
  527. data/lib/ramaze/adapter/mongrel.rb +0 -25
  528. data/lib/ramaze/adapter/scgi.rb +0 -22
  529. data/lib/ramaze/adapter/swiftiplied_mongrel.rb +0 -7
  530. data/lib/ramaze/adapter/thin.rb +0 -22
  531. data/lib/ramaze/adapter/webrick.rb +0 -52
  532. data/lib/ramaze/adapter.rb +0 -101
  533. data/lib/ramaze/cache/memcached.rb +0 -70
  534. data/lib/ramaze/cache/memory.rb +0 -6
  535. data/lib/ramaze/cache/yaml_store.rb +0 -68
  536. data/lib/ramaze/contrib/auto_params/get_args.rb +0 -57
  537. data/lib/ramaze/contrib/auto_params.rb +0 -135
  538. data/lib/ramaze/contrib/email.rb +0 -84
  539. data/lib/ramaze/contrib/facebook/facebook.rb +0 -171
  540. data/lib/ramaze/contrib/facebook.rb +0 -23
  541. data/lib/ramaze/contrib/file_cache.rb +0 -65
  542. data/lib/ramaze/contrib/gettext/mo.rb +0 -155
  543. data/lib/ramaze/contrib/gettext/parser.rb +0 -46
  544. data/lib/ramaze/contrib/gettext/po.rb +0 -109
  545. data/lib/ramaze/contrib/gettext.rb +0 -113
  546. data/lib/ramaze/contrib/gzip_filter.rb +0 -56
  547. data/lib/ramaze/contrib/profiling.rb +0 -36
  548. data/lib/ramaze/contrib/route.rb +0 -22
  549. data/lib/ramaze/contrib/sequel/fill.rb +0 -12
  550. data/lib/ramaze/contrib/sequel_cache.rb +0 -92
  551. data/lib/ramaze/contrib.rb +0 -82
  552. data/lib/ramaze/controller/error.rb +0 -46
  553. data/lib/ramaze/controller/main.rb +0 -2
  554. data/lib/ramaze/controller/resolve.rb +0 -234
  555. data/lib/ramaze/current/request.rb +0 -181
  556. data/lib/ramaze/current/response.rb +0 -19
  557. data/lib/ramaze/current/session/flash.rb +0 -67
  558. data/lib/ramaze/current/session/hash.rb +0 -65
  559. data/lib/ramaze/current/session.rb +0 -153
  560. data/lib/ramaze/dispatcher/action.rb +0 -40
  561. data/lib/ramaze/dispatcher/directory.rb +0 -116
  562. data/lib/ramaze/dispatcher/error.rb +0 -108
  563. data/lib/ramaze/dispatcher/file.rb +0 -87
  564. data/lib/ramaze/dispatcher.rb +0 -124
  565. data/lib/ramaze/error.rb +0 -24
  566. data/lib/ramaze/global/dsl.rb +0 -39
  567. data/lib/ramaze/global/globalstruct.rb +0 -147
  568. data/lib/ramaze/global.rb +0 -116
  569. data/lib/ramaze/helper/aspect.rb +0 -100
  570. data/lib/ramaze/helper/cgi.rb +0 -43
  571. data/lib/ramaze/helper/inform.rb +0 -40
  572. data/lib/ramaze/helper/nitroform.rb +0 -14
  573. data/lib/ramaze/helper/pager.rb +0 -366
  574. data/lib/ramaze/helper/partial.rb +0 -96
  575. data/lib/ramaze/helper/redirect.rb +0 -73
  576. data/lib/ramaze/helper/sendfile.rb +0 -18
  577. data/lib/ramaze/helper/sequel.rb +0 -52
  578. data/lib/ramaze/inform.rb +0 -4
  579. data/lib/ramaze/log/analogger.rb +0 -37
  580. data/lib/ramaze/log/growl.rb +0 -35
  581. data/lib/ramaze/log/knotify.rb +0 -25
  582. data/lib/ramaze/log/xosd.rb +0 -88
  583. data/lib/ramaze/route.rb +0 -84
  584. data/lib/ramaze/snippets/array/put_within.rb +0 -37
  585. data/lib/ramaze/snippets/binding/locals.rb +0 -13
  586. data/lib/ramaze/snippets/dictionary.rb +0 -504
  587. data/lib/ramaze/snippets/divide.rb +0 -20
  588. data/lib/ramaze/snippets/kernel/__dir__.rb +0 -23
  589. data/lib/ramaze/snippets/kernel/acquire.rb +0 -39
  590. data/lib/ramaze/snippets/kernel/aquire.rb +0 -1
  591. data/lib/ramaze/snippets/kernel/constant.rb +0 -26
  592. data/lib/ramaze/snippets/kernel/pretty_inspect.rb +0 -15
  593. data/lib/ramaze/snippets/metaid.rb +0 -17
  594. data/lib/ramaze/snippets/numeric/filesize_format.rb +0 -19
  595. data/lib/ramaze/snippets/object/pretty.rb +0 -6
  596. data/lib/ramaze/snippets/object/scope.rb +0 -11
  597. data/lib/ramaze/snippets/object/thread_accessor.rb +0 -5
  598. data/lib/ramaze/snippets/object/traits.rb +0 -76
  599. data/lib/ramaze/snippets/ordered_set.rb +0 -36
  600. data/lib/ramaze/snippets/proc/locals.rb +0 -11
  601. data/lib/ramaze/snippets/ramaze/caller_info.rb +0 -30
  602. data/lib/ramaze/snippets/ramaze/caller_lines.rb +0 -51
  603. data/lib/ramaze/snippets/ramaze/thread_accessor.rb +0 -44
  604. data/lib/ramaze/snippets/string/each.rb +0 -8
  605. data/lib/ramaze/snippets/string/ord.rb +0 -15
  606. data/lib/ramaze/snippets/string/start_with.rb +0 -7
  607. data/lib/ramaze/snippets/struct/fill.rb +0 -23
  608. data/lib/ramaze/snippets/struct/values_at.rb +0 -23
  609. data/lib/ramaze/snippets/symbol/to_proc.rb +0 -24
  610. data/lib/ramaze/snippets/thread/into.rb +0 -18
  611. data/lib/ramaze/sourcereload.rb +0 -169
  612. data/lib/ramaze/spec/helper/browser.rb +0 -88
  613. data/lib/ramaze/spec/helper/mock_http.rb +0 -69
  614. data/lib/ramaze/spec/helper/requester.rb +0 -49
  615. data/lib/ramaze/spec/helper/simple_http.rb +0 -434
  616. data/lib/ramaze/spec/helper.rb +0 -122
  617. data/lib/ramaze/spec.rb +0 -1
  618. data/lib/ramaze/store/default.rb +0 -109
  619. data/lib/ramaze/template/amrita2.rb +0 -44
  620. data/lib/ramaze/template/builder.rb +0 -28
  621. data/lib/ramaze/template/erubis.rb +0 -35
  622. data/lib/ramaze/template/ezamar/element.rb +0 -169
  623. data/lib/ramaze/template/ezamar/engine.rb +0 -76
  624. data/lib/ramaze/template/ezamar/morpher.rb +0 -135
  625. data/lib/ramaze/template/ezamar/render_partial.rb +0 -31
  626. data/lib/ramaze/template/ezamar.rb +0 -42
  627. data/lib/ramaze/template/haml.rb +0 -37
  628. data/lib/ramaze/template/liquid.rb +0 -36
  629. data/lib/ramaze/template/markaby.rb +0 -52
  630. data/lib/ramaze/template/nagoro.rb +0 -51
  631. data/lib/ramaze/template/none.rb +0 -14
  632. data/lib/ramaze/template/redcloth.rb +0 -24
  633. data/lib/ramaze/template/remarkably.rb +0 -38
  634. data/lib/ramaze/template/sass.rb +0 -37
  635. data/lib/ramaze/template/tagz.rb +0 -79
  636. data/lib/ramaze/template/tenjin.rb +0 -34
  637. data/lib/ramaze/template/xslt.rb +0 -96
  638. data/lib/ramaze/template.rb +0 -81
  639. data/lib/ramaze/tool/create.rb +0 -74
  640. data/lib/ramaze/tool/localize.rb +0 -162
  641. data/lib/ramaze/tool/mime.rb +0 -25
  642. data/lib/ramaze/tool/mime_types.yaml +0 -615
  643. data/lib/ramaze/tool/record.rb +0 -6
  644. data/lib/ramaze/tool.rb +0 -9
  645. data/lib/ramaze/trinity.rb +0 -13
  646. data/lib/vendor/bacon.rb +0 -323
  647. data/rake_tasks/conf.rake +0 -73
  648. data/rake_tasks/coverage.rake +0 -46
  649. data/rake_tasks/darcs.rake +0 -5
  650. data/rake_tasks/gem.rake +0 -43
  651. data/rake_tasks/maintenance.rake +0 -384
  652. data/rake_tasks/spec.rake +0 -62
  653. data/spec/contrib/auto_params.rb +0 -121
  654. data/spec/contrib/profiling.rb +0 -26
  655. data/spec/contrib/route.rb +0 -36
  656. data/spec/contrib/sequel/fill.rb +0 -47
  657. data/spec/examples/simple_auth.rb +0 -32
  658. data/spec/examples/templates/template_amrita2.rb +0 -16
  659. data/spec/examples/templates/template_redcloth.rb +0 -28
  660. data/spec/ramaze/action/basics.rb +0 -36
  661. data/spec/ramaze/action/cache.rb +0 -43
  662. data/spec/ramaze/action/layout.rb +0 -190
  663. data/spec/ramaze/adapter/mongrel.rb +0 -12
  664. data/spec/ramaze/adapter/record.rb +0 -31
  665. data/spec/ramaze/adapter/webrick.rb +0 -12
  666. data/spec/ramaze/adapter.rb +0 -22
  667. data/spec/ramaze/cache.rb +0 -73
  668. data/spec/ramaze/controller.rb +0 -177
  669. data/spec/ramaze/current/request.rb +0 -30
  670. data/spec/ramaze/current/session.rb +0 -97
  671. data/spec/ramaze/dispatcher.rb +0 -31
  672. data/spec/ramaze/element.rb +0 -107
  673. data/spec/ramaze/helper/aspect.rb +0 -92
  674. data/spec/ramaze/helper/cgi.rb +0 -43
  675. data/spec/ramaze/helper/file.rb +0 -18
  676. data/spec/ramaze/helper/pager.rb +0 -99
  677. data/spec/ramaze/helper/partial.rb +0 -76
  678. data/spec/ramaze/helper/redirect.rb +0 -112
  679. data/spec/ramaze/localize.rb +0 -67
  680. data/spec/ramaze/morpher.rb +0 -111
  681. data/spec/ramaze/public/error404.xhtml +0 -1
  682. data/spec/ramaze/request/mongrel.rb +0 -9
  683. data/spec/ramaze/request/thin.rb +0 -9
  684. data/spec/ramaze/request/webrick.rb +0 -5
  685. data/spec/ramaze/route.rb +0 -130
  686. data/spec/ramaze/session.rb +0 -94
  687. data/spec/ramaze/store/default.rb +0 -71
  688. data/spec/ramaze/template/amrita2/external.amrita +0 -6
  689. data/spec/ramaze/template/amrita2/sum.amrita +0 -1
  690. data/spec/ramaze/template/amrita2.rb +0 -50
  691. data/spec/ramaze/template/builder/external.rxml +0 -3
  692. data/spec/ramaze/template/builder.rb +0 -55
  693. data/spec/ramaze/template/erubis/sum.rhtml +0 -1
  694. data/spec/ramaze/template/erubis.rb +0 -41
  695. data/spec/ramaze/template/ezamar/another/long/action.zmr +0 -1
  696. data/spec/ramaze/template/ezamar/combined.zmr +0 -1
  697. data/spec/ramaze/template/ezamar/file_only.zmr +0 -1
  698. data/spec/ramaze/template/ezamar/index.zmr +0 -1
  699. data/spec/ramaze/template/ezamar/nested.zmr +0 -1
  700. data/spec/ramaze/template/ezamar/other__index.xhtml +0 -1
  701. data/spec/ramaze/template/ezamar/some__long__action.zmr +0 -1
  702. data/spec/ramaze/template/ezamar/sum.zmr +0 -1
  703. data/spec/ramaze/template/ezamar.rb +0 -63
  704. data/spec/ramaze/template/haml/index.haml +0 -5
  705. data/spec/ramaze/template/haml/locals.haml +0 -2
  706. data/spec/ramaze/template/haml/with_vars.haml +0 -4
  707. data/spec/ramaze/template/haml.rb +0 -66
  708. data/spec/ramaze/template/liquid/index.liquid +0 -1
  709. data/spec/ramaze/template/liquid/products.liquid +0 -45
  710. data/spec/ramaze/template/liquid.rb +0 -99
  711. data/spec/ramaze/template/markaby/external.mab +0 -8
  712. data/spec/ramaze/template/markaby/sum.mab +0 -1
  713. data/spec/ramaze/template/markaby.rb +0 -61
  714. data/spec/ramaze/template/nagoro/another/long/action.nag +0 -1
  715. data/spec/ramaze/template/nagoro/combined.nag +0 -1
  716. data/spec/ramaze/template/nagoro/file_only.nag +0 -1
  717. data/spec/ramaze/template/nagoro/index.nag +0 -1
  718. data/spec/ramaze/template/nagoro/nested.nag +0 -1
  719. data/spec/ramaze/template/nagoro/some__long__action.nag +0 -1
  720. data/spec/ramaze/template/nagoro/sum.nag +0 -1
  721. data/spec/ramaze/template/nagoro.rb +0 -64
  722. data/spec/ramaze/template/redcloth/external.redcloth +0 -1
  723. data/spec/ramaze/template/redcloth.rb +0 -38
  724. data/spec/ramaze/template/remarkably.rb +0 -58
  725. data/spec/ramaze/template/sass.rb +0 -69
  726. data/spec/ramaze/template/tenjin/external.tenjin +0 -1
  727. data/spec/ramaze/template/tenjin.rb +0 -49
  728. data/spec/ramaze/template/xslt/concat_words.xsl +0 -16
  729. data/spec/ramaze/template/xslt/index.xsl +0 -14
  730. data/spec/ramaze/template/xslt/products.xsl +0 -32
  731. data/spec/ramaze/template/xslt/ruby_version.xsl +0 -14
  732. data/spec/ramaze/template/xslt.rb +0 -90
  733. data/spec/ramaze/template.rb +0 -128
  734. data/spec/snippets/array/put_within.rb +0 -33
  735. data/spec/snippets/divide.rb +0 -19
  736. data/spec/snippets/kernel/__dir__.rb +0 -8
  737. data/spec/snippets/kernel/acquire.rb +0 -71
  738. data/spec/snippets/kernel/constant.rb +0 -23
  739. data/spec/snippets/numeric/filesize_format.rb +0 -12
  740. data/spec/snippets/ordered_set.rb +0 -63
  741. data/spec/snippets/ramaze/caller_info.rb +0 -39
  742. data/spec/snippets/ramaze/caller_lines.rb +0 -30
  743. data/spec/snippets/struct/fill.rb +0 -26
  744. data/spec/snippets/struct/values_at.rb +0 -44
  745. data/spec/snippets/symbol/to_proc.rb +0 -13
  746. data/spec/snippets/thread/into.rb +0 -20
  747. /data/examples/{todolist → app/todolist}/public/favicon.ico +0 -0
  748. /data/examples/{upload → app/upload}/view/index.xhtml +0 -0
  749. /data/examples/{wikore/template → app/wikore/view}/index.xhtml +0 -0
  750. /data/examples/{wiktacular → app/wiktacular}/README +0 -0
  751. /data/examples/{wiktacular → app/wiktacular}/mkd/link/2007-07-20_19-45-51.mkd +0 -0
  752. /data/examples/{wiktacular → app/wiktacular}/mkd/link/current.mkd +0 -0
  753. /data/examples/{wiktacular → app/wiktacular}/mkd/main/2007-07-20_16-31-33.mkd +0 -0
  754. /data/examples/{wiktacular → app/wiktacular}/public/favicon.ico +0 -0
  755. /data/examples/{wiktacular → app/wiktacular}/public/screen.css +0 -0
  756. /data/examples/{wiktacular/template → app/wiktacular/view}/index.xhtml +0 -0
  757. /data/examples/{identity.rb → helpers/identity.rb} +0 -0
  758. /data/examples/{facebook.rb → misc/facebook.rb} +0 -0
  759. /data/examples/templates/{template → view}/external.liquid +0 -0
  760. /data/spec/ramaze/action/{template → view}/bar.xhtml +0 -0
  761. /data/spec/ramaze/action/{template → view}/instancevars/layout.xhtml +0 -0
  762. /data/spec/ramaze/action/{template → view}/other_wrapper.xhtml +0 -0
  763. /data/spec/ramaze/action/{template → view}/single_wrapper.xhtml +0 -0
  764. /data/spec/ramaze/action/{template/sub/sub_wrapper.xhtml → view/sub/sub_wrapper.erb} +0 -0
  765. /data/spec/ramaze/controller/{template → view}/greet.xhtml +0 -0
  766. /data/spec/ramaze/controller/{template → view}/list.xhtml +0 -0
  767. /data/spec/ramaze/controller/{template → view}/other/greet/other.xhtml +0 -0
  768. /data/spec/ramaze/controller/{template → view}/other_wrapper.xhtml +0 -0
  769. /data/spec/ramaze/helper/{template → view}/locals.xhtml +0 -0
  770. /data/spec/ramaze/helper/{template → view}/loop.xhtml +0 -0
  771. /data/spec/ramaze/helper/{template → view}/num.xhtml +0 -0
  772. /data/spec/ramaze/helper/{template → view}/partial.xhtml +0 -0
  773. /data/spec/ramaze/helper/{template → view}/recursive.xhtml +0 -0
  774. /data/spec/ramaze/helper/{template → view}/recursive_local_ivars.xhtml +0 -0
  775. /data/spec/ramaze/helper/{template → view}/recursive_locals.xhtml +0 -0
  776. /data/spec/ramaze/helper/{template → view}/test_template.xhtml +0 -0
  777. /data/spec/ramaze/{template → view}/remarkably/external.rem +0 -0
  778. /data/spec/ramaze/{template → view}/remarkably/sum.rem +0 -0
  779. /data/spec/ramaze/{template → view}/sass/file.css.sass +0 -0
  780. /data/spec/ramaze/{template → view}/tagz/external.tagz +0 -0
  781. /data/spec/ramaze/{template → view}/tagz/sum.tagz +0 -0
@@ -1,162 +0,0 @@
1
- This chapter covers how to do configuration in Ramaze for your application.
2
-
3
-
4
- ### Global
5
-
6
- The object holding most configuration is called Global. It resides in the Ramaze
7
- module/name space.
8
-
9
- Global is an instance of GlobalStruct, which itself is an instance of Struct.
10
- There have been some changes to it to suit its purpose.
11
-
12
- Before covering some of the available options let us see how to actually use it.
13
-
14
- For the examples shown here we will assume that you did include Ramaze
15
- into your main into your main name space. If you don't do that, just prefix
16
- Global with Ramaze so it is written Ramaze::Global.
17
-
18
-
19
- #### Basic assignment:
20
-
21
- Global.spawn = 10
22
-
23
- if you do that before calling Ramaze::start Ramaze will spawn the given number of servers.
24
-
25
-
26
- #### Multiple assignment:
27
-
28
- Global.setup :adapter => :mongrel,
29
- :cache => :memcached
30
-
31
- So you can pass a Hash of all the options you want to change.
32
- In this case you would use Mongrel as the adapter and use memcached for your
33
- sessions and general caching.
34
-
35
-
36
- #### Block assignment:
37
-
38
- Global.setup do |g|
39
- g.error_page = false
40
- g.host = '127.0.0.1'
41
- g.port = 7070
42
- end
43
-
44
- This method is similar to the hash-assignment, but may be preferred for some
45
- applications.
46
-
47
-
48
- #### Pass on Ramaze.start
49
-
50
- Ramaze.start :run_loose => true
51
-
52
- This way you can save a line or two in a small script.
53
- Please note that the values passed here have precedence over the ones directly
54
- set on Global and will overwrite them if you set them before, that is mostly
55
- useful to quickly test some configuration.
56
-
57
-
58
- ### Global options
59
-
60
- This listing is here to provide you with descriptions of the most common
61
- configurations in alphabetical order per section showing the default value next
62
- to the key.
63
-
64
- This chapter has been shrunk a lot to cover only essentials, please look at
65
- lib/ramaze/global.rb to see all available options.
66
-
67
- Date of last update: 2007-05-20
68
-
69
- #### General Configuration:
70
-
71
- :sourcereload => 3
72
-
73
- SourceReload is a nifty mechanism that takes advantage of the dynamics of Ruby,
74
- it's basically a Thread that runs in the background and polls for files in the
75
- application and framework that have changed (using mtime). The value specifies
76
- roughly how fast your changes are going to be loaded and should be a number.
77
- If you set this to false, it will not start.
78
-
79
-
80
- :adapter => :webrick
81
-
82
- The adapter is the server Ramaze runs to serve your application. This can be any
83
- of mongrel/webrick/fcgi/cgi, please note that so far neither fcgi nor cgi have
84
- received the necessary testing, but, as they are only wrappers around the
85
- underlying Rack library, should work fine. Both fcgi and mongrel require
86
- additional libraries to be installed, webrick and cgi run out of the box.
87
- Generally the most supported and recommended for deployment is Mongrel.
88
-
89
-
90
- :cache => :memory
91
-
92
- Possible: :memory, :memcached, :yaml
93
- The cache is one of the more important things for deployment, the default for
94
- this is MemoryCache, a simple Hash.
95
- What you specify here will be used by Ramaze::Cache and is used throughout
96
- Ramaze to cache various things, like sessions, page- and value-caching.
97
- Included in Ramaze are the MemoryCache and YAMLStoreCache, after you install
98
- 'memcached' you can also use the much more performant MemcachedCache that also
99
- makes it easy to use the same cache between different applications (sharing
100
- sessions is one of the most obvious uses).
101
-
102
-
103
- :cache_all => false
104
-
105
- Setting this value to true would enable caching for all pages served from the
106
- Controller (all actions).
107
- This is a very powerful setting and you might want to enable it if all pages
108
- you serve are only built once and have no further dynamics, the key for this
109
- cache consists of the controller and parameters, when repeated requests are
110
- made it will always serve the same (now static) page.
111
-
112
-
113
- :sessions => true
114
-
115
- Enables creation of sessions and automatic creation/setting of cookies.
116
- Please note that many functionalities of Ramaze depend on an intact session and
117
- you will have to be careful not to use these.
118
- This is most likely useful in combination with `cache_all`
119
-
120
-
121
- :error_page => true
122
-
123
- Enables the default Error page of Ramaze which is mostly useful for manual
124
- testing and faster debugging. In most deployment-scenarios you will however
125
- want to use your own Error page and so you can safely disable this setting.
126
-
127
- :host => '0.0.0.0'
128
-
129
- Tell the adapter where it accepts requests from, 0.0.0.0 says that every
130
- IP will be accepted, 127.0.0.1 would accept only requests from loopback.
131
-
132
-
133
- :mapping => {}
134
-
135
- This is a very central and special setting, it contains key/value pairs
136
- that define routes to your controllers, the keys are simple strings and
137
- start with '/', which means http://yourhost.com/ - '/foo/bar' would point
138
- to http://yourhost.com/foo/bar.
139
- The value is the class of your controller.
140
-
141
-
142
- :port => 7000
143
-
144
- The port Ramaze runs on, if you can think of more information about this feel
145
- free to tell us.
146
-
147
-
148
- :run_loose => false
149
-
150
- This option is mostly used to run the specs, it means that Ramaze will not
151
- join the adapter-threads and therefor you are free to run any code you want
152
- afterwards. You won't have to use this in most cases, example usage is in
153
- spec/spec_helper.
154
-
155
-
156
- :template_root => 'template'
157
-
158
- The template_root is the point your templates are located relative to the
159
- location of the entry-file (usually start.rb)
160
- It is also worth to mention that inside this directory the `mapping` is used
161
- to locate templates for each controller, only the controller mapped to '/' uses
162
- the templates directly from the `template_root`
@@ -1,278 +0,0 @@
1
- This document is a humble attempt to explain the internal workings of Ramaze and
2
- how the different parts fit into the big picture.
3
-
4
- It does not try to describe every little detail, as you will be better off
5
- reading the actual source instead. But you will at least get an idea of where to
6
- look.
7
-
8
- ### Ramaze
9
-
10
- Ramaze is a web framework and therefor tries to make it simple to deploy your
11
- own applications on top of it.
12
- Let's outline the realms that Ramaze works in as to show what the current
13
- limitations and features are.
14
-
15
-
16
- #### Life of a request/response cycle
17
-
18
- This is a small summary of how a request creates a response in the
19
- examples/hello.rb and webrick (to keep it simple and short).
20
- All files referenced here are in lib/ramaze/ unless indicated otherwise.
21
- We don't explain the startup/shutdown process, only what happens from request to
22
- the eventual response.
23
-
24
- Browser sends request, webrick receives it and hands the ENV over to our rack
25
- handler (adapter/webrick.rb and adapter/base.rb).
26
- There it gets converted into a Ramaze::Request (trinity/request.rb) and
27
- a new blank Ramaze::Response (trinity/response.rb) is created.
28
- These two objects are then sent to Dispatcher::handle (dispatcher.rb).
29
-
30
- This all happens inside a new Thread, which is what Ramaze takes advantage of by
31
- assigning Thread-variables. You can see this now in
32
- Dispatcher::setup_environment which sets :request/:session/:response in
33
- Thread.current.
34
-
35
- After that, Dispatcher::dispatch is called with the path from request.path_info
36
- which in turn takes every class/module set in Dispatcher::FILTER and calls
37
- ::process with the path.
38
-
39
-
40
- ##### First, `/favicon.ico` (for most browsers)
41
-
42
- The first in FILTER is Dispatcher::File (dispatcher/file.rb) which searches
43
- Global.public_root and afterwards Global.public_proto for a matching file on
44
- this path. In our example the file found is a favicon.ico from
45
- Global.public_proto.
46
-
47
- The contents of FILTER have to return a Ramaze::Response, either the (possibly
48
- modified) original (Response#build helps with that) or a totally new
49
- one.
50
-
51
- In our case, Dispatcher::File uses response#build with an opened filehandler as
52
- body, '200 OK' as status and the Content-Type set to what Tool::MIME.type_for
53
- tells it is the correct mimetype for this file.
54
-
55
-
56
- ##### Second, `/hello`
57
-
58
- We start in the processing of FILTER, since the previous steps are the same for
59
- every request.
60
-
61
- Here we now get only a nil value back from Dispatcher::File since no file in our
62
- two public directories exists for the given path.
63
-
64
- So, this time, Dispatcher::Action is called via ::process and the first thing
65
- this dispatcher does is trying to set the body of the request to the answer of
66
- Controller.handle (controller.rb) for the given path.
67
-
68
- Controller::handle doesn't do much either, but calls Controller::resolve
69
- (controller/resolve.rb) for the path.
70
-
71
- Here we get now into the guts of Ramaze, despite our efforts it's no easy
72
- reading since the underlying theory is a bit complex and many edge-cases have to
73
- be solved.
74
-
75
- Let me try to quickly sketch what happens here, maybe we can add a chapter about
76
- this aspect of Ramaze later.
77
-
78
- First we generate a pattern of how the requested path could fit into our
79
- controller and template structure. `/hello` only has 3 possible outcomes:
80
-
81
- Controller on '/', template or method `hello`
82
- Controller on '/', method `index` with parameter `hello`
83
- Controller on '/hello', method or template `index`
84
-
85
- After matching (in the order we wrote here) these possibilities against your
86
- application we get only one possibility, MainController on '/' with method
87
- `index`.
88
-
89
- The result is stored into an instance of Action and cached for repeated lookups,
90
- then passed back into Dispatcher::handle which subsequently calls Action#render
91
- (action/render.rb) on it.
92
-
93
- From here, Thread.current[:action] gets set and #uncached_render is called. This
94
- calls #before_process which only has effects if you have the AspectHelper
95
- activated and next on comes engine.transform with self as parameter.
96
- #engine is a method that figures out which engine this Action has to be rendered
97
- with, according to things like trait[:engine] in your controller and the
98
- extension of a template. In this case we have neither and the default engine
99
- Template::Ezamar (template/ezamar.rb) is used.
100
-
101
- So off we go, to Template::Ezamar::transform with the current instance of Action
102
- as parameter.
103
-
104
- ::transform first calls ::wrap_compile which is inherited from Template
105
- (template.rb) and manages caching of compiled templates, calling ::compile with
106
- the action and template.
107
-
108
- The template again is retrieved through two attempts, firstly, we always call
109
- the method (if specified from Controller::resolve) on the controller, we
110
- temporarily store its result and replace it if a path for a template is set with
111
- the contents of the file on this path. The result of this is the final template
112
- that is ready for compilation.
113
-
114
- In the case of Ezamar, we first walk the TRANSFORM_PIPELINE (only
115
- Ezamar::Element (template/ezamar/element.rb) with ::transform and pass each the
116
- template for manipulation. In the example we don't have any elements, so we get
117
- back what we gave and generate a new instance of Ezamar::Template
118
- (template/ezamar/engine.rb) with the template and a path that indicates eval
119
- where we currently are supposed to be (templates path or the transformer).
120
-
121
- This instance is passed back to Ezamar::transform and we call #result with the
122
- actions binding (retrieved from earlier instantiation of the controller and
123
- subsequently eval `binding` inside of it).
124
-
125
- Now it's all done, we have got our body for the response which will be sent back
126
- to our handler as body.
127
-
128
-
129
- #### The Ramaze module
130
-
131
- Ramaze is also the main module or so-called namespace that the framework lives
132
- in. It has
133
-
134
- Tasks on require
135
-
136
- * Inform
137
- * LogHub.new(Informer)
138
- * Global
139
- * GlobalStruct.new
140
-
141
-
142
- Tasks on startup as defined in Ramaze.trait[:internals] in lib/ramaze.rb
143
-
144
- * Global::startup
145
- * passed options to Ramaze.start
146
- * CLI options from bin/ramaze (treat as passed.merge)
147
- * Global options set before startup (fake Global?)
148
-
149
- * Cache::startup
150
- * adds the following caches via Cache.add:
151
- * compiled
152
- If Global.compile is set true this cache is used to store the compiled
153
- templates.
154
-
155
- * actions
156
- Caching compiled actions.
157
-
158
- * patterns
159
- This is used in Controller::resolve to cache the generated patterns for a
160
- path.
161
-
162
- * resolved
163
- Caching the resolved but not yet compiled actions by their path.
164
-
165
- * shield
166
- Caching the generated errors for the path, so on repeated erronous
167
- requests no new error-page has to be generated.
168
-
169
- * Controller::startup
170
- * mapping of all subclassed Controller
171
- * validation of mapping
172
- * validation of template_root
173
-
174
- * Session::startup
175
- * adds Cache.sessions if Global.sessions is true
176
- This cache is used to store all sessions with their session-id as key.
177
-
178
- * SourceReload::startup
179
- * start with Global.reload_interval
180
- * assign Global.sourcereload
181
-
182
- * Adapter::startup
183
- * interpret Global.adapter
184
- * add every created adapter to Global.adapters
185
-
186
-
187
- Tasks on shutdown
188
-
189
- * Adapter::shutdown (iterates Global.adapters)
190
- * Inform::shutdown (iterates all in LogHub)
191
-
192
-
193
-
194
- #### Global configuration
195
-
196
- Any serious application or framework needs to be configured.
197
- Yes, I wished there was a silver bullet to serve all your needs as well, but at
198
- the current stage of programming development there is no such thing.
199
- So, since we need to configure, we should make it as simple and painless as
200
- possible, and, thanks to Ruby, it is actually quite enjoyable to do that.
201
- You can find a very detailed description about Global in the section about
202
- Configuration, for now just the basics.
203
-
204
- The basis of Ramaze::Global, the instance that is holding most part of your
205
- configuration or at least links to the actual places, is the
206
- Ramaze::GlobalStruct (ramaze/global.rb), which is a subclass of OpenStruct. If
207
- you are not yet familiar with OpenStruct, I very much recommend to read its
208
- documentation and play around a bit, it is basically just a wrapper around a
209
- normal Hash where you can access the keys instead of ostruct[:foo] with
210
- ostruct.foo.
211
- It simply defines a new accessors on assignment by catching things in
212
- method_missing. I won't go into more details here, I hope you got the principle.
213
-
214
- Now, based on this technique, GlobalStruct adds things like defaults and a
215
- couple of convenience methods like they are common in Ruby, giving you more
216
- power by tapping to the internal Hash of the GlobalStruct and adding
217
- update/setup methods so you can assign many key/value pairs at once.
218
- The RDocs will give you a very good overview of what is available and how one is
219
- supposed to work with it.
220
-
221
- Now back to the big picture.
222
-
223
- Ramaze accesses Global all over the place, there have been made several choices
224
- as to why using something like Global is considered beneficial against choosing
225
- for example global variables, which would be considered as a fatal choice by
226
- any respected Rubyist anyway.
227
-
228
- Now to something more subtle, which has to do with Global. I speak about traits,
229
- which is a very different concept in most of its implementations, but it is
230
- something that basically fits this name. It is configuration of single Objects
231
- and whole ancestries.
232
- You can give an object a trait, and most likely will use it along the lines of
233
- something like MyController.trait(:map => '/'), which would be picked up on
234
- startup and used to create Global.mapping - where we are at configuration again.
235
- Choosing this style of configuration complementary to a central place to put all
236
- your configuration was made very early in the development of Ramaze, and the
237
- basic code of how traits are implemented and used has proven very efficient both
238
- in understanding and using them.
239
-
240
- There is a basic distinction when to use Global and when to use traits and when
241
- to generate or assume one based on the other.
242
-
243
- If something affects your whole application and is either used directly in the
244
- Ramaze module or throughout the framework it is considered to be put into Global
245
- to gain benefits of better documentation and accessibility.
246
-
247
- On the other hand - if something is used in a configuring manner by a class that
248
- is instantiated often (like Controller is for example), or a module that cannot
249
- hold instance variables in a nice manner and is also not a constant - then it is
250
- configured using traits.
251
-
252
-
253
- Ramaze
254
- Global
255
- Adapter
256
- Dispatcher
257
- Controller
258
- Action
259
-
260
- Session
261
- Helper
262
- Tool
263
-
264
-
265
- #### The Web
266
-
267
- The so called web consists of a plethora of data, most of it is browsable
268
- through a web browser that just about every toaster has installed these days.
269
- The browser is the target of a web author, trying to utilize common standards
270
- like HTML and CSS which are means for data and layout to be combined, giving the
271
- browser a way to display the data.
272
- Ramaze works on the URI-scale web, meaning that addresses like
273
- http://someserver.com/blog/article/1 have a unique representation on your
274
- server.
275
- If we stay with this example, we see already everything Ramaze needs to see to
276
- serve a page based on your instructions.
277
- We assume that blog/article is a Controller named ArticleController in the blog
278
- application.
data/doc/meta/users.kml DELETED
@@ -1,64 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <kml xmlns="http://earth.google.com/kml/2.2">
3
- <Document>
4
- <Placemark>
5
- <name>manveru</name>
6
- <description><![CDATA[ <img src="http://manveru.mine.nu/public/me.png" /><br />
7
- Tokyo, Japan ]]>
8
- </description>
9
- <Point>
10
- <coordinates>139.667846,35.614759</coordinates>
11
- </Point>
12
- </Placemark>
13
- <Placemark>
14
- <name>Pistos</name>
15
- <description>
16
- <![CDATA[
17
- <img src="http://purepistos.net/favicon32.png" alt="Pistos" /><br />
18
- Toronto, Canada<br />
19
- <a href="http://blog.purepistos.net">blog.purepistos.net</a>
20
- ]]>
21
- </description>
22
- <Point>
23
- <coordinates>-79.386985,43.642515,0</coordinates>
24
- </Point>
25
- </Placemark>
26
- <Placemark>
27
- <name>MonoDelDiablo</name>
28
- <description><![CDATA[ Seattle, Washington, United States ]]></description>
29
- <Point>
30
- <coordinates>-122.266881,47.682765,0</coordinates>
31
- </Point>
32
- </Placemark>
33
- <Placemark>
34
- <name>Kashia</name>
35
- <description><![CDATA[ Helsinki, Etela-Suomen Laani, Finland ]]></description>
36
- <Point>
37
- <coordinates>8.447204,49.028928,0</coordinates>
38
- </Point>
39
- </Placemark>
40
- <Placemark>
41
- <name>zenix</name>
42
- <description><![CDATA[ Gaithersburg, Maryland, United States ]]></description>
43
- <Point>
44
- <coordinates>-77.183338,39.137049,0</coordinates>
45
- </Point>
46
- </Placemark>
47
- <Placemark>
48
- <name>tmm1</name>
49
- <description><![CDATA[ <img src="http://tmm1.net/me.jpg" /><br />
50
- Boston, Massachussetts ]]>
51
- </description>
52
- <Point>
53
- <coordinates>-71.084371,42.365975,0</coordinates>
54
- </Point>
55
- </Placemark>
56
- <Placemark>
57
- <name>riffraff</name>
58
- <description><![CDATA[ Rome, Italia ]]></description>
59
- <Point>
60
- <coordinates>41.993372,12.087193,0</coordinates>
61
- </Point>
62
- </Placemark>
63
- </Document>
64
- </kml>
@@ -1,131 +0,0 @@
1
- = Explanation of the changes of patch 1110-1111
2
-
3
- What this patch is all about.
4
- Due to a general cleanup and preparation for further extension there has been a
5
- lot of moving of code into more appropriate positions.
6
- Another goal was the reimplementation of Global, away from OpenStruct to the
7
- faster Struct.
8
- Some smaller improvments will follow on both areas, but as with the last
9
- Controller refactoring, this aimed to be finished as soon as possible to get
10
- Ramaze bulletproof again before the next release.
11
-
12
-
13
- == Ramaze
14
- === What happened to the module
15
-
16
- The whole module has now only two methods, :startup and :shutdown
17
-
18
- startup sends .startup to the classes in
19
- Ramaze.trait[:essentials]
20
- shutdown sends .shutdown to these classes.
21
-
22
- Other methods changed:
23
-
24
- force_start
25
- removed -> not used anywhere and easily done with a passed option.
26
-
27
- execute
28
- removed -> there may be a replacement coming though.
29
-
30
- kill_threads
31
- delegated -> this is handled over the shutdown of the responsible classes now.
32
-
33
- setup_controllers
34
- delegated -> has been moved to Controller::startup
35
-
36
- init_sourcereload
37
- delegated -> moved to SourceReload::startup
38
-
39
- init_global
40
- delegated -> moved to Global::startup
41
-
42
- init_adapter, run_adapter, test_connections, connection_possible
43
- delegated -> moved to Adapter::startup
44
-
45
- require_adapter
46
- delegated -> is now the mask Global.adapter
47
-
48
- parse_port
49
- delegated -> is now the mask Global.ports
50
-
51
-
52
- == Global
53
- === New functionality and layout
54
-
55
- Global is now a Struct instead of an OpenStruct, which means two things:
56
- The general API is hardened now, assigning new accessors is not as simple as
57
- just setting them via method_missing anymore.
58
- The GlobalStruct::DEFAULT hash defines what contents the Struct has.
59
- This has on one hand a improved performance, on the other hand it unifies the
60
- API for further versions, collecting the setting of Global accessors into one
61
- place.
62
- We could add method_missing in further revisions if need arises.
63
- The other important improvement is the masking of internals of Global. This means
64
- that we can now define a method over the internal value and present something
65
- different than it actually contains. Also hooks on setting a value are now
66
- possible.
67
-
68
- Controller.trait[:ramaze_public] has moved here as Global.public_root to match
69
- the Controller.public_root setting.
70
-
71
-
72
- == Controller
73
- === template_root and public_root
74
-
75
- These are no traits anymore. Now the resolution of templates should be a little
76
- bit faster, but more importantly they will give you a warning when setting a
77
- path that does not exist.
78
- To remove the 'self.' boilerplate they take an optional argument and act as
79
- getter only if no argument is given.
80
-
81
-
82
- == Cache
83
- === Unified API for new Caches
84
-
85
- We now take advantage of the ages-old idea of having a unified Ramaze::Cache to
86
- spawn new instances of caches instead of relying on Global.cache.new which posed
87
- many problems with configuring them.
88
- To retrieve a new cache, simply use Cache.new now, setting Global.cache will
89
- define which class is used for this. You can set strings/symbols like :memory,
90
- :memcached or :yaml.
91
-
92
- Cache also specifies a unified API, at the moment consisting of:
93
- #[](key), #[]=(key, value), #clear, #delete(*keys)
94
-
95
- To make interacting easier, all keys are stored/retrieved as strings
96
- automatically so you can use either symbols or strings to access values.
97
-
98
-
99
- == Adapter
100
- === Adapter::( startup | shutdown )
101
-
102
- The stuff from Ramaze has moved here, it basically still works the same way.
103
- However, we are now wrapping less threads around one adapter, which may or may
104
- not affect performance.
105
-
106
-
107
- == Request
108
- === Outsourcing of methods to Rack
109
-
110
- Following methods have been moved to the latest version of Rack:
111
- #fullpath #[](key), #[]=(key, value), #values_at(*keys), #referer/#referer
112
-
113
- === Change from module to subclass
114
-
115
- == Response
116
- === Change from module to subclass
117
-
118
- Same as Request
119
-
120
-
121
- == STATUS_CODE
122
- === Usage of Rack::Utils::HTTP_STATUS_CODES
123
-
124
- We are now using the hash from Rack, assigned to Ramaze::STATUS_CODE and have
125
- removed ramaze/http_status.rb
126
- The major change is that the keys are now strings like
127
- "Not Found" or "Internal Server Error". Most of the time guessing will work.
128
-
129
-
130
- == Informing
131
- === Added #debug? for WEBrick, set to false.
@@ -1,10 +0,0 @@
1
- * Performance
2
- * Serving
3
-
4
- For best performance you should consider using Mongrel to host your
5
- application.
6
-
7
- * Caching
8
-
9
- You can easily cache your pages using the CacheHelper.
10
- Also, using MemCache gives you high-end performance and security.
@@ -1,38 +0,0 @@
1
- There are some examples for your instant pleasure inside the examples-directory
2
- in the Ramaze-distribution.
3
- To start up an example, you can use the Ramaze binary located in bin/ramaze
4
- for example:
5
-
6
- $ ramaze examples/hello.rb
7
-
8
- Or:
9
-
10
- $ cd examples/blog
11
- $ ramaze
12
-
13
- Since ramaze uses the start.rb by default if you don't pass anything else.
14
-
15
- For more information about the usage of ramaze try:
16
-
17
- $ ramaze --help
18
-
19
-
20
- Examples include:
21
-
22
- * examples/hello.rb
23
- Hello, World!
24
-
25
- * examples/simple.rb
26
- A bit more advanced than the hello-example, but still very basic.
27
-
28
- * examples/blog
29
- Not yet fully functional, but coming along.
30
-
31
- * examples/whywiki
32
- A basic examples of a minimalistic application, based on the Wiki of _why in
33
- his camping-framework.
34
-
35
- * examples/templates
36
- examples of real usage of the templating-engines. Tries to implement the same
37
- functionality in each template_*.rb file using a different engine.
38
-