clivecrous-ramaze 0.3.9.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (548) hide show
  1. data/README.markdown +444 -0
  2. data/Rakefile +197 -0
  3. data/bin/ramaze +60 -0
  4. data/doc/AUTHORS +30 -0
  5. data/doc/CHANGELOG +5757 -0
  6. data/doc/COPYING +56 -0
  7. data/doc/FAQ +92 -0
  8. data/doc/GPL +339 -0
  9. data/doc/INSTALL +34 -0
  10. data/doc/LEGAL +26 -0
  11. data/doc/ProjectInfo +53 -0
  12. data/doc/TODO +29 -0
  13. data/doc/meta/announcement.txt +126 -0
  14. data/doc/meta/configuration.txt +162 -0
  15. data/doc/meta/internals.txt +278 -0
  16. data/doc/meta/users.kml +64 -0
  17. data/doc/migrate/1110_to_1111.txt +131 -0
  18. data/doc/readme_chunks/appendix.txt +10 -0
  19. data/doc/readme_chunks/examples.txt +38 -0
  20. data/doc/readme_chunks/features.txt +148 -0
  21. data/doc/readme_chunks/getting_help.txt +5 -0
  22. data/doc/readme_chunks/getting_started.txt +18 -0
  23. data/doc/readme_chunks/installing.txt +55 -0
  24. data/doc/readme_chunks/introduction.txt +18 -0
  25. data/doc/readme_chunks/principles.txt +56 -0
  26. data/doc/readme_chunks/thanks.txt +59 -0
  27. data/doc/tutorial/todolist.html +816 -0
  28. data/doc/tutorial/todolist.mkd +736 -0
  29. data/examples/auth/auth.rb +54 -0
  30. data/examples/auth/template/layout.haml +20 -0
  31. data/examples/auth/template/login.haml +16 -0
  32. data/examples/blog/README +3 -0
  33. data/examples/blog/controller/main.rb +29 -0
  34. data/examples/blog/model/entry.rb +30 -0
  35. data/examples/blog/public/styles/blog.css +132 -0
  36. data/examples/blog/spec/blog.rb +87 -0
  37. data/examples/blog/start.rb +7 -0
  38. data/examples/blog/view/edit.xhtml +17 -0
  39. data/examples/blog/view/index.xhtml +17 -0
  40. data/examples/blog/view/layout.xhtml +11 -0
  41. data/examples/blog/view/new.xhtml +16 -0
  42. data/examples/caching.rb +31 -0
  43. data/examples/chat/model/history.rb +36 -0
  44. data/examples/chat/model/message.rb +7 -0
  45. data/examples/chat/public/js/jquery.js +3436 -0
  46. data/examples/chat/start.rb +40 -0
  47. data/examples/chat/view/chat.xhtml +29 -0
  48. data/examples/chat/view/index.xhtml +6 -0
  49. data/examples/chat/view/layout.xhtml +12 -0
  50. data/examples/css.rb +37 -0
  51. data/examples/element.rb +45 -0
  52. data/examples/facebook.rb +159 -0
  53. data/examples/hello.rb +15 -0
  54. data/examples/httpdigest.rb +50 -0
  55. data/examples/identity.rb +18 -0
  56. data/examples/layout.rb +28 -0
  57. data/examples/linking.rb +29 -0
  58. data/examples/localization/start.rb +35 -0
  59. data/examples/memleak_detector.rb +32 -0
  60. data/examples/nitro_form.rb +23 -0
  61. data/examples/provide.rb +23 -0
  62. data/examples/ramaise.rb +132 -0
  63. data/examples/rammit/spec/rammit.rb +31 -0
  64. data/examples/rammit/src/controller/main.rb +3 -0
  65. data/examples/rammit/src/controller/page.rb +16 -0
  66. data/examples/rammit/src/model.rb +33 -0
  67. data/examples/rammit/start.rb +8 -0
  68. data/examples/rammit/template/index.xhtml +14 -0
  69. data/examples/rammit/template/page/view.xhtml +4 -0
  70. data/examples/rapaste/Rakefile +35 -0
  71. data/examples/rapaste/controller/paste.rb +94 -0
  72. data/examples/rapaste/model/paste.rb +55 -0
  73. data/examples/rapaste/public/css/active4d.css +114 -0
  74. data/examples/rapaste/public/css/all_hallows_eve.css +72 -0
  75. data/examples/rapaste/public/css/amy.css +147 -0
  76. data/examples/rapaste/public/css/blackboard.css +88 -0
  77. data/examples/rapaste/public/css/brilliance_black.css +605 -0
  78. data/examples/rapaste/public/css/brilliance_dull.css +599 -0
  79. data/examples/rapaste/public/css/cobalt.css +149 -0
  80. data/examples/rapaste/public/css/dawn.css +121 -0
  81. data/examples/rapaste/public/css/display.css +197 -0
  82. data/examples/rapaste/public/css/eiffel.css +121 -0
  83. data/examples/rapaste/public/css/espresso_libre.css +109 -0
  84. data/examples/rapaste/public/css/idle.css +62 -0
  85. data/examples/rapaste/public/css/iplastic.css +80 -0
  86. data/examples/rapaste/public/css/lazy.css +73 -0
  87. data/examples/rapaste/public/css/mac_classic.css +123 -0
  88. data/examples/rapaste/public/css/magicwb_amiga.css +104 -0
  89. data/examples/rapaste/public/css/pastels_on_dark.css +188 -0
  90. data/examples/rapaste/public/css/slush_poppies.css +85 -0
  91. data/examples/rapaste/public/css/spacecadet.css +51 -0
  92. data/examples/rapaste/public/css/sunburst.css +180 -0
  93. data/examples/rapaste/public/css/twilight.css +137 -0
  94. data/examples/rapaste/public/css/zenburnesque.css +91 -0
  95. data/examples/rapaste/public/js/jquery.js +11 -0
  96. data/examples/rapaste/spec/rapaste.rb +49 -0
  97. data/examples/rapaste/start.rb +24 -0
  98. data/examples/rapaste/view/copy.xhtml +10 -0
  99. data/examples/rapaste/view/index.xhtml +9 -0
  100. data/examples/rapaste/view/layout.xhtml +25 -0
  101. data/examples/rapaste/view/list.xhtml +29 -0
  102. data/examples/rapaste/view/search.xhtml +41 -0
  103. data/examples/rapaste/view/view.xhtml +37 -0
  104. data/examples/rapp.rb +45 -0
  105. data/examples/rest.rb +28 -0
  106. data/examples/sequel_form.rb +24 -0
  107. data/examples/sequel_scaffolding.rb +24 -0
  108. data/examples/simple.rb +56 -0
  109. data/examples/simple_auth.rb +23 -0
  110. data/examples/sourceview/public/coderay.css +104 -0
  111. data/examples/sourceview/public/images/file.gif +0 -0
  112. data/examples/sourceview/public/images/folder.gif +0 -0
  113. data/examples/sourceview/public/images/tv-collapsable-last.gif +0 -0
  114. data/examples/sourceview/public/images/tv-collapsable.gif +0 -0
  115. data/examples/sourceview/public/images/tv-expandable-last.gif +0 -0
  116. data/examples/sourceview/public/images/tv-expandable.gif +0 -0
  117. data/examples/sourceview/public/images/tv-item-last.gif +0 -0
  118. data/examples/sourceview/public/images/tv-item.gif +0 -0
  119. data/examples/sourceview/public/jquery.js +11 -0
  120. data/examples/sourceview/public/jquery.treeview.css +48 -0
  121. data/examples/sourceview/public/jquery.treeview.js +223 -0
  122. data/examples/sourceview/public/sourceview.js +52 -0
  123. data/examples/sourceview/sourceview.rb +77 -0
  124. data/examples/sourceview/template/index.haml +59 -0
  125. data/examples/templates/template/external.amrita +19 -0
  126. data/examples/templates/template/external.haml +22 -0
  127. data/examples/templates/template/external.liquid +28 -0
  128. data/examples/templates/template/external.mab +30 -0
  129. data/examples/templates/template/external.nag +28 -0
  130. data/examples/templates/template/external.redcloth +19 -0
  131. data/examples/templates/template/external.rem +30 -0
  132. data/examples/templates/template/external.rhtml +28 -0
  133. data/examples/templates/template/external.tenjin +28 -0
  134. data/examples/templates/template/external.xsl +57 -0
  135. data/examples/templates/template/external.zmr +28 -0
  136. data/examples/templates/template_amrita2.rb +74 -0
  137. data/examples/templates/template_erubis.rb +53 -0
  138. data/examples/templates/template_ezamar.rb +50 -0
  139. data/examples/templates/template_haml.rb +50 -0
  140. data/examples/templates/template_liquid.rb +65 -0
  141. data/examples/templates/template_markaby.rb +58 -0
  142. data/examples/templates/template_nagoro.rb +51 -0
  143. data/examples/templates/template_redcloth.rb +59 -0
  144. data/examples/templates/template_remarkably.rb +55 -0
  145. data/examples/templates/template_tenjin.rb +53 -0
  146. data/examples/templates/template_xslt.rb +49 -0
  147. data/examples/todolist/README +1 -0
  148. data/examples/todolist/public/favicon.ico +0 -0
  149. data/examples/todolist/public/js/jquery.js +1923 -0
  150. data/examples/todolist/public/ramaze.png +0 -0
  151. data/examples/todolist/spec/todolist.rb +132 -0
  152. data/examples/todolist/src/controller/main.rb +70 -0
  153. data/examples/todolist/src/element/page.rb +31 -0
  154. data/examples/todolist/src/model.rb +14 -0
  155. data/examples/todolist/start.rb +11 -0
  156. data/examples/todolist/template/index.xhtml +17 -0
  157. data/examples/todolist/template/new.xhtml +7 -0
  158. data/examples/upload/start.rb +19 -0
  159. data/examples/upload/view/index.xhtml +25 -0
  160. data/examples/whywiki/spec/whywiki.rb +58 -0
  161. data/examples/whywiki/start.rb +46 -0
  162. data/examples/whywiki/template/edit.xhtml +14 -0
  163. data/examples/whywiki/template/show.xhtml +18 -0
  164. data/examples/wikore/spec/wikore.rb +111 -0
  165. data/examples/wikore/src/controller.rb +80 -0
  166. data/examples/wikore/src/model.rb +52 -0
  167. data/examples/wikore/start.rb +9 -0
  168. data/examples/wikore/template/index.xhtml +8 -0
  169. data/examples/wiktacular/README +2 -0
  170. data/examples/wiktacular/mkd/link/2007-07-20_19-45-51.mkd +1 -0
  171. data/examples/wiktacular/mkd/link/current.mkd +1 -0
  172. data/examples/wiktacular/mkd/main/2007-07-20_16-31-33.mkd +1 -0
  173. data/examples/wiktacular/mkd/main/2007-07-20_19-21-12.mkd +1 -0
  174. data/examples/wiktacular/mkd/main/2007-07-20_19-23-10.mkd +2 -0
  175. data/examples/wiktacular/mkd/main/2007-07-20_19-45-07.mkd +2 -0
  176. data/examples/wiktacular/mkd/main/current.mkd +2 -0
  177. data/examples/wiktacular/mkd/markdown/current.mkd +3 -0
  178. data/examples/wiktacular/mkd/testing/2007-07-20_16-43-46.mkd +2 -0
  179. data/examples/wiktacular/mkd/testing/2007-07-20_19-43-50.mkd +3 -0
  180. data/examples/wiktacular/mkd/testing/2007-07-21_18-46-01.mkd +11 -0
  181. data/examples/wiktacular/mkd/testing/2007-07-21_18-46-32.mkd +13 -0
  182. data/examples/wiktacular/mkd/testing/2007-07-21_18-47-08.mkd +17 -0
  183. data/examples/wiktacular/mkd/testing/2007-07-21_18-47-54.mkd +17 -0
  184. data/examples/wiktacular/mkd/testing/current.mkd +17 -0
  185. data/examples/wiktacular/public/favicon.ico +0 -0
  186. data/examples/wiktacular/public/screen.css +72 -0
  187. data/examples/wiktacular/spec/wiktacular.rb +158 -0
  188. data/examples/wiktacular/src/controller.rb +55 -0
  189. data/examples/wiktacular/src/model.rb +102 -0
  190. data/examples/wiktacular/start.rb +8 -0
  191. data/examples/wiktacular/template/edit.xhtml +6 -0
  192. data/examples/wiktacular/template/html_layout.xhtml +27 -0
  193. data/examples/wiktacular/template/index.xhtml +9 -0
  194. data/examples/wiktacular/template/new.xhtml +6 -0
  195. data/lib/proto/controller/main.rb +22 -0
  196. data/lib/proto/public/css/ramaze_error.css +90 -0
  197. data/lib/proto/public/dispatch.fcgi +11 -0
  198. data/lib/proto/public/favicon.ico +0 -0
  199. data/lib/proto/public/js/jquery.js +3436 -0
  200. data/lib/proto/public/ramaze.png +0 -0
  201. data/lib/proto/spec/main.rb +24 -0
  202. data/lib/proto/start.rb +8 -0
  203. data/lib/proto/start.ru +16 -0
  204. data/lib/proto/view/error.xhtml +64 -0
  205. data/lib/proto/view/index.xhtml +34 -0
  206. data/lib/proto/view/page.xhtml +27 -0
  207. data/lib/ramaze.rb +108 -0
  208. data/lib/ramaze/action.rb +153 -0
  209. data/lib/ramaze/action/render.rb +191 -0
  210. data/lib/ramaze/adapter.rb +101 -0
  211. data/lib/ramaze/adapter/base.rb +103 -0
  212. data/lib/ramaze/adapter/cgi.rb +24 -0
  213. data/lib/ramaze/adapter/ebb.rb +22 -0
  214. data/lib/ramaze/adapter/evented_mongrel.rb +7 -0
  215. data/lib/ramaze/adapter/fcgi.rb +24 -0
  216. data/lib/ramaze/adapter/lsws.rb +23 -0
  217. data/lib/ramaze/adapter/mongrel.rb +25 -0
  218. data/lib/ramaze/adapter/scgi.rb +22 -0
  219. data/lib/ramaze/adapter/swiftiplied_mongrel.rb +7 -0
  220. data/lib/ramaze/adapter/thin.rb +22 -0
  221. data/lib/ramaze/adapter/webrick.rb +52 -0
  222. data/lib/ramaze/cache.rb +115 -0
  223. data/lib/ramaze/cache/memcached.rb +71 -0
  224. data/lib/ramaze/cache/memory.rb +6 -0
  225. data/lib/ramaze/cache/yaml_store.rb +68 -0
  226. data/lib/ramaze/contrib.rb +82 -0
  227. data/lib/ramaze/contrib/auto_params.rb +135 -0
  228. data/lib/ramaze/contrib/auto_params/get_args.rb +57 -0
  229. data/lib/ramaze/contrib/email.rb +84 -0
  230. data/lib/ramaze/contrib/facebook.rb +23 -0
  231. data/lib/ramaze/contrib/facebook/facebook.rb +171 -0
  232. data/lib/ramaze/contrib/file_cache.rb +65 -0
  233. data/lib/ramaze/contrib/gems.rb +65 -0
  234. data/lib/ramaze/contrib/gettext.rb +113 -0
  235. data/lib/ramaze/contrib/gettext/mo.rb +155 -0
  236. data/lib/ramaze/contrib/gettext/parser.rb +46 -0
  237. data/lib/ramaze/contrib/gettext/po.rb +109 -0
  238. data/lib/ramaze/contrib/gzip_filter.rb +56 -0
  239. data/lib/ramaze/contrib/profiling.rb +36 -0
  240. data/lib/ramaze/contrib/rest.rb +14 -0
  241. data/lib/ramaze/contrib/sequel/fill.rb +12 -0
  242. data/lib/ramaze/contrib/sequel_cache.rb +92 -0
  243. data/lib/ramaze/controller.rb +281 -0
  244. data/lib/ramaze/controller/error.rb +46 -0
  245. data/lib/ramaze/controller/main.rb +2 -0
  246. data/lib/ramaze/controller/resolve.rb +252 -0
  247. data/lib/ramaze/current.rb +70 -0
  248. data/lib/ramaze/current/request.rb +204 -0
  249. data/lib/ramaze/current/response.rb +27 -0
  250. data/lib/ramaze/current/session.rb +181 -0
  251. data/lib/ramaze/current/session/flash.rb +79 -0
  252. data/lib/ramaze/current/session/hash.rb +66 -0
  253. data/lib/ramaze/dispatcher.rb +137 -0
  254. data/lib/ramaze/dispatcher/action.rb +41 -0
  255. data/lib/ramaze/dispatcher/directory.rb +119 -0
  256. data/lib/ramaze/dispatcher/error.rb +108 -0
  257. data/lib/ramaze/dispatcher/file.rb +95 -0
  258. data/lib/ramaze/error.rb +24 -0
  259. data/lib/ramaze/gestalt.rb +129 -0
  260. data/lib/ramaze/helper.rb +78 -0
  261. data/lib/ramaze/helper/aspect.rb +110 -0
  262. data/lib/ramaze/helper/auth.rb +125 -0
  263. data/lib/ramaze/helper/cache.rb +140 -0
  264. data/lib/ramaze/helper/cgi.rb +47 -0
  265. data/lib/ramaze/helper/flash.rb +59 -0
  266. data/lib/ramaze/helper/form.rb +281 -0
  267. data/lib/ramaze/helper/formatting.rb +118 -0
  268. data/lib/ramaze/helper/httpdigest.rb +49 -0
  269. data/lib/ramaze/helper/identity.rb +105 -0
  270. data/lib/ramaze/helper/link.rb +124 -0
  271. data/lib/ramaze/helper/markaby.rb +31 -0
  272. data/lib/ramaze/helper/maruku.rb +7 -0
  273. data/lib/ramaze/helper/nitroform.rb +14 -0
  274. data/lib/ramaze/helper/pager.rb +366 -0
  275. data/lib/ramaze/helper/partial.rb +96 -0
  276. data/lib/ramaze/helper/redirect.rb +82 -0
  277. data/lib/ramaze/helper/rest.rb +43 -0
  278. data/lib/ramaze/helper/sendfile.rb +16 -0
  279. data/lib/ramaze/helper/sequel.rb +55 -0
  280. data/lib/ramaze/helper/stack.rb +72 -0
  281. data/lib/ramaze/helper/tagz.rb +19 -0
  282. data/lib/ramaze/helper/user.rb +78 -0
  283. data/lib/ramaze/log.rb +27 -0
  284. data/lib/ramaze/log/analogger.rb +37 -0
  285. data/lib/ramaze/log/growl.rb +35 -0
  286. data/lib/ramaze/log/hub.rb +38 -0
  287. data/lib/ramaze/log/informer.rb +125 -0
  288. data/lib/ramaze/log/knotify.rb +25 -0
  289. data/lib/ramaze/log/logger.rb +23 -0
  290. data/lib/ramaze/log/logging.rb +88 -0
  291. data/lib/ramaze/log/syslog.rb +36 -0
  292. data/lib/ramaze/log/xosd.rb +88 -0
  293. data/lib/ramaze/option.rb +153 -0
  294. data/lib/ramaze/option/dsl.rb +45 -0
  295. data/lib/ramaze/option/holder.rb +143 -0
  296. data/lib/ramaze/option/merger.rb +106 -0
  297. data/lib/ramaze/route.rb +97 -0
  298. data/lib/ramaze/setup.rb +50 -0
  299. data/lib/ramaze/snippets.rb +9 -0
  300. data/lib/ramaze/snippets/array/put_within.rb +37 -0
  301. data/lib/ramaze/snippets/binding/locals.rb +13 -0
  302. data/lib/ramaze/snippets/blankslate.rb +7 -0
  303. data/lib/ramaze/snippets/dictionary.rb +504 -0
  304. data/lib/ramaze/snippets/divide.rb +20 -0
  305. data/lib/ramaze/snippets/kernel/__dir__.rb +23 -0
  306. data/lib/ramaze/snippets/kernel/acquire.rb +34 -0
  307. data/lib/ramaze/snippets/kernel/constant.rb +26 -0
  308. data/lib/ramaze/snippets/kernel/pretty_inspect.rb +15 -0
  309. data/lib/ramaze/snippets/metaid.rb +17 -0
  310. data/lib/ramaze/snippets/numeric/filesize_format.rb +25 -0
  311. data/lib/ramaze/snippets/object/instance_variable_defined.rb +8 -0
  312. data/lib/ramaze/snippets/object/pretty.rb +6 -0
  313. data/lib/ramaze/snippets/object/scope.rb +11 -0
  314. data/lib/ramaze/snippets/object/thread_accessor.rb +5 -0
  315. data/lib/ramaze/snippets/object/traits.rb +76 -0
  316. data/lib/ramaze/snippets/ordered_set.rb +40 -0
  317. data/lib/ramaze/snippets/proc/locals.rb +11 -0
  318. data/lib/ramaze/snippets/ramaze/caller_info.rb +30 -0
  319. data/lib/ramaze/snippets/ramaze/caller_lines.rb +51 -0
  320. data/lib/ramaze/snippets/ramaze/deprecated.rb +7 -0
  321. data/lib/ramaze/snippets/ramaze/thread_accessor.rb +58 -0
  322. data/lib/ramaze/snippets/string/camel_case.rb +16 -0
  323. data/lib/ramaze/snippets/string/color.rb +27 -0
  324. data/lib/ramaze/snippets/string/each.rb +8 -0
  325. data/lib/ramaze/snippets/string/esc.rb +29 -0
  326. data/lib/ramaze/snippets/string/ord.rb +15 -0
  327. data/lib/ramaze/snippets/string/snake_case.rb +15 -0
  328. data/lib/ramaze/snippets/string/start_with.rb +8 -0
  329. data/lib/ramaze/snippets/string/unindent.rb +20 -0
  330. data/lib/ramaze/snippets/struct/fill.rb +23 -0
  331. data/lib/ramaze/snippets/struct/values_at.rb +24 -0
  332. data/lib/ramaze/snippets/symbol/to_proc.rb +24 -0
  333. data/lib/ramaze/snippets/thread/into.rb +18 -0
  334. data/lib/ramaze/sourcereload.rb +169 -0
  335. data/lib/ramaze/spec.rb +1 -0
  336. data/lib/ramaze/spec/helper.rb +131 -0
  337. data/lib/ramaze/spec/helper/bacon.rb +7 -0
  338. data/lib/ramaze/spec/helper/browser.rb +88 -0
  339. data/lib/ramaze/spec/helper/mock_http.rb +69 -0
  340. data/lib/ramaze/spec/helper/pretty_output.rb +82 -0
  341. data/lib/ramaze/spec/helper/requester.rb +63 -0
  342. data/lib/ramaze/spec/helper/simple_http.rb +434 -0
  343. data/lib/ramaze/spec/helper/snippets.rb +6 -0
  344. data/lib/ramaze/store/default.rb +109 -0
  345. data/lib/ramaze/template.rb +84 -0
  346. data/lib/ramaze/template/amrita2.rb +45 -0
  347. data/lib/ramaze/template/builder.rb +28 -0
  348. data/lib/ramaze/template/erubis.rb +41 -0
  349. data/lib/ramaze/template/ezamar.rb +42 -0
  350. data/lib/ramaze/template/ezamar/element.rb +169 -0
  351. data/lib/ramaze/template/ezamar/engine.rb +76 -0
  352. data/lib/ramaze/template/ezamar/morpher.rb +135 -0
  353. data/lib/ramaze/template/ezamar/render_partial.rb +31 -0
  354. data/lib/ramaze/template/haml.rb +37 -0
  355. data/lib/ramaze/template/liquid.rb +36 -0
  356. data/lib/ramaze/template/markaby.rb +52 -0
  357. data/lib/ramaze/template/nagoro.rb +52 -0
  358. data/lib/ramaze/template/none.rb +14 -0
  359. data/lib/ramaze/template/redcloth.rb +25 -0
  360. data/lib/ramaze/template/remarkably.rb +38 -0
  361. data/lib/ramaze/template/sass.rb +37 -0
  362. data/lib/ramaze/template/tagz.rb +79 -0
  363. data/lib/ramaze/template/tenjin.rb +74 -0
  364. data/lib/ramaze/template/xslt.rb +100 -0
  365. data/lib/ramaze/tool.rb +9 -0
  366. data/lib/ramaze/tool/create.rb +74 -0
  367. data/lib/ramaze/tool/localize.rb +198 -0
  368. data/lib/ramaze/tool/mime.rb +25 -0
  369. data/lib/ramaze/tool/mime_types.yaml +615 -0
  370. data/lib/ramaze/tool/record.rb +6 -0
  371. data/lib/ramaze/trinity.rb +13 -0
  372. data/lib/ramaze/version.rb +14 -0
  373. data/lib/vendor/bacon.rb +323 -0
  374. data/rake_tasks/conf.rake +83 -0
  375. data/rake_tasks/coverage.rake +46 -0
  376. data/rake_tasks/darcs.rake +14 -0
  377. data/rake_tasks/gem.rake +85 -0
  378. data/rake_tasks/git.rake +4 -0
  379. data/rake_tasks/maintenance.rake +436 -0
  380. data/rake_tasks/spec.rake +62 -0
  381. data/spec/contrib/auto_params.rb +121 -0
  382. data/spec/contrib/profiling.rb +29 -0
  383. data/spec/contrib/sequel/fill.rb +47 -0
  384. data/spec/examples/caching.rb +19 -0
  385. data/spec/examples/css.rb +15 -0
  386. data/spec/examples/element.rb +15 -0
  387. data/spec/examples/hello.rb +11 -0
  388. data/spec/examples/linking.rb +18 -0
  389. data/spec/examples/simple.rb +45 -0
  390. data/spec/examples/simple_auth.rb +32 -0
  391. data/spec/examples/templates/template_amrita2.rb +16 -0
  392. data/spec/examples/templates/template_erubis.rb +23 -0
  393. data/spec/examples/templates/template_ezamar.rb +23 -0
  394. data/spec/examples/templates/template_haml.rb +25 -0
  395. data/spec/examples/templates/template_liquid.rb +29 -0
  396. data/spec/examples/templates/template_markaby.rb +23 -0
  397. data/spec/examples/templates/template_redcloth.rb +28 -0
  398. data/spec/examples/templates/template_remarkably.rb +23 -0
  399. data/spec/examples/templates/template_tenjin.rb +28 -0
  400. data/spec/helper.rb +3 -0
  401. data/spec/ramaze/action/basics.rb +36 -0
  402. data/spec/ramaze/action/cache.rb +87 -0
  403. data/spec/ramaze/action/file_cache.rb +48 -0
  404. data/spec/ramaze/action/layout.rb +190 -0
  405. data/spec/ramaze/action/render.rb +32 -0
  406. data/spec/ramaze/action/view/bar.xhtml +1 -0
  407. data/spec/ramaze/action/view/instancevars/layout.xhtml +1 -0
  408. data/spec/ramaze/action/view/other_wrapper.xhtml +1 -0
  409. data/spec/ramaze/action/view/single_wrapper.xhtml +1 -0
  410. data/spec/ramaze/action/view/sub/sub_wrapper.xhtml +1 -0
  411. data/spec/ramaze/adapter.rb +39 -0
  412. data/spec/ramaze/adapter/ebb.rb +12 -0
  413. data/spec/ramaze/adapter/mongrel.rb +12 -0
  414. data/spec/ramaze/adapter/record.rb +31 -0
  415. data/spec/ramaze/adapter/webrick.rb +12 -0
  416. data/spec/ramaze/cache.rb +140 -0
  417. data/spec/ramaze/controller.rb +177 -0
  418. data/spec/ramaze/controller/actionless_templates.rb +32 -0
  419. data/spec/ramaze/controller/resolve.rb +32 -0
  420. data/spec/ramaze/controller/subclass.rb +21 -0
  421. data/spec/ramaze/controller/template_resolving.rb +113 -0
  422. data/spec/ramaze/controller/view/greet.xhtml +1 -0
  423. data/spec/ramaze/controller/view/list.xhtml +1 -0
  424. data/spec/ramaze/controller/view/other/greet/other.xhtml +1 -0
  425. data/spec/ramaze/controller/view/other_wrapper.xhtml +1 -0
  426. data/spec/ramaze/current/request.rb +30 -0
  427. data/spec/ramaze/current/session.rb +97 -0
  428. data/spec/ramaze/dispatcher.rb +31 -0
  429. data/spec/ramaze/dispatcher/directory.rb +55 -0
  430. data/spec/ramaze/dispatcher/file.rb +60 -0
  431. data/spec/ramaze/dispatcher/public/favicon.ico +0 -0
  432. data/spec/ramaze/dispatcher/public/file name.txt +1 -0
  433. data/spec/ramaze/dispatcher/public/test_download.css +141 -0
  434. data/spec/ramaze/element.rb +107 -0
  435. data/spec/ramaze/error.rb +94 -0
  436. data/spec/ramaze/gestalt.rb +131 -0
  437. data/spec/ramaze/helper/aspect.rb +92 -0
  438. data/spec/ramaze/helper/auth.rb +66 -0
  439. data/spec/ramaze/helper/cache.rb +160 -0
  440. data/spec/ramaze/helper/cgi.rb +43 -0
  441. data/spec/ramaze/helper/file.rb +18 -0
  442. data/spec/ramaze/helper/flash.rb +133 -0
  443. data/spec/ramaze/helper/form.rb +118 -0
  444. data/spec/ramaze/helper/formatting.rb +41 -0
  445. data/spec/ramaze/helper/link.rb +124 -0
  446. data/spec/ramaze/helper/pager.rb +99 -0
  447. data/spec/ramaze/helper/partial.rb +76 -0
  448. data/spec/ramaze/helper/redirect.rb +112 -0
  449. data/spec/ramaze/helper/stack.rb +73 -0
  450. data/spec/ramaze/helper/user.rb +43 -0
  451. data/spec/ramaze/helper/view/locals.xhtml +1 -0
  452. data/spec/ramaze/helper/view/loop.xhtml +4 -0
  453. data/spec/ramaze/helper/view/num.xhtml +1 -0
  454. data/spec/ramaze/helper/view/partial.xhtml +1 -0
  455. data/spec/ramaze/helper/view/recursive.xhtml +8 -0
  456. data/spec/ramaze/helper/view/recursive_local_ivars.xhtml +7 -0
  457. data/spec/ramaze/helper/view/recursive_locals.xhtml +7 -0
  458. data/spec/ramaze/helper/view/test_template.xhtml +1 -0
  459. data/spec/ramaze/localize.rb +89 -0
  460. data/spec/ramaze/log/informer.rb +72 -0
  461. data/spec/ramaze/log/syslog.rb +10 -0
  462. data/spec/ramaze/morpher.rb +111 -0
  463. data/spec/ramaze/params.rb +157 -0
  464. data/spec/ramaze/public/error404.xhtml +1 -0
  465. data/spec/ramaze/public/favicon.ico +0 -0
  466. data/spec/ramaze/public/ramaze.png +0 -0
  467. data/spec/ramaze/public/test_download.css +141 -0
  468. data/spec/ramaze/request.rb +185 -0
  469. data/spec/ramaze/request/ebb.rb +9 -0
  470. data/spec/ramaze/request/mongrel.rb +9 -0
  471. data/spec/ramaze/request/thin.rb +9 -0
  472. data/spec/ramaze/request/webrick.rb +5 -0
  473. data/spec/ramaze/rewrite.rb +36 -0
  474. data/spec/ramaze/rewrite/file.css +1 -0
  475. data/spec/ramaze/route.rb +131 -0
  476. data/spec/ramaze/session.rb +94 -0
  477. data/spec/ramaze/store/default.rb +71 -0
  478. data/spec/ramaze/template.rb +128 -0
  479. data/spec/ramaze/template/amrita2.rb +50 -0
  480. data/spec/ramaze/template/amrita2/external.amrita +6 -0
  481. data/spec/ramaze/template/amrita2/sum.amrita +1 -0
  482. data/spec/ramaze/template/builder.rb +55 -0
  483. data/spec/ramaze/template/builder/external.rxml +3 -0
  484. data/spec/ramaze/template/erubis.rb +41 -0
  485. data/spec/ramaze/template/erubis/sum.rhtml +1 -0
  486. data/spec/ramaze/template/ezamar.rb +63 -0
  487. data/spec/ramaze/template/ezamar/another/long/action.zmr +1 -0
  488. data/spec/ramaze/template/ezamar/combined.zmr +1 -0
  489. data/spec/ramaze/template/ezamar/file_only.zmr +1 -0
  490. data/spec/ramaze/template/ezamar/index.zmr +1 -0
  491. data/spec/ramaze/template/ezamar/nested.zmr +1 -0
  492. data/spec/ramaze/template/ezamar/other__index.xhtml +1 -0
  493. data/spec/ramaze/template/ezamar/some__long__action.zmr +1 -0
  494. data/spec/ramaze/template/ezamar/sum.zmr +1 -0
  495. data/spec/ramaze/template/haml.rb +66 -0
  496. data/spec/ramaze/template/haml/index.haml +5 -0
  497. data/spec/ramaze/template/haml/locals.haml +2 -0
  498. data/spec/ramaze/template/haml/with_vars.haml +4 -0
  499. data/spec/ramaze/template/liquid.rb +99 -0
  500. data/spec/ramaze/template/liquid/index.liquid +1 -0
  501. data/spec/ramaze/template/liquid/products.liquid +45 -0
  502. data/spec/ramaze/template/markaby.rb +61 -0
  503. data/spec/ramaze/template/markaby/external.mab +8 -0
  504. data/spec/ramaze/template/markaby/sum.mab +1 -0
  505. data/spec/ramaze/template/nagoro.rb +64 -0
  506. data/spec/ramaze/template/nagoro/another/long/action.nag +1 -0
  507. data/spec/ramaze/template/nagoro/combined.nag +1 -0
  508. data/spec/ramaze/template/nagoro/file_only.nag +1 -0
  509. data/spec/ramaze/template/nagoro/index.nag +1 -0
  510. data/spec/ramaze/template/nagoro/nested.nag +1 -0
  511. data/spec/ramaze/template/nagoro/some__long__action.nag +1 -0
  512. data/spec/ramaze/template/nagoro/sum.nag +1 -0
  513. data/spec/ramaze/template/ramaze/external.test +1 -0
  514. data/spec/ramaze/template/redcloth.rb +38 -0
  515. data/spec/ramaze/template/redcloth/external.redcloth +1 -0
  516. data/spec/ramaze/template/remarkably.rb +58 -0
  517. data/spec/ramaze/template/remarkably/external.rem +8 -0
  518. data/spec/ramaze/template/remarkably/sum.rem +1 -0
  519. data/spec/ramaze/template/sass.rb +69 -0
  520. data/spec/ramaze/template/sass/file.css.sass +5 -0
  521. data/spec/ramaze/template/tagz.rb +62 -0
  522. data/spec/ramaze/template/tagz/external.tagz +8 -0
  523. data/spec/ramaze/template/tagz/sum.tagz +1 -0
  524. data/spec/ramaze/template/tenjin.rb +47 -0
  525. data/spec/ramaze/template/tenjin/external.tenjin +1 -0
  526. data/spec/ramaze/template/xslt.rb +90 -0
  527. data/spec/ramaze/template/xslt/concat_words.xsl +16 -0
  528. data/spec/ramaze/template/xslt/index.xsl +14 -0
  529. data/spec/ramaze/template/xslt/products.xsl +32 -0
  530. data/spec/ramaze/template/xslt/ruby_version.xsl +14 -0
  531. data/spec/snippets/array/put_within.rb +33 -0
  532. data/spec/snippets/divide.rb +19 -0
  533. data/spec/snippets/kernel/__dir__.rb +8 -0
  534. data/spec/snippets/kernel/acquire.rb +71 -0
  535. data/spec/snippets/kernel/constant.rb +23 -0
  536. data/spec/snippets/numeric/filesize_format.rb +12 -0
  537. data/spec/snippets/ordered_set.rb +63 -0
  538. data/spec/snippets/ramaze/caller_info.rb +39 -0
  539. data/spec/snippets/ramaze/caller_lines.rb +30 -0
  540. data/spec/snippets/string/camel_case.rb +25 -0
  541. data/spec/snippets/string/color.rb +11 -0
  542. data/spec/snippets/string/snake_case.rb +24 -0
  543. data/spec/snippets/string/unindent.rb +43 -0
  544. data/spec/snippets/struct/fill.rb +26 -0
  545. data/spec/snippets/struct/values_at.rb +44 -0
  546. data/spec/snippets/symbol/to_proc.rb +13 -0
  547. data/spec/snippets/thread/into.rb +20 -0
  548. metadata +789 -0
