manveru-ramaze 2009.01 → 2009.04

Sign up to get free protection for your applications and to get access to all the features.
Files changed (540) hide show
  1. data/.mailmap +25 -0
  2. data/CHANGELOG +16750 -0
  3. data/MANIFEST +485 -0
  4. data/README.markdown +0 -5
  5. data/Rakefile +79 -222
  6. data/bin/ramaze +275 -52
  7. data/doc/AUTHORS +36 -28
  8. data/doc/FAQ +1 -1
  9. data/doc/tutorial/todolist.html +1415 -742
  10. data/doc/tutorial/todolist.txt +939 -0
  11. data/examples/app/auth/layout/auth.xhtml +25 -0
  12. data/examples/app/auth/start.rb +23 -0
  13. data/examples/app/auth/view/index.xhtml +4 -0
  14. data/examples/app/auth/view/login.xhtml +20 -0
  15. data/examples/app/auth/view/secret.xhtml +1 -0
  16. data/examples/app/blog/app.rb +69 -0
  17. data/{lib/proto/start.ru → examples/app/blog/config.ru} +8 -7
  18. data/examples/app/blog/controller/comment.rb +45 -0
  19. data/examples/app/blog/controller/entry.rb +85 -0
  20. data/examples/app/blog/controller/init.rb +86 -0
  21. data/examples/app/blog/controller/main.rb +16 -25
  22. data/examples/app/blog/controller/tag.rb +9 -0
  23. data/examples/app/blog/layout/default.nag +31 -0
  24. data/examples/app/blog/model/comment.rb +58 -0
  25. data/examples/app/blog/model/entry.rb +81 -22
  26. data/examples/app/blog/model/init.rb +15 -0
  27. data/examples/app/blog/model/tag.rb +36 -0
  28. data/examples/app/blog/public/css/screen.css +273 -0
  29. data/examples/app/blog/start.rb +3 -5
  30. data/examples/app/blog/view/comment/form.nag +10 -0
  31. data/examples/app/blog/view/comment/show.nag +16 -0
  32. data/examples/app/blog/view/entry/edit.nag +14 -0
  33. data/examples/app/blog/view/entry/feed.atom.nag +8 -0
  34. data/examples/app/blog/view/entry/feed.rss.nag +7 -0
  35. data/examples/app/blog/view/entry/index.nag +7 -0
  36. data/examples/app/blog/view/entry/new.nag +13 -0
  37. data/examples/app/blog/view/entry/show.nag +36 -0
  38. data/examples/app/blog/view/feed.atom.nag +18 -0
  39. data/examples/app/blog/view/feed.rss.nag +25 -0
  40. data/examples/app/blog/view/index.nag +6 -0
  41. data/examples/app/blog/view/tag/index.nag +5 -0
  42. data/examples/app/chat/{view/layout.xhtml → layout/default.nag} +1 -1
  43. data/examples/app/chat/model/history.rb +13 -11
  44. data/examples/app/chat/public/css/chat.css +9 -13
  45. data/examples/app/chat/public/js/chat.js +6 -0
  46. data/examples/app/chat/start.rb +16 -17
  47. data/examples/app/chat/view/{chat.xhtml → chat.nag} +0 -0
  48. data/examples/app/chat/view/{index.xhtml → index.nag} +0 -0
  49. data/examples/app/sourceview/{sourceview.rb → start.rb} +36 -34
  50. data/examples/app/sourceview/{template → view}/index.haml +0 -0
  51. data/examples/app/todolist/controller/init.rb +10 -0
  52. data/examples/app/todolist/controller/task.rb +39 -0
  53. data/examples/app/todolist/layout/default.xhtml +14 -0
  54. data/examples/app/todolist/model/init.rb +14 -0
  55. data/examples/app/todolist/model/task.rb +39 -0
  56. data/examples/app/todolist/public/css/screen.css +63 -0
  57. data/examples/app/todolist/start.rb +6 -6
  58. data/examples/app/todolist/view/index.xhtml +29 -0
  59. data/examples/app/wikore/spec/wikore.rb +4 -6
  60. data/examples/app/wikore/src/controller.rb +9 -11
  61. data/examples/app/wikore/src/model.rb +7 -10
  62. data/examples/app/wikore/start.rb +1 -1
  63. data/examples/app/wikore/{template → view}/index.xhtml +0 -0
  64. data/examples/basic/element.rb +5 -3
  65. data/examples/basic/gestalt.rb +1 -2
  66. data/examples/basic/hello.rb +3 -4
  67. data/examples/basic/layout.rb +2 -2
  68. data/examples/basic/linking.rb +7 -7
  69. data/examples/basic/partial.rb +3 -5
  70. data/examples/basic/simple.rb +1 -5
  71. data/examples/helpers/cache.rb +5 -5
  72. data/examples/helpers/httpdigest.rb +31 -32
  73. data/examples/misc/memleak_detector.rb +17 -12
  74. data/examples/misc/rapp.rb +28 -17
  75. data/examples/misc/serve_directory.rb +6 -0
  76. data/examples/templates/template_erubis.rb +9 -10
  77. data/examples/templates/template_ezamar.rb +8 -7
  78. data/examples/templates/template_haml.rb +6 -7
  79. data/examples/templates/template_liquid.rb +20 -19
  80. data/examples/templates/template_markaby.rb +2 -3
  81. data/examples/templates/template_nagoro.rb +6 -7
  82. data/examples/templates/template_redcloth.rb +8 -9
  83. data/examples/templates/template_remarkably.rb +7 -8
  84. data/examples/templates/template_tenjin.rb +6 -7
  85. data/examples/templates/{template → view}/external.haml +4 -4
  86. data/examples/templates/{template → view}/external.liquid +0 -0
  87. data/examples/templates/{template → view}/external.mab +0 -0
  88. data/examples/templates/{template → view}/external.nag +4 -4
  89. data/examples/templates/{template → view}/external.redcloth +4 -4
  90. data/examples/templates/{template → view}/external.rem +4 -4
  91. data/examples/templates/{template → view}/external.rhtml +6 -6
  92. data/examples/templates/{template → view}/external.tenjin +4 -4
  93. data/examples/templates/{template → view}/external.zmr +6 -6
  94. data/lib/proto/app.rb +15 -0
  95. data/lib/proto/config.ru +16 -0
  96. data/lib/proto/controller/init.rb +2 -2
  97. data/lib/proto/{view/page.xhtml → layout/default.xhtml} +1 -4
  98. data/lib/proto/public/css/screen.css +30 -0
  99. data/lib/proto/public/js/jquery.js +2121 -1294
  100. data/lib/proto/spec/main.rb +11 -15
  101. data/lib/proto/start.rb +6 -10
  102. data/lib/proto/view/index.xhtml +34 -27
  103. data/lib/ramaze/app.rb +124 -0
  104. data/lib/ramaze/cache/localmemcache.rb +56 -0
  105. data/lib/ramaze/cache/memcache.rb +99 -0
  106. data/lib/ramaze/cache/sequel.rb +67 -0
  107. data/lib/ramaze/cache.rb +9 -104
  108. data/lib/ramaze/contrib/app_graph.rb +64 -0
  109. data/lib/ramaze/contrib/email.rb +2 -0
  110. data/lib/ramaze/contrib/gzip_filter.rb +1 -69
  111. data/lib/ramaze/contrib/rest.rb +20 -15
  112. data/lib/ramaze/contrib/sequel/create_join.rb +1 -0
  113. data/lib/ramaze/contrib/sequel/form_field.rb +4 -4
  114. data/lib/ramaze/contrib/sequel/image.rb +9 -11
  115. data/lib/ramaze/contrib/sequel/relation.rb +21 -5
  116. data/lib/ramaze/controller/default.rb +12 -0
  117. data/lib/ramaze/controller.rb +63 -257
  118. data/lib/ramaze/current.rb +3 -106
  119. data/lib/ramaze/files.rb +24 -0
  120. data/lib/ramaze/gestalt.rb +6 -1
  121. data/lib/ramaze/helper/auth.rb +68 -104
  122. data/lib/ramaze/helper/bench.rb +0 -2
  123. data/lib/ramaze/helper/cache.rb +71 -120
  124. data/lib/ramaze/helper/disqus.rb +26 -0
  125. data/lib/ramaze/helper/flash.rb +32 -29
  126. data/lib/ramaze/helper/form.rb +83 -252
  127. data/lib/ramaze/helper/formatting.rb +32 -5
  128. data/lib/ramaze/helper/gestalt.rb +1 -1
  129. data/lib/ramaze/helper/gravatar.rb +66 -19
  130. data/lib/ramaze/helper/httpdigest.rb +75 -66
  131. data/lib/ramaze/helper/link.rb +62 -109
  132. data/lib/ramaze/helper/localize.rb +138 -0
  133. data/lib/ramaze/helper/markaby.rb +1 -1
  134. data/lib/ramaze/helper/maruku.rb +10 -3
  135. data/lib/ramaze/helper/pager.rb +2 -1
  136. data/lib/ramaze/helper/paginate.rb +17 -9
  137. data/lib/ramaze/helper/partial.rb +86 -91
  138. data/lib/ramaze/helper/remarkably.rb +14 -0
  139. data/lib/ramaze/helper/request_accessor.rb +16 -0
  140. data/lib/ramaze/helper/sequel_form.rb +284 -0
  141. data/lib/ramaze/helper/simple_captcha.rb +46 -16
  142. data/lib/ramaze/helper/stack.rb +64 -66
  143. data/lib/ramaze/helper/user.rb +141 -22
  144. data/lib/ramaze/helper/xhtml.rb +27 -16
  145. data/lib/ramaze/helper.rb +6 -81
  146. data/lib/ramaze/log/analogger.rb +1 -2
  147. data/lib/ramaze/log/informer.rb +1 -0
  148. data/lib/ramaze/log/logging.rb +2 -8
  149. data/lib/ramaze/log.rb +19 -7
  150. data/lib/ramaze/middleware_compiler.rb +13 -0
  151. data/lib/ramaze/plugin.rb +69 -0
  152. data/lib/ramaze/reloader.rb +6 -4
  153. data/lib/ramaze/request.rb +118 -0
  154. data/lib/ramaze/{current/response.rb → response.rb} +9 -12
  155. data/lib/ramaze/setup.rb +93 -33
  156. data/lib/ramaze/snippets/ramaze/deprecated.rb +3 -1
  157. data/lib/ramaze/snippets/{dictionary.rb → ramaze/dictionary.rb} +0 -104
  158. data/lib/ramaze/spec/helper/bacon.rb +4 -3
  159. data/lib/ramaze/spec/helper/snippets.rb +3 -1
  160. data/lib/ramaze/spec/helper/template_examples.rb +29 -0
  161. data/lib/ramaze/spec.rb +34 -1
  162. data/lib/ramaze/tool/create.rb +1 -1
  163. data/lib/ramaze/version.rb +1 -4
  164. data/lib/ramaze/view/erubis.rb +23 -0
  165. data/lib/ramaze/view/ezamar.rb +23 -0
  166. data/lib/ramaze/view/haml.rb +16 -0
  167. data/lib/ramaze/view/liquid.rb +100 -0
  168. data/lib/ramaze/view/maruku.rb +14 -0
  169. data/lib/ramaze/view/nagoro/render_partial.rb +32 -0
  170. data/lib/ramaze/view/nagoro.rb +44 -0
  171. data/lib/ramaze/view/redcloth.rb +21 -0
  172. data/lib/ramaze/view/remarkably.rb +21 -0
  173. data/lib/ramaze/view/sass.rb +21 -0
  174. data/lib/ramaze/view/tagz.rb +63 -0
  175. data/lib/ramaze/view/tenjin.rb +29 -0
  176. data/lib/ramaze/view.rb +48 -0
  177. data/lib/ramaze.rb +78 -129
  178. data/lib/vendor/etag.rb +20 -0
  179. data/lib/vendor/route_exceptions.rb +48 -0
  180. data/ramaze.gemspec +38 -605
  181. data/spec/contrib/rest.rb +28 -0
  182. data/spec/examples/caching.rb +1 -2
  183. data/spec/examples/css.rb +1 -2
  184. data/spec/examples/element.rb +1 -2
  185. data/spec/examples/hello.rb +2 -3
  186. data/spec/examples/helpers/httpdigest.rb +64 -0
  187. data/spec/examples/linking.rb +1 -2
  188. data/spec/examples/simple.rb +1 -6
  189. data/spec/examples/templates/template_erubis.rb +3 -17
  190. data/spec/examples/templates/template_ezamar.rb +3 -18
  191. data/spec/examples/templates/template_haml.rb +3 -17
  192. data/spec/examples/templates/template_liquid.rb +3 -23
  193. data/spec/examples/templates/template_markaby.rb +6 -19
  194. data/spec/examples/templates/template_nagoro.rb +9 -0
  195. data/spec/examples/templates/template_redcloth.rb +3 -22
  196. data/spec/examples/templates/template_remarkably.rb +3 -17
  197. data/spec/examples/templates/template_tenjin.rb +3 -22
  198. data/spec/helper.rb +10 -3
  199. data/spec/ramaze/action/render.rb +5 -15
  200. data/spec/ramaze/action/view/other_wrapper.erb +1 -0
  201. data/spec/ramaze/action/view/sub/sub_wrapper.erb +1 -0
  202. data/spec/ramaze/app.rb +47 -0
  203. data/spec/ramaze/cache/localmemcache.rb +49 -0
  204. data/spec/ramaze/cache/memcache.rb +54 -0
  205. data/spec/ramaze/cache/sequel.rb +51 -0
  206. data/spec/ramaze/controller/actionless_templates.rb +14 -10
  207. data/spec/ramaze/controller/mapping.rb +57 -0
  208. data/spec/ramaze/controller/provide_inheritance.rb +47 -0
  209. data/spec/ramaze/controller/resolve.rb +7 -9
  210. data/spec/ramaze/controller/subclass.rb +13 -13
  211. data/spec/ramaze/controller/template_resolving.rb +21 -57
  212. data/spec/ramaze/dispatcher/directory.rb +38 -24
  213. data/spec/ramaze/dispatcher/file.rb +55 -44
  214. data/spec/ramaze/error.rb +56 -62
  215. data/spec/ramaze/files/public_1/plain.txt +1 -0
  216. data/spec/ramaze/files/public_2/rich.txt +1 -0
  217. data/spec/ramaze/files.rb +29 -0
  218. data/spec/ramaze/gestalt.rb +2 -4
  219. data/spec/ramaze/helper/auth.rb +41 -24
  220. data/spec/ramaze/helper/bench.rb +17 -0
  221. data/spec/ramaze/helper/cache.rb +65 -101
  222. data/spec/ramaze/helper/flash.rb +20 -112
  223. data/spec/ramaze/helper/form.rb +336 -98
  224. data/spec/ramaze/helper/formatting.rb +66 -9
  225. data/spec/ramaze/helper/gestalt.rb +15 -0
  226. data/spec/ramaze/helper/gravatar.rb +40 -0
  227. data/spec/ramaze/helper/httpdigest.rb +144 -0
  228. data/spec/ramaze/helper/link.rb +25 -100
  229. data/spec/ramaze/helper/localize.rb +60 -0
  230. data/spec/ramaze/helper/maruku.rb +19 -0
  231. data/spec/ramaze/helper/pager.rb +13 -16
  232. data/spec/ramaze/helper/paginate.rb +68 -0
  233. data/spec/ramaze/helper/request_accessor.rb +19 -0
  234. data/spec/ramaze/helper/sequel_form.rb +89 -0
  235. data/spec/ramaze/helper/simple_captcha.rb +35 -12
  236. data/spec/ramaze/helper/stack.rb +52 -39
  237. data/spec/ramaze/helper/user.rb +39 -10
  238. data/spec/ramaze/helper/xhtml.rb +32 -0
  239. data/spec/ramaze/log/informer.rb +20 -19
  240. data/spec/ramaze/log/logging.rb +63 -0
  241. data/spec/ramaze/params.rb +8 -11
  242. data/spec/ramaze/request.rb +57 -181
  243. data/spec/ramaze/view/erubis/external.rhtml +8 -0
  244. data/spec/ramaze/view/erubis/sum.rhtml +1 -0
  245. data/spec/ramaze/view/erubis.rb +73 -0
  246. data/spec/ramaze/view/ezamar/external.zmr +8 -0
  247. data/spec/ramaze/view/ezamar/sum.zmr +1 -0
  248. data/spec/ramaze/view/ezamar.rb +73 -0
  249. data/spec/ramaze/view/haml/external.haml +5 -0
  250. data/spec/ramaze/view/haml/sum.haml +2 -0
  251. data/spec/ramaze/view/haml.rb +86 -0
  252. data/spec/ramaze/view/liquid/external.liquid +8 -0
  253. data/spec/ramaze/view/liquid/sum.liquid +1 -0
  254. data/spec/ramaze/view/liquid.rb +73 -0
  255. data/spec/ramaze/view/nagoro/external.nag +8 -0
  256. data/spec/ramaze/view/nagoro/sum.nag +1 -0
  257. data/spec/ramaze/view/nagoro.rb +73 -0
  258. data/spec/ramaze/view/redcloth/external.redcloth +8 -0
  259. data/spec/ramaze/view/redcloth.rb +66 -0
  260. data/spec/ramaze/{template → view}/remarkably/external.rem +0 -0
  261. data/spec/ramaze/{template → view}/remarkably/sum.rem +0 -0
  262. data/spec/ramaze/view/remarkably.rb +49 -0
  263. data/spec/ramaze/{template → view}/sass/file.css.sass +0 -0
  264. data/spec/ramaze/view/sass.rb +73 -0
  265. data/spec/ramaze/{template → view}/tagz/external.tagz +0 -0
  266. data/spec/ramaze/{template → view}/tagz/sum.tagz +0 -0
  267. data/spec/ramaze/{template → view}/tagz.rb +18 -29
  268. data/spec/ramaze/view/tenjin/external.rbhtml +8 -0
  269. data/spec/ramaze/view/tenjin/sum.rbhtml +1 -0
  270. data/spec/ramaze/view/tenjin.rb +57 -0
  271. data/spec/ramaze/view.rb +36 -0
  272. data/spec/snippets/ramaze/dictionary.rb +110 -0
  273. data/spec/snippets/ramaze/struct.rb +12 -0
  274. data/spec/snippets/thread/into.rb +3 -14
  275. data/tasks/authors.rake +30 -0
  276. data/tasks/bacon.rake +66 -0
  277. data/tasks/changelog.rake +18 -0
  278. data/tasks/copyright.rake +21 -0
  279. data/tasks/gem.rake +22 -0
  280. data/tasks/gem_installer.rake +76 -0
  281. data/{rake_tasks → tasks}/git.rake +10 -5
  282. data/tasks/grancher.rake +12 -0
  283. data/tasks/install_dependencies.rake +6 -0
  284. data/tasks/jquery.rake +15 -0
  285. data/tasks/manifest.rake +4 -0
  286. data/{rake_tasks/metric.rake → tasks/metric_changes.rake} +6 -6
  287. data/tasks/rcov.rake +23 -0
  288. data/tasks/release.rake +51 -0
  289. data/tasks/reversion.rake +8 -0
  290. data/tasks/setup.rake +24 -0
  291. data/tasks/todo.rake +29 -0
  292. data/tasks/traits.rake +21 -0
  293. data/tasks/yard.rake +4 -0
  294. metadata +188 -285
  295. data/benchmark/suite/template_amrita2.rb +0 -17
  296. data/doc/readme_chunks/appendix.txt +0 -10
  297. data/doc/readme_chunks/examples.txt +0 -38
  298. data/doc/readme_chunks/features.txt +0 -148
  299. data/doc/readme_chunks/getting_help.txt +0 -5
  300. data/doc/readme_chunks/getting_started.txt +0 -18
  301. data/doc/readme_chunks/installing.txt +0 -92
  302. data/doc/readme_chunks/introduction.txt +0 -18
  303. data/doc/readme_chunks/principles.txt +0 -56
  304. data/doc/readme_chunks/thanks.txt +0 -59
  305. data/examples/app/auth/auth.rb +0 -54
  306. data/examples/app/auth/template/layout.haml +0 -20
  307. data/examples/app/auth/template/login.haml +0 -16
  308. data/examples/app/blog/public/styles/blog.css +0 -132
  309. data/examples/app/blog/view/edit.xhtml +0 -17
  310. data/examples/app/blog/view/index.xhtml +0 -17
  311. data/examples/app/blog/view/layout.xhtml +0 -11
  312. data/examples/app/blog/view/new.xhtml +0 -16
  313. data/examples/app/rapaste/Rakefile +0 -34
  314. data/examples/app/rapaste/controller/paste.rb +0 -101
  315. data/examples/app/rapaste/model/paste.rb +0 -58
  316. data/examples/app/rapaste/public/css/active4d.css +0 -114
  317. data/examples/app/rapaste/public/css/all_hallows_eve.css +0 -72
  318. data/examples/app/rapaste/public/css/amy.css +0 -147
  319. data/examples/app/rapaste/public/css/blackboard.css +0 -88
  320. data/examples/app/rapaste/public/css/brilliance_black.css +0 -605
  321. data/examples/app/rapaste/public/css/brilliance_dull.css +0 -599
  322. data/examples/app/rapaste/public/css/cobalt.css +0 -149
  323. data/examples/app/rapaste/public/css/dawn.css +0 -121
  324. data/examples/app/rapaste/public/css/display.css +0 -197
  325. data/examples/app/rapaste/public/css/eiffel.css +0 -121
  326. data/examples/app/rapaste/public/css/espresso_libre.css +0 -109
  327. data/examples/app/rapaste/public/css/idle.css +0 -62
  328. data/examples/app/rapaste/public/css/iplastic.css +0 -80
  329. data/examples/app/rapaste/public/css/lazy.css +0 -73
  330. data/examples/app/rapaste/public/css/mac_classic.css +0 -123
  331. data/examples/app/rapaste/public/css/magicwb_amiga.css +0 -104
  332. data/examples/app/rapaste/public/css/pastels_on_dark.css +0 -188
  333. data/examples/app/rapaste/public/css/slush_poppies.css +0 -85
  334. data/examples/app/rapaste/public/css/spacecadet.css +0 -51
  335. data/examples/app/rapaste/public/css/sunburst.css +0 -180
  336. data/examples/app/rapaste/public/css/twilight.css +0 -137
  337. data/examples/app/rapaste/public/css/zenburnesque.css +0 -91
  338. data/examples/app/rapaste/public/js/jquery.js +0 -11
  339. data/examples/app/rapaste/spec/rapaste.rb +0 -51
  340. data/examples/app/rapaste/start.rb +0 -25
  341. data/examples/app/rapaste/view/copy.xhtml +0 -10
  342. data/examples/app/rapaste/view/index.xhtml +0 -9
  343. data/examples/app/rapaste/view/layout.xhtml +0 -25
  344. data/examples/app/rapaste/view/list.xhtml +0 -29
  345. data/examples/app/rapaste/view/search.xhtml +0 -41
  346. data/examples/app/rapaste/view/view.xhtml +0 -40
  347. data/examples/app/todolist/README +0 -1
  348. data/examples/app/todolist/public/js/jquery.js +0 -1923
  349. data/examples/app/todolist/public/ramaze.png +0 -0
  350. data/examples/app/todolist/spec/todolist.rb +0 -132
  351. data/examples/app/todolist/src/controller/main.rb +0 -70
  352. data/examples/app/todolist/src/element/page.rb +0 -31
  353. data/examples/app/todolist/src/model.rb +0 -14
  354. data/examples/app/todolist/template/index.xhtml +0 -17
  355. data/examples/app/todolist/template/new.xhtml +0 -7
  356. data/examples/helpers/provide.rb +0 -23
  357. data/examples/misc/simple_auth.rb +0 -35
  358. data/examples/templates/template/external.amrita +0 -19
  359. data/examples/templates/template/external.xsl +0 -57
  360. data/examples/templates/template_amrita2.rb +0 -74
  361. data/examples/templates/template_xslt.rb +0 -49
  362. data/lib/proto/public/css/ramaze_error.css +0 -90
  363. data/lib/proto/view/error.xhtml +0 -64
  364. data/lib/ramaze/action/render.rb +0 -192
  365. data/lib/ramaze/action.rb +0 -159
  366. data/lib/ramaze/adapter/base.rb +0 -128
  367. data/lib/ramaze/adapter/cgi.rb +0 -20
  368. data/lib/ramaze/adapter/ebb.rb +0 -18
  369. data/lib/ramaze/adapter/evented_mongrel.rb +0 -7
  370. data/lib/ramaze/adapter/fake.rb +0 -12
  371. data/lib/ramaze/adapter/fcgi.rb +0 -18
  372. data/lib/ramaze/adapter/lsws.rb +0 -19
  373. data/lib/ramaze/adapter/mongrel.rb +0 -21
  374. data/lib/ramaze/adapter/scgi.rb +0 -18
  375. data/lib/ramaze/adapter/swiftiplied_mongrel.rb +0 -7
  376. data/lib/ramaze/adapter/thin.rb +0 -17
  377. data/lib/ramaze/adapter/webrick.rb +0 -43
  378. data/lib/ramaze/adapter.rb +0 -97
  379. data/lib/ramaze/cache/file.rb +0 -71
  380. data/lib/ramaze/cache/memcached.rb +0 -69
  381. data/lib/ramaze/cache/memory.rb +0 -6
  382. data/lib/ramaze/cache/yaml_store.rb +0 -68
  383. data/lib/ramaze/contrib/file_cache.rb +0 -3
  384. data/lib/ramaze/contrib/gems.rb +0 -78
  385. data/lib/ramaze/contrib/sequel/fill.rb +0 -12
  386. data/lib/ramaze/contrib/sequel_cache.rb +0 -92
  387. data/lib/ramaze/contrib.rb +0 -82
  388. data/lib/ramaze/controller/error.rb +0 -46
  389. data/lib/ramaze/controller/main.rb +0 -2
  390. data/lib/ramaze/controller/resolve.rb +0 -278
  391. data/lib/ramaze/current/request.rb +0 -222
  392. data/lib/ramaze/current/session/flash.rb +0 -87
  393. data/lib/ramaze/current/session/hash.rb +0 -62
  394. data/lib/ramaze/current/session.rb +0 -179
  395. data/lib/ramaze/dispatcher/action.rb +0 -50
  396. data/lib/ramaze/dispatcher/directory.rb +0 -119
  397. data/lib/ramaze/dispatcher/error.rb +0 -108
  398. data/lib/ramaze/dispatcher/file.rb +0 -100
  399. data/lib/ramaze/dispatcher.rb +0 -145
  400. data/lib/ramaze/error.rb +0 -24
  401. data/lib/ramaze/helper/aspect.rb +0 -106
  402. data/lib/ramaze/helper/cgi.rb +0 -39
  403. data/lib/ramaze/helper/redirect.rb +0 -100
  404. data/lib/ramaze/helper/rest.rb +0 -43
  405. data/lib/ramaze/helper/sendfile.rb +0 -16
  406. data/lib/ramaze/option/dsl.rb +0 -45
  407. data/lib/ramaze/option/holder.rb +0 -131
  408. data/lib/ramaze/option/merger.rb +0 -108
  409. data/lib/ramaze/option.rb +0 -156
  410. data/lib/ramaze/route.rb +0 -97
  411. data/lib/ramaze/snippets/object/traits.rb +0 -76
  412. data/lib/ramaze/snippets/ramaze/caller_info.rb +0 -30
  413. data/lib/ramaze/snippets/ramaze/caller_lines.rb +0 -51
  414. data/lib/ramaze/snippets/ramaze/state.rb +0 -86
  415. data/lib/ramaze/snippets/string/each.rb +0 -19
  416. data/lib/ramaze/spec/helper/browser.rb +0 -88
  417. data/lib/ramaze/spec/helper/mock_http.rb +0 -64
  418. data/lib/ramaze/spec/helper/requester.rb +0 -63
  419. data/lib/ramaze/spec/helper/simple_http.rb +0 -434
  420. data/lib/ramaze/spec/helper.rb +0 -135
  421. data/lib/ramaze/store/default.rb +0 -109
  422. data/lib/ramaze/template/amrita2.rb +0 -45
  423. data/lib/ramaze/template/builder.rb +0 -28
  424. data/lib/ramaze/template/erubis.rb +0 -41
  425. data/lib/ramaze/template/ezamar/element.rb +0 -169
  426. data/lib/ramaze/template/ezamar/engine.rb +0 -76
  427. data/lib/ramaze/template/ezamar/morpher.rb +0 -135
  428. data/lib/ramaze/template/ezamar/render_partial.rb +0 -39
  429. data/lib/ramaze/template/ezamar/textpow.syntax +0 -34
  430. data/lib/ramaze/template/ezamar.rb +0 -42
  431. data/lib/ramaze/template/haml.rb +0 -37
  432. data/lib/ramaze/template/liquid.rb +0 -36
  433. data/lib/ramaze/template/markaby.rb +0 -52
  434. data/lib/ramaze/template/maruku.rb +0 -34
  435. data/lib/ramaze/template/nagoro.rb +0 -52
  436. data/lib/ramaze/template/none.rb +0 -14
  437. data/lib/ramaze/template/redcloth.rb +0 -25
  438. data/lib/ramaze/template/remarkably.rb +0 -38
  439. data/lib/ramaze/template/sass.rb +0 -37
  440. data/lib/ramaze/template/tagz.rb +0 -79
  441. data/lib/ramaze/template/tenjin.rb +0 -74
  442. data/lib/ramaze/template/xslt.rb +0 -100
  443. data/lib/ramaze/template.rb +0 -87
  444. data/lib/ramaze/tool/daemonize.rb +0 -37
  445. data/lib/ramaze/tool/localize.rb +0 -202
  446. data/lib/ramaze/tool/mime.rb +0 -35
  447. data/lib/ramaze/tool/mime_types.yaml +0 -615
  448. data/lib/ramaze/tool/record.rb +0 -6
  449. data/lib/ramaze/tool.rb +0 -9
  450. data/lib/ramaze/trinity.rb +0 -16
  451. data/lib/vendor/bacon.rb +0 -323
  452. data/rake_tasks/conf.rake +0 -71
  453. data/rake_tasks/coverage.rake +0 -45
  454. data/rake_tasks/gem.rake +0 -74
  455. data/rake_tasks/maintenance.rake +0 -386
  456. data/rake_tasks/release.rake +0 -76
  457. data/rake_tasks/spec.rake +0 -61
  458. data/spec/contrib/profiling.rb +0 -29
  459. data/spec/contrib/sequel/fill.rb +0 -47
  460. data/spec/examples/simple_auth.rb +0 -32
  461. data/spec/examples/templates/template_amrita2.rb +0 -16
  462. data/spec/ramaze/action/basics.rb +0 -36
  463. data/spec/ramaze/action/cache.rb +0 -87
  464. data/spec/ramaze/action/file_cache.rb +0 -70
  465. data/spec/ramaze/action/layout.rb +0 -190
  466. data/spec/ramaze/adapter/ebb.rb +0 -12
  467. data/spec/ramaze/adapter/mongrel.rb +0 -12
  468. data/spec/ramaze/adapter/record.rb +0 -31
  469. data/spec/ramaze/adapter/webrick.rb +0 -12
  470. data/spec/ramaze/adapter.rb +0 -49
  471. data/spec/ramaze/cache.rb +0 -140
  472. data/spec/ramaze/controller.rb +0 -180
  473. data/spec/ramaze/current/request.rb +0 -30
  474. data/spec/ramaze/current/session.rb +0 -97
  475. data/spec/ramaze/dispatcher.rb +0 -31
  476. data/spec/ramaze/element.rb +0 -107
  477. data/spec/ramaze/helper/aspect.rb +0 -101
  478. data/spec/ramaze/helper/cgi.rb +0 -43
  479. data/spec/ramaze/helper/file.rb +0 -18
  480. data/spec/ramaze/helper/partial.rb +0 -88
  481. data/spec/ramaze/helper/redirect.rb +0 -112
  482. data/spec/ramaze/localize.rb +0 -89
  483. data/spec/ramaze/morpher.rb +0 -111
  484. data/spec/ramaze/public/error404.xhtml +0 -1
  485. data/spec/ramaze/request/ebb.rb +0 -9
  486. data/spec/ramaze/request/mongrel.rb +0 -9
  487. data/spec/ramaze/request/thin.rb +0 -9
  488. data/spec/ramaze/request/webrick.rb +0 -5
  489. data/spec/ramaze/rewrite.rb +0 -36
  490. data/spec/ramaze/route.rb +0 -131
  491. data/spec/ramaze/session.rb +0 -94
  492. data/spec/ramaze/store/default.rb +0 -71
  493. data/spec/ramaze/template/amrita2/external.amrita +0 -6
  494. data/spec/ramaze/template/amrita2/sum.amrita +0 -1
  495. data/spec/ramaze/template/amrita2.rb +0 -50
  496. data/spec/ramaze/template/builder/external.rxml +0 -3
  497. data/spec/ramaze/template/builder.rb +0 -51
  498. data/spec/ramaze/template/erubis/sum.rhtml +0 -1
  499. data/spec/ramaze/template/erubis.rb +0 -41
  500. data/spec/ramaze/template/ezamar/another/long/action.zmr +0 -1
  501. data/spec/ramaze/template/ezamar/combined.zmr +0 -1
  502. data/spec/ramaze/template/ezamar/file_only.zmr +0 -1
  503. data/spec/ramaze/template/ezamar/index.zmr +0 -1
  504. data/spec/ramaze/template/ezamar/nested.zmr +0 -1
  505. data/spec/ramaze/template/ezamar/other__index.xhtml +0 -1
  506. data/spec/ramaze/template/ezamar/some__long__action.zmr +0 -1
  507. data/spec/ramaze/template/ezamar/sum.zmr +0 -1
  508. data/spec/ramaze/template/ezamar.rb +0 -63
  509. data/spec/ramaze/template/haml/index.haml +0 -5
  510. data/spec/ramaze/template/haml/locals.haml +0 -2
  511. data/spec/ramaze/template/haml/with_vars.haml +0 -4
  512. data/spec/ramaze/template/haml.rb +0 -66
  513. data/spec/ramaze/template/liquid/index.liquid +0 -1
  514. data/spec/ramaze/template/liquid/products.liquid +0 -45
  515. data/spec/ramaze/template/liquid.rb +0 -99
  516. data/spec/ramaze/template/markaby/external.mab +0 -8
  517. data/spec/ramaze/template/markaby/sum.mab +0 -1
  518. data/spec/ramaze/template/markaby.rb +0 -61
  519. data/spec/ramaze/template/nagoro/another/long/action.nag +0 -1
  520. data/spec/ramaze/template/nagoro/combined.nag +0 -1
  521. data/spec/ramaze/template/nagoro/file_only.nag +0 -1
  522. data/spec/ramaze/template/nagoro/index.nag +0 -1
  523. data/spec/ramaze/template/nagoro/nested.nag +0 -1
  524. data/spec/ramaze/template/nagoro/some__long__action.nag +0 -1
  525. data/spec/ramaze/template/nagoro/sum.nag +0 -1
  526. data/spec/ramaze/template/nagoro.rb +0 -64
  527. data/spec/ramaze/template/redcloth/external.redcloth +0 -1
  528. data/spec/ramaze/template/redcloth.rb +0 -38
  529. data/spec/ramaze/template/remarkably.rb +0 -58
  530. data/spec/ramaze/template/sass.rb +0 -69
  531. data/spec/ramaze/template/tenjin/external.tenjin +0 -1
  532. data/spec/ramaze/template/tenjin.rb +0 -47
  533. data/spec/ramaze/template/xslt/concat_words.xsl +0 -16
  534. data/spec/ramaze/template/xslt/index.xsl +0 -14
  535. data/spec/ramaze/template/xslt/products.xsl +0 -32
  536. data/spec/ramaze/template/xslt/ruby_version.xsl +0 -14
  537. data/spec/ramaze/template/xslt.rb +0 -90
  538. data/spec/ramaze/template.rb +0 -128
  539. data/spec/snippets/ramaze/caller_info.rb +0 -39
  540. data/spec/snippets/ramaze/caller_lines.rb +0 -30
