ramaze 2009.03 → 2009.04

Sign up to get free protection for your applications and to get access to all the features.
Files changed (545) hide show
  1. data/.mailmap +25 -0
  2. data/CHANGELOG +16750 -0
  3. data/MANIFEST +485 -0
  4. data/{README.md → README.markdown} +0 -5
  5. data/Rakefile +79 -242
  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/.htaccess +24 -0
  99. data/lib/proto/public/css/screen.css +30 -0
  100. data/lib/proto/public/js/jquery.js +2121 -1294
  101. data/lib/proto/spec/main.rb +11 -15
  102. data/lib/proto/start.rb +6 -10
  103. data/lib/proto/view/index.xhtml +34 -27
  104. data/lib/ramaze.rb +78 -129
  105. data/lib/ramaze/app.rb +124 -0
  106. data/lib/ramaze/cache.rb +9 -104
  107. data/lib/ramaze/cache/localmemcache.rb +56 -0
  108. data/lib/ramaze/cache/memcache.rb +99 -0
  109. data/lib/ramaze/cache/sequel.rb +67 -0
  110. data/lib/ramaze/contrib/app_graph.rb +64 -0
  111. data/lib/ramaze/contrib/email.rb +2 -0
  112. data/lib/ramaze/contrib/gettext/po.rb +23 -23
  113. data/lib/ramaze/contrib/gzip_filter.rb +1 -69
  114. data/lib/ramaze/contrib/rest.rb +20 -15
  115. data/lib/ramaze/contrib/sequel/create_join.rb +1 -0
  116. data/lib/ramaze/contrib/sequel/form_field.rb +4 -4
  117. data/lib/ramaze/contrib/sequel/image.rb +9 -11
  118. data/lib/ramaze/contrib/sequel/relation.rb +21 -5
  119. data/lib/ramaze/controller.rb +63 -257
  120. data/lib/ramaze/controller/default.rb +12 -0
  121. data/lib/ramaze/current.rb +3 -47
  122. data/lib/ramaze/files.rb +24 -0
  123. data/lib/ramaze/gestalt.rb +6 -1
  124. data/lib/ramaze/helper.rb +6 -81
  125. data/lib/ramaze/helper/auth.rb +68 -104
  126. data/lib/ramaze/helper/bench.rb +0 -2
  127. data/lib/ramaze/helper/cache.rb +71 -120
  128. data/lib/ramaze/helper/disqus.rb +26 -0
  129. data/lib/ramaze/helper/flash.rb +32 -44
  130. data/lib/ramaze/helper/form.rb +83 -252
  131. data/lib/ramaze/helper/formatting.rb +32 -5
  132. data/lib/ramaze/helper/gestalt.rb +1 -1
  133. data/lib/ramaze/helper/gravatar.rb +66 -19
  134. data/lib/ramaze/helper/httpdigest.rb +66 -62
  135. data/lib/ramaze/helper/link.rb +62 -109
  136. data/lib/ramaze/helper/localize.rb +138 -0
  137. data/lib/ramaze/helper/markaby.rb +1 -1
  138. data/lib/ramaze/helper/maruku.rb +10 -3
  139. data/lib/ramaze/helper/pager.rb +2 -1
  140. data/lib/ramaze/helper/paginate.rb +17 -9
  141. data/lib/ramaze/helper/partial.rb +86 -91
  142. data/lib/ramaze/helper/remarkably.rb +14 -0
  143. data/lib/ramaze/helper/request_accessor.rb +16 -0
  144. data/lib/ramaze/helper/sequel_form.rb +284 -0
  145. data/lib/ramaze/helper/simple_captcha.rb +46 -16
  146. data/lib/ramaze/helper/stack.rb +64 -66
  147. data/lib/ramaze/helper/user.rb +141 -22
  148. data/lib/ramaze/helper/xhtml.rb +27 -16
  149. data/lib/ramaze/log.rb +19 -7
  150. data/lib/ramaze/log/analogger.rb +1 -2
  151. data/lib/ramaze/log/informer.rb +1 -0
  152. data/lib/ramaze/log/logging.rb +2 -8
  153. data/lib/ramaze/log/syslog.rb +36 -36
  154. data/lib/ramaze/middleware_compiler.rb +13 -0
  155. data/lib/ramaze/plugin.rb +69 -0
  156. data/lib/ramaze/reloader.rb +8 -6
  157. data/lib/ramaze/request.rb +118 -0
  158. data/lib/ramaze/{current/response.rb → response.rb} +9 -10
  159. data/lib/ramaze/setup.rb +93 -33
  160. data/lib/ramaze/snippets/ramaze/deprecated.rb +3 -1
  161. data/lib/ramaze/snippets/{dictionary.rb → ramaze/dictionary.rb} +0 -104
  162. data/lib/ramaze/snippets/ramaze/fiber.rb +5 -5
  163. data/lib/ramaze/spec.rb +34 -1
  164. data/lib/ramaze/spec/helper/bacon.rb +4 -3
  165. data/lib/ramaze/spec/helper/snippets.rb +3 -1
  166. data/lib/ramaze/spec/helper/template_examples.rb +29 -0
  167. data/lib/ramaze/tool/create.rb +1 -1
  168. data/lib/ramaze/version.rb +1 -4
  169. data/lib/ramaze/view.rb +48 -0
  170. data/lib/ramaze/view/erubis.rb +23 -0
  171. data/lib/ramaze/view/ezamar.rb +23 -0
  172. data/lib/ramaze/view/haml.rb +16 -0
  173. data/lib/ramaze/view/liquid.rb +100 -0
  174. data/lib/ramaze/view/maruku.rb +14 -0
  175. data/lib/ramaze/view/nagoro.rb +44 -0
  176. data/lib/ramaze/view/nagoro/render_partial.rb +32 -0
  177. data/lib/ramaze/view/redcloth.rb +21 -0
  178. data/lib/ramaze/view/remarkably.rb +21 -0
  179. data/lib/ramaze/view/sass.rb +21 -0
  180. data/lib/ramaze/view/tagz.rb +63 -0
  181. data/lib/ramaze/view/tenjin.rb +29 -0
  182. data/lib/vendor/etag.rb +20 -0
  183. data/lib/vendor/route_exceptions.rb +48 -0
  184. data/ramaze.gemspec +44 -0
  185. data/spec/contrib/rest.rb +28 -0
  186. data/spec/examples/caching.rb +1 -2
  187. data/spec/examples/css.rb +1 -2
  188. data/spec/examples/element.rb +1 -2
  189. data/spec/examples/hello.rb +2 -3
  190. data/spec/examples/helpers/httpdigest.rb +64 -0
  191. data/spec/examples/linking.rb +1 -2
  192. data/spec/examples/simple.rb +1 -6
  193. data/spec/examples/templates/template_erubis.rb +3 -17
  194. data/spec/examples/templates/template_ezamar.rb +3 -18
  195. data/spec/examples/templates/template_haml.rb +3 -17
  196. data/spec/examples/templates/template_liquid.rb +3 -23
  197. data/spec/examples/templates/template_markaby.rb +6 -19
  198. data/spec/examples/templates/template_nagoro.rb +9 -0
  199. data/spec/examples/templates/template_redcloth.rb +3 -22
  200. data/spec/examples/templates/template_remarkably.rb +3 -17
  201. data/spec/examples/templates/template_tenjin.rb +3 -22
  202. data/spec/helper.rb +10 -3
  203. data/spec/ramaze/action/render.rb +5 -15
  204. data/spec/ramaze/action/view/other_wrapper.erb +1 -0
  205. data/spec/ramaze/action/view/sub/sub_wrapper.erb +1 -0
  206. data/spec/ramaze/app.rb +47 -0
  207. data/spec/ramaze/cache/localmemcache.rb +49 -0
  208. data/spec/ramaze/cache/memcache.rb +54 -0
  209. data/spec/ramaze/cache/sequel.rb +51 -0
  210. data/spec/ramaze/controller/actionless_templates.rb +14 -10
  211. data/spec/ramaze/controller/mapping.rb +57 -0
  212. data/spec/ramaze/controller/provide_inheritance.rb +47 -0
  213. data/spec/ramaze/controller/resolve.rb +7 -9
  214. data/spec/ramaze/controller/subclass.rb +13 -13
  215. data/spec/ramaze/controller/template_resolving.rb +21 -57
  216. data/spec/ramaze/dispatcher/directory.rb +38 -24
  217. data/spec/ramaze/dispatcher/file.rb +55 -44
  218. data/spec/ramaze/error.rb +56 -62
  219. data/spec/ramaze/files.rb +29 -0
  220. data/spec/ramaze/files/public_1/plain.txt +1 -0
  221. data/spec/ramaze/files/public_2/rich.txt +1 -0
  222. data/spec/ramaze/gestalt.rb +2 -4
  223. data/spec/ramaze/helper/auth.rb +41 -24
  224. data/spec/ramaze/helper/bench.rb +17 -0
  225. data/spec/ramaze/helper/cache.rb +65 -101
  226. data/spec/ramaze/helper/flash.rb +20 -112
  227. data/spec/ramaze/helper/form.rb +336 -98
  228. data/spec/ramaze/helper/formatting.rb +66 -9
  229. data/spec/ramaze/helper/gestalt.rb +15 -0
  230. data/spec/ramaze/helper/gravatar.rb +40 -0
  231. data/spec/ramaze/helper/httpdigest.rb +144 -0
  232. data/spec/ramaze/helper/link.rb +25 -100
  233. data/spec/ramaze/helper/localize.rb +60 -0
  234. data/spec/ramaze/helper/maruku.rb +19 -0
  235. data/spec/ramaze/helper/pager.rb +13 -16
  236. data/spec/ramaze/helper/paginate.rb +68 -0
  237. data/spec/ramaze/helper/request_accessor.rb +19 -0
  238. data/spec/ramaze/helper/sequel_form.rb +89 -0
  239. data/spec/ramaze/helper/simple_captcha.rb +35 -12
  240. data/spec/ramaze/helper/stack.rb +52 -39
  241. data/spec/ramaze/helper/user.rb +39 -10
  242. data/spec/ramaze/helper/xhtml.rb +32 -0
  243. data/spec/ramaze/log/informer.rb +20 -19
  244. data/spec/ramaze/log/logging.rb +63 -0
  245. data/spec/ramaze/log/syslog.rb +59 -62
  246. data/spec/ramaze/params.rb +8 -11
  247. data/spec/ramaze/request.rb +57 -181
  248. data/spec/ramaze/view.rb +36 -0
  249. data/spec/ramaze/view/erubis.rb +73 -0
  250. data/spec/ramaze/view/erubis/external.rhtml +8 -0
  251. data/spec/ramaze/view/erubis/sum.rhtml +1 -0
  252. data/spec/ramaze/view/ezamar.rb +73 -0
  253. data/spec/ramaze/view/ezamar/external.zmr +8 -0
  254. data/spec/ramaze/view/ezamar/sum.zmr +1 -0
  255. data/spec/ramaze/view/haml.rb +86 -0
  256. data/spec/ramaze/view/haml/external.haml +5 -0
  257. data/spec/ramaze/view/haml/sum.haml +2 -0
  258. data/spec/ramaze/view/liquid.rb +73 -0
  259. data/spec/ramaze/view/liquid/external.liquid +8 -0
  260. data/spec/ramaze/view/liquid/sum.liquid +1 -0
  261. data/spec/ramaze/view/nagoro.rb +73 -0
  262. data/spec/ramaze/view/nagoro/external.nag +8 -0
  263. data/spec/ramaze/view/nagoro/sum.nag +1 -0
  264. data/spec/ramaze/view/redcloth.rb +66 -0
  265. data/spec/ramaze/view/redcloth/external.redcloth +8 -0
  266. data/spec/ramaze/view/remarkably.rb +49 -0
  267. data/spec/ramaze/{template → view}/remarkably/external.rem +0 -0
  268. data/spec/ramaze/{template → view}/remarkably/sum.rem +0 -0
  269. data/spec/ramaze/view/sass.rb +73 -0
  270. data/spec/ramaze/{template → view}/sass/file.css.sass +0 -0
  271. data/spec/ramaze/{template → view}/tagz.rb +18 -29
  272. data/spec/ramaze/{template → view}/tagz/external.tagz +0 -0
  273. data/spec/ramaze/{template → view}/tagz/sum.tagz +0 -0
  274. data/spec/ramaze/view/tenjin.rb +57 -0
  275. data/spec/ramaze/view/tenjin/external.rbhtml +8 -0
  276. data/spec/ramaze/view/tenjin/sum.rbhtml +1 -0
  277. data/spec/snippets/ramaze/dictionary.rb +110 -0
  278. data/spec/snippets/ramaze/struct.rb +12 -0
  279. data/spec/snippets/thread/into.rb +3 -14
  280. data/tasks/authors.rake +30 -0
  281. data/tasks/bacon.rake +66 -0
  282. data/tasks/changelog.rake +18 -0
  283. data/tasks/copyright.rake +21 -0
  284. data/tasks/gem.rake +22 -0
  285. data/tasks/gem_installer.rake +76 -0
  286. data/{rake_tasks → tasks}/git.rake +10 -5
  287. data/tasks/grancher.rake +12 -0
  288. data/tasks/install_dependencies.rake +6 -0
  289. data/tasks/jquery.rake +15 -0
  290. data/tasks/manifest.rake +4 -0
  291. data/{rake_tasks/metric.rake → tasks/metric_changes.rake} +7 -7
  292. data/tasks/rcov.rake +23 -0
  293. data/tasks/release.rake +51 -0
  294. data/tasks/reversion.rake +8 -0
  295. data/tasks/setup.rake +24 -0
  296. data/tasks/todo.rake +29 -0
  297. data/tasks/traits.rake +21 -0
  298. data/tasks/yard.rake +4 -0
  299. metadata +191 -452
  300. data/benchmark/suite/template_amrita2.rb +0 -17
  301. data/doc/readme_chunks/appendix.txt +0 -10
  302. data/doc/readme_chunks/examples.txt +0 -38
  303. data/doc/readme_chunks/features.txt +0 -148
  304. data/doc/readme_chunks/getting_help.txt +0 -5
  305. data/doc/readme_chunks/getting_started.txt +0 -18
  306. data/doc/readme_chunks/installing.txt +0 -92
  307. data/doc/readme_chunks/introduction.txt +0 -18
  308. data/doc/readme_chunks/principles.txt +0 -56
  309. data/doc/readme_chunks/thanks.txt +0 -59
  310. data/examples/app/auth/auth.rb +0 -54
  311. data/examples/app/auth/template/layout.haml +0 -20
  312. data/examples/app/auth/template/login.haml +0 -16
  313. data/examples/app/blog/public/styles/blog.css +0 -132
  314. data/examples/app/blog/view/edit.xhtml +0 -17
  315. data/examples/app/blog/view/index.xhtml +0 -17
  316. data/examples/app/blog/view/layout.xhtml +0 -11
  317. data/examples/app/blog/view/new.xhtml +0 -16
  318. data/examples/app/rapaste/Rakefile +0 -34
  319. data/examples/app/rapaste/controller/paste.rb +0 -101
  320. data/examples/app/rapaste/model/paste.rb +0 -58
  321. data/examples/app/rapaste/public/css/active4d.css +0 -114
  322. data/examples/app/rapaste/public/css/all_hallows_eve.css +0 -72
  323. data/examples/app/rapaste/public/css/amy.css +0 -147
  324. data/examples/app/rapaste/public/css/blackboard.css +0 -88
  325. data/examples/app/rapaste/public/css/brilliance_black.css +0 -605
  326. data/examples/app/rapaste/public/css/brilliance_dull.css +0 -599
  327. data/examples/app/rapaste/public/css/cobalt.css +0 -149
  328. data/examples/app/rapaste/public/css/dawn.css +0 -121
  329. data/examples/app/rapaste/public/css/display.css +0 -197
  330. data/examples/app/rapaste/public/css/eiffel.css +0 -121
  331. data/examples/app/rapaste/public/css/espresso_libre.css +0 -109
  332. data/examples/app/rapaste/public/css/idle.css +0 -62
  333. data/examples/app/rapaste/public/css/iplastic.css +0 -80
  334. data/examples/app/rapaste/public/css/lazy.css +0 -73
  335. data/examples/app/rapaste/public/css/mac_classic.css +0 -123
  336. data/examples/app/rapaste/public/css/magicwb_amiga.css +0 -104
  337. data/examples/app/rapaste/public/css/pastels_on_dark.css +0 -188
  338. data/examples/app/rapaste/public/css/slush_poppies.css +0 -85
  339. data/examples/app/rapaste/public/css/spacecadet.css +0 -51
  340. data/examples/app/rapaste/public/css/sunburst.css +0 -180
  341. data/examples/app/rapaste/public/css/twilight.css +0 -137
  342. data/examples/app/rapaste/public/css/zenburnesque.css +0 -91
  343. data/examples/app/rapaste/public/js/jquery.js +0 -11
  344. data/examples/app/rapaste/spec/rapaste.rb +0 -51
  345. data/examples/app/rapaste/start.rb +0 -25
  346. data/examples/app/rapaste/view/copy.xhtml +0 -10
  347. data/examples/app/rapaste/view/index.xhtml +0 -9
  348. data/examples/app/rapaste/view/layout.xhtml +0 -25
  349. data/examples/app/rapaste/view/list.xhtml +0 -29
  350. data/examples/app/rapaste/view/search.xhtml +0 -41
  351. data/examples/app/rapaste/view/view.xhtml +0 -40
  352. data/examples/app/todolist/README +0 -1
  353. data/examples/app/todolist/public/js/jquery.js +0 -1923
  354. data/examples/app/todolist/public/ramaze.png +0 -0
  355. data/examples/app/todolist/spec/todolist.rb +0 -132
  356. data/examples/app/todolist/src/controller/main.rb +0 -70
  357. data/examples/app/todolist/src/element/page.rb +0 -31
  358. data/examples/app/todolist/src/model.rb +0 -14
  359. data/examples/app/todolist/template/index.xhtml +0 -17
  360. data/examples/app/todolist/template/new.xhtml +0 -7
  361. data/examples/helpers/provide.rb +0 -23
  362. data/examples/misc/simple_auth.rb +0 -35
  363. data/examples/templates/template/external.amrita +0 -19
  364. data/examples/templates/template/external.xsl +0 -57
  365. data/examples/templates/template_amrita2.rb +0 -74
  366. data/examples/templates/template_xslt.rb +0 -49
  367. data/lib/proto/public/css/ramaze_error.css +0 -90
  368. data/lib/proto/view/error.xhtml +0 -64
  369. data/lib/ramaze/action.rb +0 -159
  370. data/lib/ramaze/action/render.rb +0 -192
  371. data/lib/ramaze/adapter.rb +0 -97
  372. data/lib/ramaze/adapter/base.rb +0 -128
  373. data/lib/ramaze/adapter/cgi.rb +0 -20
  374. data/lib/ramaze/adapter/ebb.rb +0 -18
  375. data/lib/ramaze/adapter/evented_mongrel.rb +0 -7
  376. data/lib/ramaze/adapter/fake.rb +0 -12
  377. data/lib/ramaze/adapter/fcgi.rb +0 -18
  378. data/lib/ramaze/adapter/lsws.rb +0 -19
  379. data/lib/ramaze/adapter/mongrel.rb +0 -21
  380. data/lib/ramaze/adapter/scgi.rb +0 -18
  381. data/lib/ramaze/adapter/swiftiplied_mongrel.rb +0 -7
  382. data/lib/ramaze/adapter/thin.rb +0 -17
  383. data/lib/ramaze/adapter/webrick.rb +0 -43
  384. data/lib/ramaze/cache/file.rb +0 -71
  385. data/lib/ramaze/cache/memcached.rb +0 -69
  386. data/lib/ramaze/cache/memory.rb +0 -6
  387. data/lib/ramaze/cache/yaml_store.rb +0 -68
  388. data/lib/ramaze/contrib.rb +0 -82
  389. data/lib/ramaze/contrib/file_cache.rb +0 -3
  390. data/lib/ramaze/contrib/gems.rb +0 -82
  391. data/lib/ramaze/contrib/sequel/fill.rb +0 -12
  392. data/lib/ramaze/contrib/sequel_cache.rb +0 -92
  393. data/lib/ramaze/controller/error.rb +0 -46
  394. data/lib/ramaze/controller/main.rb +0 -2
  395. data/lib/ramaze/controller/resolve.rb +0 -278
  396. data/lib/ramaze/current/request.rb +0 -231
  397. data/lib/ramaze/current/session.rb +0 -179
  398. data/lib/ramaze/current/session/flash.rb +0 -88
  399. data/lib/ramaze/current/session/hash.rb +0 -62
  400. data/lib/ramaze/dispatcher.rb +0 -145
  401. data/lib/ramaze/dispatcher/action.rb +0 -50
  402. data/lib/ramaze/dispatcher/directory.rb +0 -119
  403. data/lib/ramaze/dispatcher/error.rb +0 -108
  404. data/lib/ramaze/dispatcher/file.rb +0 -100
  405. data/lib/ramaze/error.rb +0 -24
  406. data/lib/ramaze/helper/aspect.rb +0 -106
  407. data/lib/ramaze/helper/cgi.rb +0 -39
  408. data/lib/ramaze/helper/redirect.rb +0 -100
  409. data/lib/ramaze/helper/rest.rb +0 -43
  410. data/lib/ramaze/helper/sendfile.rb +0 -16
  411. data/lib/ramaze/option.rb +0 -156
  412. data/lib/ramaze/option/dsl.rb +0 -45
  413. data/lib/ramaze/option/holder.rb +0 -131
  414. data/lib/ramaze/option/merger.rb +0 -108
  415. data/lib/ramaze/route.rb +0 -97
  416. data/lib/ramaze/snippets/object/traits.rb +0 -76
  417. data/lib/ramaze/snippets/ramaze/caller_info.rb +0 -30
  418. data/lib/ramaze/snippets/ramaze/caller_lines.rb +0 -51
  419. data/lib/ramaze/snippets/ramaze/state.rb +0 -86
  420. data/lib/ramaze/snippets/string/each.rb +0 -19
  421. data/lib/ramaze/spec/helper.rb +0 -135
  422. data/lib/ramaze/spec/helper/browser.rb +0 -88
  423. data/lib/ramaze/spec/helper/mock_http.rb +0 -64
  424. data/lib/ramaze/spec/helper/requester.rb +0 -63
  425. data/lib/ramaze/spec/helper/simple_http.rb +0 -434
  426. data/lib/ramaze/store/default.rb +0 -109
  427. data/lib/ramaze/template.rb +0 -87
  428. data/lib/ramaze/template/amrita2.rb +0 -49
  429. data/lib/ramaze/template/builder.rb +0 -28
  430. data/lib/ramaze/template/erubis.rb +0 -41
  431. data/lib/ramaze/template/ezamar.rb +0 -42
  432. data/lib/ramaze/template/ezamar/element.rb +0 -169
  433. data/lib/ramaze/template/ezamar/engine.rb +0 -76
  434. data/lib/ramaze/template/ezamar/morpher.rb +0 -135
  435. data/lib/ramaze/template/ezamar/render_partial.rb +0 -39
  436. data/lib/ramaze/template/ezamar/textpow.syntax +0 -34
  437. data/lib/ramaze/template/haml.rb +0 -37
  438. data/lib/ramaze/template/liquid.rb +0 -36
  439. data/lib/ramaze/template/markaby.rb +0 -52
  440. data/lib/ramaze/template/maruku.rb +0 -34
  441. data/lib/ramaze/template/nagoro.rb +0 -52
  442. data/lib/ramaze/template/none.rb +0 -14
  443. data/lib/ramaze/template/redcloth.rb +0 -25
  444. data/lib/ramaze/template/remarkably.rb +0 -38
  445. data/lib/ramaze/template/sass.rb +0 -38
  446. data/lib/ramaze/template/tagz.rb +0 -79
  447. data/lib/ramaze/template/tenjin.rb +0 -74
  448. data/lib/ramaze/template/xslt.rb +0 -100
  449. data/lib/ramaze/tool.rb +0 -9
  450. data/lib/ramaze/tool/daemonize.rb +0 -37
  451. data/lib/ramaze/tool/localize.rb +0 -202
  452. data/lib/ramaze/tool/mime.rb +0 -35
  453. data/lib/ramaze/tool/mime_types.yaml +0 -615
  454. data/lib/ramaze/tool/record.rb +0 -6
  455. data/lib/ramaze/trinity.rb +0 -16
  456. data/lib/vendor/bacon.rb +0 -323
  457. data/rake_tasks/conf.rake +0 -71
  458. data/rake_tasks/coverage.rake +0 -45
  459. data/rake_tasks/gem.rake +0 -74
  460. data/rake_tasks/maintenance.rake +0 -386
  461. data/rake_tasks/release.rake +0 -76
  462. data/rake_tasks/spec.rake +0 -61
  463. data/spec/contrib/profiling.rb +0 -29
  464. data/spec/contrib/sequel/fill.rb +0 -47
  465. data/spec/examples/simple_auth.rb +0 -32
  466. data/spec/examples/templates/template_amrita2.rb +0 -16
  467. data/spec/ramaze/action/basics.rb +0 -36
  468. data/spec/ramaze/action/cache.rb +0 -87
  469. data/spec/ramaze/action/file_cache.rb +0 -70
  470. data/spec/ramaze/action/layout.rb +0 -190
  471. data/spec/ramaze/adapter.rb +0 -49
  472. data/spec/ramaze/adapter/ebb.rb +0 -12
  473. data/spec/ramaze/adapter/mongrel.rb +0 -12
  474. data/spec/ramaze/adapter/record.rb +0 -31
  475. data/spec/ramaze/adapter/webrick.rb +0 -12
  476. data/spec/ramaze/cache.rb +0 -140
  477. data/spec/ramaze/controller.rb +0 -180
  478. data/spec/ramaze/current/request.rb +0 -30
  479. data/spec/ramaze/current/session.rb +0 -97
  480. data/spec/ramaze/dispatcher.rb +0 -31
  481. data/spec/ramaze/element.rb +0 -107
  482. data/spec/ramaze/helper/aspect.rb +0 -101
  483. data/spec/ramaze/helper/cgi.rb +0 -43
  484. data/spec/ramaze/helper/file.rb +0 -18
  485. data/spec/ramaze/helper/partial.rb +0 -88
  486. data/spec/ramaze/helper/redirect.rb +0 -112
  487. data/spec/ramaze/localize.rb +0 -89
  488. data/spec/ramaze/morpher.rb +0 -111
  489. data/spec/ramaze/public/error404.xhtml +0 -1
  490. data/spec/ramaze/request/ebb.rb +0 -9
  491. data/spec/ramaze/request/mongrel.rb +0 -9
  492. data/spec/ramaze/request/thin.rb +0 -9
  493. data/spec/ramaze/request/webrick.rb +0 -5
  494. data/spec/ramaze/rewrite.rb +0 -36
  495. data/spec/ramaze/route.rb +0 -131
  496. data/spec/ramaze/session.rb +0 -94
  497. data/spec/ramaze/store/default.rb +0 -71
  498. data/spec/ramaze/template.rb +0 -128
  499. data/spec/ramaze/template/amrita2.rb +0 -50
  500. data/spec/ramaze/template/amrita2/external.amrita +0 -6
  501. data/spec/ramaze/template/amrita2/sum.amrita +0 -1
  502. data/spec/ramaze/template/builder.rb +0 -51
  503. data/spec/ramaze/template/builder/external.rxml +0 -3
  504. data/spec/ramaze/template/erubis.rb +0 -41
  505. data/spec/ramaze/template/erubis/sum.rhtml +0 -1
  506. data/spec/ramaze/template/ezamar.rb +0 -63
  507. data/spec/ramaze/template/ezamar/another/long/action.zmr +0 -1
  508. data/spec/ramaze/template/ezamar/combined.zmr +0 -1
  509. data/spec/ramaze/template/ezamar/file_only.zmr +0 -1
  510. data/spec/ramaze/template/ezamar/index.zmr +0 -1
  511. data/spec/ramaze/template/ezamar/nested.zmr +0 -1
  512. data/spec/ramaze/template/ezamar/other__index.xhtml +0 -1
  513. data/spec/ramaze/template/ezamar/some__long__action.zmr +0 -1
  514. data/spec/ramaze/template/ezamar/sum.zmr +0 -1
  515. data/spec/ramaze/template/haml.rb +0 -66
  516. data/spec/ramaze/template/haml/index.haml +0 -5
  517. data/spec/ramaze/template/haml/locals.haml +0 -2
  518. data/spec/ramaze/template/haml/with_vars.haml +0 -4
  519. data/spec/ramaze/template/liquid.rb +0 -99
  520. data/spec/ramaze/template/liquid/index.liquid +0 -1
  521. data/spec/ramaze/template/liquid/products.liquid +0 -45
  522. data/spec/ramaze/template/markaby.rb +0 -61
  523. data/spec/ramaze/template/markaby/external.mab +0 -8
  524. data/spec/ramaze/template/markaby/sum.mab +0 -1
  525. data/spec/ramaze/template/nagoro.rb +0 -64
  526. data/spec/ramaze/template/nagoro/another/long/action.nag +0 -1
  527. data/spec/ramaze/template/nagoro/combined.nag +0 -1
  528. data/spec/ramaze/template/nagoro/file_only.nag +0 -1
  529. data/spec/ramaze/template/nagoro/index.nag +0 -1
  530. data/spec/ramaze/template/nagoro/nested.nag +0 -1
  531. data/spec/ramaze/template/nagoro/some__long__action.nag +0 -1
  532. data/spec/ramaze/template/nagoro/sum.nag +0 -1
  533. data/spec/ramaze/template/redcloth.rb +0 -38
  534. data/spec/ramaze/template/redcloth/external.redcloth +0 -1
  535. data/spec/ramaze/template/remarkably.rb +0 -58
  536. data/spec/ramaze/template/sass.rb +0 -70
  537. data/spec/ramaze/template/tenjin.rb +0 -47
  538. data/spec/ramaze/template/tenjin/external.tenjin +0 -1
  539. data/spec/ramaze/template/xslt.rb +0 -90
  540. data/spec/ramaze/template/xslt/concat_words.xsl +0 -16
  541. data/spec/ramaze/template/xslt/index.xsl +0 -14
  542. data/spec/ramaze/template/xslt/products.xsl +0 -32
  543. data/spec/ramaze/template/xslt/ruby_version.xsl +0 -14
  544. data/spec/snippets/ramaze/caller_info.rb +0 -39
  545. data/spec/snippets/ramaze/caller_lines.rb +0 -30
