rango 0.0.3 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1046) hide show
  1. data/CONTRIBUTORS +2 -0
  2. data/README.textile +9 -10
  3. data/benchmarks/ab.rb +6 -0
  4. data/benchmarks/bm/boot.rb +20 -0
  5. data/{lib/rango/helpers/spec/fixture/app/views/foo/bar.html.erb → benchmarks/bm/callbacks.rb} +0 -0
  6. data/benchmarks/bm/request.rb +4 -0
  7. data/benchmarks/bm/routers.rb +22 -0
  8. data/benchmarks/bm/stack.rb +19 -0
  9. data/{spec/rango/auth/core/authenticated_helper_spec.rb → benchmarks/bm/templates.rb} +0 -0
  10. data/benchmarks/helper.rb +7 -0
  11. data/benchmarks/stubs/merb-app/Rakefile +35 -0
  12. data/benchmarks/stubs/merb-app/app/controllers/application.rb +4 -0
  13. data/benchmarks/stubs/merb-app/app/controllers/exceptions.rb +15 -0
  14. data/benchmarks/stubs/merb-app/app/helpers/global_helpers.rb +7 -0
  15. data/benchmarks/stubs/merb-app/app/models/user.rb +19 -0
  16. data/benchmarks/stubs/merb-app/app/views/exceptions/not_acceptable.html.erb +63 -0
  17. data/benchmarks/stubs/merb-app/app/views/exceptions/not_found.html.erb +47 -0
  18. data/benchmarks/stubs/merb-app/app/views/layout/application.html.erb +12 -0
  19. data/benchmarks/stubs/merb-app/autotest/discover.rb +4 -0
  20. data/benchmarks/stubs/merb-app/autotest/merb.rb +154 -0
  21. data/benchmarks/stubs/merb-app/autotest/merb_rspec.rb +167 -0
  22. data/benchmarks/stubs/merb-app/config/database.yml +33 -0
  23. data/benchmarks/stubs/merb-app/config/dependencies.rb +36 -0
  24. data/benchmarks/stubs/merb-app/config/environments/development.rb +17 -0
  25. data/benchmarks/stubs/merb-app/config/environments/production.rb +12 -0
  26. data/benchmarks/stubs/merb-app/config/environments/rake.rb +13 -0
  27. data/benchmarks/stubs/merb-app/config/environments/staging.rb +12 -0
  28. data/benchmarks/stubs/merb-app/config/environments/test.rb +14 -0
  29. data/benchmarks/stubs/merb-app/config/init.rb +26 -0
  30. data/benchmarks/stubs/merb-app/config/rack.rb +13 -0
  31. data/benchmarks/stubs/merb-app/config/router.rb +46 -0
  32. data/benchmarks/stubs/merb-app/doc/rdoc/generators/merb_generator.rb +1364 -0
  33. data/benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb/api_grease.js +640 -0
  34. data/benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb/index.html.erb +37 -0
  35. data/benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb/merb.css +252 -0
  36. data/benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb/merb.rb +353 -0
  37. data/benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb/merb_doc_styles.css +492 -0
  38. data/benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb/prototype.js +2515 -0
  39. data/benchmarks/stubs/merb-app/merb/merb-auth/setup.rb +46 -0
  40. data/benchmarks/stubs/merb-app/merb/merb-auth/strategies.rb +13 -0
  41. data/benchmarks/stubs/merb-app/merb/session/session.rb +11 -0
  42. data/benchmarks/stubs/merb-app/public/favicon.ico +0 -0
  43. data/benchmarks/stubs/merb-app/public/images/merb.jpg +0 -0
  44. data/benchmarks/stubs/merb-app/public/javascripts/application.js +1 -0
  45. data/benchmarks/stubs/merb-app/public/javascripts/jquery.js +19 -0
  46. data/benchmarks/stubs/merb-app/public/merb.fcgi +22 -0
  47. data/benchmarks/stubs/merb-app/public/robots.txt +5 -0
  48. data/benchmarks/stubs/merb-app/public/stylesheets/master.css +119 -0
  49. data/{spec/rango/auth/core/authentication_spec.rb → benchmarks/stubs/merb-app/spec/spec.opts} +0 -0
  50. data/benchmarks/stubs/merb-app/spec/spec_helper.rb +27 -0
  51. data/benchmarks/stubs/merb-app/tasks/doc.thor +151 -0
  52. data/benchmarks/stubs/merb-app/tasks/merb.thor/app_script.rb +33 -0
  53. data/benchmarks/stubs/merb-app/tasks/merb.thor/common.rb +70 -0
  54. data/benchmarks/stubs/merb-app/tasks/merb.thor/gem_ext.rb +127 -0
  55. data/benchmarks/stubs/merb-app/tasks/merb.thor/main.thor +152 -0
  56. data/benchmarks/stubs/merb-app/tasks/merb.thor/ops.rb +95 -0
  57. data/benchmarks/stubs/merb-app/tasks/merb.thor/utils.rb +42 -0
  58. data/benchmarks/stubs/merb-core/Rakefile +35 -0
  59. data/benchmarks/stubs/merb-core/app/controllers/application.rb +4 -0
  60. data/benchmarks/stubs/merb-core/app/controllers/exceptions.rb +15 -0
  61. data/benchmarks/stubs/merb-core/app/helpers/global_helpers.rb +7 -0
  62. data/benchmarks/stubs/merb-core/app/views/exceptions/not_acceptable.html.erb +63 -0
  63. data/benchmarks/stubs/merb-core/app/views/exceptions/not_found.html.erb +47 -0
  64. data/benchmarks/stubs/merb-core/app/views/layout/application.html.erb +12 -0
  65. data/benchmarks/stubs/merb-core/autotest/discover.rb +1 -0
  66. data/benchmarks/stubs/merb-core/autotest/merb.rb +151 -0
  67. data/benchmarks/stubs/merb-core/autotest/merb_rspec.rb +167 -0
  68. data/benchmarks/stubs/merb-core/config/environments/development.rb +17 -0
  69. data/benchmarks/stubs/merb-core/config/environments/production.rb +12 -0
  70. data/benchmarks/stubs/merb-core/config/environments/rake.rb +13 -0
  71. data/benchmarks/stubs/merb-core/config/environments/staging.rb +12 -0
  72. data/benchmarks/stubs/merb-core/config/environments/test.rb +14 -0
  73. data/benchmarks/stubs/merb-core/config/init.rb +27 -0
  74. data/benchmarks/stubs/merb-core/config/rack.rb +13 -0
  75. data/benchmarks/stubs/merb-core/config/router.rb +43 -0
  76. data/benchmarks/stubs/merb-core/doc/rdoc/generators/merb_generator.rb +1364 -0
  77. data/benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb/api_grease.js +640 -0
  78. data/benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb/index.html.erb +37 -0
  79. data/benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb/merb.css +252 -0
  80. data/benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb/merb.rb +353 -0
  81. data/benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb/merb_doc_styles.css +492 -0
  82. data/benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb/prototype.js +2515 -0
  83. data/benchmarks/stubs/merb-core/public/favicon.ico +0 -0
  84. data/benchmarks/stubs/merb-core/public/images/merb.jpg +0 -0
  85. data/benchmarks/stubs/merb-core/public/javascripts/application.js +1 -0
  86. data/benchmarks/stubs/merb-core/public/merb.fcgi +22 -0
  87. data/benchmarks/stubs/merb-core/public/robots.txt +5 -0
  88. data/benchmarks/stubs/merb-core/public/stylesheets/master.css +119 -0
  89. data/{spec/rango/auth/core/callbacks_spec.rb → benchmarks/stubs/merb-core/spec/spec.opts} +0 -0
  90. data/benchmarks/stubs/merb-core/spec/spec_helper.rb +22 -0
  91. data/benchmarks/stubs/merb-core/tasks/merb.thor/app_script.rb +33 -0
  92. data/benchmarks/stubs/merb-core/tasks/merb.thor/common.rb +70 -0
  93. data/benchmarks/stubs/merb-core/tasks/merb.thor/gem_ext.rb +127 -0
  94. data/benchmarks/stubs/merb-core/tasks/merb.thor/main.thor +152 -0
  95. data/benchmarks/stubs/merb-core/tasks/merb.thor/ops.rb +95 -0
  96. data/benchmarks/stubs/merb-core/tasks/merb.thor/utils.rb +42 -0
  97. data/benchmarks/stubs/merb-flat/README.txt +10 -0
  98. data/benchmarks/stubs/merb-flat/Rakefile +35 -0
  99. data/benchmarks/stubs/merb-flat/application.rb +17 -0
  100. data/benchmarks/stubs/merb-flat/config/framework.rb +9 -0
  101. data/benchmarks/stubs/merb-flat/config/init.rb +42 -0
  102. data/benchmarks/stubs/merb-flat/spec/spec_helper.rb +26 -0
  103. data/benchmarks/stubs/merb-flat/tasks/merb.thor/app_script.rb +33 -0
  104. data/benchmarks/stubs/merb-flat/tasks/merb.thor/common.rb +70 -0
  105. data/benchmarks/stubs/merb-flat/tasks/merb.thor/gem_ext.rb +127 -0
  106. data/benchmarks/stubs/merb-flat/tasks/merb.thor/main.thor +152 -0
  107. data/benchmarks/stubs/merb-flat/tasks/merb.thor/ops.rb +95 -0
  108. data/benchmarks/stubs/merb-flat/tasks/merb.thor/utils.rb +42 -0
  109. data/benchmarks/stubs/merb-flat/views/foo.html.erb +3 -0
  110. data/benchmarks/stubs/merb-very-flat/Rakefile +35 -0
  111. data/benchmarks/stubs/merb-very-flat/merb-very-flat.rb +61 -0
  112. data/benchmarks/stubs/merb-very-flat/spec/spec_helper.rb +26 -0
  113. data/benchmarks/stubs/merb-very-flat/tasks/merb.thor/app_script.rb +33 -0
  114. data/benchmarks/stubs/merb-very-flat/tasks/merb.thor/common.rb +70 -0
  115. data/benchmarks/stubs/merb-very-flat/tasks/merb.thor/gem_ext.rb +127 -0
  116. data/benchmarks/stubs/merb-very-flat/tasks/merb.thor/main.thor +152 -0
  117. data/benchmarks/stubs/merb-very-flat/tasks/merb.thor/ops.rb +95 -0
  118. data/benchmarks/stubs/merb-very-flat/tasks/merb.thor/utils.rb +42 -0
  119. data/benchmarks/stubs/rails/README +243 -0
  120. data/benchmarks/stubs/rails/Rakefile +10 -0
  121. data/benchmarks/stubs/rails/app/controllers/application_controller.rb +12 -0
  122. data/benchmarks/stubs/rails/app/helpers/application_helper.rb +5 -0
  123. data/benchmarks/stubs/rails/config/boot.rb +112 -0
  124. data/benchmarks/stubs/rails/config/database.yml +22 -0
  125. data/benchmarks/stubs/rails/config/environment.rb +43 -0
  126. data/benchmarks/stubs/rails/config/environments/development.rb +19 -0
  127. data/benchmarks/stubs/rails/config/environments/production.rb +30 -0
  128. data/benchmarks/stubs/rails/config/environments/test.rb +30 -0
  129. data/benchmarks/stubs/rails/config/initializers/backtrace_silencers.rb +9 -0
  130. data/benchmarks/stubs/rails/config/initializers/inflections.rb +12 -0
  131. data/benchmarks/stubs/rails/config/initializers/mime_types.rb +7 -0
  132. data/benchmarks/stubs/rails/config/initializers/new_rails_defaults.rb +21 -0
  133. data/benchmarks/stubs/rails/config/initializers/session_store.rb +17 -0
  134. data/benchmarks/stubs/rails/config/locales/en.yml +5 -0
  135. data/benchmarks/stubs/rails/config/routes.rb +45 -0
  136. data/benchmarks/stubs/rails/doc/README_FOR_APP +2 -0
  137. data/{spec/rango/auth/core/errors_spec.rb → benchmarks/stubs/rails/log/development.log} +0 -0
  138. data/{spec/rango/auth/core/responses_spec.rb → benchmarks/stubs/rails/log/production.log} +0 -0
  139. data/{spec/rango/auth/core/session_mixin_spec.rb → benchmarks/stubs/rails/log/server.log} +0 -0
  140. data/{spec/rango/auth/core/spec/helpers/authentication_helper_spec_spec.rb → benchmarks/stubs/rails/log/test.log} +0 -0
  141. data/benchmarks/stubs/rails/public/404.html +30 -0
  142. data/benchmarks/stubs/rails/public/422.html +30 -0
  143. data/benchmarks/stubs/rails/public/500.html +30 -0
  144. data/{spec/rango/auth/core/spec/merb-auth-core/activation_fixture_spec.rb → benchmarks/stubs/rails/public/favicon.ico} +0 -0
  145. data/benchmarks/stubs/rails/public/images/rails.png +0 -0
  146. data/benchmarks/stubs/rails/public/index.html +275 -0
  147. data/benchmarks/stubs/rails/public/javascripts/application.js +2 -0
  148. data/benchmarks/stubs/rails/public/javascripts/controls.js +963 -0
  149. data/benchmarks/stubs/rails/public/javascripts/dragdrop.js +973 -0
  150. data/benchmarks/stubs/rails/public/javascripts/effects.js +1128 -0
  151. data/benchmarks/stubs/rails/public/javascripts/prototype.js +4320 -0
  152. data/benchmarks/stubs/rails/public/robots.txt +5 -0
  153. data/benchmarks/stubs/rails/script/about +4 -0
  154. data/benchmarks/stubs/rails/script/console +3 -0
  155. data/benchmarks/stubs/rails/script/dbconsole +3 -0
  156. data/benchmarks/stubs/rails/script/destroy +3 -0
  157. data/benchmarks/stubs/rails/script/generate +3 -0
  158. data/benchmarks/stubs/rails/script/performance/benchmarker +3 -0
  159. data/benchmarks/stubs/rails/script/performance/profiler +3 -0
  160. data/benchmarks/stubs/rails/script/plugin +3 -0
  161. data/benchmarks/stubs/rails/script/runner +3 -0
  162. data/benchmarks/stubs/rails/script/server +3 -0
  163. data/benchmarks/stubs/rails/test/performance/browsing_test.rb +11 -0
  164. data/benchmarks/stubs/rails/test/test_helper.rb +40 -0
  165. data/{spec/rango/auth/core/spec/merb-auth-core/authentication_spec_spec.rb → benchmarks/stubs/ramaze.rb} +0 -0
  166. data/benchmarks/stubs/sinatra.rb +11 -0
  167. data/bin/rango +10 -9
  168. data/cucumber.yml +1 -0
  169. data/doc/0.0.3/Array.html +354 -0
  170. data/doc/0.0.3/AttributeMixin.html +697 -0
  171. data/doc/0.0.3/Class.html +102 -0
  172. data/doc/0.0.3/ColoredString.html +476 -0
  173. data/doc/0.0.3/Enumerable.html +256 -0
  174. data/doc/0.0.3/File.html +909 -0
  175. data/doc/0.0.3/Hash.html +1586 -0
  176. data/doc/0.0.3/Kernel.html +956 -0
  177. data/doc/0.0.3/OS.html +740 -0
  178. data/doc/0.0.3/Object.html +466 -0
  179. data/doc/0.0.3/ObjectSpace.html +184 -0
  180. data/doc/0.0.3/Path.html +2499 -0
  181. data/doc/0.0.3/Range.html +190 -0
  182. data/doc/0.0.3/Rango.html +379 -0
  183. data/doc/0.0.3/Rango/ApplicationMixin.html +396 -0
  184. data/doc/0.0.3/Rango/Bundling.html +23 -0
  185. data/doc/0.0.3/Rango/Bundling/RequireStrategy.html +283 -0
  186. data/doc/0.0.3/Rango/Bundling/Strategy.html +703 -0
  187. data/doc/0.0.3/Rango/CLI.html +23 -0
  188. data/doc/0.0.3/Rango/CLI/Generator.html +762 -0
  189. data/doc/0.0.3/Rango/CLI/Templater.html +258 -0
  190. data/doc/0.0.3/Rango/CallableStrategy.html +300 -0
  191. data/doc/0.0.3/Rango/Chainable.html +181 -0
  192. data/doc/0.0.3/Rango/Configurable.html +199 -0
  193. data/doc/0.0.3/Rango/Controller.html +962 -0
  194. data/doc/0.0.3/Rango/ControllerMixin.html +860 -0
  195. data/doc/0.0.3/Rango/ControllerStrategy.html +264 -0
  196. data/doc/0.0.3/Rango/DependencyStrategy.html +116 -0
  197. data/doc/0.0.3/Rango/Dispatcher.html +305 -0
  198. data/doc/0.0.3/Rango/Form.html +162 -0
  199. data/doc/0.0.3/Rango/GemDependencyStrategy.html +210 -0
  200. data/doc/0.0.3/Rango/Generator.html +93 -0
  201. data/doc/0.0.3/Rango/GenericViews.html +128 -0
  202. data/doc/0.0.3/Rango/GitDependencyStrategy.html +224 -0
  203. data/doc/0.0.3/Rango/GithubDependencyStrategy.html +118 -0
  204. data/doc/0.0.3/Rango/Handler.html +474 -0
  205. data/doc/0.0.3/Rango/Helpers.html +1335 -0
  206. data/doc/0.0.3/Rango/Hookable.html +202 -0
  207. data/doc/0.0.3/Rango/ImportMixin.html +755 -0
  208. data/doc/0.0.3/Rango/Logger.html +920 -0
  209. data/doc/0.0.3/Rango/Mini.html +117 -0
  210. data/doc/0.0.3/Rango/ModelForm.html +42 -0
  211. data/doc/0.0.3/Rango/Project.html +516 -0
  212. data/doc/0.0.3/Rango/RenderMixin.html +23 -0
  213. data/doc/0.0.3/Rango/Request.html +1177 -0
  214. data/doc/0.0.3/Rango/Route.html +751 -0
  215. data/doc/0.0.3/Rango/Router.html +42 -0
  216. data/doc/0.0.3/Rango/Router/Dispatcher.html +311 -0
  217. data/doc/0.0.3/Rango/RouterStrategy.html +258 -0
  218. data/doc/0.0.3/Rango/Session.html +23 -0
  219. data/doc/0.0.3/Rango/Settings.html +23 -0
  220. data/doc/0.0.3/Rango/Settings/Erubis.html +23 -0
  221. data/doc/0.0.3/Rango/Settings/Framework.html +254 -0
  222. data/doc/0.0.3/Rango/Settings/Haml.html +23 -0
  223. data/doc/0.0.3/Rango/Settings/Template.html +23 -0
  224. data/doc/0.0.3/Rango/SimpleTemplate.html +187 -0
  225. data/doc/0.0.3/Rango/StrategyMixin.html +261 -0
  226. data/doc/0.0.3/Rango/Tasks.html +219 -0
  227. data/doc/0.0.3/Rango/Template.html +95 -0
  228. data/doc/0.0.3/Rango/Template/Adapter.html +90 -0
  229. data/doc/0.0.3/Rango/Templates.html +116 -0
  230. data/doc/0.0.3/Rango/Templates/Adapter.html +128 -0
  231. data/doc/0.0.3/Rango/Templates/Template.html +636 -0
  232. data/doc/0.0.3/Rango/Templates/TemplateHelpers.html +328 -0
  233. data/doc/0.0.3/RangoThor.html +205 -0
  234. data/doc/0.0.3/String.html +307 -0
  235. data/doc/0.0.3/Time.html +193 -0
  236. data/doc/0.0.3/TimeDSL.html +601 -0
  237. data/doc/0.0.3/all-methods.html +1908 -0
  238. data/doc/0.0.3/all-namespaces.html +114 -0
  239. data/doc/0.0.3/app.js +18 -0
  240. data/doc/0.0.3/head/Array.html +354 -0
  241. data/doc/0.0.3/head/AttributeMixin.html +697 -0
  242. data/doc/0.0.3/head/Class.html +102 -0
  243. data/doc/0.0.3/head/ColoredString.html +476 -0
  244. data/doc/0.0.3/head/Enumerable.html +256 -0
  245. data/doc/0.0.3/head/File.html +909 -0
  246. data/doc/0.0.3/head/Hash.html +1586 -0
  247. data/doc/0.0.3/head/Kernel.html +956 -0
  248. data/doc/0.0.3/head/OS.html +740 -0
  249. data/doc/0.0.3/head/Object.html +466 -0
  250. data/doc/0.0.3/head/ObjectSpace.html +184 -0
  251. data/doc/0.0.3/head/Path.html +2499 -0
  252. data/doc/0.0.3/head/Range.html +190 -0
  253. data/doc/0.0.3/head/Rango.html +379 -0
  254. data/doc/0.0.3/head/Rango/ApplicationMixin.html +396 -0
  255. data/doc/0.0.3/head/Rango/Bundling.html +23 -0
  256. data/doc/0.0.3/head/Rango/Bundling/RequireStrategy.html +283 -0
  257. data/doc/0.0.3/head/Rango/Bundling/Strategy.html +703 -0
  258. data/doc/0.0.3/head/Rango/CLI.html +23 -0
  259. data/doc/0.0.3/head/Rango/CLI/Generator.html +762 -0
  260. data/doc/0.0.3/head/Rango/CLI/Templater.html +258 -0
  261. data/doc/0.0.3/head/Rango/CallableStrategy.html +300 -0
  262. data/doc/0.0.3/head/Rango/Chainable.html +181 -0
  263. data/doc/0.0.3/head/Rango/Configurable.html +199 -0
  264. data/doc/0.0.3/head/Rango/Controller.html +962 -0
  265. data/doc/0.0.3/head/Rango/ControllerMixin.html +860 -0
  266. data/doc/0.0.3/head/Rango/ControllerStrategy.html +264 -0
  267. data/doc/0.0.3/head/Rango/DependencyStrategy.html +116 -0
  268. data/doc/0.0.3/head/Rango/Dispatcher.html +305 -0
  269. data/doc/0.0.3/head/Rango/Form.html +162 -0
  270. data/doc/0.0.3/head/Rango/GemDependencyStrategy.html +210 -0
  271. data/doc/0.0.3/head/Rango/Generator.html +93 -0
  272. data/doc/0.0.3/head/Rango/GenericViews.html +128 -0
  273. data/doc/0.0.3/head/Rango/GitDependencyStrategy.html +224 -0
  274. data/doc/0.0.3/head/Rango/GithubDependencyStrategy.html +118 -0
  275. data/doc/0.0.3/head/Rango/Handler.html +474 -0
  276. data/doc/0.0.3/head/Rango/Helpers.html +1335 -0
  277. data/doc/0.0.3/head/Rango/Hookable.html +202 -0
  278. data/doc/0.0.3/head/Rango/ImportMixin.html +755 -0
  279. data/doc/0.0.3/head/Rango/Logger.html +920 -0
  280. data/doc/0.0.3/head/Rango/Mini.html +117 -0
  281. data/doc/0.0.3/head/Rango/ModelForm.html +42 -0
  282. data/doc/0.0.3/head/Rango/Project.html +516 -0
  283. data/doc/0.0.3/head/Rango/RenderMixin.html +23 -0
  284. data/doc/0.0.3/head/Rango/Request.html +1177 -0
  285. data/doc/0.0.3/head/Rango/Route.html +751 -0
  286. data/doc/0.0.3/head/Rango/Router.html +42 -0
  287. data/doc/0.0.3/head/Rango/Router/Dispatcher.html +311 -0
  288. data/doc/0.0.3/head/Rango/RouterStrategy.html +258 -0
  289. data/doc/0.0.3/head/Rango/Session.html +23 -0
  290. data/doc/0.0.3/head/Rango/Settings.html +23 -0
  291. data/doc/0.0.3/head/Rango/Settings/Erubis.html +23 -0
  292. data/doc/0.0.3/head/Rango/Settings/Framework.html +254 -0
  293. data/doc/0.0.3/head/Rango/Settings/Haml.html +23 -0
  294. data/doc/0.0.3/head/Rango/Settings/Template.html +23 -0
  295. data/doc/0.0.3/head/Rango/SimpleTemplate.html +187 -0
  296. data/doc/0.0.3/head/Rango/StrategyMixin.html +261 -0
  297. data/doc/0.0.3/head/Rango/Tasks.html +219 -0
  298. data/doc/0.0.3/head/Rango/Template.html +95 -0
  299. data/doc/0.0.3/head/Rango/Template/Adapter.html +90 -0
  300. data/doc/0.0.3/head/Rango/Templates.html +116 -0
  301. data/doc/0.0.3/head/Rango/Templates/Adapter.html +128 -0
  302. data/doc/0.0.3/head/Rango/Templates/Template.html +636 -0
  303. data/doc/0.0.3/head/Rango/Templates/TemplateHelpers.html +328 -0
  304. data/doc/0.0.3/head/RangoThor.html +205 -0
  305. data/doc/0.0.3/head/String.html +307 -0
  306. data/doc/0.0.3/head/Time.html +193 -0
  307. data/doc/0.0.3/head/TimeDSL.html +601 -0
  308. data/doc/0.0.3/head/all-methods.html +1908 -0
  309. data/doc/0.0.3/head/all-namespaces.html +114 -0
  310. data/doc/0.0.3/head/app.js +18 -0
  311. data/doc/0.0.3/head/index.html +18 -0
  312. data/doc/0.0.3/head/jquery.js +11 -0
  313. data/doc/0.0.3/head/readme.html +36 -0
  314. data/doc/0.0.3/head/style.css +68 -0
  315. data/doc/0.0.3/head/syntax_highlight.css +21 -0
  316. data/doc/0.0.3/index.html +18 -0
  317. data/doc/0.0.3/jquery.js +11 -0
  318. data/doc/0.0.3/readme.html +36 -0
  319. data/doc/0.0.3/style.css +68 -0
  320. data/doc/0.0.3/syntax_highlight.css +21 -0
  321. data/doc/0.0.4/Array.html +354 -0
  322. data/doc/0.0.4/AttributeMixin.html +697 -0
  323. data/doc/0.0.4/Class.html +102 -0
  324. data/doc/0.0.4/ColoredString.html +476 -0
  325. data/doc/0.0.4/Enumerable.html +256 -0
  326. data/doc/0.0.4/File.html +909 -0
  327. data/doc/0.0.4/Hash.html +1586 -0
  328. data/doc/0.0.4/Kernel.html +956 -0
  329. data/doc/0.0.4/OS.html +740 -0
  330. data/doc/0.0.4/Object.html +466 -0
  331. data/doc/0.0.4/ObjectSpace.html +184 -0
  332. data/doc/0.0.4/Path.html +2499 -0
  333. data/doc/0.0.4/Range.html +190 -0
  334. data/doc/0.0.4/Rango.html +379 -0
  335. data/doc/0.0.4/Rango/ApplicationMixin.html +396 -0
  336. data/doc/0.0.4/Rango/Bundling.html +23 -0
  337. data/doc/0.0.4/Rango/Bundling/RequireStrategy.html +283 -0
  338. data/doc/0.0.4/Rango/Bundling/Strategy.html +703 -0
  339. data/doc/0.0.4/Rango/CLI.html +23 -0
  340. data/doc/0.0.4/Rango/CLI/Generator.html +762 -0
  341. data/doc/0.0.4/Rango/CLI/Templater.html +258 -0
  342. data/doc/0.0.4/Rango/CallableStrategy.html +300 -0
  343. data/doc/0.0.4/Rango/Chainable.html +181 -0
  344. data/doc/0.0.4/Rango/Configurable.html +199 -0
  345. data/doc/0.0.4/Rango/Controller.html +962 -0
  346. data/doc/0.0.4/Rango/ControllerMixin.html +860 -0
  347. data/doc/0.0.4/Rango/ControllerStrategy.html +264 -0
  348. data/doc/0.0.4/Rango/DependencyStrategy.html +116 -0
  349. data/doc/0.0.4/Rango/Dispatcher.html +305 -0
  350. data/doc/0.0.4/Rango/Form.html +162 -0
  351. data/doc/0.0.4/Rango/GemDependencyStrategy.html +210 -0
  352. data/doc/0.0.4/Rango/Generator.html +93 -0
  353. data/doc/0.0.4/Rango/GenericViews.html +128 -0
  354. data/doc/0.0.4/Rango/GitDependencyStrategy.html +224 -0
  355. data/doc/0.0.4/Rango/GithubDependencyStrategy.html +118 -0
  356. data/doc/0.0.4/Rango/Handler.html +474 -0
  357. data/doc/0.0.4/Rango/Helpers.html +1335 -0
  358. data/doc/0.0.4/Rango/Hookable.html +202 -0
  359. data/doc/0.0.4/Rango/ImportMixin.html +755 -0
  360. data/doc/0.0.4/Rango/Logger.html +920 -0
  361. data/doc/0.0.4/Rango/Mini.html +117 -0
  362. data/doc/0.0.4/Rango/ModelForm.html +42 -0
  363. data/doc/0.0.4/Rango/Project.html +516 -0
  364. data/doc/0.0.4/Rango/RenderMixin.html +23 -0
  365. data/doc/0.0.4/Rango/Request.html +1177 -0
  366. data/doc/0.0.4/Rango/Route.html +751 -0
  367. data/doc/0.0.4/Rango/Router.html +42 -0
  368. data/doc/0.0.4/Rango/Router/Dispatcher.html +311 -0
  369. data/doc/0.0.4/Rango/RouterStrategy.html +258 -0
  370. data/doc/0.0.4/Rango/Session.html +23 -0
  371. data/doc/0.0.4/Rango/Settings.html +23 -0
  372. data/doc/0.0.4/Rango/Settings/Erubis.html +23 -0
  373. data/doc/0.0.4/Rango/Settings/Framework.html +254 -0
  374. data/doc/0.0.4/Rango/Settings/Haml.html +23 -0
  375. data/doc/0.0.4/Rango/Settings/Template.html +23 -0
  376. data/doc/0.0.4/Rango/SimpleTemplate.html +187 -0
  377. data/doc/0.0.4/Rango/StrategyMixin.html +261 -0
  378. data/doc/0.0.4/Rango/Tasks.html +219 -0
  379. data/doc/0.0.4/Rango/Template.html +95 -0
  380. data/doc/0.0.4/Rango/Template/Adapter.html +90 -0
  381. data/doc/0.0.4/Rango/Templates.html +116 -0
  382. data/doc/0.0.4/Rango/Templates/Adapter.html +128 -0
  383. data/doc/0.0.4/Rango/Templates/Template.html +636 -0
  384. data/doc/0.0.4/Rango/Templates/TemplateHelpers.html +328 -0
  385. data/doc/0.0.4/RangoThor.html +205 -0
  386. data/doc/0.0.4/String.html +307 -0
  387. data/doc/0.0.4/Time.html +193 -0
  388. data/doc/0.0.4/TimeDSL.html +601 -0
  389. data/doc/0.0.4/all-methods.html +1908 -0
  390. data/doc/0.0.4/all-namespaces.html +114 -0
  391. data/doc/0.0.4/app.js +18 -0
  392. data/doc/0.0.4/head/Array.html +354 -0
  393. data/doc/0.0.4/head/AttributeMixin.html +697 -0
  394. data/doc/0.0.4/head/Class.html +102 -0
  395. data/doc/0.0.4/head/ColoredString.html +476 -0
  396. data/doc/0.0.4/head/Enumerable.html +256 -0
  397. data/doc/0.0.4/head/File.html +909 -0
  398. data/doc/0.0.4/head/Hash.html +1586 -0
  399. data/doc/0.0.4/head/Kernel.html +956 -0
  400. data/doc/0.0.4/head/OS.html +740 -0
  401. data/doc/0.0.4/head/Object.html +466 -0
  402. data/doc/0.0.4/head/ObjectSpace.html +184 -0
  403. data/doc/0.0.4/head/Path.html +2499 -0
  404. data/doc/0.0.4/head/Range.html +190 -0
  405. data/doc/0.0.4/head/Rango.html +379 -0
  406. data/doc/0.0.4/head/Rango/ApplicationMixin.html +396 -0
  407. data/doc/0.0.4/head/Rango/Bundling.html +23 -0
  408. data/doc/0.0.4/head/Rango/Bundling/RequireStrategy.html +283 -0
  409. data/doc/0.0.4/head/Rango/Bundling/Strategy.html +703 -0
  410. data/doc/0.0.4/head/Rango/CLI.html +23 -0
  411. data/doc/0.0.4/head/Rango/CLI/Generator.html +762 -0
  412. data/doc/0.0.4/head/Rango/CLI/Templater.html +258 -0
  413. data/doc/0.0.4/head/Rango/CallableStrategy.html +300 -0
  414. data/doc/0.0.4/head/Rango/Chainable.html +181 -0
  415. data/doc/0.0.4/head/Rango/Configurable.html +199 -0
  416. data/doc/0.0.4/head/Rango/Controller.html +962 -0
  417. data/doc/0.0.4/head/Rango/ControllerMixin.html +860 -0
  418. data/doc/0.0.4/head/Rango/ControllerStrategy.html +264 -0
  419. data/doc/0.0.4/head/Rango/DependencyStrategy.html +116 -0
  420. data/doc/0.0.4/head/Rango/Dispatcher.html +305 -0
  421. data/doc/0.0.4/head/Rango/Form.html +162 -0
  422. data/doc/0.0.4/head/Rango/GemDependencyStrategy.html +210 -0
  423. data/doc/0.0.4/head/Rango/Generator.html +93 -0
  424. data/doc/0.0.4/head/Rango/GenericViews.html +128 -0
  425. data/doc/0.0.4/head/Rango/GitDependencyStrategy.html +224 -0
  426. data/doc/0.0.4/head/Rango/GithubDependencyStrategy.html +118 -0
  427. data/doc/0.0.4/head/Rango/Handler.html +474 -0
  428. data/doc/0.0.4/head/Rango/Helpers.html +1335 -0
  429. data/doc/0.0.4/head/Rango/Hookable.html +202 -0
  430. data/doc/0.0.4/head/Rango/ImportMixin.html +755 -0
  431. data/doc/0.0.4/head/Rango/Logger.html +920 -0
  432. data/doc/0.0.4/head/Rango/Mini.html +117 -0
  433. data/doc/0.0.4/head/Rango/ModelForm.html +42 -0
  434. data/doc/0.0.4/head/Rango/Project.html +516 -0
  435. data/doc/0.0.4/head/Rango/RenderMixin.html +23 -0
  436. data/doc/0.0.4/head/Rango/Request.html +1177 -0
  437. data/doc/0.0.4/head/Rango/Route.html +751 -0
  438. data/doc/0.0.4/head/Rango/Router.html +42 -0
  439. data/doc/0.0.4/head/Rango/Router/Dispatcher.html +311 -0
  440. data/doc/0.0.4/head/Rango/RouterStrategy.html +258 -0
  441. data/doc/0.0.4/head/Rango/Session.html +23 -0
  442. data/doc/0.0.4/head/Rango/Settings.html +23 -0
  443. data/doc/0.0.4/head/Rango/Settings/Erubis.html +23 -0
  444. data/doc/0.0.4/head/Rango/Settings/Framework.html +254 -0
  445. data/doc/0.0.4/head/Rango/Settings/Haml.html +23 -0
  446. data/doc/0.0.4/head/Rango/Settings/Template.html +23 -0
  447. data/doc/0.0.4/head/Rango/SimpleTemplate.html +187 -0
  448. data/doc/0.0.4/head/Rango/StrategyMixin.html +261 -0
  449. data/doc/0.0.4/head/Rango/Tasks.html +219 -0
  450. data/doc/0.0.4/head/Rango/Template.html +95 -0
  451. data/doc/0.0.4/head/Rango/Template/Adapter.html +90 -0
  452. data/doc/0.0.4/head/Rango/Templates.html +116 -0
  453. data/doc/0.0.4/head/Rango/Templates/Adapter.html +128 -0
  454. data/doc/0.0.4/head/Rango/Templates/Template.html +636 -0
  455. data/doc/0.0.4/head/Rango/Templates/TemplateHelpers.html +328 -0
  456. data/doc/0.0.4/head/RangoThor.html +205 -0
  457. data/doc/0.0.4/head/String.html +307 -0
  458. data/doc/0.0.4/head/Time.html +193 -0
  459. data/doc/0.0.4/head/TimeDSL.html +601 -0
  460. data/doc/0.0.4/head/all-methods.html +1908 -0
  461. data/doc/0.0.4/head/all-namespaces.html +114 -0
  462. data/doc/0.0.4/head/app.js +18 -0
  463. data/doc/0.0.4/head/index.html +18 -0
  464. data/doc/0.0.4/head/jquery.js +11 -0
  465. data/doc/0.0.4/head/readme.html +36 -0
  466. data/doc/0.0.4/head/style.css +68 -0
  467. data/doc/0.0.4/head/syntax_highlight.css +21 -0
  468. data/doc/0.0.4/index.html +18 -0
  469. data/doc/0.0.4/jquery.js +11 -0
  470. data/doc/0.0.4/readme.html +36 -0
  471. data/doc/0.0.4/style.css +68 -0
  472. data/doc/0.0.4/syntax_highlight.css +21 -0
  473. data/doc/head/Array.html +247 -7
  474. data/doc/head/AttributeMixin.html +127 -43
  475. data/doc/head/ColoredString.html +1 -1
  476. data/doc/head/Enumerable.html +256 -0
  477. data/doc/head/File.html +909 -0
  478. data/doc/head/Hash.html +1043 -100
  479. data/doc/head/Kernel.html +378 -63
  480. data/doc/head/OS.html +740 -0
  481. data/doc/head/Object.html +363 -37
  482. data/doc/head/ObjectSpace.html +94 -13
  483. data/doc/head/Range.html +87 -6
  484. data/doc/head/Rango.html +21 -39
  485. data/doc/head/Rango/ApplicationMixin.html +4 -4
  486. data/doc/head/Rango/Bundling/RequireStrategy.html +1 -1
  487. data/doc/head/Rango/Bundling/Strategy.html +1 -1
  488. data/doc/head/Rango/CLI.html +23 -0
  489. data/doc/head/Rango/CLI/Generator.html +762 -0
  490. data/doc/head/Rango/CLI/Templater.html +258 -0
  491. data/doc/head/Rango/Chainable.html +14 -14
  492. data/doc/head/Rango/ControllerMixin.html +36 -36
  493. data/doc/head/Rango/Form.html +1 -1
  494. data/doc/head/Rango/Helpers.html +89 -25
  495. data/doc/head/Rango/Hookable.html +3 -3
  496. data/doc/head/Rango/Mini.html +117 -0
  497. data/doc/head/Rango/ModelForm.html +1 -1
  498. data/doc/head/Rango/Router.html +1 -1
  499. data/doc/head/Rango/Settings/Framework.html +64 -8
  500. data/doc/head/Rango/Settings/Template.html +23 -0
  501. data/doc/head/Rango/Tasks.html +10 -42
  502. data/doc/head/Rango/Templates/Adapter.html +1 -1
  503. data/doc/head/Rango/Templates/Template.html +21 -21
  504. data/doc/head/Rango/Templates/TemplateHelpers.html +12 -12
  505. data/doc/head/String.html +152 -8
  506. data/doc/head/Time.html +193 -0
  507. data/doc/head/TimeDSL.html +28 -39
  508. data/doc/head/all-methods.html +236 -340
  509. data/doc/head/all-namespaces.html +21 -21
  510. data/doc/head/readme.html +14 -12
  511. data/examples/README.textile +13 -0
  512. data/{spec/rango/auth/core/spec/merb-auth-core/callbacks_spec_spec.rb → examples/TODO} +0 -0
  513. data/examples/flat/basic.ru +31 -0
  514. data/examples/flat/generic_views.ru +16 -0
  515. data/examples/flat/info.ru +18 -0
  516. data/examples/flat/simple_controller.ru +1 -0
  517. data/examples/flat/templates/about/author.html.haml +1 -0
  518. data/{spec/rango/auth/core/spec/merb-auth-core/customizations_spec_spec.rb → examples/flat/templates/about/contact.html.haml} +0 -0
  519. data/{spec/rango/auth/core/spec/merb-auth-core/errors_spec_spec.rb → examples/flat/templates/base.html.haml} +0 -0
  520. data/examples/flat/templates/info.html.haml +25 -0
  521. data/examples/twitter/Thorfile +12 -0
  522. data/examples/twitter/config.ru +48 -0
  523. data/examples/twitter/development.db +0 -0
  524. data/examples/twitter/factories.rb +19 -0
  525. data/examples/twitter/init.rb +15 -0
  526. data/{spec/rango/auth/core/spec/merb-auth-core/failed_login_spec_spec.rb → examples/twitter/media/hello-static.txt} +0 -0
  527. data/examples/twitter/models.rb +13 -0
  528. data/examples/twitter/run.rb +8 -0
  529. data/examples/twitter/settings.rb +5 -0
  530. data/examples/twitter/settings_local.rb +6 -0
  531. data/examples/twitter/templates/base.html.haml +9 -0
  532. data/examples/twitter/templates/index.html.haml +4 -0
  533. data/examples/twitter/templates/show.html.haml +4 -0
  534. data/examples/twitter/templates/timeline.html.haml +10 -0
  535. data/examples/twitter/views.rb +40 -0
  536. data/features/TODO.txt +5 -0
  537. data/{spec/rango/auth/core/spec/merb-auth-core/merb-auth-core_spec_spec.rb → features/auth/warden.feature} +0 -0
  538. data/features/generators/app.feature +11 -0
  539. data/{spec/rango/auth/core/spec/merb-auth-core/router_helper_spec_spec.rb → features/generators/bigapp.feature} +0 -0
  540. data/{spec/rango/auth/core/spec/merb-auth-core/strategy_spec_spec.rb → features/generators/features.feature} +0 -0
  541. data/{spec/rango/auth/core/spec/spec_helper_spec.rb → features/generators/flat.feature} +0 -0
  542. data/{spec/rango/auth/core/strategy_spec.rb → features/generators/project.feature} +0 -0
  543. data/{spec/rango/auth/core_spec.rb → features/generators/pupu.feature} +0 -0
  544. data/{spec/rango/auth/more/mixins/redirect_back_spec.rb → features/generators/stub.feature} +0 -0
  545. data/features/generators_steps.rb +26 -0
  546. data/{spec/rango/auth/more/mixins/salted_user/ar_salted_user_spec.rb → features/routers/rack-router.feature} +0 -0
  547. data/{spec/rango/auth/more/mixins/salted_user/dm_salted_user_spec.rb → features/routers/rack.feature} +0 -0
  548. data/{spec/rango/auth/more/mixins/salted_user/relaxdb_salted_user_spec.rb → features/routers/urlmap.feature} +0 -0
  549. data/features/shared/given_steps.rb +1 -0
  550. data/features/shared/then_steps.rb +1 -0
  551. data/features/shared/when_steps.rb +1 -0
  552. data/features/support/env.rb +64 -0
  553. data/lib/rango.rb +15 -6
  554. data/lib/rango/boot.rb +36 -25
  555. data/lib/rango/bundling/dependency.rb +3 -7
  556. data/lib/rango/bundling/strategies/copy.rb +2 -2
  557. data/lib/rango/bundling/strategies/gem.rb +2 -2
  558. data/lib/rango/bundling/strategies/git.rb +2 -2
  559. data/lib/rango/bundling/strategies/hg.rb +2 -2
  560. data/lib/rango/bundling/strategy.rb +2 -2
  561. data/lib/rango/cli/generator.rb +119 -12
  562. data/lib/rango/cli/templater.rb +89 -0
  563. data/lib/rango/contrib/pagination.rb +5 -3
  564. data/lib/rango/contrib/pagination/adapters/datamapper.rb +2 -0
  565. data/lib/rango/contrib/pagination/helpers.rb +3 -1
  566. data/lib/rango/contrib/pagination/page.rb +2 -0
  567. data/lib/rango/contrib/pagination/strategies.rb +2 -2
  568. data/lib/rango/contrib/syndication.rb +1 -1
  569. data/lib/rango/controller.rb +151 -0
  570. data/lib/rango/exceptions.rb +90 -241
  571. data/lib/rango/ext.rb +85 -14
  572. data/lib/rango/ext/array.rb +20 -0
  573. data/lib/rango/ext/attribute.rb +14 -2
  574. data/lib/rango/ext/colored_string.rb +1 -1
  575. data/lib/rango/ext/enumerable.rb +30 -0
  576. data/lib/rango/ext/file.rb +84 -0
  577. data/lib/rango/ext/hash.rb +127 -1
  578. data/lib/rango/ext/kernel.rb +41 -24
  579. data/lib/rango/ext/object.rb +56 -0
  580. data/lib/rango/ext/object_space.rb +10 -5
  581. data/lib/rango/ext/os.rb +89 -0
  582. data/lib/rango/ext/platform.rb +27 -0
  583. data/lib/rango/ext/random.rb +11 -8
  584. data/lib/rango/ext/string.rb +17 -3
  585. data/lib/rango/ext/thor.rb +12 -12
  586. data/lib/rango/ext/time.rb +15 -0
  587. data/lib/rango/ext/time_dsl.rb +2 -3
  588. data/lib/rango/ext/unique_array.rb +16 -0
  589. data/lib/rango/forms/form.rb +2 -2
  590. data/lib/rango/generic_views.rb +18 -0
  591. data/lib/rango/helpers.rb +2 -2
  592. data/lib/rango/helpers/assets.rb +2 -2
  593. data/lib/rango/helpers/general.rb +13 -2
  594. data/lib/rango/helpers/merb-helpers.rb +2 -39
  595. data/lib/rango/helpers/merb-helpers/core_ext.rb +1 -1
  596. data/lib/rango/helpers/merb-helpers/core_ext/numeric.rb +2 -2
  597. data/lib/rango/helpers/merb-helpers/date_time_formatting.rb +1 -1
  598. data/lib/rango/helpers/merb-helpers/date_time_helpers.rb +2 -2
  599. data/lib/rango/helpers/merb-helpers/form/builder.rb +1 -1
  600. data/lib/rango/helpers/merb-helpers/form/helpers.rb +1 -1
  601. data/lib/rango/helpers/merb-helpers/form_helpers.rb +4 -4
  602. data/lib/rango/helpers/merb-helpers/tag_helpers.rb +2 -2
  603. data/lib/rango/helpers/merb-helpers/text_helpers.rb +1 -1
  604. data/lib/rango/helpers/syntax.rb +2 -2
  605. data/lib/rango/loggers/fireruby.rb +1 -1
  606. data/lib/rango/loggers/logger.rb +2 -2
  607. data/lib/rango/mixins/application.rb +2 -2
  608. data/lib/rango/mixins/chainable.rb +68 -0
  609. data/lib/rango/mixins/configurable.rb +2 -2
  610. data/lib/rango/mixins/controller.rb +4 -3
  611. data/lib/rango/mixins/hookable.rb +32 -0
  612. data/lib/rango/mixins/import.rb +2 -2
  613. data/lib/rango/mixins/mini.rb +29 -0
  614. data/lib/rango/mixins/strategy.rb +2 -2
  615. data/lib/rango/orm/adapters/datamapper/fields.rb +1 -1
  616. data/lib/rango/orm/adapters/datamapper/setup.rb +1 -1
  617. data/lib/rango/orm/adapters/datamapper/support.rb +3 -3
  618. data/lib/rango/orm/adapters/datamapper/tasks.thor +1 -1
  619. data/lib/rango/orm/adapters/datamapper/types/unicode_string.rb +1 -1
  620. data/{spec/rango/auth/more/mixins/salted_user/sq_salted_user_spec.rb → lib/rango/orm/adapters/sequel/tasks.thor} +0 -0
  621. data/lib/rango/project.rb +2 -2
  622. data/lib/rango/rack/middlewares/basic.rb +46 -0
  623. data/lib/rango/rack/middlewares/email_obfuscator.rb +25 -0
  624. data/lib/rango/rack/middlewares/encoding.rb +2 -2
  625. data/lib/rango/rack/middlewares/static.rb +41 -37
  626. data/lib/rango/rack/request.rb +2 -2
  627. data/lib/rango/rango.rb +34 -21
  628. data/lib/rango/router.rb +17 -0
  629. data/lib/rango/router/adapters/rack_router.rb +8 -0
  630. data/lib/rango/router/adapters/urlmap.rb +10 -0
  631. data/lib/rango/router/adapters/usher.rb +8 -0
  632. data/lib/rango/router/specification.txt +1 -6
  633. data/lib/rango/settings.rb +2 -2
  634. data/lib/rango/settings/erubis.rb +2 -2
  635. data/lib/rango/settings/framework.rb +7 -3
  636. data/lib/rango/settings/haml.rb +3 -3
  637. data/lib/rango/settings/template.rb +17 -0
  638. data/lib/rango/support/cucumber/steps/given_steps.rb +1 -1
  639. data/lib/rango/support/cucumber/steps/then_steps.rb +1 -1
  640. data/lib/rango/support/cucumber/steps/when_steps.rb +1 -1
  641. data/lib/rango/tasks/bundle.thor +1 -1
  642. data/lib/rango/tasks/stats.thor +1 -0
  643. data/lib/rango/templates/adapter.rb +3 -3
  644. data/lib/rango/templates/adapters/erb.rb +23 -5
  645. data/lib/rango/templates/adapters/erubis.rb +41 -36
  646. data/lib/rango/templates/adapters/haml.rb +13 -4
  647. data/lib/rango/templates/template.rb +3 -1
  648. data/rango.gemspec +32 -24
  649. data/rango.gemspec.erb +43 -0
  650. data/spec/factories.rb +3 -2
  651. data/spec/rango/boot_spec.rb +2 -6
  652. data/spec/rango/{auth/more/mixins/salted_user_spec.rb → bundling/strategies/copy_spec.rb} +0 -0
  653. data/spec/rango/{auth/more/spec/merb-auth-more_spec_spec.rb → bundling/strategies/gem_spec.rb} +0 -0
  654. data/spec/rango/{auth/more/spec/mixins/redirect_back_spec_spec.rb → bundling/strategies/git_spec.rb} +0 -0
  655. data/spec/rango/{auth/more/spec/mixins/salted_user_spec_spec.rb → bundling/strategies/hg_spec.rb} +0 -0
  656. data/spec/rango/{auth/more/spec/spec_helper_spec.rb → bundling/strategy_spec.rb} +0 -0
  657. data/spec/rango/{auth/more/strategies/abstract_password_spec.rb → cli/generator_spec.rb} +0 -0
  658. data/spec/rango/{auth/more/strategies/basic/basic_auth_spec.rb → cli/templater_spec.rb} +0 -0
  659. data/spec/rango/{auth/more/strategies/basic/openid_spec.rb → contrib/pagination/adapters/datamapper_spec.rb} +0 -0
  660. data/spec/rango/contrib/pagination/page_spec.rb +2 -2
  661. data/spec/rango/controller_spec.rb +24 -0
  662. data/spec/rango/exceptions_spec.rb +74 -0
  663. data/spec/rango/ext/array_spec.rb +19 -0
  664. data/spec/rango/ext/attribute_spec.rb +37 -0
  665. data/spec/rango/ext/colored_string_spec.rb +9 -0
  666. data/spec/rango/ext/enumerable_spec.rb +52 -0
  667. data/spec/rango/ext/file_spec.rb +78 -0
  668. data/spec/rango/ext/hash_spec.rb +91 -0
  669. data/spec/rango/ext/kernel_spec.rb +9 -0
  670. data/spec/rango/ext/object_space_spec.rb +17 -0
  671. data/spec/rango/ext/object_spec.rb +57 -0
  672. data/spec/rango/ext/os_spec.rb +121 -0
  673. data/spec/rango/ext/random_spec.rb +31 -0
  674. data/spec/rango/ext/string_spec.rb +23 -0
  675. data/spec/rango/ext/thor_spec.rb +26 -0
  676. data/spec/rango/ext/time_dsl_spec.rb +86 -0
  677. data/spec/rango/ext/time_spec.rb +11 -0
  678. data/spec/rango/ext_spec.rb +182 -0
  679. data/spec/rango/{auth/more/strategies/basic/password_form_spec.rb → generic_views_spec.rb} +0 -0
  680. data/spec/rango/helpers/merb-helpers/core_ext_spec.rb +21 -0
  681. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/application.rb +4 -0
  682. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/bound_check_box.rb +4 -0
  683. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/bound_file_field.rb +4 -0
  684. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/bound_hidden_field.rb +4 -0
  685. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/bound_option_tag.rb +4 -0
  686. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/bound_password_field.rb +4 -0
  687. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/bound_radio_button.rb +4 -0
  688. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/bound_radio_group.rb +4 -0
  689. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/bound_select.rb +4 -0
  690. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/bound_text_area.rb +4 -0
  691. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/bound_text_field.rb +4 -0
  692. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/button.rb +4 -0
  693. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/check_box.rb +4 -0
  694. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/custom_builder.rb +4 -0
  695. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/delete_button.rb +4 -0
  696. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/exceptions.rb +25 -0
  697. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/field_set.rb +4 -0
  698. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/fields_for.rb +3 -0
  699. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/file_field.rb +4 -0
  700. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/foo.rb +23 -0
  701. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/form.rb +4 -0
  702. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/form_for.rb +4 -0
  703. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/hacker.rb +4 -0
  704. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/hidden_field.rb +4 -0
  705. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/label.rb +4 -0
  706. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/numeric_ext.rb +4 -0
  707. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/option_tag.rb +4 -0
  708. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/password_field.rb +4 -0
  709. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/radio_button.rb +4 -0
  710. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/radio_group.rb +4 -0
  711. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/relative_date.rb +4 -0
  712. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/relative_date_span.rb +4 -0
  713. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/select.rb +4 -0
  714. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/specs_controller.rb +13 -0
  715. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/submit.rb +4 -0
  716. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/tag_helper.rb +23 -0
  717. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/text_area.rb +4 -0
  718. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/text_field.rb +4 -0
  719. data/spec/rango/helpers/merb-helpers/fixture/app/helpers/global_helpers.rb +7 -0
  720. data/spec/rango/helpers/merb-helpers/fixture/app/models/fake_dm_model.rb +27 -0
  721. data/spec/rango/helpers/merb-helpers/fixture/app/models/first_generic_fake_model.rb +59 -0
  722. data/spec/rango/helpers/merb-helpers/fixture/app/models/hacker_generic_model.rb +7 -0
  723. data/spec/rango/helpers/merb-helpers/fixture/app/models/second_generic_fake_model.rb +20 -0
  724. data/spec/rango/helpers/merb-helpers/fixture/app/models/third_generic_fake_model.rb +5 -0
  725. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_check_box_specs/basic.html.erb +0 -0
  726. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_check_box_specs/basic_unchecked.html.erb +0 -0
  727. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_check_box_specs/checked.html.erb +0 -0
  728. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_check_box_specs/errors.html.erb +0 -0
  729. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_check_box_specs/label.html.erb +0 -0
  730. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_check_box_specs/on_and_off.html.erb +0 -0
  731. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_check_box_specs/raise_value_error.html.erb +0 -0
  732. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_file_field_specs/additional_attributes.html.erb +0 -0
  733. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_file_field_specs/takes_string.html.erb +0 -0
  734. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_file_field_specs/with_label.html.erb +0 -0
  735. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_hidden_field_specs/basic.html.erb +0 -0
  736. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_hidden_field_specs/errors.html.erb +0 -0
  737. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_hidden_field_specs/hidden_error.html.erb +0 -0
  738. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_hidden_field_specs/label.html.erb +0 -0
  739. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_option_tag_specs/grouped.html.erb +0 -0
  740. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_option_tag_specs/nested.html.erb +0 -0
  741. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_option_tag_specs/text_and_value.html.erb +0 -0
  742. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_password_field_specs/attributes.html.erb +0 -0
  743. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_password_field_specs/basic.html.erb +0 -0
  744. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_password_field_specs/label.html.erb +0 -0
  745. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_radio_button_specs/basic.html.erb +0 -0
  746. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_radio_group_specs/basic.html.erb +0 -0
  747. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_radio_group_specs/hashes.html.erb +0 -0
  748. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_radio_group_specs/mixed.html.erb +0 -0
  749. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_radio_group_specs/override_id.html.erb +0 -0
  750. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_select_specs/basic.html.erb +0 -0
  751. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_select_specs/blank.html.erb +0 -0
  752. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_select_specs/label.html.erb +0 -0
  753. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_select_specs/multiple.html.erb +0 -0
  754. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_select_specs/prompt.html.erb +0 -0
  755. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_select_specs/with_options.html.erb +0 -0
  756. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_select_specs/with_options_with_blank.html.erb +0 -0
  757. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_text_area_specs/basic.html.erb +0 -0
  758. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_text_area_specs/label.html.erb +0 -0
  759. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_text_field_specs/basic.html.erb +0 -0
  760. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/button_specs/button_with_label.html.erb +0 -0
  761. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/button_specs/button_with_values.html.erb +0 -0
  762. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/button_specs/disabled_button.html.erb +0 -0
  763. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/check_box_specs/basic.html.erb +0 -0
  764. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/check_box_specs/boolean.html.erb +0 -0
  765. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/check_box_specs/disabled.html.erb +0 -0
  766. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/check_box_specs/label.html.erb +0 -0
  767. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/check_box_specs/on_off_is_boolean.html.erb +0 -0
  768. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/check_box_specs/raise_unless_both_on_and_off.html.erb +0 -0
  769. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/check_box_specs/raises_error_if_not_boolean.html.erb +0 -0
  770. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/check_box_specs/raises_error_if_on_off_and_boolean_false.html.erb +0 -0
  771. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/check_box_specs/simple.html.erb +0 -0
  772. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/check_box_specs/to_string.html.erb +0 -0
  773. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/check_box_specs/unchecked.html.erb +0 -0
  774. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/custom_builder_specs/everything.html.erb +0 -0
  775. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/delete_button_specs/delete_with_explicit_url.html.erb +0 -0
  776. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/delete_button_specs/delete_with_extra_params.html.erb +0 -0
  777. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/delete_button_specs/delete_with_label.html.erb +0 -0
  778. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/delete_button_specs/simple_delete.html.erb +0 -0
  779. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/exeptions/client_error.html.erb +0 -0
  780. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/exeptions/internal_server_error.html.erb +0 -0
  781. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/exeptions/not_acceptable.html.erb +0 -0
  782. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/exeptions/not_found.html.erb +0 -0
  783. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/fields_for_specs/basic.html.erb +0 -0
  784. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/fields_for_specs/midstream.html.erb +0 -0
  785. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/fields_for_specs/nil.html.erb +0 -0
  786. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/fieldset_specs/legend.html.erb +0 -0
  787. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/file_field_specs/disabled.html.erb +0 -0
  788. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/file_field_specs/makes_multipart.html.erb +0 -0
  789. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/file_field_specs/with_label.html.erb +0 -0
  790. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/file_field_specs/with_values.html.erb +0 -0
  791. data/spec/rango/{auth/more_spec.rb → helpers/merb-helpers/fixture/app/views/foo/bar.html.erb} +0 -0
  792. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/form_for_specs/basic.html.erb +0 -0
  793. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/form_specs/create_a_form.html.erb +0 -0
  794. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/form_specs/create_a_multipart_form.html.erb +0 -0
  795. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/form_specs/fake_delete_if_set.html.erb +0 -0
  796. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/form_specs/fake_put_if_set.html.erb +0 -0
  797. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/form_specs/get_if_set.html.erb +0 -0
  798. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/form_specs/post_by_default.html.erb +0 -0
  799. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/form_specs/resourceful_form.html.erb +0 -0
  800. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/hacker/file_field.html.erb +0 -0
  801. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/hacker/hidden_field.html.erb +0 -0
  802. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/hacker/option_tag.html.erb +0 -0
  803. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/hacker/password_field.html.erb +0 -0
  804. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/hacker/radio_button.html.erb +0 -0
  805. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/hacker/radio_group.html.erb +0 -0
  806. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/hacker/text_area.html.erb +0 -0
  807. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/hacker/text_field.html.erb +0 -0
  808. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/hidden_field_specs/basic.html.erb +0 -0
  809. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/hidden_field_specs/disabled.html.erb +0 -0
  810. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/hidden_field_specs/label.html.erb +0 -0
  811. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/label_specs/basic.html.erb +0 -0
  812. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/label_specs/basic_with_attributes.html.erb +0 -0
  813. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/label_specs/basic_with_class.html.erb +0 -0
  814. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/layout/application.html.erb +0 -0
  815. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/numeric_ext_specs/minutes_to_hours.html.erb +0 -0
  816. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/numeric_ext_specs/to_concurrency_default.html.erb +0 -0
  817. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/numeric_ext_specs/two_digits.html.erb +0 -0
  818. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/option_tag_specs/array.html.erb +0 -0
  819. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/option_tag_specs/clean.html.erb +0 -0
  820. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/option_tag_specs/collection.html.erb +0 -0
  821. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/option_tag_specs/multiple_selects.html.erb +0 -0
  822. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/option_tag_specs/no_extra_attributes.html.erb +0 -0
  823. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/option_tag_specs/optgroups.html.erb +0 -0
  824. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/option_tag_specs/selected.html.erb +0 -0
  825. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/option_tag_specs/with_blank.html.erb +0 -0
  826. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/option_tag_specs/with_prompt.html.erb +0 -0
  827. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/password_field_specs/basic.html.erb +0 -0
  828. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/password_field_specs/disabled.html.erb +0 -0
  829. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/radio_button_specs/basic.html.erb +0 -0
  830. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/radio_button_specs/checked.html.erb +0 -0
  831. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/radio_button_specs/disabled.html.erb +0 -0
  832. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/radio_button_specs/label.html.erb +0 -0
  833. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/radio_button_specs/unchecked.html.erb +0 -0
  834. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/radio_group_specs/attributes.html.erb +0 -0
  835. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/radio_group_specs/basic.html.erb +0 -0
  836. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/radio_group_specs/checked.html.erb +0 -0
  837. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/radio_group_specs/hash.html.erb +0 -0
  838. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/radio_group_specs/specific_attributes.html.erb +0 -0
  839. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/relative_date_span_specs/date_span_on_same_day.html.erb +0 -0
  840. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/relative_date_span_specs/date_span_on_same_day_on_different_year.html.erb +0 -0
  841. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/relative_date_specs/relative_date_with_year.html.erb +0 -0
  842. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/relative_date_specs/relative_date_without_year.html.erb +0 -0
  843. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/relative_date_specs/relative_today.html.erb +0 -0
  844. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/relative_date_specs/relative_tomorrow.html.erb +0 -0
  845. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/relative_date_specs/relative_yesterday.html.erb +0 -0
  846. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/select_specs/basic.html.erb +0 -0
  847. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/select_specs/blank.html.erb +0 -0
  848. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/select_specs/multiple.html.erb +0 -0
  849. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/select_specs/selected.html.erb +0 -0
  850. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/submit_specs/disabled_submit.html.erb +0 -0
  851. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/submit_specs/submit_with_label.html.erb +0 -0
  852. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/submit_specs/submit_with_values.html.erb +0 -0
  853. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/tag_helper/nested_tags.html.erb +0 -0
  854. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/tag_helper/tag_with_attributes.html.erb +0 -0
  855. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/tag_helper/tag_with_content.html.erb +0 -0
  856. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/tag_helper/tag_with_content_in_the_block.html.erb +0 -0
  857. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/text_area_specs/basic.html.erb +0 -0
  858. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/text_area_specs/disabled.html.erb +0 -0
  859. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/text_area_specs/label.html.erb +0 -0
  860. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/text_area_specs/nil.html.erb +0 -0
  861. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/text_field_specs/basic.html.erb +0 -0
  862. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/text_field_specs/class.html.erb +0 -0
  863. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/text_field_specs/disabled.html.erb +0 -0
  864. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/text_field_specs/label.html.erb +0 -0
  865. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/text_field_specs/symbolized_name.html.erb +0 -0
  866. data/spec/rango/helpers/merb-helpers/fixture/config/environments/development.rb +8 -0
  867. data/spec/rango/helpers/merb-helpers/fixture/config/environments/production.rb +7 -0
  868. data/spec/rango/helpers/merb-helpers/fixture/config/environments/test.rb +8 -0
  869. data/spec/rango/helpers/merb-helpers/fixture/config/init.rb +48 -0
  870. data/spec/rango/helpers/merb-helpers/fixture/config/rack.rb +13 -0
  871. data/spec/rango/helpers/merb-helpers/fixture/config/router.rb +40 -0
  872. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/public/images/merb.jpg +0 -0
  873. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/public/merb.fcgi +0 -0
  874. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/public/stylesheets/master.css +0 -0
  875. data/spec/rango/helpers/merb-helpers/merb_helpers_config_spec.rb +84 -0
  876. data/spec/rango/helpers/merb-helpers/merb_helpers_date_time_spec.rb +268 -0
  877. data/spec/rango/helpers/merb-helpers/merb_helpers_form_spec.rb +1370 -0
  878. data/spec/rango/helpers/merb-helpers/merb_helpers_tag_helper_spec.rb +42 -0
  879. data/spec/rango/helpers/merb-helpers/merb_helpers_text_spec.rb +69 -0
  880. data/spec/rango/helpers/merb-helpers/numeric_extlib_spec.rb +137 -0
  881. data/spec/rango/helpers/merb-helpers/ordinalize_spec.rb +53 -0
  882. data/spec/rango/{auth/slice/exceptions_spec.rb → mixins/configurable_spec.rb} +0 -0
  883. data/spec/rango/{auth/slice/merb-auth-slice-password_spec.rb → mixins/mini_spec.rb} +0 -0
  884. data/spec/rango/{auth/slice/sessions_spec.rb → mixins/strategy_spec.rb} +0 -0
  885. data/spec/rango/orm/adapters/{dm → datamapper}/fields_spec.rb +0 -0
  886. data/spec/rango/orm/adapters/{dm → datamapper}/setup_spec.rb +0 -0
  887. data/spec/rango/{auth/slice/spec_helper_spec.rb → orm/adapters/datamapper/support_spec.rb} +0 -0
  888. data/spec/rango/{auth/slice/xsessions_spec.rb → orm/adapters/datamapper/types/unicode_string_spec.rb} +0 -0
  889. data/spec/rango/project_spec.rb +3 -3
  890. data/spec/rango/{bundling/strategies_spec.rb → rack/middlewares/basic_spec.rb} +0 -0
  891. data/spec/rango/{cli/project_spec.rb → rack/middlewares/email_obfuscator_spec.rb} +0 -0
  892. data/spec/rango/{contrib/pagination/adapters/dm_spec.rb → rack/middlewares/encoding_spec.rb} +0 -0
  893. data/spec/rango/rack/request_spec.rb +3 -3
  894. data/spec/rango/{ext/core_ext_spec.rb → router/adapters/basic_spec.rb} +0 -0
  895. data/spec/rango/{ext/path_spec.rb → router/adapters/rack-router_spec.rb} +0 -0
  896. data/spec/rango/{rack → router}/dispatcher_spec.rb +0 -0
  897. data/spec/rango/{generators_spec.rb → settings/erubis_spec.rb} +0 -0
  898. data/spec/rango/{generic_views/static_spec.rb → settings/framework_spec.rb} +0 -0
  899. data/spec/rango/{helpers/merb-helpers/core_ext/numeric_spec.rb → settings/haml_spec.rb} +0 -0
  900. data/spec/rango/{helpers/merb-helpers/date_time_formatting_spec.rb → settings/template_spec.rb} +0 -0
  901. data/spec/rango/settings_spec.rb +3 -3
  902. data/spec/rango/{helpers/merb-helpers/date_time_helpers_spec.rb → support/cucumber/steps/given_steps_spec.rb} +0 -0
  903. data/spec/rango/{helpers/merb-helpers/form/builder_spec.rb → support/cucumber/steps/then_steps_spec.rb} +0 -0
  904. data/spec/rango/{helpers/merb-helpers/form/helpers_spec.rb → support/cucumber/steps/when_steps_spec.rb} +0 -0
  905. data/spec/rango/templates/adapters/erubis_spec.rb +117 -0
  906. data/spec/rango/templates/adapters/template_helpers.rb +38 -0
  907. data/spec/rango_spec.rb +4 -3
  908. data/spec/spec_helper.rb +27 -5
  909. data/spec/{rango/helpers/merb-helpers/form_helpers_spec.rb → stubs/acqs/dir/lib.rb} +0 -0
  910. data/spec/{rango/helpers/merb-helpers/tag_helpers_spec.rb → stubs/acqs/dir/lib_spec.rb} +0 -0
  911. data/spec/{rango/helpers/merb-helpers/text_helpers_spec.rb → stubs/acqs/lib.rb} +0 -0
  912. data/spec/{rango/helpers/merb-helpers/time_dsl_spec.rb → stubs/acqs/tasks.thor} +0 -0
  913. data/spec/stubs/flat.rb +1 -0
  914. data/spec/stubs/templates/basic.html.erb +6 -0
  915. data/spec/stubs/templates/capture.html.erb +11 -0
  916. data/spec/stubs/templates/context.html.erb +6 -0
  917. data/spec/stubs/templates/exception.html.erb +1 -0
  918. data/stubs/app/content/init.rb.rbt +2 -2
  919. data/stubs/app/content/models.rb.rbt +2 -2
  920. data/stubs/app/content/views.rb.rbt +3 -3
  921. data/stubs/app/metadata.yml +4 -0
  922. data/stubs/app/preprocess.rb +7 -6
  923. data/stubs/bigapp/metadata.yml +4 -0
  924. data/stubs/bigapp/preprocess.rb +2 -2
  925. data/stubs/features/content/env.rb +1 -1
  926. data/stubs/features/metadata.yml +4 -0
  927. data/stubs/flat/content/flat.ru.rbt +5 -4
  928. data/stubs/flat/metadata.yml +4 -0
  929. data/stubs/flat/preprocess.rb +2 -2
  930. data/stubs/project/content/Thorfile +1 -1
  931. data/stubs/project/content/config.ru +4 -5
  932. data/stubs/project/content/init.rb +11 -1
  933. data/stubs/project/content/settings.rb.rbt +1 -1
  934. data/stubs/project/content/settings_local.rb.rbt +1 -1
  935. data/stubs/project/metadata.yml +4 -0
  936. data/stubs/project/postprocess.rb +8 -0
  937. data/{spec/rango/mvc/strategies_spec.rb → stubs/pupu/content/CHANGELOG} +0 -0
  938. data/stubs/pupu/content/LICENSE.rbt +20 -0
  939. data/stubs/pupu/content/README.textile.rbt +7 -0
  940. data/stubs/pupu/content/TODO +5 -0
  941. data/stubs/pupu/content/Thorfile.rbt +21 -0
  942. data/stubs/pupu/content/config.rb.rbt +14 -0
  943. data/{spec/rango/rack/middlewares/emails_spec.rb → stubs/pupu/content/initializers/%name%.css} +0 -0
  944. data/stubs/pupu/content/initializers/%name%.js +3 -0
  945. data/{spec/rango/router/route_spec.rb → stubs/pupu/content/javascripts/%name%.js} +0 -0
  946. data/{spec/rango/router/router_spec.rb → stubs/pupu/content/stylesheets/%name%.css} +0 -0
  947. data/stubs/pupu/metadata.yml +4 -0
  948. data/stubs/pupu/preprocess.rb +4 -2
  949. data/stubs/stub/content/metadata.yml +3 -1
  950. data/stubs/stub/content/postprocess.rb +2 -4
  951. data/stubs/stub/content/preprocess.rb +2 -2
  952. data/stubs/stub/metadata.yml +4 -0
  953. data/tasks/benchmark.thor +15 -0
  954. data/tasks/hooks.thor +2 -2
  955. data/tasks/package.thor +20 -7
  956. data/tasks/release.thor +14 -12
  957. data/tasks/repair.thor +14 -25
  958. data/tasks/spec.thor +2 -1
  959. data/tasks/stats.thor +19 -3
  960. data/tasks/yardoc.thor +1 -1
  961. data/templates.txt +39 -0
  962. metadata +1059 -362
  963. data/lib/rango/cli/project.rb +0 -87
  964. data/lib/rango/cli/simple_template.rb +0 -47
  965. data/lib/rango/ext/class.rb +0 -99
  966. data/lib/rango/ext/core_ext.rb +0 -52
  967. data/lib/rango/ext/path.rb +0 -222
  968. data/lib/rango/ext/try.rb +0 -30
  969. data/lib/rango/generic_views/static.rb +0 -7
  970. data/lib/rango/helpers/merb-helpers/time_dsl.rb +0 -61
  971. data/lib/rango/helpers/spec/core_ext_spec.rb +0 -21
  972. data/lib/rango/helpers/spec/fixture/app/controllers/application.rb +0 -4
  973. data/lib/rango/helpers/spec/fixture/app/controllers/bound_check_box.rb +0 -2
  974. data/lib/rango/helpers/spec/fixture/app/controllers/bound_file_field.rb +0 -2
  975. data/lib/rango/helpers/spec/fixture/app/controllers/bound_hidden_field.rb +0 -2
  976. data/lib/rango/helpers/spec/fixture/app/controllers/bound_option_tag.rb +0 -2
  977. data/lib/rango/helpers/spec/fixture/app/controllers/bound_password_field.rb +0 -2
  978. data/lib/rango/helpers/spec/fixture/app/controllers/bound_radio_button.rb +0 -2
  979. data/lib/rango/helpers/spec/fixture/app/controllers/bound_radio_group.rb +0 -2
  980. data/lib/rango/helpers/spec/fixture/app/controllers/bound_select.rb +0 -2
  981. data/lib/rango/helpers/spec/fixture/app/controllers/bound_text_area.rb +0 -2
  982. data/lib/rango/helpers/spec/fixture/app/controllers/bound_text_field.rb +0 -2
  983. data/lib/rango/helpers/spec/fixture/app/controllers/button.rb +0 -2
  984. data/lib/rango/helpers/spec/fixture/app/controllers/check_box.rb +0 -2
  985. data/lib/rango/helpers/spec/fixture/app/controllers/custom_builder.rb +0 -2
  986. data/lib/rango/helpers/spec/fixture/app/controllers/delete_button.rb +0 -2
  987. data/lib/rango/helpers/spec/fixture/app/controllers/exceptions.rb +0 -25
  988. data/lib/rango/helpers/spec/fixture/app/controllers/field_set.rb +0 -2
  989. data/lib/rango/helpers/spec/fixture/app/controllers/fields_for.rb +0 -3
  990. data/lib/rango/helpers/spec/fixture/app/controllers/file_field.rb +0 -2
  991. data/lib/rango/helpers/spec/fixture/app/controllers/foo.rb +0 -23
  992. data/lib/rango/helpers/spec/fixture/app/controllers/form.rb +0 -2
  993. data/lib/rango/helpers/spec/fixture/app/controllers/form_for.rb +0 -2
  994. data/lib/rango/helpers/spec/fixture/app/controllers/hacker.rb +0 -2
  995. data/lib/rango/helpers/spec/fixture/app/controllers/hidden_field.rb +0 -2
  996. data/lib/rango/helpers/spec/fixture/app/controllers/label.rb +0 -3
  997. data/lib/rango/helpers/spec/fixture/app/controllers/numeric_ext.rb +0 -3
  998. data/lib/rango/helpers/spec/fixture/app/controllers/option_tag.rb +0 -2
  999. data/lib/rango/helpers/spec/fixture/app/controllers/password_field.rb +0 -2
  1000. data/lib/rango/helpers/spec/fixture/app/controllers/radio_button.rb +0 -2
  1001. data/lib/rango/helpers/spec/fixture/app/controllers/radio_group.rb +0 -2
  1002. data/lib/rango/helpers/spec/fixture/app/controllers/relative_date.rb +0 -2
  1003. data/lib/rango/helpers/spec/fixture/app/controllers/relative_date_span.rb +0 -2
  1004. data/lib/rango/helpers/spec/fixture/app/controllers/select.rb +0 -2
  1005. data/lib/rango/helpers/spec/fixture/app/controllers/specs_controller.rb +0 -11
  1006. data/lib/rango/helpers/spec/fixture/app/controllers/submit.rb +0 -2
  1007. data/lib/rango/helpers/spec/fixture/app/controllers/tag_helper.rb +0 -21
  1008. data/lib/rango/helpers/spec/fixture/app/controllers/text_area.rb +0 -2
  1009. data/lib/rango/helpers/spec/fixture/app/controllers/text_field.rb +0 -3
  1010. data/lib/rango/helpers/spec/fixture/app/helpers/global_helpers.rb +0 -8
  1011. data/lib/rango/helpers/spec/fixture/app/models/fake_dm_model.rb +0 -25
  1012. data/lib/rango/helpers/spec/fixture/app/models/first_generic_fake_model.rb +0 -57
  1013. data/lib/rango/helpers/spec/fixture/app/models/hacker_generic_model.rb +0 -5
  1014. data/lib/rango/helpers/spec/fixture/app/models/second_generic_fake_model.rb +0 -18
  1015. data/lib/rango/helpers/spec/fixture/app/models/third_generic_fake_model.rb +0 -3
  1016. data/lib/rango/helpers/spec/fixture/config/environments/development.rb +0 -6
  1017. data/lib/rango/helpers/spec/fixture/config/environments/production.rb +0 -5
  1018. data/lib/rango/helpers/spec/fixture/config/environments/test.rb +0 -6
  1019. data/lib/rango/helpers/spec/fixture/config/init.rb +0 -46
  1020. data/lib/rango/helpers/spec/fixture/config/rack.rb +0 -11
  1021. data/lib/rango/helpers/spec/fixture/config/router.rb +0 -38
  1022. data/lib/rango/helpers/spec/merb_helpers_config_spec.rb +0 -84
  1023. data/lib/rango/helpers/spec/merb_helpers_date_time_spec.rb +0 -270
  1024. data/lib/rango/helpers/spec/merb_helpers_form_spec.rb +0 -1371
  1025. data/lib/rango/helpers/spec/merb_helpers_tag_helper_spec.rb +0 -42
  1026. data/lib/rango/helpers/spec/merb_helpers_text_spec.rb +0 -69
  1027. data/lib/rango/helpers/spec/numeric_extlib_spec.rb +0 -137
  1028. data/lib/rango/helpers/spec/ordinalize_spec.rb +0 -53
  1029. data/lib/rango/helpers/spec/spec_helper.rb +0 -160
  1030. data/lib/rango/helpers/spec/time_dsl_spec.rb +0 -45
  1031. data/lib/rango/mvc/controller.rb +0 -139
  1032. data/lib/rango/mvc/strategies.rb +0 -6
  1033. data/lib/rango/rack/dispatcher.rb +0 -61
  1034. data/lib/rango/rack/middlewares/emails.rb +0 -7
  1035. data/lib/rango/router/adapters/basic.rb +0 -21
  1036. data/lib/rango/router/adapters/rack-router.rb +0 -18
  1037. data/lib/rango/router/dispatcher.rb +0 -29
  1038. data/spec/rango/mvc/controller_spec.rb +0 -24
  1039. data/spec/rango/router/strategies_spec.rb +0 -0
  1040. data/spec/rango/spec/cucumber_spec.rb +0 -0
  1041. data/spec/rango/spec/rspec_spec.rb +0 -0
  1042. data/stubs/project/preprocess.rb +0 -5
  1043. data/stubs/stub/preprocess.rb +0 -5
  1044. data/templates/errors/404.html.erb +0 -52
  1045. data/templates/errors/406.html.erb +0 -1
  1046. data/templates/errors/500.html.erb +0 -48