@@ -1,25 +1,21 @@
1
1
  require 'ramaze'
2
- require 'ramaze/spec/helper'
2
+ require 'ramaze/spec'
3
3
 
4
4
  require __DIR__('../start')
5
+ Ramaze.options.roots = __DIR__('../')
5
6
 
6
7
  describe MainController do
7
- behaves_like 'http', 'xpath'
8
- ramaze :view_root => __DIR__('../view'),
9
- :public_root => __DIR__('../public')
8
+ behaves_like :mock
10
9
 
11
- it 'should show start page' do
12
- got = get('/')
13
- got.status.should == 200
14
- puts got.body
15
- got.at('//title').text.strip.should ==
16
- MainController.new.index
10
+ should 'show start page' do
11
+ get('/').status.should == 200
12
+ last_response['Content-Type'].should == 'text/html'
13
+ last_response.should =~ /<h1>Welcome to Ramaze!<\/h1>/
17
14
  end
18
15
 
19
- it 'should show /notemplate' do
20
- got = get('/notemplate')
21
- got.status.should == 200
22
- got.at('//div').text.strip.should ==
23
- MainController.new.notemplate
16
+ should 'show /notemplate' do
17
+ get('/notemplate').status.should == 200
18
+ last_response['Content-Type'].should == 'text/html'
19
+ last_response.should =~ /there is no 'notemplate\.xhtml' associated with this action/
24
20
  end