@@ -0,0 +1,39 @@
1
+ require 'spec/helper'
2
+
3
+ #TODO test parse_backtrace explicitly
4
+ describe "Ramaze#caller_info" do
5
+
6
+ def foo(n=0)
7
+ Ramaze.caller_info(n)
8
+ end
9
+
10
+ def bar
11
+ foo
12
+ end
13
+
14
+ def baz
15
+ foo(1)
16
+ end
17
+
18
+ it "should report correct informations" do
19
+ file,line,meth=foo()
20
+ file.should == __FILE__
21
+ line.should.match(/\d+/)
22
+ meth.should == 'foo'
23
+ end
24
+
25
+ it "should report correct informations on nested defs" do
26
+ file,line,meth=bar()
27
+ file.should == __FILE__
28
+ line.should.match(/\d+/)
29
+ meth.should == 'foo'
30
+ end
31
+
32
+ it "should report correct informations on other callers" do
33
+ file,line,meth=baz()
34
+ file.should == __FILE__
35
+ line.should.match(/\d+/)
36
+ meth.should == 'baz'
37
+ end
38
+
39
+ end
@@ -0,0 +1,30 @@
1
+ require 'lib/ramaze/spec/helper/snippets'
2
+
3
+ describe "Ramaze#caller_info" do
4
+ before do
5
+ @file = File.expand_path(File.join(File.dirname(__FILE__), '../../../lib/ramaze/gestalt.rb'))
6
+ end
7
+
8
+ it 'should show line numbers' do
9
+ res = Ramaze.caller_lines(@file, 68, 2)
10
+ res.size.should == 5
11
+ res.map{|e| e[0]}.should == (66..70).to_a
12
+ end
13
+
14
+ it 'should show which line we asked for' do
15
+ res = Ramaze.caller_lines(@file, 68, 2)
16
+ res.size.should == 5
17
+ res.map {|e| e[2]}.should == [false,false,true,false,false]
18
+ end
19
+
20
+ it 'should show the code' do
21
+ res = Ramaze.caller_lines(__FILE__, __LINE__, 1)
22
+ res.size.should == 3
23
+ res.map {|e| e[1].strip}.should == [
24
+ "it 'should show the code' do",
25
+ "res = Ramaze.caller_lines(__FILE__, __LINE__, 1)",
26
+ "res.size.should == 3"
27
+ ]
28
+ end
29
+
30
+ end
@@ -0,0 +1,25 @@
1
+ require 'lib/ramaze/spec/helper/snippets'
2
+
3
+ describe "String#camel_case" do
4
+
5
+ it 'should camelize snake_case' do
6
+ 'foo_bar'.camel_case.should == 'FooBar'
7
+ end
8
+
9
+ it 'should camelize snake_case_long' do
10
+ 'foo_bar_baz'.camel_case.should == 'FooBarBaz'
11
+ end
12
+
13
+ it 'should ignore starting _' do
14
+ '_foo_bar_baz'.camel_case.should == 'FooBarBaz'
15
+ end
16
+
17
+ it 'should ignore trailing _' do
18
+ 'foo_bar_baz_'.camel_case.should == 'FooBarBaz'
19
+ end
20
+
21
+ it 'messes up existing CamelCase' do
22
+ 'foo_barBaz'.camel_case.should == 'FooBarbaz'
23
+ end
24
+
25
+ end
@@ -0,0 +1,11 @@
1
+ require 'lib/ramaze/spec/helper/snippets'
2
+
3
+ describe 'String#color' do
4
+ it 'should define methods to return ANSI strings' do
5
+ %w[reset bold dark underline blink negative
6
+ black red green yellow blue magenta cyan white].each do |m|
7
+ "string".respond_to? m
8
+ "string".send(m).should.match(/\e\[\d+mstring\e\[0m/)
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,24 @@
1
+ require 'lib/ramaze/spec/helper/snippets'
2
+
3
+ describe "String#snake_case" do
4
+
5
+ it 'should snake_case a camelCase' do
6
+ 'CamelCase'.snake_case.should == 'camel_case'
7
+ end
8
+
9
+ it 'should snake_case a CamelCaseLong' do
10
+ 'CamelCaseLong'.snake_case.should == 'camel_case_long'
11
+ end
12
+
13
+ it 'will keep existing _' do
14
+ 'Camel_Case'.snake_case.should == 'camel__case'
15
+ end
16
+
17
+ it 'should replace spaces' do
18
+ 'Linked List'.snake_case.should == 'linked_list'
19
+ end
20
+
21
+ it 'should group uppercase words together' do
22
+ 'CSSController'.snake_case.should == 'css_controller'
23
+ end
24
+ end
@@ -0,0 +1,43 @@
1
+ require 'lib/ramaze/spec/helper/snippets'
2
+
3
+ describe "String#unindent" do
4
+ it "should remove indentation" do
5
+ %(
6
+ hello
7
+ how
8
+ are
9
+ you
10
+ doing
11
+ ).ui.should == \
12
+ %(hello
13
+ how
14
+ are
15
+ you
16
+ doing)
17
+ end
18
+
19
+ it 'should not break on a single line' do
20
+ 'word'.unindent.should == 'word'
21
+ end
22
+
23
+ it 'should find the first line with indentation' do
24
+ %( hi
25
+ there
26
+ bob).ui.should == \
27
+ %(hi
28
+ there
29
+ bob)
30
+ end
31
+
32
+ it 'should have destructive version' do
33
+ str = %( 1\n 2\n 3)
34
+ str.ui!
35
+ str.should == %(1\n 2\n3)
36
+ end
37
+
38
+ it 'should use indentation from the last line if first line is not indented' do
39
+ %(a{
40
+ abc
41
+ }).ui.should == %(a{\n abc\n})
42
+ end
43
+ end
@@ -0,0 +1,26 @@
1
+ require 'lib/ramaze/spec/helper/snippets'
2
+
3
+ describe "Struct.fill" do
4
+ Point = Struct.new(:x,:y)
5
+
6
+ it "should return a well set struct" do
7
+ point = Point.fill(:x=>1,:y=>2)
8
+ point.should.instance_of? Point
9
+ point[0].should == 1
10
+ point[1].should == 2
11
+ end
12
+
13
+ it "should work with partial arguments" do
14
+ point = Point.fill(:x=>1)
15
+ point.should.instance_of(Point)
16
+ point[0].should == 1
17
+ point[1].should == nil
18
+ end
19
+
20
+ it "should not fail with foreign keys" do
21
+ point = Point.fill(:k=>1)
22
+ point.should.instance_of(Point)
23
+ point[0].should == nil
24
+ point[1].should == nil
25
+ end
26
+ end
@@ -0,0 +1,44 @@
1
+ require 'lib/ramaze/spec/helper/snippets'
2
+
3
+ describe "Struct#values_at" do
4
+ Point = Struct.new(:x,:y)
5
+
6
+ before do
7
+ @point = Point.new(1,2)
8
+ end
9
+
10
+ it "should access a single value" do
11
+ @point.values_at(:x).should == [1]
12
+ end
13
+
14
+ it "should access multiple values" do
15
+ @point.values_at(:x,:y).should == [1,2]
16
+ end
17
+
18
+ it "should access values regardless of order" do
19
+ @point.values_at(:y,:x).should == [2,1]
20
+ end
21
+
22
+ it "should get same value twice" do
23
+ @point.values_at(:x,:x).should == [1,1]
24
+ end
25
+
26
+ it "should raise on wrong value" do
27
+ should.raise(NameError){
28
+ @point.values_at(:k)
29
+ }
30
+ end
31
+
32
+ it "should work with strings" do
33
+ @point.values_at('x').should == [1]
34
+ end
35
+
36
+ it "should work with numbers (ruby compat)" do
37
+ @point.values_at(0).should == [1]
38
+ end
39
+
40
+ it "should work with mixed args" do
41
+ @point.values_at(0,:x,'x',:y).should == [1,1,1,2]
42
+ end
43
+
44
+ end
@@ -0,0 +1,13 @@
1
+ require 'lib/ramaze/spec/helper/snippets'
2
+
3
+ describe 'Symbol#to_proc' do
4
+ it 'should convert symbols to procs' do
5
+ [:one, :two, :three].map(&:to_s).should == %w[ one two three ]
6
+ end
7
+
8
+ it 'should work with list objects' do
9
+ { 1 => "one",
10
+ 2 => "two",
11
+ 3 => "three" }.sort_by(&:first).map(&:last).should == %w[ one two three ]
12
+ end
13
+ end
@@ -0,0 +1,20 @@
1
+ require 'spec/helper'
2
+
3
+ class TCThreadIntoController < Ramaze::Controller
4
+ map :/
5
+
6
+ def hello
7
+ Thread.into('goodbye') do |str|
8
+ "#{Ramaze::Action.current.name}, #{str}"
9
+ end.value
10
+ end
11
+ end
12
+
13
+ describe 'Thread.into' do
14
+ behaves_like 'http'
15
+ ramaze
16
+
17
+ it 'should provide access to thread vars' do
18
+ get('/hello').body.should == 'hello, goodbye'
19
+ end
20
+ end
metadata ADDED
@@ -0,0 +1,789 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: clivecrous-ramaze
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.3.9.5
5
+ platform: ruby
6
+ authors:
7
+ - manveru
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-05-14 00:00:00 -07:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rake
17
+ version_requirement:
18
+ version_requirements: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 0.7.3
23
+ version:
24
+ - !ruby/object:Gem::Dependency
25
+ name: rack
26
+ version_requirement:
27
+ version_requirements: !ruby/object:Gem::Requirement
28
+ requirements:
29
+ - - ">="
30
+ - !ruby/object:Gem::Version
31
+ version: 0.3.0
32
+ version:
33
+ description: Ramaze is a simple and modular web framework
34
+ email: m.fellinger@gmail.com
35
+ executables:
36
+ - ramaze
37
+ extensions: []
38
+
39
+ extra_rdoc_files: []
40
+
41
+ files:
42
+ - lib
43
+ - doc
44
+ - README.markdown
45
+ - doc/FAQ
46
+ - doc/CHANGELOG
47
+ - Rakefile
48
+ - README
49
+ - examples/auth
50
+ - examples/auth/auth.rb
51
+ - examples/auth/template
52
+ - examples/auth/template/layout.haml
53
+ - examples/auth/template/login.haml
54
+ - examples/blog
55
+ - examples/blog/README
56
+ - examples/blog/controller
57
+ - examples/blog/controller/main.rb
58
+ - examples/blog/model
59
+ - examples/blog/model/entry.rb
60
+ - examples/blog/public
61
+ - examples/blog/public/styles
62
+ - examples/blog/public/styles/blog.css
63
+ - examples/blog/spec
64
+ - examples/blog/spec/blog.rb
65
+ - examples/blog/start.rb
66
+ - examples/blog/view
67
+ - examples/blog/view/edit.xhtml
68
+ - examples/blog/view/index.xhtml
69
+ - examples/blog/view/layout.xhtml
70
+ - examples/blog/view/new.xhtml
71
+ - examples/caching.rb
72
+ - examples/chat
73
+ - examples/chat/model
74
+ - examples/chat/model/history.rb
75
+ - examples/chat/model/message.rb
76
+ - examples/chat/public
77
+ - examples/chat/public/js
78
+ - examples/chat/public/js/jquery.js
79
+ - examples/chat/start.rb
80
+ - examples/chat/view
81
+ - examples/chat/view/chat.xhtml
82
+ - examples/chat/view/index.xhtml
83
+ - examples/chat/view/layout.xhtml
84
+ - examples/css.rb
85
+ - examples/element.rb
86
+ - examples/facebook.rb
87
+ - examples/hello.rb
88
+ - examples/httpdigest.rb
89
+ - examples/identity.rb
90
+ - examples/layout.rb
91
+ - examples/linking.rb
92
+ - examples/localization
93
+ - examples/localization/start.rb
94
+ - examples/memleak_detector.rb
95
+ - examples/nitro_form.rb
96
+ - examples/provide.rb
97
+ - examples/ramaise.rb
98
+ - examples/rammit
99
+ - examples/rammit/spec
100
+ - examples/rammit/spec/rammit.rb
101
+ - examples/rammit/src
102
+ - examples/rammit/src/controller
103
+ - examples/rammit/src/controller/main.rb
104
+ - examples/rammit/src/controller/page.rb
105
+ - examples/rammit/src/model.rb
106
+ - examples/rammit/start.rb
107
+ - examples/rammit/template
108
+ - examples/rammit/template/index.xhtml
109
+ - examples/rammit/template/page
110
+ - examples/rammit/template/page/view.xhtml
111
+ - examples/rapaste
112
+ - examples/rapaste/Rakefile
113
+ - examples/rapaste/controller
114
+ - examples/rapaste/controller/paste.rb
115
+ - examples/rapaste/model
116
+ - examples/rapaste/model/paste.rb
117
+ - examples/rapaste/public
118
+ - examples/rapaste/public/css
119
+ - examples/rapaste/public/css/active4d.css
120
+ - examples/rapaste/public/css/all_hallows_eve.css
121
+ - examples/rapaste/public/css/amy.css
122
+ - examples/rapaste/public/css/blackboard.css
123
+ - examples/rapaste/public/css/brilliance_black.css
124
+ - examples/rapaste/public/css/brilliance_dull.css
125
+ - examples/rapaste/public/css/cobalt.css
126
+ - examples/rapaste/public/css/dawn.css
127
+ - examples/rapaste/public/css/display.css
128
+ - examples/rapaste/public/css/eiffel.css
129
+ - examples/rapaste/public/css/espresso_libre.css
130
+ - examples/rapaste/public/css/idle.css
131
+ - examples/rapaste/public/css/iplastic.css
132
+ - examples/rapaste/public/css/lazy.css
133
+ - examples/rapaste/public/css/mac_classic.css
134
+ - examples/rapaste/public/css/magicwb_amiga.css
135
+ - examples/rapaste/public/css/pastels_on_dark.css
136
+ - examples/rapaste/public/css/slush_poppies.css
137
+ - examples/rapaste/public/css/spacecadet.css
138
+ - examples/rapaste/public/css/sunburst.css
139
+ - examples/rapaste/public/css/twilight.css
140
+ - examples/rapaste/public/css/zenburnesque.css
141
+ - examples/rapaste/public/js
142
+ - examples/rapaste/public/js/jquery.js
143
+ - examples/rapaste/spec
144
+ - examples/rapaste/spec/rapaste.rb
145
+ - examples/rapaste/start.rb
146
+ - examples/rapaste/view
147
+ - examples/rapaste/view/copy.xhtml
148
+ - examples/rapaste/view/index.xhtml
149
+ - examples/rapaste/view/layout.xhtml
150
+ - examples/rapaste/view/list.xhtml
151
+ - examples/rapaste/view/search.xhtml
152
+ - examples/rapaste/view/view.xhtml
153
+ - examples/rapp.rb
154
+ - examples/rest.rb
155
+ - examples/sequel_form.rb
156
+ - examples/sequel_scaffolding.rb
157
+ - examples/simple.rb
158
+ - examples/simple_auth.rb
159
+ - examples/sourceview
160
+ - examples/sourceview/public
161
+ - examples/sourceview/public/coderay.css
162
+ - examples/sourceview/public/images
163
+ - examples/sourceview/public/images/file.gif
164
+ - examples/sourceview/public/images/folder.gif
165
+ - examples/sourceview/public/images/tv-collapsable-last.gif
166
+ - examples/sourceview/public/images/tv-collapsable.gif
167
+ - examples/sourceview/public/images/tv-expandable-last.gif
168
+ - examples/sourceview/public/images/tv-expandable.gif
169
+ - examples/sourceview/public/images/tv-item-last.gif
170
+ - examples/sourceview/public/images/tv-item.gif
171
+ - examples/sourceview/public/jquery.js
172
+ - examples/sourceview/public/jquery.treeview.css
173
+ - examples/sourceview/public/jquery.treeview.js
174
+ - examples/sourceview/public/sourceview.js
175
+ - examples/sourceview/sourceview.rb
176
+ - examples/sourceview/template
177
+ - examples/sourceview/template/index.haml
178
+ - examples/templates
179
+ - examples/templates/template
180
+ - examples/templates/template/external.amrita
181
+ - examples/templates/template/external.haml
182
+ - examples/templates/template/external.liquid
183
+ - examples/templates/template/external.mab
184
+ - examples/templates/template/external.nag
185
+ - examples/templates/template/external.redcloth
186
+ - examples/templates/template/external.rem
187
+ - examples/templates/template/external.rhtml
188
+ - examples/templates/template/external.tenjin
189
+ - examples/templates/template/external.xsl
190
+ - examples/templates/template/external.zmr
191
+ - examples/templates/template_amrita2.rb
192
+ - examples/templates/template_erubis.rb
193
+ - examples/templates/template_ezamar.rb
194
+ - examples/templates/template_haml.rb
195
+ - examples/templates/template_liquid.rb
196
+ - examples/templates/template_markaby.rb
197
+ - examples/templates/template_nagoro.rb
198
+ - examples/templates/template_redcloth.rb
199
+ - examples/templates/template_remarkably.rb
200
+ - examples/templates/template_tenjin.rb
201
+ - examples/templates/template_xslt.rb
202
+ - examples/todolist
203
+ - examples/todolist/README
204
+ - examples/todolist/public
205
+ - examples/todolist/public/favicon.ico
206
+ - examples/todolist/public/js
207
+ - examples/todolist/public/js/jquery.js
208
+ - examples/todolist/public/ramaze.png
209
+ - examples/todolist/spec
210
+ - examples/todolist/spec/todolist.rb
211
+ - examples/todolist/src
212
+ - examples/todolist/src/controller
213
+ - examples/todolist/src/controller/main.rb
214
+ - examples/todolist/src/element
215
+ - examples/todolist/src/element/page.rb
216
+ - examples/todolist/src/model.rb
217
+ - examples/todolist/start.rb
218
+ - examples/todolist/template
219
+ - examples/todolist/template/index.xhtml
220
+ - examples/todolist/template/new.xhtml
221
+ - examples/upload
222
+ - examples/upload/start.rb
223
+ - examples/upload/view
224
+ - examples/upload/view/index.xhtml
225
+ - examples/whywiki
226
+ - examples/whywiki/spec
227
+ - examples/whywiki/spec/whywiki.rb
228
+ - examples/whywiki/start.rb
229
+ - examples/whywiki/template
230
+ - examples/whywiki/template/edit.xhtml
231
+ - examples/whywiki/template/show.xhtml
232
+ - examples/wikore
233
+ - examples/wikore/spec
234
+ - examples/wikore/spec/wikore.rb
235
+ - examples/wikore/src
236
+ - examples/wikore/src/controller.rb
237
+ - examples/wikore/src/model.rb
238
+ - examples/wikore/start.rb
239
+ - examples/wikore/template
240
+ - examples/wikore/template/index.xhtml
241
+ - examples/wiktacular
242
+ - examples/wiktacular/README
243
+ - examples/wiktacular/mkd
244
+ - examples/wiktacular/mkd/link
245
+ - examples/wiktacular/mkd/link/2007-07-20_19-45-51.mkd
246
+ - examples/wiktacular/mkd/link/current.mkd
247
+ - examples/wiktacular/mkd/main
248
+ - examples/wiktacular/mkd/main/2007-07-20_16-31-33.mkd
249
+ - examples/wiktacular/mkd/main/2007-07-20_19-21-12.mkd
250
+ - examples/wiktacular/mkd/main/2007-07-20_19-23-10.mkd
251
+ - examples/wiktacular/mkd/main/2007-07-20_19-45-07.mkd
252
+ - examples/wiktacular/mkd/main/current.mkd
253
+ - examples/wiktacular/mkd/markdown
254
+ - examples/wiktacular/mkd/markdown/current.mkd
255
+ - examples/wiktacular/mkd/testing
256
+ - examples/wiktacular/mkd/testing/2007-07-20_16-43-46.mkd
257
+ - examples/wiktacular/mkd/testing/2007-07-20_19-43-50.mkd
258
+ - examples/wiktacular/mkd/testing/2007-07-21_18-46-01.mkd
259
+ - examples/wiktacular/mkd/testing/2007-07-21_18-46-32.mkd
260
+ - examples/wiktacular/mkd/testing/2007-07-21_18-47-08.mkd
261
+ - examples/wiktacular/mkd/testing/2007-07-21_18-47-54.mkd
262
+ - examples/wiktacular/mkd/testing/current.mkd
263
+ - examples/wiktacular/public
264
+ - examples/wiktacular/public/favicon.ico
265
+ - examples/wiktacular/public/screen.css
266
+ - examples/wiktacular/spec
267
+ - examples/wiktacular/spec/wiktacular.rb
268
+ - examples/wiktacular/src
269
+ - examples/wiktacular/src/controller.rb
270
+ - examples/wiktacular/src/model.rb
271
+ - examples/wiktacular/start.rb
272
+ - examples/wiktacular/template
273
+ - examples/wiktacular/template/edit.xhtml
274
+ - examples/wiktacular/template/html_layout.xhtml
275
+ - examples/wiktacular/template/index.xhtml
276
+ - examples/wiktacular/template/new.xhtml
277
+ - bin/ramaze
278
+ - doc/AUTHORS
279
+ - doc/COPYING
280
+ - doc/GPL
281
+ - doc/INSTALL
282
+ - doc/LEGAL
283
+ - doc/ProjectInfo
284
+ - doc/TODO
285
+ - doc/meta
286
+ - doc/meta/announcement.txt
287
+ - doc/meta/configuration.txt
288
+ - doc/meta/internals.txt
289
+ - doc/meta/users.kml
290
+ - doc/migrate
291
+ - doc/migrate/1110_to_1111.txt
292
+ - doc/readme_chunks
293
+ - doc/readme_chunks/appendix.txt
294
+ - doc/readme_chunks/examples.txt
295
+ - doc/readme_chunks/features.txt
296
+ - doc/readme_chunks/getting_help.txt
297
+ - doc/readme_chunks/getting_started.txt
298
+ - doc/readme_chunks/installing.txt
299
+ - doc/readme_chunks/introduction.txt
300
+ - doc/readme_chunks/principles.txt
301
+ - doc/readme_chunks/thanks.txt
302
+ - doc/tutorial
303
+ - doc/tutorial/todolist.html
304
+ - doc/tutorial/todolist.mkd
305
+ - spec/contrib
306
+ - spec/contrib/auto_params.rb
307
+ - spec/contrib/profiling.rb
308
+ - spec/contrib/sequel
309
+ - spec/contrib/sequel/fill.rb
310
+ - spec/examples
311
+ - spec/examples/caching.rb
312
+ - spec/examples/css.rb
313
+ - spec/examples/element.rb
314
+ - spec/examples/hello.rb
315
+ - spec/examples/linking.rb
316
+ - spec/examples/simple.rb
317
+ - spec/examples/simple_auth.rb
318
+ - spec/examples/templates
319
+ - spec/examples/templates/template_amrita2.rb
320
+ - spec/examples/templates/template_erubis.rb
321
+ - spec/examples/templates/template_ezamar.rb
322
+ - spec/examples/templates/template_haml.rb
323
+ - spec/examples/templates/template_liquid.rb
324
+ - spec/examples/templates/template_markaby.rb
325
+ - spec/examples/templates/template_redcloth.rb
326
+ - spec/examples/templates/template_remarkably.rb
327
+ - spec/examples/templates/template_tenjin.rb
328
+ - spec/helper.rb
329
+ - spec/ramaze
330
+ - spec/ramaze/action
331
+ - spec/ramaze/action/basics.rb
332
+ - spec/ramaze/action/cache.rb
333
+ - spec/ramaze/action/file_cache.rb
334
+ - spec/ramaze/action/layout.rb
335
+ - spec/ramaze/action/render.rb
336
+ - spec/ramaze/action/view
337
+ - spec/ramaze/action/view/bar.xhtml
338
+ - spec/ramaze/action/view/instancevars
339
+ - spec/ramaze/action/view/instancevars/layout.xhtml
340
+ - spec/ramaze/action/view/other_wrapper.xhtml
341
+ - spec/ramaze/action/view/single_wrapper.xhtml
342
+ - spec/ramaze/action/view/sub
343
+ - spec/ramaze/action/view/sub/sub_wrapper.xhtml
344
+ - spec/ramaze/adapter
345
+ - spec/ramaze/adapter/ebb.rb
346
+ - spec/ramaze/adapter/mongrel.rb
347
+ - spec/ramaze/adapter/record.rb
348
+ - spec/ramaze/adapter/webrick.rb
349
+ - spec/ramaze/adapter.rb
350
+ - spec/ramaze/cache.rb
351
+ - spec/ramaze/controller
352
+ - spec/ramaze/controller/actionless_templates.rb
353
+ - spec/ramaze/controller/resolve.rb
354
+ - spec/ramaze/controller/subclass.rb
355
+ - spec/ramaze/controller/template_resolving.rb
356
+ - spec/ramaze/controller/view
357
+ - spec/ramaze/controller/view/greet.xhtml
358
+ - spec/ramaze/controller/view/list.xhtml
359
+ - spec/ramaze/controller/view/other
360
+ - spec/ramaze/controller/view/other/greet
361
+ - spec/ramaze/controller/view/other/greet/other.xhtml
362
+ - spec/ramaze/controller/view/other_wrapper.xhtml
363
+ - spec/ramaze/controller.rb
364
+ - spec/ramaze/current
365
+ - spec/ramaze/current/request.rb
366
+ - spec/ramaze/current/session.rb
367
+ - spec/ramaze/dispatcher
368
+ - spec/ramaze/dispatcher/directory.rb
369
+ - spec/ramaze/dispatcher/file.rb
370
+ - spec/ramaze/dispatcher/public
371
+ - spec/ramaze/dispatcher/public/favicon.ico
372
+ - spec/ramaze/dispatcher/public/file name.txt
373
+ - spec/ramaze/dispatcher/public/test_download.css
374
+ - spec/ramaze/dispatcher.rb
375
+ - spec/ramaze/element.rb
376
+ - spec/ramaze/error.rb
377
+ - spec/ramaze/gestalt.rb
378
+ - spec/ramaze/helper
379
+ - spec/ramaze/helper/aspect.rb
380
+ - spec/ramaze/helper/auth.rb
381
+ - spec/ramaze/helper/cache.rb
382
+ - spec/ramaze/helper/cgi.rb
383
+ - spec/ramaze/helper/file.rb
384
+ - spec/ramaze/helper/flash.rb
385
+ - spec/ramaze/helper/form.rb
386
+ - spec/ramaze/helper/formatting.rb
387
+ - spec/ramaze/helper/link.rb
388
+ - spec/ramaze/helper/pager.rb
389
+ - spec/ramaze/helper/partial.rb
390
+ - spec/ramaze/helper/redirect.rb
391
+ - spec/ramaze/helper/stack.rb
392
+ - spec/ramaze/helper/user.rb
393
+ - spec/ramaze/helper/view
394
+ - spec/ramaze/helper/view/locals.xhtml
395
+ - spec/ramaze/helper/view/loop.xhtml
396
+ - spec/ramaze/helper/view/num.xhtml
397
+ - spec/ramaze/helper/view/partial.xhtml
398
+ - spec/ramaze/helper/view/recursive.xhtml
399
+ - spec/ramaze/helper/view/recursive_local_ivars.xhtml
400
+ - spec/ramaze/helper/view/recursive_locals.xhtml
401
+ - spec/ramaze/helper/view/test_template.xhtml
402
+ - spec/ramaze/localize.rb
403
+ - spec/ramaze/log
404
+ - spec/ramaze/log/informer.rb
405
+ - spec/ramaze/log/syslog.rb
406
+ - spec/ramaze/morpher.rb
407
+ - spec/ramaze/params.rb
408
+ - spec/ramaze/public
409
+ - spec/ramaze/public/error404.xhtml
410
+ - spec/ramaze/public/favicon.ico
411
+ - spec/ramaze/public/ramaze.png
412
+ - spec/ramaze/public/test_download.css
413
+ - spec/ramaze/request
414
+ - spec/ramaze/request/ebb.rb
415
+ - spec/ramaze/request/mongrel.rb
416
+ - spec/ramaze/request/thin.rb
417
+ - spec/ramaze/request/webrick.rb
418
+ - spec/ramaze/request.rb
419
+ - spec/ramaze/rewrite
420
+ - spec/ramaze/rewrite/file.css
421
+ - spec/ramaze/rewrite.rb
422
+ - spec/ramaze/route.rb
423
+ - spec/ramaze/session.rb
424
+ - spec/ramaze/store
425
+ - spec/ramaze/store/default.rb
426
+ - spec/ramaze/template
427
+ - spec/ramaze/template/amrita2
428
+ - spec/ramaze/template/amrita2/external.amrita
429
+ - spec/ramaze/template/amrita2/sum.amrita
430
+ - spec/ramaze/template/amrita2.rb
431
+ - spec/ramaze/template/builder
432
+ - spec/ramaze/template/builder/external.rxml
433
+ - spec/ramaze/template/builder.rb
434
+ - spec/ramaze/template/erubis
435
+ - spec/ramaze/template/erubis/sum.rhtml
436
+ - spec/ramaze/template/erubis.rb
437
+ - spec/ramaze/template/ezamar
438
+ - spec/ramaze/template/ezamar/another
439
+ - spec/ramaze/template/ezamar/another/long
440
+ - spec/ramaze/template/ezamar/another/long/action.zmr
441
+ - spec/ramaze/template/ezamar/combined.zmr
442
+ - spec/ramaze/template/ezamar/file_only.zmr
443
+ - spec/ramaze/template/ezamar/index.zmr
444
+ - spec/ramaze/template/ezamar/nested.zmr
445
+ - spec/ramaze/template/ezamar/other__index.xhtml
446
+ - spec/ramaze/template/ezamar/some__long__action.zmr
447
+ - spec/ramaze/template/ezamar/sum.zmr
448
+ - spec/ramaze/template/ezamar.rb
449
+ - spec/ramaze/template/haml
450
+ - spec/ramaze/template/haml/index.haml
451
+ - spec/ramaze/template/haml/locals.haml
452
+ - spec/ramaze/template/haml/with_vars.haml
453
+ - spec/ramaze/template/haml.rb
454
+ - spec/ramaze/template/liquid
455
+ - spec/ramaze/template/liquid/index.liquid
456
+ - spec/ramaze/template/liquid/products.liquid
457
+ - spec/ramaze/template/liquid.rb
458
+ - spec/ramaze/template/markaby
459
+ - spec/ramaze/template/markaby/external.mab
460
+ - spec/ramaze/template/markaby/sum.mab
461
+ - spec/ramaze/template/markaby.rb
462
+ - spec/ramaze/template/nagoro
463
+ - spec/ramaze/template/nagoro/another
464
+ - spec/ramaze/template/nagoro/another/long
465
+ - spec/ramaze/template/nagoro/another/long/action.nag
466
+ - spec/ramaze/template/nagoro/combined.nag
467
+ - spec/ramaze/template/nagoro/file_only.nag
468
+ - spec/ramaze/template/nagoro/index.nag
469
+ - spec/ramaze/template/nagoro/nested.nag
470
+ - spec/ramaze/template/nagoro/some__long__action.nag
471
+ - spec/ramaze/template/nagoro/sum.nag
472
+ - spec/ramaze/template/nagoro.rb
473
+ - spec/ramaze/template/ramaze
474
+ - spec/ramaze/template/ramaze/external.test
475
+ - spec/ramaze/template/redcloth
476
+ - spec/ramaze/template/redcloth/external.redcloth
477
+ - spec/ramaze/template/redcloth.rb
478
+ - spec/ramaze/template/remarkably
479
+ - spec/ramaze/template/remarkably/external.rem
480
+ - spec/ramaze/template/remarkably/sum.rem
481
+ - spec/ramaze/template/remarkably.rb
482
+ - spec/ramaze/template/sass
483
+ - spec/ramaze/template/sass/file.css.sass
484
+ - spec/ramaze/template/sass.rb
485
+ - spec/ramaze/template/tagz
486
+ - spec/ramaze/template/tagz/external.tagz
487
+ - spec/ramaze/template/tagz/sum.tagz
488
+ - spec/ramaze/template/tagz.rb
489
+ - spec/ramaze/template/tenjin
490
+ - spec/ramaze/template/tenjin/external.tenjin
491
+ - spec/ramaze/template/tenjin.rb
492
+ - spec/ramaze/template/xslt
493
+ - spec/ramaze/template/xslt/concat_words.xsl
494
+ - spec/ramaze/template/xslt/index.xsl
495
+ - spec/ramaze/template/xslt/products.xsl
496
+ - spec/ramaze/template/xslt/ruby_version.xsl
497
+ - spec/ramaze/template/xslt.rb
498
+ - spec/ramaze/template.rb
499
+ - spec/snippets
500
+ - spec/snippets/array
501
+ - spec/snippets/array/put_within.rb
502
+ - spec/snippets/divide.rb
503
+ - spec/snippets/kernel
504
+ - spec/snippets/kernel/__dir__.rb
505
+ - spec/snippets/kernel/acquire.rb
506
+ - spec/snippets/kernel/constant.rb
507
+ - spec/snippets/numeric
508
+ - spec/snippets/numeric/filesize_format.rb
509
+ - spec/snippets/ordered_set.rb
510
+ - spec/snippets/ramaze
511
+ - spec/snippets/ramaze/caller_info.rb
512
+ - spec/snippets/ramaze/caller_lines.rb
513
+ - spec/snippets/string
514
+ - spec/snippets/string/camel_case.rb
515
+ - spec/snippets/string/color.rb
516
+ - spec/snippets/string/snake_case.rb
517
+ - spec/snippets/string/unindent.rb
518
+ - spec/snippets/struct
519
+ - spec/snippets/struct/fill.rb
520
+ - spec/snippets/struct/values_at.rb
521
+ - spec/snippets/symbol
522
+ - spec/snippets/symbol/to_proc.rb
523
+ - spec/snippets/thread
524
+ - spec/snippets/thread/into.rb
525
+ - lib/proto
526
+ - lib/proto/controller
527
+ - lib/proto/controller/main.rb
528
+ - lib/proto/public
529
+ - lib/proto/public/css
530
+ - lib/proto/public/css/ramaze_error.css
531
+ - lib/proto/public/dispatch.fcgi
532
+ - lib/proto/public/favicon.ico
533
+ - lib/proto/public/js
534
+ - lib/proto/public/js/jquery.js
535
+ - lib/proto/public/ramaze.png
536
+ - lib/proto/spec
537
+ - lib/proto/spec/main.rb
538
+ - lib/proto/start.rb
539
+ - lib/proto/start.ru
540
+ - lib/proto/view
541
+ - lib/proto/view/error.xhtml
542
+ - lib/proto/view/index.xhtml
543
+ - lib/proto/view/page.xhtml
544
+ - lib/ramaze
545
+ - lib/ramaze/action
546
+ - lib/ramaze/action/render.rb
547
+ - lib/ramaze/action.rb
548
+ - lib/ramaze/adapter
549
+ - lib/ramaze/adapter/base.rb
550
+ - lib/ramaze/adapter/cgi.rb
551
+ - lib/ramaze/adapter/ebb.rb
552
+ - lib/ramaze/adapter/evented_mongrel.rb
553
+ - lib/ramaze/adapter/fcgi.rb
554
+ - lib/ramaze/adapter/lsws.rb
555
+ - lib/ramaze/adapter/mongrel.rb
556
+ - lib/ramaze/adapter/scgi.rb
557
+ - lib/ramaze/adapter/swiftiplied_mongrel.rb
558
+ - lib/ramaze/adapter/thin.rb
559
+ - lib/ramaze/adapter/webrick.rb
560
+ - lib/ramaze/adapter.rb
561
+ - lib/ramaze/cache
562
+ - lib/ramaze/cache/memcached.rb
563
+ - lib/ramaze/cache/memory.rb
564
+ - lib/ramaze/cache/yaml_store.rb
565
+ - lib/ramaze/cache.rb
566
+ - lib/ramaze/contrib
567
+ - lib/ramaze/contrib/auto_params
568
+ - lib/ramaze/contrib/auto_params/get_args.rb
569
+ - lib/ramaze/contrib/auto_params.rb
570
+ - lib/ramaze/contrib/email.rb
571
+ - lib/ramaze/contrib/facebook
572
+ - lib/ramaze/contrib/facebook/facebook.rb
573
+ - lib/ramaze/contrib/facebook.rb
574
+ - lib/ramaze/contrib/file_cache.rb
575
+ - lib/ramaze/contrib/gems.rb
576
+ - lib/ramaze/contrib/gettext
577
+ - lib/ramaze/contrib/gettext/mo.rb
578
+ - lib/ramaze/contrib/gettext/parser.rb
579
+ - lib/ramaze/contrib/gettext/po.rb
580
+ - lib/ramaze/contrib/gettext.rb
581
+ - lib/ramaze/contrib/gzip_filter.rb
582
+ - lib/ramaze/contrib/profiling.rb
583
+ - lib/ramaze/contrib/rest.rb
584
+ - lib/ramaze/contrib/sequel
585
+ - lib/ramaze/contrib/sequel/fill.rb
586
+ - lib/ramaze/contrib/sequel_cache.rb
587
+ - lib/ramaze/contrib.rb
588
+ - lib/ramaze/controller
589
+ - lib/ramaze/controller/error.rb
590
+ - lib/ramaze/controller/main.rb
591
+ - lib/ramaze/controller/resolve.rb
592
+ - lib/ramaze/controller.rb
593
+ - lib/ramaze/current
594
+ - lib/ramaze/current/request.rb
595
+ - lib/ramaze/current/response.rb
596
+ - lib/ramaze/current/session
597
+ - lib/ramaze/current/session/flash.rb
598
+ - lib/ramaze/current/session/hash.rb
599
+ - lib/ramaze/current/session.rb
600
+ - lib/ramaze/current.rb
601
+ - lib/ramaze/dispatcher
602
+ - lib/ramaze/dispatcher/action.rb
603
+ - lib/ramaze/dispatcher/directory.rb
604
+ - lib/ramaze/dispatcher/error.rb
605
+ - lib/ramaze/dispatcher/file.rb
606
+ - lib/ramaze/dispatcher.rb
607
+ - lib/ramaze/error.rb
608
+ - lib/ramaze/gestalt.rb
609
+ - lib/ramaze/helper
610
+ - lib/ramaze/helper/aspect.rb
611
+ - lib/ramaze/helper/auth.rb
612
+ - lib/ramaze/helper/cache.rb
613
+ - lib/ramaze/helper/cgi.rb
614
+ - lib/ramaze/helper/flash.rb
615
+ - lib/ramaze/helper/form.rb
616
+ - lib/ramaze/helper/formatting.rb
617
+ - lib/ramaze/helper/httpdigest.rb
618
+ - lib/ramaze/helper/identity.rb
619
+ - lib/ramaze/helper/link.rb
620
+ - lib/ramaze/helper/markaby.rb
621
+ - lib/ramaze/helper/maruku.rb
622
+ - lib/ramaze/helper/nitroform.rb
623
+ - lib/ramaze/helper/pager.rb
624
+ - lib/ramaze/helper/partial.rb
625
+ - lib/ramaze/helper/redirect.rb
626
+ - lib/ramaze/helper/rest.rb
627
+ - lib/ramaze/helper/sendfile.rb
628
+ - lib/ramaze/helper/sequel.rb
629
+ - lib/ramaze/helper/stack.rb
630
+ - lib/ramaze/helper/tagz.rb
631
+ - lib/ramaze/helper/user.rb
632
+ - lib/ramaze/helper.rb
633
+ - lib/ramaze/log
634
+ - lib/ramaze/log/analogger.rb
635
+ - lib/ramaze/log/growl.rb
636
+ - lib/ramaze/log/hub.rb
637
+ - lib/ramaze/log/informer.rb
638
+ - lib/ramaze/log/knotify.rb
639
+ - lib/ramaze/log/logger.rb
640
+ - lib/ramaze/log/logging.rb
641
+ - lib/ramaze/log/syslog.rb
642
+ - lib/ramaze/log/xosd.rb
643
+ - lib/ramaze/log.rb
644
+ - lib/ramaze/option
645
+ - lib/ramaze/option/dsl.rb
646
+ - lib/ramaze/option/holder.rb
647
+ - lib/ramaze/option/merger.rb
648
+ - lib/ramaze/option.rb
649
+ - lib/ramaze/route.rb
650
+ - lib/ramaze/setup.rb
651
+ - lib/ramaze/snippets
652
+ - lib/ramaze/snippets/array
653
+ - lib/ramaze/snippets/array/put_within.rb
654
+ - lib/ramaze/snippets/binding
655
+ - lib/ramaze/snippets/binding/locals.rb
656
+ - lib/ramaze/snippets/blankslate.rb
657
+ - lib/ramaze/snippets/dictionary.rb
658
+ - lib/ramaze/snippets/divide.rb
659
+ - lib/ramaze/snippets/kernel
660
+ - lib/ramaze/snippets/kernel/__dir__.rb
661
+ - lib/ramaze/snippets/kernel/acquire.rb
662
+ - lib/ramaze/snippets/kernel/constant.rb
663
+ - lib/ramaze/snippets/kernel/pretty_inspect.rb
664
+ - lib/ramaze/snippets/metaid.rb
665
+ - lib/ramaze/snippets/numeric
666
+ - lib/ramaze/snippets/numeric/filesize_format.rb
667
+ - lib/ramaze/snippets/object
668
+ - lib/ramaze/snippets/object/instance_variable_defined.rb
669
+ - lib/ramaze/snippets/object/pretty.rb
670
+ - lib/ramaze/snippets/object/scope.rb
671
+ - lib/ramaze/snippets/object/thread_accessor.rb
672
+ - lib/ramaze/snippets/object/traits.rb
673
+ - lib/ramaze/snippets/ordered_set.rb
674
+ - lib/ramaze/snippets/proc
675
+ - lib/ramaze/snippets/proc/locals.rb
676
+ - lib/ramaze/snippets/ramaze
677
+ - lib/ramaze/snippets/ramaze/caller_info.rb
678
+ - lib/ramaze/snippets/ramaze/caller_lines.rb
679
+ - lib/ramaze/snippets/ramaze/deprecated.rb
680
+ - lib/ramaze/snippets/ramaze/thread_accessor.rb
681
+ - lib/ramaze/snippets/string
682
+ - lib/ramaze/snippets/string/camel_case.rb
683
+ - lib/ramaze/snippets/string/color.rb
684
+ - lib/ramaze/snippets/string/each.rb
685
+ - lib/ramaze/snippets/string/esc.rb
686
+ - lib/ramaze/snippets/string/ord.rb
687
+ - lib/ramaze/snippets/string/snake_case.rb
688
+ - lib/ramaze/snippets/string/start_with.rb
689
+ - lib/ramaze/snippets/string/unindent.rb
690
+ - lib/ramaze/snippets/struct
691
+ - lib/ramaze/snippets/struct/fill.rb
692
+ - lib/ramaze/snippets/struct/values_at.rb
693
+ - lib/ramaze/snippets/symbol
694
+ - lib/ramaze/snippets/symbol/to_proc.rb
695
+ - lib/ramaze/snippets/thread
696
+ - lib/ramaze/snippets/thread/into.rb
697
+ - lib/ramaze/snippets.rb
698
+ - lib/ramaze/sourcereload.rb
699
+ - lib/ramaze/spec
700
+ - lib/ramaze/spec/helper
701
+ - lib/ramaze/spec/helper/bacon.rb
702
+ - lib/ramaze/spec/helper/browser.rb
703
+ - lib/ramaze/spec/helper/mock_http.rb
704
+ - lib/ramaze/spec/helper/pretty_output.rb
705
+ - lib/ramaze/spec/helper/requester.rb
706
+ - lib/ramaze/spec/helper/simple_http.rb
707
+ - lib/ramaze/spec/helper/snippets.rb
708
+ - lib/ramaze/spec/helper.rb
709
+ - lib/ramaze/spec.rb
710
+ - lib/ramaze/store
711
+ - lib/ramaze/store/default.rb
712
+ - lib/ramaze/template
713
+ - lib/ramaze/template/amrita2.rb
714
+ - lib/ramaze/template/builder.rb
715
+ - lib/ramaze/template/erubis.rb
716
+ - lib/ramaze/template/ezamar
717
+ - lib/ramaze/template/ezamar/element.rb
718
+ - lib/ramaze/template/ezamar/engine.rb
719
+ - lib/ramaze/template/ezamar/morpher.rb
720
+ - lib/ramaze/template/ezamar/render_partial.rb
721
+ - lib/ramaze/template/ezamar.rb
722
+ - lib/ramaze/template/haml.rb
723
+ - lib/ramaze/template/liquid.rb
724
+ - lib/ramaze/template/markaby.rb
725
+ - lib/ramaze/template/nagoro.rb
726
+ - lib/ramaze/template/none.rb
727
+ - lib/ramaze/template/redcloth.rb
728
+ - lib/ramaze/template/remarkably.rb
729
+ - lib/ramaze/template/sass.rb
730
+ - lib/ramaze/template/tagz.rb
731
+ - lib/ramaze/template/tenjin.rb
732
+ - lib/ramaze/template/xslt.rb
733
+ - lib/ramaze/template.rb
734
+ - lib/ramaze/tool
735
+ - lib/ramaze/tool/create.rb
736
+ - lib/ramaze/tool/localize.rb
737
+ - lib/ramaze/tool/mime.rb
738
+ - lib/ramaze/tool/mime_types.yaml
739
+ - lib/ramaze/tool/record.rb
740
+ - lib/ramaze/tool.rb
741
+ - lib/ramaze/trinity.rb
742
+ - lib/ramaze/version.rb
743
+ - lib/ramaze.rb
744
+ - lib/vendor
745
+ - lib/vendor/bacon.rb
746
+ - rake_tasks/conf.rake
747
+ - rake_tasks/coverage.rake
748
+ - rake_tasks/darcs.rake
749
+ - rake_tasks/gem.rake
750
+ - rake_tasks/git.rake
751
+ - rake_tasks/maintenance.rake
752
+ - rake_tasks/spec.rake
753
+ has_rdoc: true
754
+ homepage: http://ramaze.rubyforge.org
755
+ post_install_message: |-
756
+ ============================================================
757
+
758
+ Thank you for installing Ramaze!
759
+ You can now do following:
760
+
761
+ * Create a new project using the `ramaze' command:
762
+ ramaze --create yourproject
763
+
764
+ ============================================================
765
+ rdoc_options: []
766
+
767
+ require_paths:
768
+ - lib
769
+ required_ruby_version: !ruby/object:Gem::Requirement
770
+ requirements:
771
+ - - ">="
772
+ - !ruby/object:Gem::Version
773
+ version: "0"
774
+ version:
775
+ required_rubygems_version: !ruby/object:Gem::Requirement
776
+ requirements:
777
+ - - ">="
778
+ - !ruby/object:Gem::Version
779
+ version: "0"
780
+ version:
781
+ requirements: []
782
+
783
+ rubyforge_project:
784
+ rubygems_version: 1.0.1
785
+ signing_key:
786
+ specification_version: 2
787
+ summary: Ramaze is a simple and modular web framework
788
+ test_files: []
789
+