@@ -1,5 +1,7 @@
1
- # coding: utf-8
1
+ # encoding: utf-8
2
2
 
3
- # This hook will run before creating the new directory
3
+ # This hook will run before templater creates new files from templates
4
4
  # You should setup your variables for templates here
5
5
  # Dir.pwd => the stubs directory location
6
+
7
+ Rango::CLI::Templater.create(ARGV.shift, user: ENV["USER"])
@@ -1,2 +1,4 @@
1
- # Options: full|diff
1
+ ---
2
+ # full or diff
2
3
  :type: full
4
+ :flat: no
@@ -1,7 +1,5 @@
1
- # coding: utf-8
1
+ # encoding: utf-8
2
2
 
3
- # This hook will run after creating the new directory
3
+ # This hook will run after templater ends
4
4
  # ARGV[0] => the stubs directory location
5
5
  # Dir.pwd => new directory location
6
-
7
- stubs_root = ARGV.first
@@ -1,5 +1,5 @@
1
- # coding: utf-8
1
+ # encoding: utf-8
2
2
 
3
- # This hook will run before creating the new directory
3
+ # This hook will run before templater creates new files from templates
4
4
  # You should setup your variables for templates here
5
5
  # Dir.pwd => the stubs directory location
@@ -0,0 +1,4 @@
1
+ ---
2
+ # full or diff
3
+ :type: full
4
+ :flat: no
@@ -0,0 +1,15 @@
1
+ # encoding: utf-8
2
+
3
+ # http://github.com/somebee/rbench/tree/master
4
+ class Benchmark < Thor
5
+ def initialize
6
+ require "rbench"
7
+ end
8
+
9
+ desc "all", "Run all benchmarks"
10
+ def all
11
+ Dir["#{Dir.pwd}/benchmarks/bm/*.rb"].each do |benchmark|
12
+ load benchmark
13
+ end
14
+ end
15
+ end
data/tasks/hooks.thor CHANGED
@@ -1,10 +1,10 @@
1
- # coding: utf-8
1
+ # encoding: utf-8
2
2
 