25
21
  end
data/lib/proto/start.rb CHANGED
@@ -1,12 +1,8 @@
1
- require 'rubygems'
2
- require 'ramaze'
1
+ # Use this file directly like `ruby start.rb` if you don't want to use the
2
+ # `ramaze start` command.
3
+ # All application related things should go into `app.rb`, this file is simply
4
+ # for options related to running the application locally.
3
5
 
4
- # Add directory start.rb is in to the load path, so you can run the app from
5
- # any other working path
6
- $LOAD_PATH.unshift(__DIR__)
6
+ require File.expand_path('app', File.dirname(__FILE__))
7
7
 
8
- # Initialize controllers and models
9
- require 'controller/init'
10
- require 'model/init'
11
-
12
- Ramaze.start :adapter => :webrick, :port => 7000
8
+ Ramaze.start(:adapter => :webrick, :port => 7000, :file => __FILE__)
@@ -1,34 +1,41 @@
1
- <p>Ramaze is working correctly with this application, now you can start
2
- working.</p>
1
+ <p>
2
+ Ramaze is working correctly with this application, now you can start working.
3
+ </p>
3
4
 
4
- <p>To start you can modify:
5
- <ol>
6
- <li>
7
- <code>view/index.xhtml</code>, this page.
8
- </li>
9
- <li>
10
- <code>view/page.xhtml</code>, the layout for this page.
11
- </li>
12
- <li>
13
- <code>controller/main.rb</code>, where you can change the header of this
14
- page and the <a href="/notemplate">notemplate</a> action
15
- </li>
16
- </ol>
5
+ <p>
6
+ To start you can modify:
7
+ <ol>
8
+ <li>
9
+ <code>view/index.xhtml</code>, this page.
10
+ </li>
11
+ <li>
12
+ <code>view/page.xhtml</code>, the layout for this page.
13
+ </li>
14
+ <li>
15
+ <code>controller/main.rb</code>, where you can change the header of this
16
+ page and the <a href="/notemplate">notemplate</a> action
17
+ </li>
18
+ </ol>
17
19
  </p>