@@ -1,17 +0,0 @@
1
- require 'ramaze'
2
-
3
- class MainController < Ramaze::Controller
4
- engine :Amrita2
5
-
6
- def index
7
- @data = { :hello => "Hello, World!" }
8
- %q[
9
- <<html<
10
- <<body<
11
- <<%<
12
- <% 10.times do %>
13
- <span><%= $_[:hello] %></span>
14
- <% end %>
15
- ]
16
- end
17
- end
@@ -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
-
@@ -1,148 +0,0 @@
1
- Ramaze offers following features at the moment:
2
-
3
- * Adapters
4
-
5
- Ramaze takes advantage of the rack library to provide a common way of
6
- handling different ways to serve its content.
7
-
8
- Rack supports at the moment:
9
-
10
- * [Mongrel](http://mongrel.rubyforge.org/)
11
-
12
- Mongrel is a fast HTTP library and server for Ruby that is intended for
13
- hosting Ruby web applications of any kind using plain HTTP rather than
14
- FastCGI or SCGI.
15
-
16
- * [WEBrick](http://www.webrick.org/)
17
-
18
- WEBrick is a Ruby library program to build HTTP servers.
19
-
20
- * CGI
21
-
22
- CGI is the Common Gateway Interface and is one of the most basic ways
23
- to integrate into Webservers like Apache or Lighttpd.
24
-
25
- * FCGI
26
-
27
- Improvment of CGI as it doesn't start up a new connection to Ramaze on
28
- every request.
29
-
30
-
31
- * Templates
32
- * [Amrita2](http://amrita2.rubyforge.org/)
33
-
34
- Amrita2 is a xml/xhtml template library for Ruby. It makes html documents
35
- from a template and a model data.
36
-
37
- * [Erubis](http://rubyforge.org/projects/erubis)
38
-
39
- Erubis is a fast, secure, and very extensible implementation of eRuby.
40
-
41
- * [Haml](http://haml.hamptoncatlin.com/)
42
-
43
- Haml takes your gross, ugly templates and replaces them with veritable Haiku.
44
-
45
- * [Liquid](http://home.leetsoft.com/liquid)
46
-
47
- Liquid's syntax and parse model are inspired by Django templates, as well
48
- as PHP's smarty.
49
-
50
- * [Remarkably](http://rubyforge.org/projects/remarkably)
51
-
52
- Remarkably is a very tiny Markaby-like XML builder
53
-
54
- * [Markaby](http://code.whytheluckystiff.net/markaby/)
55
-
56
- Markaby means Markup as Ruby.
57
-
58
- * [Sass](http://haml.hamptoncatlin.com/docs/sass)
59
-
60
- Sass is a meta-language on top of CSS that‘s used to describe the style of
61
- a document cleanly and structurally, with more power than flat CSS allows.
62
-
63
- * Ezamar
64
-
65
- A simple homage to [Nitro](http://nitroproject.org)s templating, is shipped
66
- together with Ramaze.
67
-
68
- * Cache
69
- * Hash
70
- * YAML::Store
71
- * MemCache
72
-
73
- * Helper
74
- * Active by default
75
- * CGI
76
-
77
- Shortcuts for escape/unescape of the CGI module.
78
-
79
- * File
80
-
81
- Helps you serving files from your Controller.
82
-
83
- * Flash
84
-
85
- Store a couple of values for one request associated with a session.
86
-
87
- * Link
88
-
89
- Easier linking to the various parts of your applications Controllers and
90
- Actions.
91
-
92
- * Redirect
93
-
94
- Easy redirection.
95
-
96
- * Optional
97
- * Aspect
98
-
99
- Allows you to wrap different Actions on your Controller with code.
100
-
101
- * Auth
102
-
103
- Simple way to add basic authentication.
104
-
105
- * Cache
106
-
107
- Easy caching Actions and values.
108
-
109
- * Identity
110
-
111
- For ease of use of the OpenID authentication mechanism.
112
-
113
- * Inform
114
-
115
- Wrapping the functionality of Ramazes logging facilities.
116
-
117
- * Markaby
118
-
119
- Allows you to use Markaby in your Controller without having it as the
120
- default templating engine.
121
-
122
- * Nitroform
123
-
124
- Hooks up on nitros form builder to help you creating forms from Og
125
- objects.
126
-
127
- * OpenID
128
-
129
- Authentication via OpenID made easy.
130
-
131
- * Pager
132
-
133
- Displays a collection of entitities in multiple pages.
134
-
135
- * Partial
136
-
137
- Renders so-called partials.
138
-
139
- * Stack
140
-
141
- Allows you to use a call/answer mechanism for things like redirection to the
142
- site a user entered login-forms from.
143
-
144
- * Various
145
- * Sessions
146
- * Global configuration system
147
- * Simple request/response handling
148
- * Custom sophisticated Error-handling
@@ -1,5 +0,0 @@
1
- For help you can:
2
-
3
- - Visit us in the channel #ramaze on irc.freenode.net
4
-
5
- - Join the Mailinglist at http://ramaze.rubyforge.org
@@ -1,18 +0,0 @@
1
- Now that you have a vague idea of what you're about to get into you might just
2
- want to get a way to get up and running ASAP.
3
- Please read below for more information about installation.
4
-
5
- Depending on what you are planning to do you can either just go and start
6
- reading the source or directly get some hands-on experience by trying some of
7
- the examples.
8
- Most things will require dependencies though. The basic functionality is
9
- provided by the WEBrick adapter and the Template::Ramaze, which just run out
10
- of the box. For more features you will have to install some templating-engines
11
- and mongrel (_very_ recommended). Ramaze will inform you when it needs further
12
- dependencies, so just go and try some things.
13
-
14
- Some places to get started are:
15
- - Read the documentation.
16
- - Run and read the test cases.
17
- - Look at the examples and run/modify them.
18
-
@@ -1,92 +0,0 @@
1
- * via RubyGems
2
-
3
- The simplest way of installing Ramaze is via the gem.
4
-
5
- [Rubygems](http://rubygems.org) is the package manager for ruby apps and
6
- libraries and provides you with the last tagged version of Ramaze.
7
-
8
- $ gem install ramaze
9
-
10
- Versions are made as we see fit and get an announcment out (usually that's
11
- the major obstacle as there is a lot to announce).
12
-
13
- If you want to install the nightly gem of Ramaze you can do this with:
14
-
15
- $ gem install ramaze --source=http://gem.ramaze.net/
16
-
17
- We also use the gem building process on github, which locates gems at
18
- http://gems.github.com - so you can get a version from there as well:
19
-
20
- $ gem install manveru-ramaze --source=http://gems.github.com/
21
-
22
- * via git
23
-
24
- To get the latest and sweetest, you can just pull from the repository and run
25
- Ramaze that way.
26
-
27
- $ git clone git://github.com/manveru/ramaze.git
28
-
29
- Please read the `man git` or `git help` for more information about updating
30
- and creating your own patches.
31
- This is at the moment the premier way to use Ramaze, since it is the way I
32
- use it.
33
-
34
- Some hints for the usage of Git.
35
-
36
- * use `require 'ramaze'` from everywhere
37
-
38
- Simply add the path to your repository to the RUBYLIB environment variable.
39
- If you are using bash you can simply put following line into your .bashrc:
40
-
41
- $ export RUBYLIB="$HOME/path/to/repo/lib/"
42
-
43
- Of course you should put the real path instead, you can also add multiple
44
- paths, or create your personal `site_ruby`:
45
-
46
- $ export RUBYLIB="$HOME/ruby/ramaze/lib:$HOME/.site_ruby:$HOME/ruby/bacon/lib"
47
-
48
- * use `require 'ramaze'` systemwide from everywhere
49
-
50
- add a file to your `site_ruby` directory named 'ramaze.rb'
51
- the content should be: `require '/path/to/git/repo/ramaze/lib/ramaze'`
52
-
53
- * Pull the latest version
54
-
55
- $ git pull
56
-
57
- * Reset the repo to original state (if you screw up something)
58
-
59
- $ git reset --hard # resets the whole repo
60
-
61
- * Revert changes to (for example) lib/ramaze.rb only
62
-
63
- $ git checkout master lib/ramaze.rb
64
-
65
- * Add and commit all changes.
66
-
67
- $ git commit -a
68
-
69
- * Adding only specific changes.
70
-
71
- # Add hunks you want to commit to the staging area (index)
72
- $ git add -p
73
-
74
- * Commit the changes into the history of your repository
75
-
76
- # Create a commit from the hunks added
77
- $ git commit
78
-
79
- * output your patches into a bundle ready to be mailed (compress it before
80
- sending to make sure it arrives in the way you sent it)
81
-
82
- At the end of this process you will have a tar.bz2 for all your changes
83
- that you can mail to ramaze@googlegroups.com
84
-
85
- # make sure you are on latest revision to avoid conflicts
86
- $ git pull
87
-
88
- # create 00xx-blah.patch files against the remote repo
89
- $ git format-patch origin/HEAD
90
-
91
- # From here on you can use either git-send-email or go the manual route
92
- $ tar -cjf ramaze_bundle.tar.bz2 *.patch
@@ -1,18 +0,0 @@
1
- Ramaze is a very simple and straight-forward web-framework.
2
- The philosophy of it could be expressed in a mix of KISS and POLS, trying to
3
- make simple things simple and complex things possible.
4
-
5
- This of course is nothing new to anyone who knows some ruby, but is often
6
- forgotten in a chase for new functionality and features. Ramaze only tries to
7
- give you the ultimate tools, but you have to use them yourself to achieve
8
- perfect custom-tailored results.
9
-
10
- Another one of the goals during development of Ramaze was to make every part as
11
- modular and therefor reuasable as possible, not only to provide a basic
12
- understanding after the first glance, but also to make it as simple as possible
13
- to reuse parts of the code.
14
-
15
- The original purpose of Ramaze was to act as a kind of framework to build
16
- web-frameworks, this was made obsolete by the introduction of rack, which
17
- provides this feature at a better level without trying to enforce any structural
18
- layout of the resulting framework.
@@ -1,56 +0,0 @@
1
- There are some basic principles that Ramaze tries to follow:
2
-
3
- * KISS (Keep It Super Simple)
4
-
5
- Ramaze doesn't introduce any major change of paradigm for everyone familiar
6
- with Ruby and the basics of Web-development.
7
-
8
- * POLS (Principle Of Least Surprise)
9
-
10
- Ramaze tries to be intuitive and easy to learn. Most functionality is built in
11
- a way to help, not to obfuscate or confuse.
12
-
13
- * Modular design
14
-
15
- Use what you want and how you want it.
16
-
17
- Through Ruby Ramaze provides one of the most powerful programming-languages
18
- available, giving you full control over your system.
19
-
20
- Even the most essential parts of Ramaze can easily be replaced and/or modified
21
- without losing the advantage of the whole framework.
22
-
23
- * Minimal dependencies
24
-
25
- Nothing besides Ruby is required for the basic features.
26
-
27
- Of course you can take advantage of several wonderful libraries, but Ramaze is
28
- built in a way to be run on any basic setup.
29
-
30
- * Documentation
31
-
32
- Document everything, classes, modules, methods, configuration...
33
-
34
- Through 100% documentation Ramaze gives the developer easy and solid
35
- understanding of the underlying concepts and functionality.
36
-
37
- * Open development
38
-
39
- Everyone is welcome to contribute to Ramaze in the easiest way possible. The
40
- repository is open for patches passing the Test-suite.
41
-
42
- * Examples
43
-
44
- Everyone learns different, some only read the source, others browse
45
- documentation, but everyone loves examples for a quick and painless start.
46
-
47
- Ramaze addresses this need and offers a wide variety of examples of usage,
48
- basic functionality, project-layout and more advanced applications.
49
-
50
- * Fully BDD (Behaviour Driven Design)
51
-
52
- Ramaze has a very complete set of so-called specifications built by RSpec.
53
- These specs define the way Ramaze has to behave.
54
-
55
- The specs are checked every time a new patch is pushed into the repository,
56
- deciding whether the changes the patch applies are valid and don't break the framework.
@@ -1,59 +0,0 @@
1
- There is a large number of people who made Ramaze possibe by their ongoing
2
- efforts in the world of open source and by encouraging and helping me.
3
-
4
- This list is by no means a full listing of all these people, but I try to
5
- get a good coverage despite that.
6
-
7
- I would like to thank:
8
-
9
- * Yukihiro Matsumoto a.k.a matz
10
-
11
- For giving the world Ruby and bringing fun back into programming.
12
-
13
- * Zed Shawn a.k.a. zedas
14
-
15
- For developing Mongrel, Ramaze started out as a simple Hello World based
16
- on that awesome server.
17
-
18
- * Christian Neukirchen a.k.a chris2
19
-
20
- For building rack, which is just what the numerous web-developers had
21
- anticipated and which will, with no doubt, change the world.
22
-
23
- * Pistos
24
-
25
- For continious encouragment and building the first real webpage on Ramaze.
26
- His bugreports were invaluable.
27
-
28
- * Jim Weirich
29
-
30
- For Rake, which lifts off a lot of tasks from the shoulders of every
31
- developer who uses it.
32
-
33
- * Thomas Sawyer a.k.a Trans
34
-
35
- Dragging me deep into the rabbit-hole and showing me how awesome Ruby
36
- truely is through his work on facets, ratchets and tons of other projects.
37
-
38
- * George Moschovitis a.k.a gmosx
39
-
40
- For his tremendous efforts in the Nitro/Og framework, which is a source of
41
- steady inspiration for Ramaze and brought me to Ruby in the first place.
42
-
43
- * Rob Levin a.k.a. lilo
44
-
45
- He founded the most excellent Freenode IRC-network, where the most important
46
- channels for rubyists are located (as is #ramaze).
47
- May he rest in peace.
48
-
49
- * The guys (and gals) in the various channels on Freenode
50
-
51
- As the people are way too many to be listed, here the channels that i call
52
- my online home.
53
- All the people in there deserve special thanks for getting me hooked to Ruby
54
- and providing their help in a friendly and patient manner.
55
-
56
- * #nitro
57
- * #ruby-de
58
- * #ruby-lang
59
- * #rubyforce