3
3
  class Hooks < Thor
4
4
  # TODO: force option
5
5
  desc "all", "Install all git hooks"
6
6
  def all
7
- if File.directory?(".git/hooks")
7
+ if Dir.exist?(".git/hooks")
8
8
  abort "You must remove .git/hooks first"
9
9
  else
10
10
  # do not symlink them, otherwise git will add samples
data/tasks/package.thor CHANGED
@@ -1,16 +1,19 @@
1
- # coding: utf-8
2
-
3
- require "fileutils"
4
- require "rubygems/user_interaction"
5
- require "rubygems/builder"
1
+ # encoding: utf-8
6
2
 
7
3
  class Gem < Thor
8
4
  self.default_task(:package)
9
5
 
6
+ def initialize
7
+ require "fileutils"
8
+ require "rubygems/user_interaction"
9
+ require "rubygems/builder"
10
+ end
11
+
10
12
  desc "package", "Package the gem"
11
13
  def package
12
- load("rango.gemspec")
13
- spec = Rango::SPECIFICATION
14
+ Gemspec.new.generate
15
+ gemspec = File.read("rango.gemspec")
16
+ spec = eval(gemspec)
14
17
  FileUtils.mkdir_p(File.join(Dir.pwd, "pkg"))
15
18
  ::Gem::Builder.new(spec).build