18
20
 
19
- <p>For more documentation, check out <a href="http://ramaze.net">www.ramaze.net</a>, which includes:
20
- <ul>
21
- <li>a <a href="http://ramaze.net/getting-started">getting started</a> guide</li>
22
- <li>some <a href="http://ramaze.net/screencasts">screencasts</a></li>
23
- <li>and an <a href="http://ramaze.rubyforge.org/tutorial/todolist.html">introductory tutorial</a></li>
24
- </ul>
21
+ <p>For more documentation, check out <a href="http://ramaze.net">ramaze.net</a> and <a href="http://wiki.ramaze.net">wiki.ramaze.net</a>, which includes:
22
+ <ul>
23
+ <li>a <a href="http://wiki.ramaze.net/Walkthrough">getting started</a> guide</li>
24
+ <li>some <a href="http://wiki.ramaze.net/Screencasts">screencasts</a></li>
25
+ <li>and an <a href="http://wiki.ramaze.net/Tutorials/Todolist">introductory tutorial</a></li>
26
+ </ul>
25
27
  </p>
26
28
 
27
- <p>You can also read the
28
- <a href="http://ramaze.rubyforge.org/rdoc/files/doc/README.html">rdocs</a> or browse
29
- around the <a href="http://source.ramaze.net">Ramaze source code</a>.
29
+ <p>
30
+ You can also read the
31
+ <a href="http://ramaze.rubyforge.org/rdoc/files/doc/README.html">rdocs</a>
32
+ or browse around the
33
+ <a href="http://source.ramaze.net">Ramaze source code</a>.
30
34
  </p>