16
19
  FileUtils.mv(spec.file_name, File.join(Dir.pwd, "pkg", spec.file_name))
@@ -29,6 +32,16 @@ class Gem < Thor
29
32
  end
30
33
 
31
34
  class Gemspec < Thor
35
+ desc "generate", "Generate gemspec"
36
+ def generate
37
+ require_relative "../lib/rango"
38
+ require "erb"
39
+ File.open("rango.gemspec", "w") do |file|
40
+ content = File.read("rango.gemspec.erb")
41
+ file.puts(ERB.new(content).result)
42
+ end
43
+ end
44
+
32
45
  desc "validate", "Validate gemspec"
33
46
  def validate
34
47
  require "rubygems/specification"
data/tasks/release.thor CHANGED
@@ -1,9 +1,12 @@
1
- # coding: utf-8
2
-
3
- require_relative "../lib/rango"
4
- load "#{File.dirname(__FILE__)}/yardoc.thor"
1
+ # encoding: utf-8
5
2
 
6
3
  class Release < Thor
4
+ def initialize
5
+ require_relative "../lib/rango"
6
+ load "#{File.dirname(__FILE__)}/yardoc.thor"
7
+ load "#{File.dirname(__FILE__)}/../rango.gemspec"
8
+ end
9
+
7
10
  desc "all", "Run all the tasks related with releasing new version."
8
11
  def all(password)
9
12
  print "Have you updated version and codename in lib/rango.rb? [y/N] "
@@ -31,8 +34,8 @@ class Release < Thor
31
34
 
32
35
  desc "tag", "Create Git tag for this version and push it to GitHub."
33
36
  def tag