31
35
 
32
- <p>For help with Ramaze, visit the <a href="irc://chat.freenode.net/ramaze">#ramaze on irc.freenode.net</a> (you can use <a href="http://java.freenode.net/?channel=ramaze">this browser-based frontend</a>),
33
- or post on the <a href="http://groups.google.com/group/ramaze">Ramaze Google Group</a>.
34
- </p>
36
+ <p>
37
+ For help with Ramaze, visit <a href="irc://chat.freenode.net/ramaze">#ramaze on irc.freenode.net</a>.<br />
38
+ You can use <a href="http://embed.mibbit.com/?server=irc.freenode.net&channel=#ramaze,#ruby-lang&forcePrompt=true">Mibbit</a>, an AJAX based IRC client or <a href="http://java.freenode.net/?channel=ramaze">the official freenode irc java applet</a>.
39
+ <br />
40
+ Feel free to post to the <a href="http://groups.google.com/group/ramaze">Ramaze Google Group</a>, your first mail has to go through moderation, so please be patient.
41
+ </p>
data/lib/ramaze/app.rb ADDED
@@ -0,0 +1,124 @@
1
+ module Ramaze
2
+ # An application is a collection of controllers and options that have a
3
+ # common name.
4
+ # Every application has a location it dispatches from, this behaves similar
5
+ # to Rack::URLMap.
6
+
7
+ AppMap = Innate::URLMap.new
8
+
9
+ def self.to(object)
10
+ app_name = object.ancestral_trait[:app]
11
+ App[app_name].to(object)
12
+ end
13
+
14
+ # App is the superclass for applications and acts as their prototype when it
15
+ # comes to configuration.
16
+ #
17
+ # An application consists of options, a location, and a list of objects. The
18
+ # objects are usually {Controller}s.
19
+ #
20
+ # The options are inherited, the basics are set in Ramaze.options, from there
21
+ # to Ramaze::App.options, and finally into every instance of App.
22
+ #
23
+ # This allows to collect {Controller}s of your application into a common
24
+ # group that can easily be used in other applications, while retaining the
25
+ # original options.
26
+ #
27
+ # Every instance of {App} is mapped in {AppMap}, which is the default
28
+ # location to #call from Rack.
29
+ #
30
+ # Additionally, every {App} can have custom locations for
31
+ # root/public/view/layout directories, which allows reuse beyond directory
32
+ # boundaries.
33
+ #
34
+ # In contrast to Innate, where all Nodes share the same middleware, {App}
35
+ # also has a subset of middleware that handles serving static files, routes
36
+ # and rewrites.
37
+ #
38
+ # To indicate that a {Controller} belongs to a specific application, you can
39
+ # pass a second argument to {Controller::map}
40
+ #
41
+ # @example adding Controller to application
42
+ #
43
+ # class WikiController < Ramaze::Controller
44
+ # map '/', :wiki
45
+ # end
46
+ #
47
+ # The App instance will be created for you and if you don't use any other
48
+ # applications in your code there is nothing else you have to do. Others can
49
+ # now come and simply reuse your code in their own applications.
50
+ #
51
+ # There is some risk of name collisions if everybody calls their app `:wiki`,
52
+ # but given that you only use one foreign app of this kind might give less
53
+ # reason for concern.
54
+ #
55
+ # If you still try to use two apps with the same name, you have to be
56
+ # careful, loading one first, renaming it, then loading the second one.
57
+ #
58
+ # The naming of an App has no influence on any other aspects of dispatching
59
+ # or configuration.
60
+ class App
61
+ include Innate::Optioned
62
+
63
+ # options not found here will be looked up in Ramaze.options
64
+ options.dsl do
65
+ o "Unique identifier for this application",
66
+ :name, :pristine
67
+ end
68
+
69
+ APP_LIST = {}
70
+
71
+ attr_reader :name, :location, :url_map, :options
72
+
73
+ def initialize(name, location)
74
+ @name = name.to_sym
75
+ @url_map = Innate::URLMap.new
76
+ self.location = location
77
+
78
+ APP_LIST[@name] = self
79
+
80
+ @options = self.class.options.sub(@name)
81
+ end
82
+
83
+ def sync
84
+ AppMap.map(location, self)
85
+ end
86
+
87
+ def location=(location)
88
+ @location = location.to_str.freeze
89
+ sync
90
+ end
91
+
92
+ def call(env)
93
+ to_app.call(env)
94
+ end
95
+
96
+ def to_app
97
+ files = Ramaze::Files.new(*public_roots)
98
+ app = Current.new(Route.new(url_map), Rewrite.new(url_map))
99
+ Rack::Cascade.new([files, app])
100
+ end
101
+
102
+ def map(location, object)
103
+ url_map.map(location, object)
104
+ end
105
+
106
+ def to(object)
107
+ return unless mapped = url_map.to(object)
108
+ [location, mapped].join('/').squeeze('/')
109
+ end
110
+
111
+ def public_roots
112
+ roots, publics = [*options.roots], [*options.publics]
113
+ roots.map{|root| publics.map{|public| ::File.join(root, public) }}.flatten
114
+ end
115
+
116
+ def self.find_or_create(name, location = '/')
117
+ self[name] || new(name, location)
118
+ end
119
+
120
+ def self.[](name)
121
+ APP_LIST[name.to_sym]
122
+ end
123
+ end
124
+ end
@@ -0,0 +1,56 @@
1
+ # Copyright (c) 2009 Michael Fellinger m.fellinger@gmail.com
2
+ # All files in this distribution are subject to the terms of the Ruby license.
3
+
4
+ require 'localmemcache'
5
+
6
+ module Ramaze
7
+ class Cache
8
+
9
+ # Cache based on the localmemcache library which utilizes mmap to share
10
+ # strings in memory between ruby instances.
11
+ class LocalMemCache
12
+ include Cache::API
13
+
14
+ OPTIONS = {
15
+ :size_mb => 1024,
16
+ :serialize => true,
17
+ :serializer => ::Marshal, # something that responds to ::load and ::dump
18
+ }
19
+
20
+ # Connect to localmemcache
21
+ def cache_setup(host, user, app, name)
22
+ @namespace = [host, user, app, name].compact.join('-')
23
+
24
+ options = {:namespace => @namespace}.merge(OPTIONS)
25
+
26
+ @serialize = options.delete(:serialize)
27
+ @serializer = options.delete(:serializer)
28
+
29
+ @store = ::LocalMemCache.new(options)
30
+ end
31
+
32
+ # Wipe out _all_ data in localmemcached, use with care.
33
+ def cache_clear
34
+ ::LocalMemCache.clear_namespace(@namespace)
35
+ end
36
+
37
+ def cache_delete(*args)
38
+ super{|key| @store.delete(key.to_s) }
39
+ end
40
+
41
+ # NOTE:
42
+ # * We have no way of knowing whether the value really is nil, we
43
+ # assume you wouldn't cache nil and return the default instead.
44
+ def cache_fetch(*args)
45
+ super{|key|
46
+ value = @store[key.to_s]
47
+ @serializer.load(value) if value
48
+ }
49
+ end
50
+
51
+ def cache_store(*args)
52
+ super{|key, value| @store[key.to_s] = @serializer.dump(value) }
53
+ end
54
+ end
55
+ end
56
+ end
@@ -0,0 +1,99 @@
1
+ # Copyright (c) 2009 Michael Fellinger m.fellinger@gmail.com
2
+ # All files in this distribution are subject to the terms of the Ruby license.
3
+
4
+ require 'memcache'
5
+
6
+ module Ramaze
7
+ class Cache
8
+
9
+ # Cache based on the memcache library which utilizes the memcache-daemon to
10
+ # store key/value pairs in namespaces.
11
+ #
12
+ # Please read the documentation of memcache-client for further methods.
13
+ #
14
+ # It is highly recommended to install memcache-client_extensions for
15
+ # a bit of speedup and more functionality
16
+ class MemCache
17
+ include Cache::API
18
+
19
+ # +:multithread+: May be turned off at your own risk.
20
+ # +:readonly+: You most likely want that to be false.
21
+ # +:servers+: Array containing at least one of:
22
+ # MemCache::Server instance
23
+ # Strings like "localhost", "localhost:11211", "localhost:11211:1"
24
+ # That accord to "host:port:weight", only host is required.
25
+ OPTIONS = {
26
+ :multithread => true,
27
+ :readonly => false,
28
+ :servers => ['localhost:11211:1'],
29
+ }
30
+
31
+ # Connect to memcached
32
+ def cache_setup(host, user, app, name)
33
+ @namespace = [host, user, app, name].compact.join('-')
34
+ options = {:namespace => @namespace}.merge(OPTIONS)
35
+ servers = options.delete(:servers)
36
+ @store = ::MemCache.new(servers, options)
37
+ end
38
+
39
+ # Wipe out _all_ data in memcached, use with care.
40
+ def cache_clear
41
+ @store.flush_all
42
+ rescue ::MemCache::MemCacheError => e
43
+ Log.error(e)
44
+ nil
45
+ end
46
+
47
+ #
48
+ def cache_delete(*keys)
49
+ super{|key| @store.delete(key) }
50
+ rescue ::MemCache::MemCacheError => e
51
+ Log.error(e)
52
+ nil
53
+ end
54
+
55
+ # NOTE:
56
+ # * We have no way of knowing whether the value really is nil, we
57
+ # assume you wouldn't cache nil and return the default instead.
58
+ def cache_fetch(key, default = nil)
59
+ value = @store[key]
60
+ value.nil? ? default : value
61
+ rescue ::MemCache::MemCacheError => e
62
+ Log.error(e)
63
+ nil
64
+ end
65
+
66
+ def cache_store(key, value, options = {})
67
+ ttl = options[:ttl] || 0
68
+ @store.set(key, value, ttl)
69
+ value
70
+ rescue ::MemCache::MemCacheError => e
71
+ Log.error(e)
72
+ nil
73
+ end
74
+
75
+ # statistics about usage
76
+ def stats; @store.stats; end
77
+
78
+ # current namespace
79
+ def namespace; @store.namespace; end
80
+
81
+ # switch to different namespace
82
+ def namespace=(ns) @namespace = @store.namespace = ns; end
83
+
84
+ # state of compression (true/false)
85
+ def compression; @store.compression; end
86
+
87
+ # turn compression on or off
88
+ def compression=(bool); @store.compression = bool; end
89
+
90
+ # For everything else that we don't care to document right now.
91
+ def method_missing(*args, &block)
92
+ @store.__send__(*args, &block)
93
+ rescue ::MemCache::MemCacheError => e
94
+ Log.error(e)
95
+ nil
96
+ end
97
+ end
98
+ end
99
+ end
@@ -0,0 +1,67 @@
1
+ # Copyright (c) 2009 Michael Fellinger m.fellinger@gmail.com
2
+ # All files in this distribution are subject to the terms of the Ruby license.
3
+
4
+ module Ramaze
5
+ class Cache
6
+
7
+ # Cache based on a Sequel model using relational databases.
8
+ class Sequel
9
+ include Cache::API
10
+
11
+ class Table < ::Sequel::Model(:ramaze_cache)
12
+ set_schema do
13
+ primary_key :id
14
+ string :key
15
+ string :value
16
+ time :expires
17
+ index :key, :unique => true
18
+ end
19
+
20
+ transform :value => [
21
+ lambda{|value| ::Marshal.load(value.unpack('m*')[0]) },
22
+ lambda{|value| [::Marshal.dump(value)].pack('m*') }
23
+ ]
24
+ end
25
+
26
+ # Setup the table, not suitable for multiple apps yet.
27
+ def cache_setup(host, user, app, name)
28
+ @namespace = [host, user, app, name].compact.join(':')
29
+ Table.create_table unless Table.table_exists?
30
+ @store = Table
31
+ end
32
+
33
+ # Wipe out _all_ data in the table, use with care.
34
+ def cache_clear
35
+ Table.delete_all
36
+ end
37
+
38
+ # Delete records for given +keys+
39
+ def cache_delete(*keys)
40
+ super do |key|
41
+ record = @store[:key => namespaced(key)]
42
+ record.delete if record
43
+ end
44
+ end
45
+
46
+ def cache_fetch(key, default = nil)
47
+ super{|key| @store[:key => namespaced(key)] }
48
+ end
49
+
50
+ def cache_store(key, value, options = {})
51
+ key = namespaced(key)
52
+ ttl = options[:ttl]
53
+ expires = Time.now + ttl if ttl
54
+
55
+ record = @store[:key => key].update(:value => value, :expires => expires)
56
+ record.value
57
+ rescue
58
+ record = @store.create(:key => key, :value => value, :expires => expires)
59
+ record.value
60
+ end
61
+
62
+ def namespaced(key)
63
+ [@namespace, key].join(':')
64
+ end
65
+ end
66
+ end
67
+ end
data/lib/ramaze/cache.rb CHANGED
@@ -1,114 +1,19 @@
1
- # Copyright (c) 2008 Michael Fellinger m.fellinger@gmail.com
1
+ # Copyright (c) 2009 Michael Fellinger m.fellinger@gmail.com
2
2
  # All files in this distribution are subject to the terms of the Ruby license.
3
3
 
4
- require 'ramaze/cache/memory'
4
+ require 'innate/cache'
5
5
 
6
6
  module Ramaze
7
- autoload :YAMLStoreCache, "ramaze/cache/yaml_store.rb"
8
- autoload :MemcachedCache, "ramaze/cache/memcached.rb"
9
- autoload :FileCache, "ramaze/cache/file.rb"
10
-
11
- # This is the wrapper of all caches, providing mechanism
12
- # for switching caching from one adapter to another.
7
+ Cache = Innate::Cache
13
8
 
14
9
  class Cache
15
- include Enumerable
16
-
17
- # Holds all the instances of Cache that are being added.
18
- CACHES = {} unless defined?(CACHES)
19
-
20
- attr_accessor :cache
21
-
22
- class << self
23
-
24
- # Initializes the Cache for the general caches Ramaze uses.
25
- # Cache#startup is called by Ramaze#startup, when initializing the
26
- # Ramaze.trait(:essentials).
27
-
28
- def startup(options)
29
- Cache.add :compiled, :actions, :patterns,
30
- :resolved, :shield, :action_methods
31
- end
32
-
33
- # This will define a method to access a new cache directly over
34
- # singleton-methods on Cache.
35
- #---
36
- # The @cache_name is internally used for caches which do not save
37
- # different caches in different namespaces, for example memcached.
38
- #+++
39
-
40
- def add *keys
41
- keys.each{|key|
42
- klass = Global.cache_alternative.fetch(key, Global.cache)
43
- add_on(key, klass)
44
- }
45
- Log.dev("Added caches for: #{keys.join(', ')}")
46
- end
47
-
48
- # Define a new cache available by Cache::key
49
- def add_on(key, cache_class)
50
- CACHES[key] = new(cache_class)
51
- CACHES[key].instance_variable_set("@cache_name", key)
52
- eval("def self.%s; CACHES[%p]; end" % [key, key])
53
- end
54
-
55
- end
56
-
57
- # Initializes the cache, defined by Global.cache
58
- def initialize(cache = Global.cache)
59
- @cache = cache.new
60
- end
61
-
62
- # Gets the value for the given key, or +nil+ if not found.
63
- def [](key)
64
- fetch(key)
65
- end
66
-
67
- # Sets _key_ to _value_ with an infinite time to live.
68
- def []=(key, value)
69
- store(key, value)
70
- end
71
-
72
- # Empties this cache.
73
- def clear
74
- @cache.clear
75
- end
76
-
77
- # Deletes each passed key from this cache.
78
- def delete(*args)
79
- args.each do |arg|
80
- @cache.delete("#{@cache_name}:#{arg}")
81
- end
82
- end
83
-
84
- # Gets the value of the given key, or _default_ if not found.
85
- def fetch(key, default = nil)
86
- return default unless entry = @cache["#{@cache_name}:#{key}"]
87
- return entry[:value] if entry[:expires].nil? || entry[:expires] > Time.now
88
- @cache.delete("#{@cache_name}:#{key}")
89
- default
90
- end
91
-
92
- alias get fetch
93
-
94
- # Sets key to value. Supports the following options:
95
- # [+:ttl+] time to live in seconds
96
- def store(key, value, opts = {})
97
- opts = {:ttl => opts} if opts.is_a?(Integer)
98
- @cache["#{@cache_name}:#{key}"] = {
99
- :expires => opts[:ttl] ? Time.now + opts[:ttl].to_i : nil,
100
- :value => value
101
- }
102
- value
103
- end
104
-
105
- alias set store
10
+ autoload :LocalMemCache, 'ramaze/cache/localmemcache'
11
+ autoload :MemCache, 'ramaze/cache/memcache'
12
+ autoload :Sequel, 'ramaze/cache/sequel'
106
13
 
107
- # Answers with value for each key.
108
- def values_at(*keys)
109
- values = []
110
- keys.each {|key| values << fetch(key) }
111
- values
14
+ def self.clear_after_reload
15
+ action.clear if respond_to?(:action)
16
+ action_value.clear if respond_to?(:action_value)
112
17
  end
113
18
  end
114
19
  end
@@ -0,0 +1,64 @@
1
+ require 'set'
2
+
3
+ # require 'ramaze/contrib/app_graph'
4
+ #
5
+ # graph = AppGraph.new
6
+ # graph.generate
7
+ # graph.show
8
+
9
+ class AppGraph
10
+ def initialize
11
+ @out = Set.new
12
+ end
13
+
14
+ def generate
15
+ Ramaze::AppMap.to_hash.each do |location, app|
16
+ connect(location => app.name)
17
+
18
+ app.url_map.to_hash.each do |c_location, c_node|
19
+ connect(app.name => c_node)
20
+ connect(c_node.mapping => c_node)
21
+
22
+ c_node.update_template_mappings
23
+ c_node.view_templates.each do |wish, mapping|
24
+ mapping.each do |action_name, template|
25
+ action_path = File.join(c_node.mapping, action_name)
26
+ connect(c_node => action_path, action_path => template)
27
+ end
28
+ end
29
+
30
+ c_node.update_method_arities
31
+ c_node.method_arities.each do |method, arity|
32
+ action_path = File.join(c_node.mapping, method.to_s)
33
+ connect(action_path => "#{c_node}##{method}[#{arity}]", c_node => action_path)
34
+ end
35
+ end
36
+ end
37
+ end
38
+
39
+ def connect(hash)
40
+ hash.each do |from, to|
41
+ @out << (" %p -> %p;" % [from.to_s, to.to_s])
42
+ end
43
+ end
44
+
45
+ def write_dot
46
+ File.open('graph.dot', 'w+') do |dot|
47
+ dot.puts 'digraph appmap {'
48
+ dot.puts(*@out)
49
+ dot.puts '}'
50
+ end
51
+ end
52
+
53
+ def show
54
+ write_dot
55
+ options = {
56
+ 'rankdir' => 'LR',
57
+ 'splines' => 'true',
58
+ 'overlap' => 'false',
59
+ }
60
+ args = options.map{|k,v| "-G#{k}=#{v}" }
61
+ system("dot -O -Tpng #{args.join(' ')} graph.dot")
62
+ system('feh graph.dot.png')
63
+ end
64
+ end
@@ -30,6 +30,8 @@ require 'net/smtp'
30
30
 
31
31
  module Ramaze
32
32
  class EmailHelper
33
+ include Innate::Traited
34
+
33
35
  # Required to be set
34
36
  trait :smtp_server => 'smtp.your-isp.com'
35
37
  trait :smtp_helo_domain => 'your.helo.domain.com'