34
- puts "Creating new git tag #{Rango::VERSION} with description #{Rango::CODENAME} and pushing it online ..."
35
- %x[git tag -a -m 'Version #{Rango::VERSION} "#{Rango::CODENAME}"' #{Rango::VERSION}]
37
+ puts "Creating new git tag #{Rango::VERSION} and pushing it online ..."
38
+ %x[git tag -a -m 'Version #{Rango::VERSION}' #{Rango::VERSION}]
36
39
  %x[git push --tags]
37
40
  puts "Tag #{Rango::VERSION} was created and pushed to GitHub."
38
41
  end
@@ -48,8 +51,8 @@ class Release < Thor
48
51
  %x[rubyforge login]
49
52
  file = Dir["pkg/*.gem"].last
50
53
  # args: rubyforge_project gem_name gem_version gem_file
51
- # sh %x[rubyforge add_release rango rango #{Rango::VERSION} #{file}]
52
- # sh %x[rubyforge add_file rango rango #{Rango::VERSION} #{file}]
54
+ %x[rubyforge add_release 8080 rango #{Rango::VERSION} #{file}]
55
+ %x[rubyforge add_file 8080 rango #{Rango::VERSION} #{file}]
53
56
  end
54
57
 
55
58
  desc "tmbundle", "Upgrade the TextMate bundle."
@@ -61,12 +64,11 @@ class Release < Thor
61
64
  %x[git add support/#{bundle}]
62
65
  %x[git commit support/Rango.tmbundle -m "Updated Rango TextMate bundle."]
63
66
  end
64
-
67
+
65
68
  desc "twitter", "Send message to Twitter"
66
69
  def twitter(password)
67
- puts "Message have been sent to Twitter"
68
- require "twitter"
69
70
  message = "Rango #{Rango::VERSION} have been just released! Install via RubyGems from RubyForge or GitHub!"
70
- %x[curl --basic --user RangoProject:#{password} --data status="#{message}" ]
71
+ %x[curl --basic --user RangoProject:#{password} --data status="#{message}" http://twitter.com/statuses/update.xml > /dev/null]
72
+ puts "Message have been sent to Twitter"
71
73
  end
72
74
  end
data/tasks/repair.thor CHANGED
@@ -1,11 +1,10 @@
1
- # coding: utf-8
1
+ # encoding: utf-8
2
2
 
3
3
  # TODO: run it as git hook before commit
4
4
  class Repair < Thor
5
5
  desc "all", "Repair encoding, shebang and whitespace"
6
6
  def all
7
7
  self.encoding
8
- self.shebang
9
8
  self.whitespace
10
9
  self.eof
11
10
  end
@@ -13,29 +12,14 @@ class Repair < Thor
13
12
  desc "encoding", "Add missing coding declaration"
14
13
  def encoding
15
14
  ruby_files do |file, lines, original|
16
- unless lines[0].match(/^# coding: utf-8\s*$/)
15
+ if lines.length > 1 && ! lines.first.match(/^# encoding: utf-8\s*$/)
17
16
  puts "Added missing coding declaration to #{file}"
18
- lines.insert(0, "# coding: utf-8\n\n")
17
+ lines.insert(0, "# encoding: utf-8\n\n")
19
18
  self.save(file, lines)
20
19
  end
21
20
  end
22
21
  end
23
22
 
24
- desc "shebang", "Add missing shebang and do it executable if it isn't"
25
- def shebang
26
- root = File.join(File.dirname(__FILE__), "..")
27
- Dir["#{root}/bin/*"].each do |file|
28
- lines = File.readlines(file)
29
- # is executable but hasn't shebang
30
- if File.executable?(file) && ! lines[0].match(/^#!/)
31
- # TODO
32
- # isn't executable and has shebang
33
- elsif ! File.executable?(file)
34
- system("chmod +x '#{file}'")
35
- end
36
- end
37
- end
38
-
39
23
  desc "whitespace", "Remove extra whitespace"
40
24
  def whitespace
41
25
  ruby_files do |file, lines, original|
@@ -50,7 +34,7 @@ class Repair < Thor
50
34
  desc "eof", "Add missing \\n to the end of files"
51
35
  def eof
52
36
  ruby_files do |file, lines, original|
53
- unless original.last.match(/\n$/)
37
+ if original.last && ! original.last.match(/\n$/)
54
38
  puts "Added missing \\n to the end of #{file}"
55
39
  self.save(file, lines)
56
40
  end
@@ -58,6 +42,10 @@ class Repair < Thor
58
42
  end
59
43
 
60
44
  protected
45
+ def root
46
+ File.expand_path(File.join(File.dirname(__FILE__), ".."))
47
+ end
48
+
61
49
  def save(file, lines)
62
50
  File.open(file, "w") do |file|
63
51
  file.puts(lines)
@@ -65,11 +53,12 @@ class Repair < Thor
65
53
  end
66
54
 
67
55
  def ruby_files(&block)
68
- root = File.dirname(__FILE__)
69
- Dir["#{root}/**/*.{rb,ru,thor}"].each do |file|
70
- original = File.readlines(file)
71
- lines = original.each { |line| line.chomp }
72
- block.call(file, lines, original)
56
+ Dir["#{self.root}/**/*.{rb,ru,thor}"].each do |file|
57
+ unless File.directory?(file) # merb.thor etc
58
+ original = File.readlines(file)
59
+ lines = original.each { |line| line.chomp }
60
+ block.call(file, lines, original)
61
+ end
73
62
  end
74
63
  end
75
64
  end
data/tasks/spec.thor CHANGED
@@ -1,10 +1,11 @@
1
- # coding: utf-8
1
+ # encoding: utf-8
2
2
 
3
3
  class Spec < Thor
4
4
  def initialize
5
5
  gem "rspec"
6
6
  require "spec/autorun"
7
7
  end
8
+
8
9
  desc "rango [path]", "Run Rango specs"
9
10
  def rango(path = "spec")
10
11
  spec(path, "--options", "spec/spec.opts")
data/tasks/stats.thor CHANGED
@@ -1,4 +1,4 @@
1
- # coding: utf-8
1
+ # encoding: utf-8
2
2
 
3
3
  require "fileutils"
4
4
  require_relative "../lib/rango/ext"
@@ -14,8 +14,8 @@ class Stats < Thor
14
14
 
15
15
  desc "all", "Lines of code altogether"
16
16
  def all
17
- self.run(:libs, :specs, :tasks, :hooks)
18
- self.altogether(@altogether)
17
+ tasks = [:libs, :specs, :features, :benchmarks, :tasks, :hooks]
18
+ self.run(*tasks); self.altogether(@altogether)
19
19
  end
20
20
 
21
21
  desc "libs", "Lines of code in library"
@@ -38,6 +38,22 @@ class Stats < Thor
38
38
  self.count(Dir.glob("support/hooks/*"))
39
39
  end
40
40
 
41
+ desc "examples", "Lines of code in examples"
42
+ def examples
43
+ self.count(Dir.glob("examples/*.rb"))
44
+ end
45
+
46
+ desc "benchmarks", "Lines of code in benchmarks"
47
+ def benchmarks
48
+ self.count(Dir.glob("benchmarks/bm/*.rb"))
49
+ end
50
+
51
+ desc "features", "Lines of code in Cucumber features"
52
+ def features
53
+ self.count(Dir.glob("features/*.feature"))
54
+ self.count(Dir.glob("features/*_step.rb"))
55
+ end
56
+
41
57
  protected
42
58
  def count(files)
43
59
  altogether = 0
data/tasks/yardoc.thor CHANGED
@@ -1,4 +1,4 @@
1
- # coding: utf-8
1
+ # encoding: utf-8
2
2
 
3
3
  class Yardoc < Thor
4
4
  desc "generate", "Generate Yardoc documentation for rango."
data/templates.txt ADDED
@@ -0,0 +1,39 @@
1
+ 1) local template variables
2
+ render "index", post: Post.first
3
+ + we will get exception when we have unitialized variable (@unitialized is nil)
4
+ + it's the same as in partials, no problem to take part of template and create new partial from it
5
+ + we have full controll what goes to the template
6
+ 2) instance controller variables
7
+ @post = Post.first
8
+ render "index"
9
+ 3) combination
10
+ -> something is really important and we need ensure it is initialized, but something is optional and definitely is easier to do @foo.nil? than defined?(foo)
11
+
12
+ 1) same namespace as controller
13
+ 2) different namespace than controller
14
+
15
+ def index
16
+ @context[:post] = Post.first
17
+ render "index"
18
+ end
19
+
20
+ def index
21
+ render "index", post: Post.first
22
+ end
23
+
24
+ ... hard to say => user must decide
25
+
26
+ list = ['<aaa>', 'b&b', '"ccc"']
27
+ puts eruby.result(binding())
28
+
29
+ !!!! binding works with local variables !!!
30
+
31
+
32
+ nechceme definice views, chceme @post, chceme request
33
+
34
+ Project.settings => OpenStruct
35
+
36
+ Project.settings.template.format = :html
37
+ Project.settings.template.format_version = 5
38
+ Project.settings.template.caching = Rango.debug?
39
+ - for helpers
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rango
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - "Jakub \xC5\xA0\xC5\xA5astn\xC3\xBD aka Botanicus"
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain:
11
- date: 2009-06-04 00:00:00 +01:00
11
+ date: 2009-09-06 00:00:00 +01:00
12
12
  default_executable: rango
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
@@ -31,6 +31,36 @@ dependencies:
31
31
  - !ruby/object:Gem::Version
32
32
  version: "0"
33
33
  version:
34
+ - !ruby/object:Gem::Dependency
35
+ name: path
36
+ type: :runtime
37
+ version_requirement:
38
+ version_requirements: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: "0"
43
+ version:
44
+ - !ruby/object:Gem::Dependency
45
+ name: erubis
46
+ type: :development
47
+ version_requirement:
48
+ version_requirements: !ruby/object:Gem::Requirement
49
+ requirements:
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: "0"
53
+ version:
54
+ - !ruby/object:Gem::Dependency
55
+ name: thor
56
+ type: :development
57
+ version_requirement:
58
+ version_requirements: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: "0"
63
+ version:
34
64
  description: ""
35
65
  email: knava.bestvinensis@gmail.com
36
66
  executables:
@@ -40,10 +70,611 @@ extensions: []
40
70
  extra_rdoc_files: []
41
71
 
42
72
  files:
73
+ - benchmarks
74
+ - benchmarks/ab.rb
75
+ - benchmarks/bm
76
+ - benchmarks/bm/boot.rb
77
+ - benchmarks/bm/callbacks.rb
78
+ - benchmarks/bm/request.rb
79
+ - benchmarks/bm/routers.rb
80
+ - benchmarks/bm/stack.rb
81
+ - benchmarks/bm/templates.rb
82
+ - benchmarks/helper.rb
83
+ - benchmarks/stubs
84
+ - benchmarks/stubs/merb-app
85
+ - benchmarks/stubs/merb-app/app
86
+ - benchmarks/stubs/merb-app/app/controllers
87
+ - benchmarks/stubs/merb-app/app/controllers/application.rb
88
+ - benchmarks/stubs/merb-app/app/controllers/exceptions.rb
89
+ - benchmarks/stubs/merb-app/app/helpers
90
+ - benchmarks/stubs/merb-app/app/helpers/global_helpers.rb
91
+ - benchmarks/stubs/merb-app/app/models
92
+ - benchmarks/stubs/merb-app/app/models/user.rb
93
+ - benchmarks/stubs/merb-app/app/views
94
+ - benchmarks/stubs/merb-app/app/views/exceptions
95
+ - benchmarks/stubs/merb-app/app/views/exceptions/not_acceptable.html.erb
96
+ - benchmarks/stubs/merb-app/app/views/exceptions/not_found.html.erb
97
+ - benchmarks/stubs/merb-app/app/views/layout
98
+ - benchmarks/stubs/merb-app/app/views/layout/application.html.erb
99
+ - benchmarks/stubs/merb-app/autotest
100
+ - benchmarks/stubs/merb-app/autotest/discover.rb
101
+ - benchmarks/stubs/merb-app/autotest/merb.rb
102
+ - benchmarks/stubs/merb-app/autotest/merb_rspec.rb
103
+ - benchmarks/stubs/merb-app/config
104
+ - benchmarks/stubs/merb-app/config/database.yml
105
+ - benchmarks/stubs/merb-app/config/dependencies.rb
106
+ - benchmarks/stubs/merb-app/config/environments
107
+ - benchmarks/stubs/merb-app/config/environments/development.rb
108
+ - benchmarks/stubs/merb-app/config/environments/production.rb
109
+ - benchmarks/stubs/merb-app/config/environments/rake.rb
110
+ - benchmarks/stubs/merb-app/config/environments/staging.rb
111
+ - benchmarks/stubs/merb-app/config/environments/test.rb
112
+ - benchmarks/stubs/merb-app/config/init.rb
113
+ - benchmarks/stubs/merb-app/config/rack.rb
114
+ - benchmarks/stubs/merb-app/config/router.rb
115
+ - benchmarks/stubs/merb-app/doc
116
+ - benchmarks/stubs/merb-app/doc/rdoc
117
+ - benchmarks/stubs/merb-app/doc/rdoc/generators
118
+ - benchmarks/stubs/merb-app/doc/rdoc/generators/merb_generator.rb
119
+ - benchmarks/stubs/merb-app/doc/rdoc/generators/template
120
+ - benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb
121
+ - benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb/api_grease.js
122
+ - benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb/index.html.erb
123
+ - benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb/merb.css
124
+ - benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb/merb.rb
125
+ - benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb/merb_doc_styles.css
126
+ - benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb/prototype.js
127
+ - benchmarks/stubs/merb-app/gems
128
+ - benchmarks/stubs/merb-app/merb
129
+ - benchmarks/stubs/merb-app/merb/merb-auth
130
+ - benchmarks/stubs/merb-app/merb/merb-auth/setup.rb
131
+ - benchmarks/stubs/merb-app/merb/merb-auth/strategies.rb
132
+ - benchmarks/stubs/merb-app/merb/session
133
+ - benchmarks/stubs/merb-app/merb/session/session.rb
134
+ - benchmarks/stubs/merb-app/public
135
+ - benchmarks/stubs/merb-app/public/favicon.ico
136
+ - benchmarks/stubs/merb-app/public/images
137
+ - benchmarks/stubs/merb-app/public/images/merb.jpg
138
+ - benchmarks/stubs/merb-app/public/javascripts
139
+ - benchmarks/stubs/merb-app/public/javascripts/application.js
140
+ - benchmarks/stubs/merb-app/public/javascripts/jquery.js
141
+ - benchmarks/stubs/merb-app/public/merb.fcgi
142
+ - benchmarks/stubs/merb-app/public/robots.txt
143
+ - benchmarks/stubs/merb-app/public/stylesheets
144
+ - benchmarks/stubs/merb-app/public/stylesheets/master.css
145
+ - benchmarks/stubs/merb-app/Rakefile
146
+ - benchmarks/stubs/merb-app/spec
147
+ - benchmarks/stubs/merb-app/spec/spec.opts
148
+ - benchmarks/stubs/merb-app/spec/spec_helper.rb
149
+ - benchmarks/stubs/merb-app/tasks
150
+ - benchmarks/stubs/merb-app/tasks/doc.thor
151
+ - benchmarks/stubs/merb-app/tasks/merb.thor
152
+ - benchmarks/stubs/merb-app/tasks/merb.thor/app_script.rb
153
+ - benchmarks/stubs/merb-app/tasks/merb.thor/common.rb
154
+ - benchmarks/stubs/merb-app/tasks/merb.thor/gem_ext.rb
155
+ - benchmarks/stubs/merb-app/tasks/merb.thor/main.thor
156
+ - benchmarks/stubs/merb-app/tasks/merb.thor/ops.rb
157
+ - benchmarks/stubs/merb-app/tasks/merb.thor/utils.rb
158
+ - benchmarks/stubs/merb-core
159
+ - benchmarks/stubs/merb-core/app
160
+ - benchmarks/stubs/merb-core/app/controllers
161
+ - benchmarks/stubs/merb-core/app/controllers/application.rb
162
+ - benchmarks/stubs/merb-core/app/controllers/exceptions.rb
163
+ - benchmarks/stubs/merb-core/app/helpers
164
+ - benchmarks/stubs/merb-core/app/helpers/global_helpers.rb
165
+ - benchmarks/stubs/merb-core/app/views
166
+ - benchmarks/stubs/merb-core/app/views/exceptions
167
+ - benchmarks/stubs/merb-core/app/views/exceptions/not_acceptable.html.erb
168
+ - benchmarks/stubs/merb-core/app/views/exceptions/not_found.html.erb
169
+ - benchmarks/stubs/merb-core/app/views/layout
170
+ - benchmarks/stubs/merb-core/app/views/layout/application.html.erb
171
+ - benchmarks/stubs/merb-core/autotest
172
+ - benchmarks/stubs/merb-core/autotest/discover.rb
173
+ - benchmarks/stubs/merb-core/autotest/merb.rb
174
+ - benchmarks/stubs/merb-core/autotest/merb_rspec.rb
175
+ - benchmarks/stubs/merb-core/config
176
+ - benchmarks/stubs/merb-core/config/environments
177
+ - benchmarks/stubs/merb-core/config/environments/development.rb
178
+ - benchmarks/stubs/merb-core/config/environments/production.rb
179
+ - benchmarks/stubs/merb-core/config/environments/rake.rb
180
+ - benchmarks/stubs/merb-core/config/environments/staging.rb
181
+ - benchmarks/stubs/merb-core/config/environments/test.rb
182
+ - benchmarks/stubs/merb-core/config/init.rb
183
+ - benchmarks/stubs/merb-core/config/rack.rb
184
+ - benchmarks/stubs/merb-core/config/router.rb
185
+ - benchmarks/stubs/merb-core/doc
186
+ - benchmarks/stubs/merb-core/doc/rdoc
187
+ - benchmarks/stubs/merb-core/doc/rdoc/generators
188
+ - benchmarks/stubs/merb-core/doc/rdoc/generators/merb_generator.rb
189
+ - benchmarks/stubs/merb-core/doc/rdoc/generators/template
190
+ - benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb
191
+ - benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb/api_grease.js
192
+ - benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb/index.html.erb
193
+ - benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb/merb.css
194
+ - benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb/merb.rb
195
+ - benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb/merb_doc_styles.css
196
+ - benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb/prototype.js
197
+ - benchmarks/stubs/merb-core/gems
198
+ - benchmarks/stubs/merb-core/public
199
+ - benchmarks/stubs/merb-core/public/favicon.ico
200
+ - benchmarks/stubs/merb-core/public/images
201
+ - benchmarks/stubs/merb-core/public/images/merb.jpg
202
+ - benchmarks/stubs/merb-core/public/javascripts
203
+ - benchmarks/stubs/merb-core/public/javascripts/application.js
204
+ - benchmarks/stubs/merb-core/public/merb.fcgi
205
+ - benchmarks/stubs/merb-core/public/robots.txt
206
+ - benchmarks/stubs/merb-core/public/stylesheets
207
+ - benchmarks/stubs/merb-core/public/stylesheets/master.css
208
+ - benchmarks/stubs/merb-core/Rakefile
209
+ - benchmarks/stubs/merb-core/spec
210
+ - benchmarks/stubs/merb-core/spec/spec.opts
211
+ - benchmarks/stubs/merb-core/spec/spec_helper.rb
212
+ - benchmarks/stubs/merb-core/tasks
213
+ - benchmarks/stubs/merb-core/tasks/merb.thor
214
+ - benchmarks/stubs/merb-core/tasks/merb.thor/app_script.rb
215
+ - benchmarks/stubs/merb-core/tasks/merb.thor/common.rb
216
+ - benchmarks/stubs/merb-core/tasks/merb.thor/gem_ext.rb
217
+ - benchmarks/stubs/merb-core/tasks/merb.thor/main.thor
218
+ - benchmarks/stubs/merb-core/tasks/merb.thor/ops.rb
219
+ - benchmarks/stubs/merb-core/tasks/merb.thor/utils.rb
220
+ - benchmarks/stubs/merb-flat
221
+ - benchmarks/stubs/merb-flat/application.rb
222
+ - benchmarks/stubs/merb-flat/config
223
+ - benchmarks/stubs/merb-flat/config/framework.rb
224
+ - benchmarks/stubs/merb-flat/config/init.rb
225
+ - benchmarks/stubs/merb-flat/gems
226
+ - benchmarks/stubs/merb-flat/Rakefile
227
+ - benchmarks/stubs/merb-flat/README.txt
228
+ - benchmarks/stubs/merb-flat/spec
229
+ - benchmarks/stubs/merb-flat/spec/spec_helper.rb
230
+ - benchmarks/stubs/merb-flat/tasks
231
+ - benchmarks/stubs/merb-flat/tasks/merb.thor
232
+ - benchmarks/stubs/merb-flat/tasks/merb.thor/app_script.rb
233
+ - benchmarks/stubs/merb-flat/tasks/merb.thor/common.rb
234
+ - benchmarks/stubs/merb-flat/tasks/merb.thor/gem_ext.rb
235
+ - benchmarks/stubs/merb-flat/tasks/merb.thor/main.thor
236
+ - benchmarks/stubs/merb-flat/tasks/merb.thor/ops.rb
237
+ - benchmarks/stubs/merb-flat/tasks/merb.thor/utils.rb
238
+ - benchmarks/stubs/merb-flat/views
239
+ - benchmarks/stubs/merb-flat/views/foo.html.erb
240
+ - benchmarks/stubs/merb-very-flat
241
+ - benchmarks/stubs/merb-very-flat/merb-very-flat.rb
242
+ - benchmarks/stubs/merb-very-flat/Rakefile
243
+ - benchmarks/stubs/merb-very-flat/spec
244
+ - benchmarks/stubs/merb-very-flat/spec/spec_helper.rb
245
+ - benchmarks/stubs/merb-very-flat/tasks
246
+ - benchmarks/stubs/merb-very-flat/tasks/merb.thor
247
+ - benchmarks/stubs/merb-very-flat/tasks/merb.thor/app_script.rb
248
+ - benchmarks/stubs/merb-very-flat/tasks/merb.thor/common.rb
249
+ - benchmarks/stubs/merb-very-flat/tasks/merb.thor/gem_ext.rb
250
+ - benchmarks/stubs/merb-very-flat/tasks/merb.thor/main.thor
251
+ - benchmarks/stubs/merb-very-flat/tasks/merb.thor/ops.rb
252
+ - benchmarks/stubs/merb-very-flat/tasks/merb.thor/utils.rb
253
+ - benchmarks/stubs/rails
254
+ - benchmarks/stubs/rails/app
255
+ - benchmarks/stubs/rails/app/controllers
256
+ - benchmarks/stubs/rails/app/controllers/application_controller.rb
257
+ - benchmarks/stubs/rails/app/helpers
258
+ - benchmarks/stubs/rails/app/helpers/application_helper.rb
259
+ - benchmarks/stubs/rails/app/models
260
+ - benchmarks/stubs/rails/app/views
261
+ - benchmarks/stubs/rails/app/views/layouts
262
+ - benchmarks/stubs/rails/config
263
+ - benchmarks/stubs/rails/config/boot.rb
264
+ - benchmarks/stubs/rails/config/database.yml
265
+ - benchmarks/stubs/rails/config/environment.rb
266
+ - benchmarks/stubs/rails/config/environments
267
+ - benchmarks/stubs/rails/config/environments/development.rb
268
+ - benchmarks/stubs/rails/config/environments/production.rb
269
+ - benchmarks/stubs/rails/config/environments/test.rb
270
+ - benchmarks/stubs/rails/config/initializers
271
+ - benchmarks/stubs/rails/config/initializers/backtrace_silencers.rb
272
+ - benchmarks/stubs/rails/config/initializers/inflections.rb
273
+ - benchmarks/stubs/rails/config/initializers/mime_types.rb
274
+ - benchmarks/stubs/rails/config/initializers/new_rails_defaults.rb
275
+ - benchmarks/stubs/rails/config/initializers/session_store.rb
276
+ - benchmarks/stubs/rails/config/locales
277
+ - benchmarks/stubs/rails/config/locales/en.yml
278
+ - benchmarks/stubs/rails/config/routes.rb
279
+ - benchmarks/stubs/rails/db
280
+ - benchmarks/stubs/rails/doc
281
+ - benchmarks/stubs/rails/doc/README_FOR_APP
282
+ - benchmarks/stubs/rails/lib
283
+ - benchmarks/stubs/rails/lib/tasks
284
+ - benchmarks/stubs/rails/log
285
+ - benchmarks/stubs/rails/log/development.log
286
+ - benchmarks/stubs/rails/log/production.log
287
+ - benchmarks/stubs/rails/log/server.log
288
+ - benchmarks/stubs/rails/log/test.log
289
+ - benchmarks/stubs/rails/public
290
+ - benchmarks/stubs/rails/public/404.html
291
+ - benchmarks/stubs/rails/public/422.html
292
+ - benchmarks/stubs/rails/public/500.html
293
+ - benchmarks/stubs/rails/public/favicon.ico
294
+ - benchmarks/stubs/rails/public/images
295
+ - benchmarks/stubs/rails/public/images/rails.png
296
+ - benchmarks/stubs/rails/public/index.html
297
+ - benchmarks/stubs/rails/public/javascripts
298
+ - benchmarks/stubs/rails/public/javascripts/application.js
299
+ - benchmarks/stubs/rails/public/javascripts/controls.js
300
+ - benchmarks/stubs/rails/public/javascripts/dragdrop.js
301
+ - benchmarks/stubs/rails/public/javascripts/effects.js
302
+ - benchmarks/stubs/rails/public/javascripts/prototype.js
303
+ - benchmarks/stubs/rails/public/robots.txt
304
+ - benchmarks/stubs/rails/public/stylesheets
305
+ - benchmarks/stubs/rails/Rakefile
306
+ - benchmarks/stubs/rails/README
307
+ - benchmarks/stubs/rails/script
308
+ - benchmarks/stubs/rails/script/about
309
+ - benchmarks/stubs/rails/script/console
310
+ - benchmarks/stubs/rails/script/dbconsole
311
+ - benchmarks/stubs/rails/script/destroy
312
+ - benchmarks/stubs/rails/script/generate
313
+ - benchmarks/stubs/rails/script/performance
314
+ - benchmarks/stubs/rails/script/performance/benchmarker
315
+ - benchmarks/stubs/rails/script/performance/profiler
316
+ - benchmarks/stubs/rails/script/plugin
317
+ - benchmarks/stubs/rails/script/runner
318
+ - benchmarks/stubs/rails/script/server
319
+ - benchmarks/stubs/rails/test
320
+ - benchmarks/stubs/rails/test/fixtures
321
+ - benchmarks/stubs/rails/test/functional
322
+ - benchmarks/stubs/rails/test/integration
323
+ - benchmarks/stubs/rails/test/performance
324
+ - benchmarks/stubs/rails/test/performance/browsing_test.rb
325
+ - benchmarks/stubs/rails/test/test_helper.rb
326
+ - benchmarks/stubs/rails/test/unit
327
+ - benchmarks/stubs/rails/tmp
328
+ - benchmarks/stubs/rails/tmp/cache
329
+ - benchmarks/stubs/rails/tmp/pids
330
+ - benchmarks/stubs/rails/tmp/sessions
331
+ - benchmarks/stubs/rails/tmp/sockets
332
+ - benchmarks/stubs/rails/vendor
333
+ - benchmarks/stubs/rails/vendor/plugins
334
+ - benchmarks/stubs/ramaze.rb
335
+ - benchmarks/stubs/sinatra.rb
43
336
  - bin
44
337
  - bin/rango
45
338
  - CHANGELOG
339
+ - CONTRIBUTORS
340
+ - cucumber.yml
46
341
  - doc
342
+ - doc/0.0.3
343
+ - doc/0.0.3/all-methods.html
344
+ - doc/0.0.3/all-namespaces.html
345
+ - doc/0.0.3/app.js
346
+ - doc/0.0.3/Array.html
347
+ - doc/0.0.3/AttributeMixin.html
348
+ - doc/0.0.3/Class.html
349
+ - doc/0.0.3/ColoredString.html
350
+ - doc/0.0.3/Enumerable.html
351
+ - doc/0.0.3/File.html
352
+ - doc/0.0.3/Hash.html
353
+ - doc/0.0.3/head
354
+ - doc/0.0.3/head/all-methods.html
355
+ - doc/0.0.3/head/all-namespaces.html
356
+ - doc/0.0.3/head/app.js
357
+ - doc/0.0.3/head/Array.html
358
+ - doc/0.0.3/head/AttributeMixin.html
359
+ - doc/0.0.3/head/Class.html
360
+ - doc/0.0.3/head/ColoredString.html
361
+ - doc/0.0.3/head/Enumerable.html
362
+ - doc/0.0.3/head/File.html
363
+ - doc/0.0.3/head/Hash.html
364
+ - doc/0.0.3/head/index.html
365
+ - doc/0.0.3/head/jquery.js
366
+ - doc/0.0.3/head/Kernel.html
367
+ - doc/0.0.3/head/Object.html
368
+ - doc/0.0.3/head/ObjectSpace.html
369
+ - doc/0.0.3/head/OS.html
370
+ - doc/0.0.3/head/Path.html
371
+ - doc/0.0.3/head/Range.html
372
+ - doc/0.0.3/head/Rango
373
+ - doc/0.0.3/head/Rango/ApplicationMixin.html
374
+ - doc/0.0.3/head/Rango/Bundling
375
+ - doc/0.0.3/head/Rango/Bundling/RequireStrategy.html
376
+ - doc/0.0.3/head/Rango/Bundling/Strategy.html
377
+ - doc/0.0.3/head/Rango/Bundling.html
378
+ - doc/0.0.3/head/Rango/CallableStrategy.html
379
+ - doc/0.0.3/head/Rango/Chainable.html
380
+ - doc/0.0.3/head/Rango/CLI
381
+ - doc/0.0.3/head/Rango/CLI/Generator.html
382
+ - doc/0.0.3/head/Rango/CLI/Templater.html
383
+ - doc/0.0.3/head/Rango/CLI.html
384
+ - doc/0.0.3/head/Rango/Configurable.html
385
+ - doc/0.0.3/head/Rango/Controller.html
386
+ - doc/0.0.3/head/Rango/ControllerMixin.html
387
+ - doc/0.0.3/head/Rango/ControllerStrategy.html
388
+ - doc/0.0.3/head/Rango/DependencyStrategy.html
389
+ - doc/0.0.3/head/Rango/Dispatcher.html
390
+ - doc/0.0.3/head/Rango/Form.html
391
+ - doc/0.0.3/head/Rango/GemDependencyStrategy.html
392
+ - doc/0.0.3/head/Rango/Generator.html
393
+ - doc/0.0.3/head/Rango/GenericViews.html
394
+ - doc/0.0.3/head/Rango/GitDependencyStrategy.html
395
+ - doc/0.0.3/head/Rango/GithubDependencyStrategy.html
396
+ - doc/0.0.3/head/Rango/Handler.html
397
+ - doc/0.0.3/head/Rango/Helpers.html
398
+ - doc/0.0.3/head/Rango/Hookable.html
399
+ - doc/0.0.3/head/Rango/ImportMixin.html
400
+ - doc/0.0.3/head/Rango/Logger.html
401
+ - doc/0.0.3/head/Rango/Mini.html
402
+ - doc/0.0.3/head/Rango/ModelForm.html
403
+ - doc/0.0.3/head/Rango/Project.html
404
+ - doc/0.0.3/head/Rango/RenderMixin.html
405
+ - doc/0.0.3/head/Rango/Request.html
406
+ - doc/0.0.3/head/Rango/Route.html
407
+ - doc/0.0.3/head/Rango/Router
408
+ - doc/0.0.3/head/Rango/Router/Dispatcher.html
409
+ - doc/0.0.3/head/Rango/Router.html
410
+ - doc/0.0.3/head/Rango/RouterStrategy.html
411
+ - doc/0.0.3/head/Rango/Session.html
412
+ - doc/0.0.3/head/Rango/Settings
413
+ - doc/0.0.3/head/Rango/Settings/Erubis.html
414
+ - doc/0.0.3/head/Rango/Settings/Framework.html
415
+ - doc/0.0.3/head/Rango/Settings/Haml.html
416
+ - doc/0.0.3/head/Rango/Settings/Template.html
417
+ - doc/0.0.3/head/Rango/Settings.html
418
+ - doc/0.0.3/head/Rango/SimpleTemplate.html
419
+ - doc/0.0.3/head/Rango/StrategyMixin.html
420
+ - doc/0.0.3/head/Rango/Tasks.html
421
+ - doc/0.0.3/head/Rango/Template
422
+ - doc/0.0.3/head/Rango/Template/Adapter.html
423
+ - doc/0.0.3/head/Rango/Template.html
424
+ - doc/0.0.3/head/Rango/Templates
425
+ - doc/0.0.3/head/Rango/Templates/Adapter.html
426
+ - doc/0.0.3/head/Rango/Templates/Template.html
427
+ - doc/0.0.3/head/Rango/Templates/TemplateHelpers.html
428
+ - doc/0.0.3/head/Rango/Templates.html
429
+ - doc/0.0.3/head/Rango.html
430
+ - doc/0.0.3/head/RangoThor.html
431
+ - doc/0.0.3/head/readme.html
432
+ - doc/0.0.3/head/String.html
433
+ - doc/0.0.3/head/style.css
434
+ - doc/0.0.3/head/syntax_highlight.css
435
+ - doc/0.0.3/head/Time.html
436
+ - doc/0.0.3/head/TimeDSL.html
437
+ - doc/0.0.3/index.html
438
+ - doc/0.0.3/jquery.js
439
+ - doc/0.0.3/Kernel.html
440
+ - doc/0.0.3/Object.html
441
+ - doc/0.0.3/ObjectSpace.html
442
+ - doc/0.0.3/OS.html
443
+ - doc/0.0.3/Path.html
444
+ - doc/0.0.3/Range.html
445
+ - doc/0.0.3/Rango
446
+ - doc/0.0.3/Rango/ApplicationMixin.html
447
+ - doc/0.0.3/Rango/Bundling
448
+ - doc/0.0.3/Rango/Bundling/RequireStrategy.html
449
+ - doc/0.0.3/Rango/Bundling/Strategy.html
450
+ - doc/0.0.3/Rango/Bundling.html
451
+ - doc/0.0.3/Rango/CallableStrategy.html
452
+ - doc/0.0.3/Rango/Chainable.html
453
+ - doc/0.0.3/Rango/CLI
454
+ - doc/0.0.3/Rango/CLI/Generator.html
455
+ - doc/0.0.3/Rango/CLI/Templater.html
456
+ - doc/0.0.3/Rango/CLI.html
457
+ - doc/0.0.3/Rango/Configurable.html
458
+ - doc/0.0.3/Rango/Controller.html
459
+ - doc/0.0.3/Rango/ControllerMixin.html
460
+ - doc/0.0.3/Rango/ControllerStrategy.html
461
+ - doc/0.0.3/Rango/DependencyStrategy.html
462
+ - doc/0.0.3/Rango/Dispatcher.html
463
+ - doc/0.0.3/Rango/Form.html
464
+ - doc/0.0.3/Rango/GemDependencyStrategy.html
465
+ - doc/0.0.3/Rango/Generator.html
466
+ - doc/0.0.3/Rango/GenericViews.html
467
+ - doc/0.0.3/Rango/GitDependencyStrategy.html
468
+ - doc/0.0.3/Rango/GithubDependencyStrategy.html
469
+ - doc/0.0.3/Rango/Handler.html
470
+ - doc/0.0.3/Rango/Helpers.html
471
+ - doc/0.0.3/Rango/Hookable.html
472
+ - doc/0.0.3/Rango/ImportMixin.html
473
+ - doc/0.0.3/Rango/Logger.html
474
+ - doc/0.0.3/Rango/Mini.html
475
+ - doc/0.0.3/Rango/ModelForm.html
476
+ - doc/0.0.3/Rango/Project.html
477
+ - doc/0.0.3/Rango/RenderMixin.html
478
+ - doc/0.0.3/Rango/Request.html
479
+ - doc/0.0.3/Rango/Route.html
480
+ - doc/0.0.3/Rango/Router
481
+ - doc/0.0.3/Rango/Router/Dispatcher.html
482
+ - doc/0.0.3/Rango/Router.html
483
+ - doc/0.0.3/Rango/RouterStrategy.html
484
+ - doc/0.0.3/Rango/Session.html
485
+ - doc/0.0.3/Rango/Settings
486
+ - doc/0.0.3/Rango/Settings/Erubis.html
487
+ - doc/0.0.3/Rango/Settings/Framework.html
488
+ - doc/0.0.3/Rango/Settings/Haml.html
489
+ - doc/0.0.3/Rango/Settings/Template.html
490
+ - doc/0.0.3/Rango/Settings.html
491
+ - doc/0.0.3/Rango/SimpleTemplate.html
492
+ - doc/0.0.3/Rango/StrategyMixin.html
493
+ - doc/0.0.3/Rango/Tasks.html
494
+ - doc/0.0.3/Rango/Template
495
+ - doc/0.0.3/Rango/Template/Adapter.html
496
+ - doc/0.0.3/Rango/Template.html
497
+ - doc/0.0.3/Rango/Templates
498
+ - doc/0.0.3/Rango/Templates/Adapter.html
499
+ - doc/0.0.3/Rango/Templates/Template.html
500
+ - doc/0.0.3/Rango/Templates/TemplateHelpers.html
501
+ - doc/0.0.3/Rango/Templates.html
502
+ - doc/0.0.3/Rango.html
503
+ - doc/0.0.3/RangoThor.html
504
+ - doc/0.0.3/readme.html
505
+ - doc/0.0.3/String.html
506
+ - doc/0.0.3/style.css
507
+ - doc/0.0.3/syntax_highlight.css
508
+ - doc/0.0.3/Time.html
509
+ - doc/0.0.3/TimeDSL.html
510
+ - doc/0.0.4
511
+ - doc/0.0.4/all-methods.html
512
+ - doc/0.0.4/all-namespaces.html
513
+ - doc/0.0.4/app.js
514
+ - doc/0.0.4/Array.html
515
+ - doc/0.0.4/AttributeMixin.html
516
+ - doc/0.0.4/Class.html
517
+ - doc/0.0.4/ColoredString.html
518
+ - doc/0.0.4/Enumerable.html
519
+ - doc/0.0.4/File.html
520
+ - doc/0.0.4/Hash.html
521
+ - doc/0.0.4/head
522
+ - doc/0.0.4/head/all-methods.html
523
+ - doc/0.0.4/head/all-namespaces.html
524
+ - doc/0.0.4/head/app.js
525
+ - doc/0.0.4/head/Array.html
526
+ - doc/0.0.4/head/AttributeMixin.html
527
+ - doc/0.0.4/head/Class.html
528
+ - doc/0.0.4/head/ColoredString.html
529
+ - doc/0.0.4/head/Enumerable.html
530
+ - doc/0.0.4/head/File.html
531
+ - doc/0.0.4/head/Hash.html
532
+ - doc/0.0.4/head/index.html
533
+ - doc/0.0.4/head/jquery.js
534
+ - doc/0.0.4/head/Kernel.html
535
+ - doc/0.0.4/head/Object.html
536
+ - doc/0.0.4/head/ObjectSpace.html
537
+ - doc/0.0.4/head/OS.html
538
+ - doc/0.0.4/head/Path.html
539
+ - doc/0.0.4/head/Range.html
540
+ - doc/0.0.4/head/Rango
541
+ - doc/0.0.4/head/Rango/ApplicationMixin.html
542
+ - doc/0.0.4/head/Rango/Bundling
543
+ - doc/0.0.4/head/Rango/Bundling/RequireStrategy.html
544
+ - doc/0.0.4/head/Rango/Bundling/Strategy.html
545
+ - doc/0.0.4/head/Rango/Bundling.html
546
+ - doc/0.0.4/head/Rango/CallableStrategy.html
547
+ - doc/0.0.4/head/Rango/Chainable.html
548
+ - doc/0.0.4/head/Rango/CLI
549
+ - doc/0.0.4/head/Rango/CLI/Generator.html
550
+ - doc/0.0.4/head/Rango/CLI/Templater.html
551
+ - doc/0.0.4/head/Rango/CLI.html
552
+ - doc/0.0.4/head/Rango/Configurable.html
553
+ - doc/0.0.4/head/Rango/Controller.html
554
+ - doc/0.0.4/head/Rango/ControllerMixin.html
555
+ - doc/0.0.4/head/Rango/ControllerStrategy.html
556
+ - doc/0.0.4/head/Rango/DependencyStrategy.html
557
+ - doc/0.0.4/head/Rango/Dispatcher.html
558
+ - doc/0.0.4/head/Rango/Form.html
559
+ - doc/0.0.4/head/Rango/GemDependencyStrategy.html
560
+ - doc/0.0.4/head/Rango/Generator.html
561
+ - doc/0.0.4/head/Rango/GenericViews.html
562
+ - doc/0.0.4/head/Rango/GitDependencyStrategy.html
563
+ - doc/0.0.4/head/Rango/GithubDependencyStrategy.html
564
+ - doc/0.0.4/head/Rango/Handler.html
565
+ - doc/0.0.4/head/Rango/Helpers.html
566
+ - doc/0.0.4/head/Rango/Hookable.html
567
+ - doc/0.0.4/head/Rango/ImportMixin.html
568
+ - doc/0.0.4/head/Rango/Logger.html
569
+ - doc/0.0.4/head/Rango/Mini.html
570
+ - doc/0.0.4/head/Rango/ModelForm.html
571
+ - doc/0.0.4/head/Rango/Project.html
572
+ - doc/0.0.4/head/Rango/RenderMixin.html
573
+ - doc/0.0.4/head/Rango/Request.html
574
+ - doc/0.0.4/head/Rango/Route.html
575
+ - doc/0.0.4/head/Rango/Router
576
+ - doc/0.0.4/head/Rango/Router/Dispatcher.html
577
+ - doc/0.0.4/head/Rango/Router.html
578
+ - doc/0.0.4/head/Rango/RouterStrategy.html
579
+ - doc/0.0.4/head/Rango/Session.html
580
+ - doc/0.0.4/head/Rango/Settings
581
+ - doc/0.0.4/head/Rango/Settings/Erubis.html
582
+ - doc/0.0.4/head/Rango/Settings/Framework.html
583
+ - doc/0.0.4/head/Rango/Settings/Haml.html
584
+ - doc/0.0.4/head/Rango/Settings/Template.html
585
+ - doc/0.0.4/head/Rango/Settings.html
586
+ - doc/0.0.4/head/Rango/SimpleTemplate.html
587
+ - doc/0.0.4/head/Rango/StrategyMixin.html
588
+ - doc/0.0.4/head/Rango/Tasks.html
589
+ - doc/0.0.4/head/Rango/Template
590
+ - doc/0.0.4/head/Rango/Template/Adapter.html
591
+ - doc/0.0.4/head/Rango/Template.html
592
+ - doc/0.0.4/head/Rango/Templates
593
+ - doc/0.0.4/head/Rango/Templates/Adapter.html
594
+ - doc/0.0.4/head/Rango/Templates/Template.html
595
+ - doc/0.0.4/head/Rango/Templates/TemplateHelpers.html
596
+ - doc/0.0.4/head/Rango/Templates.html
597
+ - doc/0.0.4/head/Rango.html
598
+ - doc/0.0.4/head/RangoThor.html
599
+ - doc/0.0.4/head/readme.html
600
+ - doc/0.0.4/head/String.html
601
+ - doc/0.0.4/head/style.css
602
+ - doc/0.0.4/head/syntax_highlight.css
603
+ - doc/0.0.4/head/Time.html
604
+ - doc/0.0.4/head/TimeDSL.html
605
+ - doc/0.0.4/index.html
606
+ - doc/0.0.4/jquery.js
607
+ - doc/0.0.4/Kernel.html
608
+ - doc/0.0.4/Object.html
609
+ - doc/0.0.4/ObjectSpace.html
610
+ - doc/0.0.4/OS.html
611
+ - doc/0.0.4/Path.html
612
+ - doc/0.0.4/Range.html
613
+ - doc/0.0.4/Rango
614
+ - doc/0.0.4/Rango/ApplicationMixin.html
615
+ - doc/0.0.4/Rango/Bundling
616
+ - doc/0.0.4/Rango/Bundling/RequireStrategy.html
617
+ - doc/0.0.4/Rango/Bundling/Strategy.html
618
+ - doc/0.0.4/Rango/Bundling.html
619
+ - doc/0.0.4/Rango/CallableStrategy.html
620
+ - doc/0.0.4/Rango/Chainable.html
621
+ - doc/0.0.4/Rango/CLI
622
+ - doc/0.0.4/Rango/CLI/Generator.html
623
+ - doc/0.0.4/Rango/CLI/Templater.html
624
+ - doc/0.0.4/Rango/CLI.html
625
+ - doc/0.0.4/Rango/Configurable.html
626
+ - doc/0.0.4/Rango/Controller.html
627
+ - doc/0.0.4/Rango/ControllerMixin.html
628
+ - doc/0.0.4/Rango/ControllerStrategy.html
629
+ - doc/0.0.4/Rango/DependencyStrategy.html
630
+ - doc/0.0.4/Rango/Dispatcher.html
631
+ - doc/0.0.4/Rango/Form.html
632
+ - doc/0.0.4/Rango/GemDependencyStrategy.html
633
+ - doc/0.0.4/Rango/Generator.html
634
+ - doc/0.0.4/Rango/GenericViews.html
635
+ - doc/0.0.4/Rango/GitDependencyStrategy.html
636
+ - doc/0.0.4/Rango/GithubDependencyStrategy.html
637
+ - doc/0.0.4/Rango/Handler.html
638
+ - doc/0.0.4/Rango/Helpers.html
639
+ - doc/0.0.4/Rango/Hookable.html
640
+ - doc/0.0.4/Rango/ImportMixin.html
641
+ - doc/0.0.4/Rango/Logger.html
642
+ - doc/0.0.4/Rango/Mini.html
643
+ - doc/0.0.4/Rango/ModelForm.html
644
+ - doc/0.0.4/Rango/Project.html
645
+ - doc/0.0.4/Rango/RenderMixin.html
646
+ - doc/0.0.4/Rango/Request.html
647
+ - doc/0.0.4/Rango/Route.html
648
+ - doc/0.0.4/Rango/Router
649
+ - doc/0.0.4/Rango/Router/Dispatcher.html
650
+ - doc/0.0.4/Rango/Router.html
651
+ - doc/0.0.4/Rango/RouterStrategy.html
652
+ - doc/0.0.4/Rango/Session.html
653
+ - doc/0.0.4/Rango/Settings
654
+ - doc/0.0.4/Rango/Settings/Erubis.html
655
+ - doc/0.0.4/Rango/Settings/Framework.html
656
+ - doc/0.0.4/Rango/Settings/Haml.html
657
+ - doc/0.0.4/Rango/Settings/Template.html
658
+ - doc/0.0.4/Rango/Settings.html
659
+ - doc/0.0.4/Rango/SimpleTemplate.html
660
+ - doc/0.0.4/Rango/StrategyMixin.html
661
+ - doc/0.0.4/Rango/Tasks.html
662
+ - doc/0.0.4/Rango/Template
663
+ - doc/0.0.4/Rango/Template/Adapter.html
664
+ - doc/0.0.4/Rango/Template.html
665
+ - doc/0.0.4/Rango/Templates
666
+ - doc/0.0.4/Rango/Templates/Adapter.html
667
+ - doc/0.0.4/Rango/Templates/Template.html
668
+ - doc/0.0.4/Rango/Templates/TemplateHelpers.html
669
+ - doc/0.0.4/Rango/Templates.html
670
+ - doc/0.0.4/Rango.html
671
+ - doc/0.0.4/RangoThor.html
672
+ - doc/0.0.4/readme.html
673
+ - doc/0.0.4/String.html
674
+ - doc/0.0.4/style.css
675
+ - doc/0.0.4/syntax_highlight.css
676
+ - doc/0.0.4/Time.html
677
+ - doc/0.0.4/TimeDSL.html
47
678
  - doc/head
48
679
  - doc/head/all-methods.html
49
680
  - doc/head/all-namespaces.html
@@ -52,12 +683,15 @@ files:
52
683
  - doc/head/AttributeMixin.html
53
684
  - doc/head/Class.html
54
685
  - doc/head/ColoredString.html
686
+ - doc/head/Enumerable.html
687
+ - doc/head/File.html
55
688
  - doc/head/Hash.html
56
689
  - doc/head/index.html
57
690
  - doc/head/jquery.js
58
691
  - doc/head/Kernel.html
59
692
  - doc/head/Object.html
60
693
  - doc/head/ObjectSpace.html
694
+ - doc/head/OS.html
61
695
  - doc/head/Path.html
62
696
  - doc/head/Range.html
63
697
  - doc/head/Rango
@@ -68,6 +702,10 @@ files:
68
702
  - doc/head/Rango/Bundling.html
69
703
  - doc/head/Rango/CallableStrategy.html
70
704
  - doc/head/Rango/Chainable.html
705
+ - doc/head/Rango/CLI
706
+ - doc/head/Rango/CLI/Generator.html
707
+ - doc/head/Rango/CLI/Templater.html
708
+ - doc/head/Rango/CLI.html
71
709
  - doc/head/Rango/Configurable.html
72
710
  - doc/head/Rango/Controller.html
73
711
  - doc/head/Rango/ControllerMixin.html
@@ -85,6 +723,7 @@ files:
85
723
  - doc/head/Rango/Hookable.html
86
724
  - doc/head/Rango/ImportMixin.html
87
725
  - doc/head/Rango/Logger.html
726
+ - doc/head/Rango/Mini.html
88
727
  - doc/head/Rango/ModelForm.html
89
728
  - doc/head/Rango/Project.html
90
729
  - doc/head/Rango/RenderMixin.html
@@ -99,6 +738,7 @@ files:
99
738
  - doc/head/Rango/Settings/Erubis.html
100
739
  - doc/head/Rango/Settings/Framework.html
101
740
  - doc/head/Rango/Settings/Haml.html
741
+ - doc/head/Rango/Settings/Template.html
102
742
  - doc/head/Rango/Settings.html
103
743
  - doc/head/Rango/SimpleTemplate.html
104
744
  - doc/head/Rango/StrategyMixin.html
@@ -117,6 +757,7 @@ files:
117
757
  - doc/head/String.html
118
758
  - doc/head/style.css
119
759
  - doc/head/syntax_highlight.css
760
+ - doc/head/Time.html
120
761
  - doc/head/TimeDSL.html
121
762
  - doc/versions
122
763
  - doc/versions/0.0.1
@@ -138,6 +779,64 @@ files:
138
779
  - doc/versions/0.0.1/readme.html
139
780
  - doc/versions/0.0.1/style.css
140
781
  - doc/versions/0.0.1/syntax_highlight.css
782
+ - examples
783
+ - examples/flat
784
+ - examples/flat/basic.ru
785
+ - examples/flat/generic_views.ru
786
+ - examples/flat/info.ru
787
+ - examples/flat/simple_controller.ru
788
+ - examples/flat/templates
789
+ - examples/flat/templates/about
790
+ - examples/flat/templates/about/author.html.haml
791
+ - examples/flat/templates/about/contact.html.haml
792
+ - examples/flat/templates/base.html.haml
793
+ - examples/flat/templates/info.html.haml
794
+ - examples/README.textile
795
+ - examples/TODO
796
+ - examples/twitter
797
+ - examples/twitter/config.ru
798
+ - examples/twitter/development.db
799
+ - examples/twitter/factories.rb
800
+ - examples/twitter/init.rb
801
+ - examples/twitter/media
802
+ - examples/twitter/media/hello-static.txt
803
+ - examples/twitter/models.rb
804
+ - examples/twitter/run.rb
805
+ - examples/twitter/settings.rb
806
+ - examples/twitter/settings_local.rb
807
+ - examples/twitter/templates
808
+ - examples/twitter/templates/base.html.haml
809
+ - examples/twitter/templates/index.html.haml
810
+ - examples/twitter/templates/show.html.haml
811
+ - examples/twitter/templates/timeline.html.haml
812
+ - examples/twitter/Thorfile
813
+ - examples/twitter/views.rb
814
+ - features
815
+ - features/auth
816
+ - features/auth/warden.feature
817
+ - features/bundling
818
+ - features/contrib
819
+ - features/contrib/pagination
820
+ - features/generators
821
+ - features/generators/app.feature
822
+ - features/generators/bigapp.feature
823
+ - features/generators/features.feature
824
+ - features/generators/flat.feature
825
+ - features/generators/project.feature
826
+ - features/generators/pupu.feature
827
+ - features/generators/stub.feature
828
+ - features/generators_steps.rb
829
+ - features/routers
830
+ - features/routers/rack-router.feature
831
+ - features/routers/rack.feature
832
+ - features/routers/urlmap.feature
833
+ - features/shared
834
+ - features/shared/given_steps.rb
835
+ - features/shared/then_steps.rb
836
+ - features/shared/when_steps.rb
837
+ - features/support
838
+ - features/support/env.rb
839
+ - features/TODO.txt
141
840
  - lib
142
841
  - lib/rango
143
842
  - lib/rango/boot.rb
@@ -151,9 +850,9 @@ files:
151
850
  - lib/rango/bundling/strategy.rb
152
851
  - lib/rango/cli
153
852
  - lib/rango/cli/generator.rb
154
- - lib/rango/cli/project.rb
155
- - lib/rango/cli/simple_template.rb
853
+ - lib/rango/cli/templater.rb
156
854
  - lib/rango/contrib
855
+ - lib/rango/contrib/auth
157
856
  - lib/rango/contrib/pagination
158
857
  - lib/rango/contrib/pagination/_pagination.html.haml
159
858
  - lib/rango/contrib/pagination/adapters
@@ -165,26 +864,30 @@ files:
165
864
  - lib/rango/contrib/pagination/TODO
166
865
  - lib/rango/contrib/pagination.rb
167
866
  - lib/rango/contrib/syndication.rb
867
+ - lib/rango/controller.rb
168
868
  - lib/rango/exceptions.rb
169
869
  - lib/rango/ext
870
+ - lib/rango/ext/array.rb
170
871
  - lib/rango/ext/attribute.rb
171
- - lib/rango/ext/class.rb
172
872
  - lib/rango/ext/colored_string.rb
173
- - lib/rango/ext/core_ext.rb
873
+ - lib/rango/ext/enumerable.rb
874
+ - lib/rango/ext/file.rb
174
875
  - lib/rango/ext/hash.rb
175
876
  - lib/rango/ext/kernel.rb
877
+ - lib/rango/ext/object.rb
176
878
  - lib/rango/ext/object_space.rb
177
- - lib/rango/ext/path.rb
879
+ - lib/rango/ext/os.rb
880
+ - lib/rango/ext/platform.rb
178
881
  - lib/rango/ext/random.rb
179
882
  - lib/rango/ext/string.rb
180
883
  - lib/rango/ext/thor.rb
884
+ - lib/rango/ext/time.rb
181
885
  - lib/rango/ext/time_dsl.rb
182
- - lib/rango/ext/try.rb
886
+ - lib/rango/ext/unique_array.rb
183
887
  - lib/rango/ext.rb
184
888
  - lib/rango/forms
185
889
  - lib/rango/forms/form.rb
186
- - lib/rango/generic_views
187
- - lib/rango/generic_views/static.rb
890
+ - lib/rango/generic_views.rb
188
891
  - lib/rango/helpers
189
892
  - lib/rango/helpers/assets.rb
190
893
  - lib/rango/helpers/general.rb
@@ -200,262 +903,8 @@ files:
200
903
  - lib/rango/helpers/merb-helpers/form_helpers.rb
201
904
  - lib/rango/helpers/merb-helpers/tag_helpers.rb
202
905
  - lib/rango/helpers/merb-helpers/text_helpers.rb
203
- - lib/rango/helpers/merb-helpers/time_dsl.rb
204
906
  - lib/rango/helpers/merb-helpers.rb
205
907
  - lib/rango/helpers/README
206
- - lib/rango/helpers/spec
207
- - lib/rango/helpers/spec/core_ext_spec.rb
208
- - lib/rango/helpers/spec/fixture
209
- - lib/rango/helpers/spec/fixture/app
210
- - lib/rango/helpers/spec/fixture/app/controllers
211
- - lib/rango/helpers/spec/fixture/app/controllers/application.rb
212
- - lib/rango/helpers/spec/fixture/app/controllers/bound_check_box.rb
213
- - lib/rango/helpers/spec/fixture/app/controllers/bound_file_field.rb
214
- - lib/rango/helpers/spec/fixture/app/controllers/bound_hidden_field.rb
215
- - lib/rango/helpers/spec/fixture/app/controllers/bound_option_tag.rb
216
- - lib/rango/helpers/spec/fixture/app/controllers/bound_password_field.rb
217
- - lib/rango/helpers/spec/fixture/app/controllers/bound_radio_button.rb
218
- - lib/rango/helpers/spec/fixture/app/controllers/bound_radio_group.rb
219
- - lib/rango/helpers/spec/fixture/app/controllers/bound_select.rb
220
- - lib/rango/helpers/spec/fixture/app/controllers/bound_text_area.rb
221
- - lib/rango/helpers/spec/fixture/app/controllers/bound_text_field.rb
222
- - lib/rango/helpers/spec/fixture/app/controllers/button.rb
223
- - lib/rango/helpers/spec/fixture/app/controllers/check_box.rb
224
- - lib/rango/helpers/spec/fixture/app/controllers/custom_builder.rb
225
- - lib/rango/helpers/spec/fixture/app/controllers/delete_button.rb
226
- - lib/rango/helpers/spec/fixture/app/controllers/exceptions.rb
227
- - lib/rango/helpers/spec/fixture/app/controllers/field_set.rb
228
- - lib/rango/helpers/spec/fixture/app/controllers/fields_for.rb
229
- - lib/rango/helpers/spec/fixture/app/controllers/file_field.rb
230
- - lib/rango/helpers/spec/fixture/app/controllers/foo.rb
231
- - lib/rango/helpers/spec/fixture/app/controllers/form.rb
232
- - lib/rango/helpers/spec/fixture/app/controllers/form_for.rb
233
- - lib/rango/helpers/spec/fixture/app/controllers/hacker.rb
234
- - lib/rango/helpers/spec/fixture/app/controllers/hidden_field.rb
235
- - lib/rango/helpers/spec/fixture/app/controllers/label.rb
236
- - lib/rango/helpers/spec/fixture/app/controllers/numeric_ext.rb
237
- - lib/rango/helpers/spec/fixture/app/controllers/option_tag.rb
238
- - lib/rango/helpers/spec/fixture/app/controllers/password_field.rb
239
- - lib/rango/helpers/spec/fixture/app/controllers/radio_button.rb
240
- - lib/rango/helpers/spec/fixture/app/controllers/radio_group.rb
241
- - lib/rango/helpers/spec/fixture/app/controllers/relative_date.rb
242
- - lib/rango/helpers/spec/fixture/app/controllers/relative_date_span.rb
243
- - lib/rango/helpers/spec/fixture/app/controllers/select.rb
244
- - lib/rango/helpers/spec/fixture/app/controllers/specs_controller.rb
245
- - lib/rango/helpers/spec/fixture/app/controllers/submit.rb
246
- - lib/rango/helpers/spec/fixture/app/controllers/tag_helper.rb
247
- - lib/rango/helpers/spec/fixture/app/controllers/text_area.rb
248
- - lib/rango/helpers/spec/fixture/app/controllers/text_field.rb
249
- - lib/rango/helpers/spec/fixture/app/helpers
250
- - lib/rango/helpers/spec/fixture/app/helpers/global_helpers.rb
251
- - lib/rango/helpers/spec/fixture/app/models
252
- - lib/rango/helpers/spec/fixture/app/models/fake_dm_model.rb
253
- - lib/rango/helpers/spec/fixture/app/models/first_generic_fake_model.rb
254
- - lib/rango/helpers/spec/fixture/app/models/hacker_generic_model.rb
255
- - lib/rango/helpers/spec/fixture/app/models/second_generic_fake_model.rb
256
- - lib/rango/helpers/spec/fixture/app/models/third_generic_fake_model.rb
257
- - lib/rango/helpers/spec/fixture/app/views
258
- - lib/rango/helpers/spec/fixture/app/views/bound_check_box_specs
259
- - lib/rango/helpers/spec/fixture/app/views/bound_check_box_specs/basic.html.erb
260
- - lib/rango/helpers/spec/fixture/app/views/bound_check_box_specs/basic_unchecked.html.erb
261
- - lib/rango/helpers/spec/fixture/app/views/bound_check_box_specs/checked.html.erb
262
- - lib/rango/helpers/spec/fixture/app/views/bound_check_box_specs/errors.html.erb
263
- - lib/rango/helpers/spec/fixture/app/views/bound_check_box_specs/label.html.erb
264
- - lib/rango/helpers/spec/fixture/app/views/bound_check_box_specs/on_and_off.html.erb
265
- - lib/rango/helpers/spec/fixture/app/views/bound_check_box_specs/raise_value_error.html.erb
266
- - lib/rango/helpers/spec/fixture/app/views/bound_file_field_specs
267
- - lib/rango/helpers/spec/fixture/app/views/bound_file_field_specs/additional_attributes.html.erb
268
- - lib/rango/helpers/spec/fixture/app/views/bound_file_field_specs/takes_string.html.erb
269
- - lib/rango/helpers/spec/fixture/app/views/bound_file_field_specs/with_label.html.erb
270
- - lib/rango/helpers/spec/fixture/app/views/bound_hidden_field_specs
271
- - lib/rango/helpers/spec/fixture/app/views/bound_hidden_field_specs/basic.html.erb
272
- - lib/rango/helpers/spec/fixture/app/views/bound_hidden_field_specs/errors.html.erb
273
- - lib/rango/helpers/spec/fixture/app/views/bound_hidden_field_specs/hidden_error.html.erb
274
- - lib/rango/helpers/spec/fixture/app/views/bound_hidden_field_specs/label.html.erb
275
- - lib/rango/helpers/spec/fixture/app/views/bound_option_tag_specs
276
- - lib/rango/helpers/spec/fixture/app/views/bound_option_tag_specs/grouped.html.erb
277
- - lib/rango/helpers/spec/fixture/app/views/bound_option_tag_specs/nested.html.erb
278
- - lib/rango/helpers/spec/fixture/app/views/bound_option_tag_specs/text_and_value.html.erb
279
- - lib/rango/helpers/spec/fixture/app/views/bound_password_field_specs
280
- - lib/rango/helpers/spec/fixture/app/views/bound_password_field_specs/attributes.html.erb
281
- - lib/rango/helpers/spec/fixture/app/views/bound_password_field_specs/basic.html.erb
282
- - lib/rango/helpers/spec/fixture/app/views/bound_password_field_specs/label.html.erb
283
- - lib/rango/helpers/spec/fixture/app/views/bound_radio_button_specs
284
- - lib/rango/helpers/spec/fixture/app/views/bound_radio_button_specs/basic.html.erb
285
- - lib/rango/helpers/spec/fixture/app/views/bound_radio_group_specs
286
- - lib/rango/helpers/spec/fixture/app/views/bound_radio_group_specs/basic.html.erb
287
- - lib/rango/helpers/spec/fixture/app/views/bound_radio_group_specs/hashes.html.erb
288
- - lib/rango/helpers/spec/fixture/app/views/bound_radio_group_specs/mixed.html.erb
289
- - lib/rango/helpers/spec/fixture/app/views/bound_radio_group_specs/override_id.html.erb
290
- - lib/rango/helpers/spec/fixture/app/views/bound_select_specs
291
- - lib/rango/helpers/spec/fixture/app/views/bound_select_specs/basic.html.erb
292
- - lib/rango/helpers/spec/fixture/app/views/bound_select_specs/blank.html.erb
293
- - lib/rango/helpers/spec/fixture/app/views/bound_select_specs/label.html.erb
294
- - lib/rango/helpers/spec/fixture/app/views/bound_select_specs/multiple.html.erb
295
- - lib/rango/helpers/spec/fixture/app/views/bound_select_specs/prompt.html.erb
296
- - lib/rango/helpers/spec/fixture/app/views/bound_select_specs/with_options.html.erb
297
- - lib/rango/helpers/spec/fixture/app/views/bound_select_specs/with_options_with_blank.html.erb
298
- - lib/rango/helpers/spec/fixture/app/views/bound_text_area_specs
299
- - lib/rango/helpers/spec/fixture/app/views/bound_text_area_specs/basic.html.erb
300
- - lib/rango/helpers/spec/fixture/app/views/bound_text_area_specs/label.html.erb
301
- - lib/rango/helpers/spec/fixture/app/views/bound_text_field_specs
302
- - lib/rango/helpers/spec/fixture/app/views/bound_text_field_specs/basic.html.erb
303
- - lib/rango/helpers/spec/fixture/app/views/button_specs
304
- - lib/rango/helpers/spec/fixture/app/views/button_specs/button_with_label.html.erb
305
- - lib/rango/helpers/spec/fixture/app/views/button_specs/button_with_values.html.erb
306
- - lib/rango/helpers/spec/fixture/app/views/button_specs/disabled_button.html.erb
307
- - lib/rango/helpers/spec/fixture/app/views/check_box_specs
308
- - lib/rango/helpers/spec/fixture/app/views/check_box_specs/basic.html.erb
309
- - lib/rango/helpers/spec/fixture/app/views/check_box_specs/boolean.html.erb
310
- - lib/rango/helpers/spec/fixture/app/views/check_box_specs/disabled.html.erb
311
- - lib/rango/helpers/spec/fixture/app/views/check_box_specs/label.html.erb
312
- - lib/rango/helpers/spec/fixture/app/views/check_box_specs/on_off_is_boolean.html.erb
313
- - lib/rango/helpers/spec/fixture/app/views/check_box_specs/raise_unless_both_on_and_off.html.erb
314
- - lib/rango/helpers/spec/fixture/app/views/check_box_specs/raises_error_if_not_boolean.html.erb
315
- - lib/rango/helpers/spec/fixture/app/views/check_box_specs/raises_error_if_on_off_and_boolean_false.html.erb
316
- - lib/rango/helpers/spec/fixture/app/views/check_box_specs/simple.html.erb
317
- - lib/rango/helpers/spec/fixture/app/views/check_box_specs/to_string.html.erb
318
- - lib/rango/helpers/spec/fixture/app/views/check_box_specs/unchecked.html.erb
319
- - lib/rango/helpers/spec/fixture/app/views/custom_builder_specs
320
- - lib/rango/helpers/spec/fixture/app/views/custom_builder_specs/everything.html.erb
321
- - lib/rango/helpers/spec/fixture/app/views/delete_button_specs
322
- - lib/rango/helpers/spec/fixture/app/views/delete_button_specs/delete_with_explicit_url.html.erb
323
- - lib/rango/helpers/spec/fixture/app/views/delete_button_specs/delete_with_extra_params.html.erb
324
- - lib/rango/helpers/spec/fixture/app/views/delete_button_specs/delete_with_label.html.erb
325
- - lib/rango/helpers/spec/fixture/app/views/delete_button_specs/simple_delete.html.erb
326
- - lib/rango/helpers/spec/fixture/app/views/exeptions
327
- - lib/rango/helpers/spec/fixture/app/views/exeptions/client_error.html.erb
328
- - lib/rango/helpers/spec/fixture/app/views/exeptions/internal_server_error.html.erb
329
- - lib/rango/helpers/spec/fixture/app/views/exeptions/not_acceptable.html.erb
330
- - lib/rango/helpers/spec/fixture/app/views/exeptions/not_found.html.erb
331
- - lib/rango/helpers/spec/fixture/app/views/fields_for_specs
332
- - lib/rango/helpers/spec/fixture/app/views/fields_for_specs/basic.html.erb
333
- - lib/rango/helpers/spec/fixture/app/views/fields_for_specs/midstream.html.erb
334
- - lib/rango/helpers/spec/fixture/app/views/fields_for_specs/nil.html.erb
335
- - lib/rango/helpers/spec/fixture/app/views/fieldset_specs
336
- - lib/rango/helpers/spec/fixture/app/views/fieldset_specs/legend.html.erb
337
- - lib/rango/helpers/spec/fixture/app/views/file_field_specs
338
- - lib/rango/helpers/spec/fixture/app/views/file_field_specs/disabled.html.erb
339
- - lib/rango/helpers/spec/fixture/app/views/file_field_specs/makes_multipart.html.erb
340
- - lib/rango/helpers/spec/fixture/app/views/file_field_specs/with_label.html.erb
341
- - lib/rango/helpers/spec/fixture/app/views/file_field_specs/with_values.html.erb
342
- - lib/rango/helpers/spec/fixture/app/views/foo
343
- - lib/rango/helpers/spec/fixture/app/views/foo/bar.html.erb
344
- - lib/rango/helpers/spec/fixture/app/views/form_for_specs
345
- - lib/rango/helpers/spec/fixture/app/views/form_for_specs/basic.html.erb
346
- - lib/rango/helpers/spec/fixture/app/views/form_specs
347
- - lib/rango/helpers/spec/fixture/app/views/form_specs/create_a_form.html.erb
348
- - lib/rango/helpers/spec/fixture/app/views/form_specs/create_a_multipart_form.html.erb
349
- - lib/rango/helpers/spec/fixture/app/views/form_specs/fake_delete_if_set.html.erb
350
- - lib/rango/helpers/spec/fixture/app/views/form_specs/fake_put_if_set.html.erb
351
- - lib/rango/helpers/spec/fixture/app/views/form_specs/get_if_set.html.erb
352
- - lib/rango/helpers/spec/fixture/app/views/form_specs/post_by_default.html.erb
353
- - lib/rango/helpers/spec/fixture/app/views/form_specs/resourceful_form.html.erb
354
- - lib/rango/helpers/spec/fixture/app/views/hacker
355
- - lib/rango/helpers/spec/fixture/app/views/hacker/file_field.html.erb
356
- - lib/rango/helpers/spec/fixture/app/views/hacker/hidden_field.html.erb
357
- - lib/rango/helpers/spec/fixture/app/views/hacker/option_tag.html.erb
358
- - lib/rango/helpers/spec/fixture/app/views/hacker/password_field.html.erb
359
- - lib/rango/helpers/spec/fixture/app/views/hacker/radio_button.html.erb
360
- - lib/rango/helpers/spec/fixture/app/views/hacker/radio_group.html.erb
361
- - lib/rango/helpers/spec/fixture/app/views/hacker/text_area.html.erb
362
- - lib/rango/helpers/spec/fixture/app/views/hacker/text_field.html.erb
363
- - lib/rango/helpers/spec/fixture/app/views/hidden_field_specs
364
- - lib/rango/helpers/spec/fixture/app/views/hidden_field_specs/basic.html.erb
365
- - lib/rango/helpers/spec/fixture/app/views/hidden_field_specs/disabled.html.erb
366
- - lib/rango/helpers/spec/fixture/app/views/hidden_field_specs/label.html.erb
367
- - lib/rango/helpers/spec/fixture/app/views/label_specs
368
- - lib/rango/helpers/spec/fixture/app/views/label_specs/basic.html.erb
369
- - lib/rango/helpers/spec/fixture/app/views/label_specs/basic_with_attributes.html.erb
370
- - lib/rango/helpers/spec/fixture/app/views/label_specs/basic_with_class.html.erb
371
- - lib/rango/helpers/spec/fixture/app/views/layout
372
- - lib/rango/helpers/spec/fixture/app/views/layout/application.html.erb
373
- - lib/rango/helpers/spec/fixture/app/views/numeric_ext_specs
374
- - lib/rango/helpers/spec/fixture/app/views/numeric_ext_specs/minutes_to_hours.html.erb
375
- - lib/rango/helpers/spec/fixture/app/views/numeric_ext_specs/to_concurrency_default.html.erb
376
- - lib/rango/helpers/spec/fixture/app/views/numeric_ext_specs/two_digits.html.erb
377
- - lib/rango/helpers/spec/fixture/app/views/option_tag_specs
378
- - lib/rango/helpers/spec/fixture/app/views/option_tag_specs/array.html.erb
379
- - lib/rango/helpers/spec/fixture/app/views/option_tag_specs/clean.html.erb
380
- - lib/rango/helpers/spec/fixture/app/views/option_tag_specs/collection.html.erb
381
- - lib/rango/helpers/spec/fixture/app/views/option_tag_specs/multiple_selects.html.erb
382
- - lib/rango/helpers/spec/fixture/app/views/option_tag_specs/no_extra_attributes.html.erb
383
- - lib/rango/helpers/spec/fixture/app/views/option_tag_specs/optgroups.html.erb
384
- - lib/rango/helpers/spec/fixture/app/views/option_tag_specs/selected.html.erb
385
- - lib/rango/helpers/spec/fixture/app/views/option_tag_specs/with_blank.html.erb
386
- - lib/rango/helpers/spec/fixture/app/views/option_tag_specs/with_prompt.html.erb
387
- - lib/rango/helpers/spec/fixture/app/views/password_field_specs
388
- - lib/rango/helpers/spec/fixture/app/views/password_field_specs/basic.html.erb
389
- - lib/rango/helpers/spec/fixture/app/views/password_field_specs/disabled.html.erb
390
- - lib/rango/helpers/spec/fixture/app/views/radio_button_specs
391
- - lib/rango/helpers/spec/fixture/app/views/radio_button_specs/basic.html.erb
392
- - lib/rango/helpers/spec/fixture/app/views/radio_button_specs/checked.html.erb
393
- - lib/rango/helpers/spec/fixture/app/views/radio_button_specs/disabled.html.erb
394
- - lib/rango/helpers/spec/fixture/app/views/radio_button_specs/label.html.erb
395
- - lib/rango/helpers/spec/fixture/app/views/radio_button_specs/unchecked.html.erb
396
- - lib/rango/helpers/spec/fixture/app/views/radio_group_specs
397
- - lib/rango/helpers/spec/fixture/app/views/radio_group_specs/attributes.html.erb
398
- - lib/rango/helpers/spec/fixture/app/views/radio_group_specs/basic.html.erb
399
- - lib/rango/helpers/spec/fixture/app/views/radio_group_specs/checked.html.erb
400
- - lib/rango/helpers/spec/fixture/app/views/radio_group_specs/hash.html.erb
401
- - lib/rango/helpers/spec/fixture/app/views/radio_group_specs/specific_attributes.html.erb
402
- - lib/rango/helpers/spec/fixture/app/views/relative_date_span_specs
403
- - lib/rango/helpers/spec/fixture/app/views/relative_date_span_specs/date_span_on_same_day.html.erb
404
- - lib/rango/helpers/spec/fixture/app/views/relative_date_span_specs/date_span_on_same_day_on_different_year.html.erb
405
- - lib/rango/helpers/spec/fixture/app/views/relative_date_specs
406
- - lib/rango/helpers/spec/fixture/app/views/relative_date_specs/relative_date_with_year.html.erb
407
- - lib/rango/helpers/spec/fixture/app/views/relative_date_specs/relative_date_without_year.html.erb
408
- - lib/rango/helpers/spec/fixture/app/views/relative_date_specs/relative_today.html.erb
409
- - lib/rango/helpers/spec/fixture/app/views/relative_date_specs/relative_tomorrow.html.erb
410
- - lib/rango/helpers/spec/fixture/app/views/relative_date_specs/relative_yesterday.html.erb
411
- - lib/rango/helpers/spec/fixture/app/views/select_specs
412
- - lib/rango/helpers/spec/fixture/app/views/select_specs/basic.html.erb
413
- - lib/rango/helpers/spec/fixture/app/views/select_specs/blank.html.erb
414
- - lib/rango/helpers/spec/fixture/app/views/select_specs/multiple.html.erb
415
- - lib/rango/helpers/spec/fixture/app/views/select_specs/selected.html.erb
416
- - lib/rango/helpers/spec/fixture/app/views/submit_specs
417
- - lib/rango/helpers/spec/fixture/app/views/submit_specs/disabled_submit.html.erb
418
- - lib/rango/helpers/spec/fixture/app/views/submit_specs/submit_with_label.html.erb
419
- - lib/rango/helpers/spec/fixture/app/views/submit_specs/submit_with_values.html.erb
420
- - lib/rango/helpers/spec/fixture/app/views/tag_helper
421
- - lib/rango/helpers/spec/fixture/app/views/tag_helper/nested_tags.html.erb
422
- - lib/rango/helpers/spec/fixture/app/views/tag_helper/tag_with_attributes.html.erb
423
- - lib/rango/helpers/spec/fixture/app/views/tag_helper/tag_with_content.html.erb
424
- - lib/rango/helpers/spec/fixture/app/views/tag_helper/tag_with_content_in_the_block.html.erb
425
- - lib/rango/helpers/spec/fixture/app/views/text_area_specs
426
- - lib/rango/helpers/spec/fixture/app/views/text_area_specs/basic.html.erb
427
- - lib/rango/helpers/spec/fixture/app/views/text_area_specs/disabled.html.erb
428
- - lib/rango/helpers/spec/fixture/app/views/text_area_specs/label.html.erb
429
- - lib/rango/helpers/spec/fixture/app/views/text_area_specs/nil.html.erb
430
- - lib/rango/helpers/spec/fixture/app/views/text_field_specs
431
- - lib/rango/helpers/spec/fixture/app/views/text_field_specs/basic.html.erb
432
- - lib/rango/helpers/spec/fixture/app/views/text_field_specs/class.html.erb
433
- - lib/rango/helpers/spec/fixture/app/views/text_field_specs/disabled.html.erb
434
- - lib/rango/helpers/spec/fixture/app/views/text_field_specs/label.html.erb
435
- - lib/rango/helpers/spec/fixture/app/views/text_field_specs/symbolized_name.html.erb
436
- - lib/rango/helpers/spec/fixture/config
437
- - lib/rango/helpers/spec/fixture/config/environments
438
- - lib/rango/helpers/spec/fixture/config/environments/development.rb
439
- - lib/rango/helpers/spec/fixture/config/environments/production.rb
440
- - lib/rango/helpers/spec/fixture/config/environments/test.rb
441
- - lib/rango/helpers/spec/fixture/config/init.rb
442
- - lib/rango/helpers/spec/fixture/config/rack.rb
443
- - lib/rango/helpers/spec/fixture/config/router.rb
444
- - lib/rango/helpers/spec/fixture/public
445
- - lib/rango/helpers/spec/fixture/public/images
446
- - lib/rango/helpers/spec/fixture/public/images/merb.jpg
447
- - lib/rango/helpers/spec/fixture/public/merb.fcgi
448
- - lib/rango/helpers/spec/fixture/public/stylesheets
449
- - lib/rango/helpers/spec/fixture/public/stylesheets/master.css
450
- - lib/rango/helpers/spec/merb_helpers_config_spec.rb
451
- - lib/rango/helpers/spec/merb_helpers_date_time_spec.rb
452
- - lib/rango/helpers/spec/merb_helpers_form_spec.rb
453
- - lib/rango/helpers/spec/merb_helpers_tag_helper_spec.rb
454
- - lib/rango/helpers/spec/merb_helpers_text_spec.rb
455
- - lib/rango/helpers/spec/numeric_extlib_spec.rb
456
- - lib/rango/helpers/spec/ordinalize_spec.rb
457
- - lib/rango/helpers/spec/spec_helper.rb
458
- - lib/rango/helpers/spec/time_dsl_spec.rb
459
908
  - lib/rango/helpers/syntax.rb
460
909
  - lib/rango/helpers.rb
461
910
  - lib/rango/loggers
@@ -463,13 +912,13 @@ files:
463
912
  - lib/rango/loggers/logger.rb
464
913
  - lib/rango/mixins
465
914
  - lib/rango/mixins/application.rb
915
+ - lib/rango/mixins/chainable.rb
466
916
  - lib/rango/mixins/configurable.rb
467
917
  - lib/rango/mixins/controller.rb
918
+ - lib/rango/mixins/hookable.rb
468
919
  - lib/rango/mixins/import.rb
920
+ - lib/rango/mixins/mini.rb
469
921
  - lib/rango/mixins/strategy.rb
470
- - lib/rango/mvc
471
- - lib/rango/mvc/controller.rb
472
- - lib/rango/mvc/strategies.rb
473
922
  - lib/rango/orm
474
923
  - lib/rango/orm/adapters
475
924
  - lib/rango/orm/adapters/datamapper
@@ -479,27 +928,30 @@ files:
479
928
  - lib/rango/orm/adapters/datamapper/tasks.thor
480
929
  - lib/rango/orm/adapters/datamapper/types
481
930
  - lib/rango/orm/adapters/datamapper/types/unicode_string.rb
931
+ - lib/rango/orm/adapters/sequel
932
+ - lib/rango/orm/adapters/sequel/tasks.thor
482
933
  - lib/rango/project.rb
483
934
  - lib/rango/rack
484
- - lib/rango/rack/dispatcher.rb
485
935
  - lib/rango/rack/middlewares
486
- - lib/rango/rack/middlewares/emails.rb
936
+ - lib/rango/rack/middlewares/basic.rb
937
+ - lib/rango/rack/middlewares/email_obfuscator.rb
487
938
  - lib/rango/rack/middlewares/encoding.rb
488
939
  - lib/rango/rack/middlewares/static.rb
489
940
  - lib/rango/rack/request.rb
490
941
  - lib/rango/rango.rb
491
942
  - lib/rango/router
492
943
  - lib/rango/router/adapters
493
- - lib/rango/router/adapters/basic.rb
494
- - lib/rango/router/adapters/rack-router.rb
495
- - lib/rango/router/dispatcher.rb
944
+ - lib/rango/router/adapters/rack_router.rb
945
+ - lib/rango/router/adapters/urlmap.rb
946
+ - lib/rango/router/adapters/usher.rb
496
947
  - lib/rango/router/specification.txt
948
+ - lib/rango/router.rb
497
949
  - lib/rango/settings
498
950
  - lib/rango/settings/erubis.rb
499
951
  - lib/rango/settings/framework.rb
500
952
  - lib/rango/settings/haml.rb
953
+ - lib/rango/settings/template.rb
501
954
  - lib/rango/settings.rb
502
- - lib/rango/spec
503
955
  - lib/rango/support
504
956
  - lib/rango/support/cucumber
505
957
  - lib/rango/support/cucumber/helpers
@@ -524,109 +976,309 @@ files:
524
976
  - LICENSE
525
977
  - pkg
526
978
  - rango.gemspec
979
+ - rango.gemspec.erb
527
980
  - README.textile
528
981
  - spec
529
982
  - spec/factories.rb
530
983
  - spec/rango
531
- - spec/rango/auth
532
- - spec/rango/auth/core
533
- - spec/rango/auth/core/authenticated_helper_spec.rb
534
- - spec/rango/auth/core/authentication_spec.rb
535
- - spec/rango/auth/core/callbacks_spec.rb
536
- - spec/rango/auth/core/errors_spec.rb
537
- - spec/rango/auth/core/responses_spec.rb
538
- - spec/rango/auth/core/session_mixin_spec.rb
539
- - spec/rango/auth/core/spec
540
- - spec/rango/auth/core/spec/helpers
541
- - spec/rango/auth/core/spec/helpers/authentication_helper_spec_spec.rb
542
- - spec/rango/auth/core/spec/merb-auth-core
543
- - spec/rango/auth/core/spec/merb-auth-core/activation_fixture_spec.rb
544
- - spec/rango/auth/core/spec/merb-auth-core/authentication_spec_spec.rb
545
- - spec/rango/auth/core/spec/merb-auth-core/callbacks_spec_spec.rb
546
- - spec/rango/auth/core/spec/merb-auth-core/customizations_spec_spec.rb
547
- - spec/rango/auth/core/spec/merb-auth-core/errors_spec_spec.rb
548
- - spec/rango/auth/core/spec/merb-auth-core/failed_login_spec_spec.rb
549
- - spec/rango/auth/core/spec/merb-auth-core/merb-auth-core_spec_spec.rb
550
- - spec/rango/auth/core/spec/merb-auth-core/router_helper_spec_spec.rb
551
- - spec/rango/auth/core/spec/merb-auth-core/strategy_spec_spec.rb
552
- - spec/rango/auth/core/spec/spec_helper_spec.rb
553
- - spec/rango/auth/core/strategy_spec.rb
554
- - spec/rango/auth/core_spec.rb
555
- - spec/rango/auth/more
556
- - spec/rango/auth/more/mixins
557
- - spec/rango/auth/more/mixins/redirect_back_spec.rb
558
- - spec/rango/auth/more/mixins/salted_user
559
- - spec/rango/auth/more/mixins/salted_user/ar_salted_user_spec.rb
560
- - spec/rango/auth/more/mixins/salted_user/dm_salted_user_spec.rb
561
- - spec/rango/auth/more/mixins/salted_user/relaxdb_salted_user_spec.rb
562
- - spec/rango/auth/more/mixins/salted_user/sq_salted_user_spec.rb
563
- - spec/rango/auth/more/mixins/salted_user_spec.rb
564
- - spec/rango/auth/more/spec
565
- - spec/rango/auth/more/spec/merb-auth-more_spec_spec.rb
566
- - spec/rango/auth/more/spec/mixins
567
- - spec/rango/auth/more/spec/mixins/redirect_back_spec_spec.rb
568
- - spec/rango/auth/more/spec/mixins/salted_user_spec_spec.rb
569
- - spec/rango/auth/more/spec/spec_helper_spec.rb
570
- - spec/rango/auth/more/strategies
571
- - spec/rango/auth/more/strategies/abstract_password_spec.rb
572
- - spec/rango/auth/more/strategies/basic
573
- - spec/rango/auth/more/strategies/basic/basic_auth_spec.rb
574
- - spec/rango/auth/more/strategies/basic/openid_spec.rb
575
- - spec/rango/auth/more/strategies/basic/password_form_spec.rb
576
- - spec/rango/auth/more_spec.rb
577
- - spec/rango/auth/slice
578
- - spec/rango/auth/slice/exceptions_spec.rb
579
- - spec/rango/auth/slice/merb-auth-slice-password_spec.rb
580
- - spec/rango/auth/slice/sessions_spec.rb
581
- - spec/rango/auth/slice/spec_helper_spec.rb
582
- - spec/rango/auth/slice/xsessions_spec.rb
583
984
  - spec/rango/boot_spec.rb
584
985
  - spec/rango/bundling
585
986
  - spec/rango/bundling/dependency_spec.rb
586
- - spec/rango/bundling/strategies_spec.rb
987
+ - spec/rango/bundling/strategies
988
+ - spec/rango/bundling/strategies/copy_spec.rb
989
+ - spec/rango/bundling/strategies/gem_spec.rb
990
+ - spec/rango/bundling/strategies/git_spec.rb
991
+ - spec/rango/bundling/strategies/hg_spec.rb
992
+ - spec/rango/bundling/strategy_spec.rb
587
993
  - spec/rango/cli
588
- - spec/rango/cli/project_spec.rb
994
+ - spec/rango/cli/generator_spec.rb
995
+ - spec/rango/cli/templater_spec.rb
589
996
  - spec/rango/contrib
590
997
  - spec/rango/contrib/pagination
591
998
  - spec/rango/contrib/pagination/adapters
592
- - spec/rango/contrib/pagination/adapters/dm_spec.rb
999
+ - spec/rango/contrib/pagination/adapters/datamapper_spec.rb
593
1000
  - spec/rango/contrib/pagination/helpers_spec.rb
594
1001
  - spec/rango/contrib/pagination/page_spec.rb
595
1002
  - spec/rango/contrib/pagination/strategies_spec.rb
596
1003
  - spec/rango/contrib/pagination_spec.rb
597
1004
  - spec/rango/contrib/syndication_spec.rb
1005
+ - spec/rango/controller_spec.rb
598
1006
  - spec/rango/exceptions_spec.rb
599
1007
  - spec/rango/ext
1008
+ - spec/rango/ext/array_spec.rb
600
1009
  - spec/rango/ext/attribute_spec.rb
601
1010
  - spec/rango/ext/colored_string_spec.rb
602
- - spec/rango/ext/core_ext_spec.rb
1011
+ - spec/rango/ext/enumerable_spec.rb
1012
+ - spec/rango/ext/file_spec.rb
1013
+ - spec/rango/ext/hash_spec.rb
603
1014
  - spec/rango/ext/kernel_spec.rb
604
- - spec/rango/ext/path_spec.rb
1015
+ - spec/rango/ext/object_space_spec.rb
1016
+ - spec/rango/ext/object_spec.rb
1017
+ - spec/rango/ext/os_spec.rb
1018
+ - spec/rango/ext/random_spec.rb
605
1019
  - spec/rango/ext/string_spec.rb
606
1020
  - spec/rango/ext/thor_spec.rb
607
1021
  - spec/rango/ext/time_dsl_spec.rb
1022
+ - spec/rango/ext/time_spec.rb
608
1023
  - spec/rango/ext_spec.rb
609
1024
  - spec/rango/forms
610
1025
  - spec/rango/forms/form_spec.rb
611
- - spec/rango/generators_spec.rb
612
1026
  - spec/rango/generic_views
613
- - spec/rango/generic_views/static_spec.rb
1027
+ - spec/rango/generic_views_spec.rb
614
1028
  - spec/rango/helpers
615
1029
  - spec/rango/helpers/assets_spec.rb
616
1030
  - spec/rango/helpers/general_spec.rb
617
1031
  - spec/rango/helpers/merb-helpers
618
- - spec/rango/helpers/merb-helpers/core_ext
619
- - spec/rango/helpers/merb-helpers/core_ext/numeric_spec.rb
620
1032
  - spec/rango/helpers/merb-helpers/core_ext_spec.rb
621
- - spec/rango/helpers/merb-helpers/date_time_formatting_spec.rb
622
- - spec/rango/helpers/merb-helpers/date_time_helpers_spec.rb
623
- - spec/rango/helpers/merb-helpers/form
624
- - spec/rango/helpers/merb-helpers/form/builder_spec.rb
625
- - spec/rango/helpers/merb-helpers/form/helpers_spec.rb
626
- - spec/rango/helpers/merb-helpers/form_helpers_spec.rb
627
- - spec/rango/helpers/merb-helpers/tag_helpers_spec.rb
628
- - spec/rango/helpers/merb-helpers/text_helpers_spec.rb
629
- - spec/rango/helpers/merb-helpers/time_dsl_spec.rb
1033
+ - spec/rango/helpers/merb-helpers/fixture
1034
+ - spec/rango/helpers/merb-helpers/fixture/app
1035
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers
1036
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/application.rb
1037
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/bound_check_box.rb
1038
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/bound_file_field.rb
1039
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/bound_hidden_field.rb
1040
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/bound_option_tag.rb
1041
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/bound_password_field.rb
1042
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/bound_radio_button.rb
1043
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/bound_radio_group.rb
1044
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/bound_select.rb
1045
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/bound_text_area.rb
1046
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/bound_text_field.rb
1047
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/button.rb
1048
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/check_box.rb
1049
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/custom_builder.rb
1050
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/delete_button.rb
1051
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/exceptions.rb
1052
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/field_set.rb
1053
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/fields_for.rb
1054
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/file_field.rb
1055
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/foo.rb
1056
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/form.rb
1057
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/form_for.rb
1058
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/hacker.rb
1059
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/hidden_field.rb
1060
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/label.rb
1061
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/numeric_ext.rb
1062
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/option_tag.rb
1063
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/password_field.rb
1064
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/radio_button.rb
1065
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/radio_group.rb
1066
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/relative_date.rb
1067
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/relative_date_span.rb
1068
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/select.rb
1069
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/specs_controller.rb
1070
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/submit.rb
1071
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/tag_helper.rb
1072
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/text_area.rb
1073
+ - spec/rango/helpers/merb-helpers/fixture/app/controllers/text_field.rb
1074
+ - spec/rango/helpers/merb-helpers/fixture/app/helpers
1075
+ - spec/rango/helpers/merb-helpers/fixture/app/helpers/global_helpers.rb
1076
+ - spec/rango/helpers/merb-helpers/fixture/app/models
1077
+ - spec/rango/helpers/merb-helpers/fixture/app/models/fake_dm_model.rb
1078
+ - spec/rango/helpers/merb-helpers/fixture/app/models/first_generic_fake_model.rb
1079
+ - spec/rango/helpers/merb-helpers/fixture/app/models/hacker_generic_model.rb
1080
+ - spec/rango/helpers/merb-helpers/fixture/app/models/second_generic_fake_model.rb
1081
+ - spec/rango/helpers/merb-helpers/fixture/app/models/third_generic_fake_model.rb
1082
+ - spec/rango/helpers/merb-helpers/fixture/app/views
1083
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_check_box_specs
1084
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_check_box_specs/basic.html.erb
1085
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_check_box_specs/basic_unchecked.html.erb
1086
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_check_box_specs/checked.html.erb
1087
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_check_box_specs/errors.html.erb
1088
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_check_box_specs/label.html.erb
1089
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_check_box_specs/on_and_off.html.erb
1090
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_check_box_specs/raise_value_error.html.erb
1091
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_file_field_specs
1092
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_file_field_specs/additional_attributes.html.erb
1093
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_file_field_specs/takes_string.html.erb
1094
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_file_field_specs/with_label.html.erb
1095
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_hidden_field_specs
1096
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_hidden_field_specs/basic.html.erb
1097
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_hidden_field_specs/errors.html.erb
1098
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_hidden_field_specs/hidden_error.html.erb
1099
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_hidden_field_specs/label.html.erb
1100
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_option_tag_specs
1101
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_option_tag_specs/grouped.html.erb
1102
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_option_tag_specs/nested.html.erb
1103
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_option_tag_specs/text_and_value.html.erb
1104
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_password_field_specs
1105
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_password_field_specs/attributes.html.erb
1106
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_password_field_specs/basic.html.erb
1107
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_password_field_specs/label.html.erb
1108
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_radio_button_specs
1109
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_radio_button_specs/basic.html.erb
1110
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_radio_group_specs
1111
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_radio_group_specs/basic.html.erb
1112
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_radio_group_specs/hashes.html.erb
1113
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_radio_group_specs/mixed.html.erb
1114
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_radio_group_specs/override_id.html.erb
1115
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_select_specs
1116
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_select_specs/basic.html.erb
1117
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_select_specs/blank.html.erb
1118
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_select_specs/label.html.erb
1119
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_select_specs/multiple.html.erb
1120
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_select_specs/prompt.html.erb
1121
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_select_specs/with_options.html.erb
1122
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_select_specs/with_options_with_blank.html.erb
1123
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_text_area_specs
1124
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_text_area_specs/basic.html.erb
1125
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_text_area_specs/label.html.erb
1126
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_text_field_specs
1127
+ - spec/rango/helpers/merb-helpers/fixture/app/views/bound_text_field_specs/basic.html.erb
1128
+ - spec/rango/helpers/merb-helpers/fixture/app/views/button_specs
1129
+ - spec/rango/helpers/merb-helpers/fixture/app/views/button_specs/button_with_label.html.erb
1130
+ - spec/rango/helpers/merb-helpers/fixture/app/views/button_specs/button_with_values.html.erb
1131
+ - spec/rango/helpers/merb-helpers/fixture/app/views/button_specs/disabled_button.html.erb
1132
+ - spec/rango/helpers/merb-helpers/fixture/app/views/check_box_specs
1133
+ - spec/rango/helpers/merb-helpers/fixture/app/views/check_box_specs/basic.html.erb
1134
+ - spec/rango/helpers/merb-helpers/fixture/app/views/check_box_specs/boolean.html.erb
1135
+ - spec/rango/helpers/merb-helpers/fixture/app/views/check_box_specs/disabled.html.erb
1136
+ - spec/rango/helpers/merb-helpers/fixture/app/views/check_box_specs/label.html.erb
1137
+ - spec/rango/helpers/merb-helpers/fixture/app/views/check_box_specs/on_off_is_boolean.html.erb
1138
+ - spec/rango/helpers/merb-helpers/fixture/app/views/check_box_specs/raise_unless_both_on_and_off.html.erb
1139
+ - spec/rango/helpers/merb-helpers/fixture/app/views/check_box_specs/raises_error_if_not_boolean.html.erb
1140
+ - spec/rango/helpers/merb-helpers/fixture/app/views/check_box_specs/raises_error_if_on_off_and_boolean_false.html.erb
1141
+ - spec/rango/helpers/merb-helpers/fixture/app/views/check_box_specs/simple.html.erb
1142
+ - spec/rango/helpers/merb-helpers/fixture/app/views/check_box_specs/to_string.html.erb
1143
+ - spec/rango/helpers/merb-helpers/fixture/app/views/check_box_specs/unchecked.html.erb
1144
+ - spec/rango/helpers/merb-helpers/fixture/app/views/custom_builder_specs
1145
+ - spec/rango/helpers/merb-helpers/fixture/app/views/custom_builder_specs/everything.html.erb
1146
+ - spec/rango/helpers/merb-helpers/fixture/app/views/delete_button_specs
1147
+ - spec/rango/helpers/merb-helpers/fixture/app/views/delete_button_specs/delete_with_explicit_url.html.erb
1148
+ - spec/rango/helpers/merb-helpers/fixture/app/views/delete_button_specs/delete_with_extra_params.html.erb
1149
+ - spec/rango/helpers/merb-helpers/fixture/app/views/delete_button_specs/delete_with_label.html.erb
1150
+ - spec/rango/helpers/merb-helpers/fixture/app/views/delete_button_specs/simple_delete.html.erb
1151
+ - spec/rango/helpers/merb-helpers/fixture/app/views/exeptions
1152
+ - spec/rango/helpers/merb-helpers/fixture/app/views/exeptions/client_error.html.erb
1153
+ - spec/rango/helpers/merb-helpers/fixture/app/views/exeptions/internal_server_error.html.erb
1154
+ - spec/rango/helpers/merb-helpers/fixture/app/views/exeptions/not_acceptable.html.erb
1155
+ - spec/rango/helpers/merb-helpers/fixture/app/views/exeptions/not_found.html.erb
1156
+ - spec/rango/helpers/merb-helpers/fixture/app/views/fields_for_specs
1157
+ - spec/rango/helpers/merb-helpers/fixture/app/views/fields_for_specs/basic.html.erb
1158
+ - spec/rango/helpers/merb-helpers/fixture/app/views/fields_for_specs/midstream.html.erb
1159
+ - spec/rango/helpers/merb-helpers/fixture/app/views/fields_for_specs/nil.html.erb
1160
+ - spec/rango/helpers/merb-helpers/fixture/app/views/fieldset_specs
1161
+ - spec/rango/helpers/merb-helpers/fixture/app/views/fieldset_specs/legend.html.erb
1162
+ - spec/rango/helpers/merb-helpers/fixture/app/views/file_field_specs
1163
+ - spec/rango/helpers/merb-helpers/fixture/app/views/file_field_specs/disabled.html.erb
1164
+ - spec/rango/helpers/merb-helpers/fixture/app/views/file_field_specs/makes_multipart.html.erb
1165
+ - spec/rango/helpers/merb-helpers/fixture/app/views/file_field_specs/with_label.html.erb
1166
+ - spec/rango/helpers/merb-helpers/fixture/app/views/file_field_specs/with_values.html.erb
1167
+ - spec/rango/helpers/merb-helpers/fixture/app/views/foo
1168
+ - spec/rango/helpers/merb-helpers/fixture/app/views/foo/bar.html.erb
1169
+ - spec/rango/helpers/merb-helpers/fixture/app/views/form_for_specs
1170
+ - spec/rango/helpers/merb-helpers/fixture/app/views/form_for_specs/basic.html.erb
1171
+ - spec/rango/helpers/merb-helpers/fixture/app/views/form_specs
1172
+ - spec/rango/helpers/merb-helpers/fixture/app/views/form_specs/create_a_form.html.erb
1173
+ - spec/rango/helpers/merb-helpers/fixture/app/views/form_specs/create_a_multipart_form.html.erb
1174
+ - spec/rango/helpers/merb-helpers/fixture/app/views/form_specs/fake_delete_if_set.html.erb
1175
+ - spec/rango/helpers/merb-helpers/fixture/app/views/form_specs/fake_put_if_set.html.erb
1176
+ - spec/rango/helpers/merb-helpers/fixture/app/views/form_specs/get_if_set.html.erb
1177
+ - spec/rango/helpers/merb-helpers/fixture/app/views/form_specs/post_by_default.html.erb
1178
+ - spec/rango/helpers/merb-helpers/fixture/app/views/form_specs/resourceful_form.html.erb
1179
+ - spec/rango/helpers/merb-helpers/fixture/app/views/hacker
1180
+ - spec/rango/helpers/merb-helpers/fixture/app/views/hacker/file_field.html.erb
1181
+ - spec/rango/helpers/merb-helpers/fixture/app/views/hacker/hidden_field.html.erb
1182
+ - spec/rango/helpers/merb-helpers/fixture/app/views/hacker/option_tag.html.erb
1183
+ - spec/rango/helpers/merb-helpers/fixture/app/views/hacker/password_field.html.erb
1184
+ - spec/rango/helpers/merb-helpers/fixture/app/views/hacker/radio_button.html.erb
1185
+ - spec/rango/helpers/merb-helpers/fixture/app/views/hacker/radio_group.html.erb
1186
+ - spec/rango/helpers/merb-helpers/fixture/app/views/hacker/text_area.html.erb
1187
+ - spec/rango/helpers/merb-helpers/fixture/app/views/hacker/text_field.html.erb
1188
+ - spec/rango/helpers/merb-helpers/fixture/app/views/hidden_field_specs
1189
+ - spec/rango/helpers/merb-helpers/fixture/app/views/hidden_field_specs/basic.html.erb
1190
+ - spec/rango/helpers/merb-helpers/fixture/app/views/hidden_field_specs/disabled.html.erb
1191
+ - spec/rango/helpers/merb-helpers/fixture/app/views/hidden_field_specs/label.html.erb
1192
+ - spec/rango/helpers/merb-helpers/fixture/app/views/label_specs
1193
+ - spec/rango/helpers/merb-helpers/fixture/app/views/label_specs/basic.html.erb
1194
+ - spec/rango/helpers/merb-helpers/fixture/app/views/label_specs/basic_with_attributes.html.erb
1195
+ - spec/rango/helpers/merb-helpers/fixture/app/views/label_specs/basic_with_class.html.erb
1196
+ - spec/rango/helpers/merb-helpers/fixture/app/views/layout
1197
+ - spec/rango/helpers/merb-helpers/fixture/app/views/layout/application.html.erb
1198
+ - spec/rango/helpers/merb-helpers/fixture/app/views/numeric_ext_specs
1199
+ - spec/rango/helpers/merb-helpers/fixture/app/views/numeric_ext_specs/minutes_to_hours.html.erb
1200
+ - spec/rango/helpers/merb-helpers/fixture/app/views/numeric_ext_specs/to_concurrency_default.html.erb
1201
+ - spec/rango/helpers/merb-helpers/fixture/app/views/numeric_ext_specs/two_digits.html.erb
1202
+ - spec/rango/helpers/merb-helpers/fixture/app/views/option_tag_specs
1203
+ - spec/rango/helpers/merb-helpers/fixture/app/views/option_tag_specs/array.html.erb
1204
+ - spec/rango/helpers/merb-helpers/fixture/app/views/option_tag_specs/clean.html.erb
1205
+ - spec/rango/helpers/merb-helpers/fixture/app/views/option_tag_specs/collection.html.erb
1206
+ - spec/rango/helpers/merb-helpers/fixture/app/views/option_tag_specs/multiple_selects.html.erb
1207
+ - spec/rango/helpers/merb-helpers/fixture/app/views/option_tag_specs/no_extra_attributes.html.erb
1208
+ - spec/rango/helpers/merb-helpers/fixture/app/views/option_tag_specs/optgroups.html.erb
1209
+ - spec/rango/helpers/merb-helpers/fixture/app/views/option_tag_specs/selected.html.erb
1210
+ - spec/rango/helpers/merb-helpers/fixture/app/views/option_tag_specs/with_blank.html.erb
1211
+ - spec/rango/helpers/merb-helpers/fixture/app/views/option_tag_specs/with_prompt.html.erb
1212
+ - spec/rango/helpers/merb-helpers/fixture/app/views/password_field_specs
1213
+ - spec/rango/helpers/merb-helpers/fixture/app/views/password_field_specs/basic.html.erb
1214
+ - spec/rango/helpers/merb-helpers/fixture/app/views/password_field_specs/disabled.html.erb
1215
+ - spec/rango/helpers/merb-helpers/fixture/app/views/radio_button_specs
1216
+ - spec/rango/helpers/merb-helpers/fixture/app/views/radio_button_specs/basic.html.erb
1217
+ - spec/rango/helpers/merb-helpers/fixture/app/views/radio_button_specs/checked.html.erb
1218
+ - spec/rango/helpers/merb-helpers/fixture/app/views/radio_button_specs/disabled.html.erb
1219
+ - spec/rango/helpers/merb-helpers/fixture/app/views/radio_button_specs/label.html.erb
1220
+ - spec/rango/helpers/merb-helpers/fixture/app/views/radio_button_specs/unchecked.html.erb
1221
+ - spec/rango/helpers/merb-helpers/fixture/app/views/radio_group_specs
1222
+ - spec/rango/helpers/merb-helpers/fixture/app/views/radio_group_specs/attributes.html.erb
1223
+ - spec/rango/helpers/merb-helpers/fixture/app/views/radio_group_specs/basic.html.erb
1224
+ - spec/rango/helpers/merb-helpers/fixture/app/views/radio_group_specs/checked.html.erb
1225
+ - spec/rango/helpers/merb-helpers/fixture/app/views/radio_group_specs/hash.html.erb
1226
+ - spec/rango/helpers/merb-helpers/fixture/app/views/radio_group_specs/specific_attributes.html.erb
1227
+ - spec/rango/helpers/merb-helpers/fixture/app/views/relative_date_span_specs
1228
+ - spec/rango/helpers/merb-helpers/fixture/app/views/relative_date_span_specs/date_span_on_same_day.html.erb
1229
+ - spec/rango/helpers/merb-helpers/fixture/app/views/relative_date_span_specs/date_span_on_same_day_on_different_year.html.erb
1230
+ - spec/rango/helpers/merb-helpers/fixture/app/views/relative_date_specs
1231
+ - spec/rango/helpers/merb-helpers/fixture/app/views/relative_date_specs/relative_date_with_year.html.erb
1232
+ - spec/rango/helpers/merb-helpers/fixture/app/views/relative_date_specs/relative_date_without_year.html.erb
1233
+ - spec/rango/helpers/merb-helpers/fixture/app/views/relative_date_specs/relative_today.html.erb
1234
+ - spec/rango/helpers/merb-helpers/fixture/app/views/relative_date_specs/relative_tomorrow.html.erb
1235
+ - spec/rango/helpers/merb-helpers/fixture/app/views/relative_date_specs/relative_yesterday.html.erb
1236
+ - spec/rango/helpers/merb-helpers/fixture/app/views/select_specs
1237
+ - spec/rango/helpers/merb-helpers/fixture/app/views/select_specs/basic.html.erb
1238
+ - spec/rango/helpers/merb-helpers/fixture/app/views/select_specs/blank.html.erb
1239
+ - spec/rango/helpers/merb-helpers/fixture/app/views/select_specs/multiple.html.erb
1240
+ - spec/rango/helpers/merb-helpers/fixture/app/views/select_specs/selected.html.erb
1241
+ - spec/rango/helpers/merb-helpers/fixture/app/views/submit_specs
1242
+ - spec/rango/helpers/merb-helpers/fixture/app/views/submit_specs/disabled_submit.html.erb
1243
+ - spec/rango/helpers/merb-helpers/fixture/app/views/submit_specs/submit_with_label.html.erb
1244
+ - spec/rango/helpers/merb-helpers/fixture/app/views/submit_specs/submit_with_values.html.erb
1245
+ - spec/rango/helpers/merb-helpers/fixture/app/views/tag_helper
1246
+ - spec/rango/helpers/merb-helpers/fixture/app/views/tag_helper/nested_tags.html.erb
1247
+ - spec/rango/helpers/merb-helpers/fixture/app/views/tag_helper/tag_with_attributes.html.erb
1248
+ - spec/rango/helpers/merb-helpers/fixture/app/views/tag_helper/tag_with_content.html.erb
1249
+ - spec/rango/helpers/merb-helpers/fixture/app/views/tag_helper/tag_with_content_in_the_block.html.erb
1250
+ - spec/rango/helpers/merb-helpers/fixture/app/views/text_area_specs
1251
+ - spec/rango/helpers/merb-helpers/fixture/app/views/text_area_specs/basic.html.erb
1252
+ - spec/rango/helpers/merb-helpers/fixture/app/views/text_area_specs/disabled.html.erb
1253
+ - spec/rango/helpers/merb-helpers/fixture/app/views/text_area_specs/label.html.erb
1254
+ - spec/rango/helpers/merb-helpers/fixture/app/views/text_area_specs/nil.html.erb
1255
+ - spec/rango/helpers/merb-helpers/fixture/app/views/text_field_specs
1256
+ - spec/rango/helpers/merb-helpers/fixture/app/views/text_field_specs/basic.html.erb
1257
+ - spec/rango/helpers/merb-helpers/fixture/app/views/text_field_specs/class.html.erb
1258
+ - spec/rango/helpers/merb-helpers/fixture/app/views/text_field_specs/disabled.html.erb
1259
+ - spec/rango/helpers/merb-helpers/fixture/app/views/text_field_specs/label.html.erb
1260
+ - spec/rango/helpers/merb-helpers/fixture/app/views/text_field_specs/symbolized_name.html.erb
1261
+ - spec/rango/helpers/merb-helpers/fixture/config
1262
+ - spec/rango/helpers/merb-helpers/fixture/config/environments
1263
+ - spec/rango/helpers/merb-helpers/fixture/config/environments/development.rb
1264
+ - spec/rango/helpers/merb-helpers/fixture/config/environments/production.rb
1265
+ - spec/rango/helpers/merb-helpers/fixture/config/environments/test.rb
1266
+ - spec/rango/helpers/merb-helpers/fixture/config/init.rb
1267
+ - spec/rango/helpers/merb-helpers/fixture/config/rack.rb
1268
+ - spec/rango/helpers/merb-helpers/fixture/config/router.rb
1269
+ - spec/rango/helpers/merb-helpers/fixture/public
1270
+ - spec/rango/helpers/merb-helpers/fixture/public/images
1271
+ - spec/rango/helpers/merb-helpers/fixture/public/images/merb.jpg
1272
+ - spec/rango/helpers/merb-helpers/fixture/public/merb.fcgi
1273
+ - spec/rango/helpers/merb-helpers/fixture/public/stylesheets
1274
+ - spec/rango/helpers/merb-helpers/fixture/public/stylesheets/master.css
1275
+ - spec/rango/helpers/merb-helpers/merb_helpers_config_spec.rb
1276
+ - spec/rango/helpers/merb-helpers/merb_helpers_date_time_spec.rb
1277
+ - spec/rango/helpers/merb-helpers/merb_helpers_form_spec.rb
1278
+ - spec/rango/helpers/merb-helpers/merb_helpers_tag_helper_spec.rb
1279
+ - spec/rango/helpers/merb-helpers/merb_helpers_text_spec.rb
1280
+ - spec/rango/helpers/merb-helpers/numeric_extlib_spec.rb
1281
+ - spec/rango/helpers/merb-helpers/ordinalize_spec.rb
630
1282
  - spec/rango/helpers/merb-helpers_spec.rb
631
1283
  - spec/rango/helpers/spec
632
1284
  - spec/rango/helpers/spec/core_ext_spec_spec.rb
@@ -703,52 +1355,80 @@ files:
703
1355
  - spec/rango/loggers/logger_spec.rb
704
1356
  - spec/rango/mixins
705
1357
  - spec/rango/mixins/application_spec.rb
1358
+ - spec/rango/mixins/configurable_spec.rb
706
1359
  - spec/rango/mixins/controller_spec.rb
707
1360
  - spec/rango/mixins/import_spec.rb
1361
+ - spec/rango/mixins/mini_spec.rb
1362
+ - spec/rango/mixins/strategy_spec.rb
708
1363
  - spec/rango/mvc
709
- - spec/rango/mvc/controller_spec.rb
710
- - spec/rango/mvc/strategies_spec.rb
711
1364
  - spec/rango/orm
712
1365
  - spec/rango/orm/adapters
713
1366
  - spec/rango/orm/adapters/datamapper
1367
+ - spec/rango/orm/adapters/datamapper/fields_spec.rb
1368
+ - spec/rango/orm/adapters/datamapper/setup_spec.rb
1369
+ - spec/rango/orm/adapters/datamapper/support_spec.rb
1370
+ - spec/rango/orm/adapters/datamapper/types
1371
+ - spec/rango/orm/adapters/datamapper/types/unicode_string_spec.rb
714
1372
  - spec/rango/orm/adapters/dm
715
- - spec/rango/orm/adapters/dm/fields_spec.rb
716
- - spec/rango/orm/adapters/dm/setup_spec.rb
717
1373
  - spec/rango/project_spec.rb
718
1374
  - spec/rango/rack
719
- - spec/rango/rack/dispatcher_spec.rb
720
1375
  - spec/rango/rack/middlewares
721
- - spec/rango/rack/middlewares/emails_spec.rb
1376
+ - spec/rango/rack/middlewares/basic_spec.rb
1377
+ - spec/rango/rack/middlewares/email_obfuscator_spec.rb
1378
+ - spec/rango/rack/middlewares/encoding_spec.rb
722
1379
  - spec/rango/rack/middlewares/static_spec.rb
723
1380
  - spec/rango/rack/request_spec.rb
724
1381
  - spec/rango/rango_spec.rb
725
1382
  - spec/rango/router
726
- - spec/rango/router/route_spec.rb
727
- - spec/rango/router/router_spec.rb
728
- - spec/rango/router/strategies_spec.rb
1383
+ - spec/rango/router/adapters
1384
+ - spec/rango/router/adapters/basic_spec.rb
1385
+ - spec/rango/router/adapters/rack-router_spec.rb
1386
+ - spec/rango/router/dispatcher_spec.rb
1387
+ - spec/rango/settings
1388
+ - spec/rango/settings/erubis_spec.rb
1389
+ - spec/rango/settings/framework_spec.rb
1390
+ - spec/rango/settings/haml_spec.rb
1391
+ - spec/rango/settings/template_spec.rb
729
1392
  - spec/rango/settings_spec.rb
730
1393
  - spec/rango/spec
731
- - spec/rango/spec/cucumber_spec.rb
732
- - spec/rango/spec/rspec_spec.rb
1394
+ - spec/rango/support
1395
+ - spec/rango/support/cucumber
1396
+ - spec/rango/support/cucumber/steps
1397
+ - spec/rango/support/cucumber/steps/given_steps_spec.rb
1398
+ - spec/rango/support/cucumber/steps/then_steps_spec.rb
1399
+ - spec/rango/support/cucumber/steps/when_steps_spec.rb
733
1400
  - spec/rango/templates
734
1401
  - spec/rango/templates/adapter_spec.rb
735
1402
  - spec/rango/templates/adapters
736
1403
  - spec/rango/templates/adapters/erb_spec.rb
737
1404
  - spec/rango/templates/adapters/erubis_spec.rb
738
1405
  - spec/rango/templates/adapters/haml_spec.rb
1406
+ - spec/rango/templates/adapters/template_helpers.rb
739
1407
  - spec/rango/templates/template_spec.rb
740
1408
  - spec/rango_spec.rb
741
1409
  - spec/spec.opts
742
1410
  - spec/spec_helper.rb
743
1411
  - spec/stubs
1412
+ - spec/stubs/acqs
1413
+ - spec/stubs/acqs/dir
1414
+ - spec/stubs/acqs/dir/lib.rb
1415
+ - spec/stubs/acqs/dir/lib_spec.rb
1416
+ - spec/stubs/acqs/lib.rb
1417
+ - spec/stubs/acqs/tasks.thor
744
1418
  - spec/stubs/flat.rb
745
1419
  - spec/stubs/project
1420
+ - spec/stubs/templates
1421
+ - spec/stubs/templates/basic.html.erb
1422
+ - spec/stubs/templates/capture.html.erb
1423
+ - spec/stubs/templates/context.html.erb
1424
+ - spec/stubs/templates/exception.html.erb
746
1425
  - stubs
747
1426
  - stubs/app
748
1427
  - stubs/app/content
749
1428
  - stubs/app/content/init.rb.rbt
750
1429
  - stubs/app/content/models.rb.rbt
751
1430
  - stubs/app/content/views.rb.rbt
1431
+ - stubs/app/metadata.yml
752
1432
  - stubs/app/preprocess.rb
753
1433
  - stubs/bigapp
754
1434
  - stubs/bigapp/content
@@ -756,14 +1436,17 @@ files:
756
1436
  - stubs/bigapp/content/models
757
1437
  - stubs/bigapp/content/views
758
1438
  - stubs/bigapp/content/views/application.rb
1439
+ - stubs/bigapp/metadata.yml
759
1440
  - stubs/bigapp/preprocess.rb
760
1441
  - stubs/features
761
1442
  - stubs/features/content
762
1443
  - stubs/features/content/env.rb
763
1444
  - stubs/features/content/shared
1445
+ - stubs/features/metadata.yml
764
1446
  - stubs/flat
765
1447
  - stubs/flat/content
766
1448
  - stubs/flat/content/flat.ru.rbt
1449
+ - stubs/flat/metadata.yml
767
1450
  - stubs/flat/preprocess.rb
768
1451
  - stubs/project
769
1452
  - stubs/project/content
@@ -776,9 +1459,25 @@ files:
776
1459
  - stubs/project/content/templates/base.html.haml.rbt
777
1460
  - stubs/project/content/Thorfile
778
1461
  - stubs/project/content/TODO
779
- - stubs/project/preprocess.rb
1462
+ - stubs/project/metadata.yml
1463
+ - stubs/project/postprocess.rb
780
1464
  - stubs/pupu
781
1465
  - stubs/pupu/content
1466
+ - stubs/pupu/content/CHANGELOG
1467
+ - stubs/pupu/content/config.rb.rbt
1468
+ - stubs/pupu/content/images
1469
+ - stubs/pupu/content/initializers
1470
+ - stubs/pupu/content/initializers/%name%.css
1471
+ - stubs/pupu/content/initializers/%name%.js
1472
+ - stubs/pupu/content/javascripts
1473
+ - stubs/pupu/content/javascripts/%name%.js
1474
+ - stubs/pupu/content/LICENSE.rbt
1475
+ - stubs/pupu/content/README.textile.rbt
1476
+ - stubs/pupu/content/stylesheets
1477
+ - stubs/pupu/content/stylesheets/%name%.css
1478
+ - stubs/pupu/content/Thorfile.rbt
1479
+ - stubs/pupu/content/TODO
1480
+ - stubs/pupu/metadata.yml
782
1481
  - stubs/pupu/preprocess.rb
783
1482
  - stubs/stub
784
1483
  - stubs/stub/content
@@ -786,8 +1485,9 @@ files:
786
1485
  - stubs/stub/content/metadata.yml
787
1486
  - stubs/stub/content/postprocess.rb
788
1487
  - stubs/stub/content/preprocess.rb
789
- - stubs/stub/preprocess.rb
1488
+ - stubs/stub/metadata.yml
790
1489
  - support
1490
+ - support/emacs
791
1491
  - support/hooks
792
1492
  - support/hooks/commit-msg
793
1493
  - support/hooks/post-commit
@@ -822,7 +1522,9 @@ files:
822
1522
  - support/Rango.tmbundle/Snippets/Rango_logger_inspect.tmSnippet
823
1523
  - support/Rango.tmbundle/Snippets/Rango_logger_warn.tmSnippet
824
1524
  - support/Rango.tmbundle/Snippets/thor task.tmSnippet
1525
+ - support/vim
825
1526
  - tasks
1527
+ - tasks/benchmark.thor
826
1528
  - tasks/hooks.thor
827
1529
  - tasks/package.thor
828
1530
  - tasks/release.thor
@@ -830,12 +1532,7 @@ files:
830
1532
  - tasks/spec.thor
831
1533
  - tasks/stats.thor
832
1534
  - tasks/yardoc.thor
833
- - templates
834
- - templates/errors
835
- - templates/errors/404.html.erb
836
- - templates/errors/406.html.erb
837
- - templates/errors/500.html.erb
838
- - templates/generic
1535
+ - templates.txt
839
1536
  has_rdoc: false
840
1537
  homepage: http://github.com/botanicus/rango
841
1538
  post_install_message: