rango 0.0.4 → 0.0.6

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 (1773) hide show
  1. data/CHANGELOG +22 -8
  2. data/README.textile +2 -2
  3. data/Rakefile +79 -0
  4. data/bin/rango +54 -22
  5. data/deps.rip +8 -0
  6. data/lib/rango.rb +4 -4
  7. data/lib/rango/boot.rb +4 -14
  8. data/lib/rango/contrib/pagination.rb +6 -8
  9. data/lib/rango/contrib/pagination/README.textile +2 -2
  10. data/lib/rango/contrib/pagination/_pagination.html.haml +4 -4
  11. data/lib/rango/contrib/pagination/adapters/datamapper.rb +16 -17
  12. data/lib/rango/contrib/pagination/helpers.rb +10 -0
  13. data/lib/rango/contrib/pagination/strategies.rb +1 -1
  14. data/lib/rango/controller.rb +40 -43
  15. data/lib/rango/exceptions.rb +49 -49
  16. data/lib/rango/gv.rb +93 -0
  17. data/lib/rango/helpers.rb +4 -4
  18. data/lib/rango/helpers/assets.rb +11 -2
  19. data/lib/rango/helpers/merb-helpers/core_ext/numeric.rb +1 -0
  20. data/lib/rango/helpers/merb-helpers/date_time_formatting.rb +5 -19
  21. data/lib/rango/helpers/merb-helpers/form/builder.rb +427 -424
  22. data/lib/rango/helpers/merb-helpers/form/helpers.rb +420 -418
  23. data/lib/rango/helpers/merb-helpers/form_helpers.rb +4 -2
  24. data/lib/rango/helpers/merb-helpers/text_helpers.rb +64 -54
  25. data/lib/rango/mixins/application.rb +1 -1
  26. data/lib/rango/mixins/configurable.rb +3 -4
  27. data/lib/rango/mixins/http_caching.rb +78 -0
  28. data/lib/rango/mixins/mini.rb +2 -2
  29. data/lib/rango/mixins/render.rb +152 -0
  30. data/lib/rango/orm/adapter.rb +46 -0
  31. data/lib/rango/orm/adapters/datamapper.rb +18 -0
  32. data/lib/rango/orm/adapters/sequel.rb +18 -0
  33. data/lib/rango/orm/orm.txt +11 -0
  34. data/lib/rango/orm/{adapters → support}/datamapper/fields.rb +0 -0
  35. data/lib/rango/orm/{adapters → support}/datamapper/support.rb +0 -0
  36. data/lib/rango/orm/tasks/datamapper.rake +34 -0
  37. data/{features/auth/warden.feature → lib/rango/orm/tasks/sequel.rake} +0 -0
  38. data/lib/rango/project.rb +8 -9
  39. data/lib/rango/rack/middlewares/basic.rb +50 -22
  40. data/lib/rango/rango.rb +29 -25
  41. data/lib/rango/router.rb +9 -0
  42. data/lib/rango/router/adapters/rack_mount.rb +17 -0
  43. data/lib/rango/router/adapters/usher.rb +9 -0
  44. data/lib/rango/settings.rb +13 -3
  45. data/lib/rango/settings/erubis.rb +2 -0
  46. data/lib/rango/settings/framework.rb +4 -10
  47. data/lib/rango/settings/haml.rb +6 -0
  48. data/lib/rango/settings/template.rb +3 -1
  49. data/lib/rango/tasks/spec.rake +7 -0
  50. data/lib/rango/templates/adapter.rb +1 -1
  51. data/lib/rango/templates/adapters/erb.rb +2 -2
  52. data/lib/rango/templates/adapters/erubis.rb +1 -1
  53. data/lib/rango/templates/adapters/haml.rb +1 -1
  54. data/lib/rango/templates/erubis.rb +84 -0
  55. data/lib/rango/templates/template.rb +33 -16
  56. data/lib/rango/templates/templates.txt +39 -0
  57. data/lib/rango/utils.rb +13 -0
  58. data/rango.gemspec +20 -15
  59. data/runcoderun.sh +19 -0
  60. data/script/erubis +11 -0
  61. data/script/rackup +2 -0
  62. data/script/rake2thor +86 -0
  63. data/script/spec +12 -0
  64. data/script/thor +12 -0
  65. data/simple-templater.scope +6 -0
  66. data/spec/factories.rb +4 -4
  67. data/spec/rango/controller_spec.rb +2 -2
  68. data/spec/rango/exceptions_spec.rb +3 -1
  69. data/{features/generators/bigapp.feature → spec/rango/gv_spec.rb} +0 -0
  70. data/{features/generators/features.feature → spec/rango/helpers/merb-helpers/core_ext/numeric_spec.rb} +0 -0
  71. data/{features/generators/flat.feature → spec/rango/helpers/merb-helpers/date_time_formatting_spec.rb} +0 -0
  72. data/{features/generators/project.feature → spec/rango/helpers/merb-helpers/date_time_helpers_spec.rb} +0 -0
  73. data/{features/generators/pupu.feature → spec/rango/helpers/merb-helpers/form/builder_spec.rb} +0 -0
  74. data/{features/generators/stub.feature → spec/rango/helpers/merb-helpers/form/helpers_spec.rb} +0 -0
  75. data/{features/routers/rack-router.feature → spec/rango/helpers/merb-helpers/form_helpers_spec.rb} +0 -0
  76. data/spec/rango/helpers/merb-helpers/merb_helpers_config_spec.rb +1 -0
  77. data/spec/rango/helpers/merb-helpers/merb_helpers_date_time_spec.rb +2 -0
  78. data/spec/rango/helpers/merb-helpers/merb_helpers_form_spec.rb +5 -3
  79. data/spec/rango/helpers/merb-helpers/merb_helpers_tag_helper_spec.rb +4 -0
  80. data/spec/rango/helpers/merb-helpers/merb_helpers_text_spec.rb +1 -0
  81. data/spec/rango/helpers/merb-helpers/numeric_extlib_spec.rb +8 -7
  82. data/spec/rango/helpers/merb-helpers/ordinalize_spec.rb +1 -0
  83. data/{features/routers/rack.feature → spec/rango/helpers/merb-helpers/tag_helpers_spec.rb} +0 -0
  84. data/{features/routers/urlmap.feature → spec/rango/helpers/merb-helpers/text_helpers_spec.rb} +0 -0
  85. data/{lib/rango/orm/adapters/sequel/tasks.thor → spec/rango/mixins/chainable_spec.rb} +0 -0
  86. data/spec/rango/{cli/generator_spec.rb → mixins/hookable_spec.rb} +0 -0
  87. data/spec/rango/{cli/templater_spec.rb → mixins/http_caching_spec.rb} +0 -0
  88. data/spec/rango/{generic_views_spec.rb → mixins/render_spec.rb} +0 -0
  89. data/spec/rango/{helpers/spec/core_ext_spec_spec.rb → orm/adapter_spec.rb} +0 -0
  90. data/spec/rango/{helpers/spec/fixture/app/controllers/application_spec.rb → orm/adapters/datamapper_spec.rb} +0 -0
  91. data/spec/rango/{helpers/spec/fixture/app/controllers/bound_check_box_spec.rb → orm/adapters/sequel_spec.rb} +0 -0
  92. data/spec/rango/orm/{adapters → support}/datamapper/fields_spec.rb +0 -0
  93. data/spec/rango/orm/{adapters → support}/datamapper/support_spec.rb +0 -0
  94. data/spec/rango/project_spec.rb +1 -4
  95. data/spec/rango/rack/request_spec.rb +2 -13
  96. data/spec/rango/{helpers/spec/fixture/app/controllers/bound_file_field_spec.rb → router/adapters/rack_router_spec.rb} +0 -0
  97. data/spec/rango/{helpers/spec/fixture/app/controllers/bound_hidden_field_spec.rb → router/adapters/urlmap_spec.rb} +0 -0
  98. data/spec/rango/{helpers/spec/fixture/app/controllers/bound_option_tag_spec.rb → router/adapters/usher_spec.rb} +0 -0
  99. data/spec/rango/{helpers/spec/fixture/config/router_spec.rb → router_spec.rb} +0 -0
  100. data/spec/rango/settings_spec.rb +2 -1
  101. data/spec/rango_spec.rb +3 -4
  102. data/stubs/app/content/init.rb.rbt +4 -1
  103. data/stubs/app/content/models.rb.rbt +9 -1
  104. data/stubs/app/content/views.rb.rbt +14 -4
  105. data/stubs/app/metadata.yml +1 -2
  106. data/stubs/app/setup.rb +13 -0
  107. data/stubs/bigapp/content/models/%model%.rb.rbt +6 -0
  108. data/stubs/bigapp/content/views/%controller%.rb.rbt +8 -0
  109. data/stubs/bigapp/metadata.yml +1 -2
  110. data/stubs/bigapp/setup.rb +12 -0
  111. data/stubs/features/metadata.yml +1 -2
  112. data/stubs/flat/content/flat.ru +21 -0
  113. data/stubs/flat/content/flat.ru.rbt +3 -2
  114. data/stubs/flat/metadata.yml +2 -3
  115. data/stubs/flat/postprocess.rb +12 -0
  116. data/stubs/flat/setup.rb +13 -0
  117. data/stubs/project/content/Gemfile.rbt +108 -0
  118. data/stubs/project/content/Rakefile.rbt +12 -0
  119. data/{spec/rango/helpers/spec/fixture/app/controllers/bound_password_field_spec.rb → stubs/project/content/TODO.txt} +0 -0
  120. data/stubs/project/content/config.ru.rbt +62 -0
  121. data/stubs/project/content/init.rb.rbt +49 -0
  122. data/stubs/project/content/settings.rb +15 -0
  123. data/stubs/project/content/spec/%name%/init_spec.rb.rbt +7 -0
  124. data/stubs/project/content/spec/%name%/models_spec.rb.rbt +10 -0
  125. data/stubs/project/content/spec/%name%/views_spec.rb.rbt +22 -0
  126. data/stubs/project/content/spec/spec.opts +5 -0
  127. data/stubs/project/content/spec/spec_helper.rb +27 -0
  128. data/stubs/project/content/templates/base.html.haml.rbt +9 -22
  129. data/stubs/project/content/templates/index.html.haml +24 -0
  130. data/stubs/project/metadata.yml +1 -2
  131. data/stubs/project/postprocess.rb +18 -4
  132. data/stubs/project/setup.rb +15 -0
  133. data/tasks/package.thor +0 -31
  134. data/tasks/prerelease.thor +34 -0
  135. data/tasks/release.thor +14 -3
  136. data/tasks/repair.thor +1 -1
  137. data/tasks/spec.thor +1 -0
  138. data/tasks/stats.thor +1 -1
  139. data/tasks/system.thor +158 -0
  140. data/vendor/abstract/ChangeLog +3 -0
  141. data/vendor/abstract/README.txt +57 -0
  142. data/vendor/abstract/abstract.gemspec +48 -0
  143. data/vendor/abstract/doc/classes/Kernel.html +134 -0
  144. data/vendor/abstract/doc/classes/Kernel.src/M000002.html +24 -0
  145. data/vendor/abstract/doc/classes/Module.html +140 -0
  146. data/vendor/abstract/doc/classes/Module.src/M000001.html +20 -0
  147. data/vendor/abstract/doc/created.rid +1 -0
  148. data/vendor/abstract/doc/files/README_txt.html +173 -0
  149. data/vendor/abstract/doc/files/lib/abstract_rb.html +137 -0
  150. data/vendor/abstract/doc/fr_class_index.html +28 -0
  151. data/vendor/abstract/doc/fr_file_index.html +28 -0
  152. data/vendor/abstract/doc/fr_method_index.html +28 -0
  153. data/vendor/abstract/doc/index.html +24 -0
  154. data/vendor/abstract/doc/rdoc-style.css +208 -0
  155. data/vendor/abstract/lib/abstract.rb +75 -0
  156. data/vendor/abstract/setup.rb +1331 -0
  157. data/vendor/abstract/test/test.rb +91 -0
  158. data/vendor/cli/CHANGELOG +2 -0
  159. data/vendor/cli/LICENSE +20 -0
  160. data/{spec/rango/helpers/spec/fixture/app/controllers/bound_radio_button_spec.rb → vendor/cli/README.textile} +0 -0
  161. data/vendor/cli/Rakefile +79 -0
  162. data/{spec/rango/helpers/spec/fixture/app/controllers/bound_radio_group_spec.rb → vendor/cli/TODO.txt} +0 -0
  163. data/vendor/cli/cli.gemspec +42 -0
  164. data/vendor/cli/deps.rip +5 -0
  165. data/vendor/cli/lib/cli.rb +33 -0
  166. data/vendor/cli/script/spec +12 -0
  167. data/vendor/cli/spec/cli_spec.rb +56 -0
  168. data/vendor/cli/spec/spec.opts +5 -0
  169. data/vendor/cli/spec/spec_helper.rb +18 -0
  170. data/vendor/erubis/CHANGES.txt +717 -0
  171. data/vendor/erubis/MIT-LICENSE +20 -0
  172. data/vendor/erubis/README.txt +102 -0
  173. data/vendor/erubis/benchmark/Makefile +6 -0
  174. data/vendor/erubis/benchmark/bench.rb +314 -0
  175. data/vendor/erubis/benchmark/bench_context.yaml +141 -0
  176. data/vendor/erubis/benchmark/templates/_footer.html +4 -0
  177. data/vendor/erubis/benchmark/templates/_header.html +52 -0
  178. data/vendor/erubis/benchmark/templates/bench_erb.rhtml +29 -0
  179. data/vendor/erubis/benchmark/templates/bench_erubis.rhtml +29 -0
  180. data/vendor/erubis/benchmark/templates/bench_eruby.rhtml +29 -0
  181. data/vendor/erubis/bin/erubis +11 -0
  182. data/vendor/erubis/contrib/erubis +11 -0
  183. data/vendor/erubis/contrib/erubis-run.rb +132 -0
  184. data/vendor/erubis/contrib/inline-require +153 -0
  185. data/vendor/erubis/doc-api/classes/ActionView.html +105 -0
  186. data/vendor/erubis/doc-api/classes/ActionView/TemplateHandlers/ErubisHandler.html +181 -0
  187. data/vendor/erubis/doc-api/classes/ERB.html +101 -0
  188. data/vendor/erubis/doc-api/classes/Erubis.html +353 -0
  189. data/vendor/erubis/doc-api/classes/Erubis/ArrayBufferEnhancer.html +175 -0
  190. data/vendor/erubis/doc-api/classes/Erubis/ArrayBufferEruby.html +120 -0
  191. data/vendor/erubis/doc-api/classes/Erubis/ArrayEnhancer.html +174 -0
  192. data/vendor/erubis/doc-api/classes/Erubis/ArrayEruby.html +120 -0
  193. data/vendor/erubis/doc-api/classes/Erubis/Basic.html +112 -0
  194. data/vendor/erubis/doc-api/classes/Erubis/Basic/Converter.html +327 -0
  195. data/vendor/erubis/doc-api/classes/Erubis/Basic/Engine.html +130 -0
  196. data/vendor/erubis/doc-api/classes/Erubis/BiPatternEnhancer.html +215 -0
  197. data/vendor/erubis/doc-api/classes/Erubis/BiPatternEruby.html +120 -0
  198. data/vendor/erubis/doc-api/classes/Erubis/CGenerator.html +386 -0
  199. data/vendor/erubis/doc-api/classes/Erubis/CommandOptionError.html +113 -0
  200. data/vendor/erubis/doc-api/classes/Erubis/Context.html +344 -0
  201. data/vendor/erubis/doc-api/classes/Erubis/Converter.html +283 -0
  202. data/vendor/erubis/doc-api/classes/Erubis/DeleteIndentEnhancer.html +150 -0
  203. data/vendor/erubis/doc-api/classes/Erubis/DeleteIndentEruby.html +120 -0
  204. data/vendor/erubis/doc-api/classes/Erubis/Ec.html +126 -0
  205. data/vendor/erubis/doc-api/classes/Erubis/Ejava.html +126 -0
  206. data/vendor/erubis/doc-api/classes/Erubis/Ejavascript.html +126 -0
  207. data/vendor/erubis/doc-api/classes/Erubis/Engine.html +305 -0
  208. data/vendor/erubis/doc-api/classes/Erubis/Eperl.html +126 -0
  209. data/vendor/erubis/doc-api/classes/Erubis/Ephp.html +126 -0
  210. data/vendor/erubis/doc-api/classes/Erubis/ErboutEnhancer.html +175 -0
  211. data/vendor/erubis/doc-api/classes/Erubis/ErboutEruby.html +120 -0
  212. data/vendor/erubis/doc-api/classes/Erubis/ErubisError.html +117 -0
  213. data/vendor/erubis/doc-api/classes/Erubis/Eruby.html +132 -0
  214. data/vendor/erubis/doc-api/classes/Erubis/EscapeEnhancer.html +165 -0
  215. data/vendor/erubis/doc-api/classes/Erubis/EscapedEc.html +120 -0
  216. data/vendor/erubis/doc-api/classes/Erubis/EscapedEjava.html +120 -0
  217. data/vendor/erubis/doc-api/classes/Erubis/EscapedEjavascript.html +120 -0
  218. data/vendor/erubis/doc-api/classes/Erubis/EscapedEperl.html +120 -0
  219. data/vendor/erubis/doc-api/classes/Erubis/EscapedEphp.html +120 -0
  220. data/vendor/erubis/doc-api/classes/Erubis/EscapedEruby.html +127 -0
  221. data/vendor/erubis/doc-api/classes/Erubis/EscapedEscheme.html +120 -0
  222. data/vendor/erubis/doc-api/classes/Erubis/Escheme.html +126 -0
  223. data/vendor/erubis/doc-api/classes/Erubis/Evaluator.html +212 -0
  224. data/vendor/erubis/doc-api/classes/Erubis/FastEruby.html +131 -0
  225. data/vendor/erubis/doc-api/classes/Erubis/Generator.html +416 -0
  226. data/vendor/erubis/doc-api/classes/Erubis/HeaderFooterEnhancer.html +267 -0
  227. data/vendor/erubis/doc-api/classes/Erubis/HeaderFooterEruby.html +120 -0
  228. data/vendor/erubis/doc-api/classes/Erubis/Helpers.html +116 -0
  229. data/vendor/erubis/doc-api/classes/Erubis/Helpers/RailsFormHelper.html +787 -0
  230. data/vendor/erubis/doc-api/classes/Erubis/Helpers/RailsHelper.html +349 -0
  231. data/vendor/erubis/doc-api/classes/Erubis/Helpers/RailsHelper/TemplateConverter.html +164 -0
  232. data/vendor/erubis/doc-api/classes/Erubis/InterpolationEnhancer.html +306 -0
  233. data/vendor/erubis/doc-api/classes/Erubis/InterpolationEruby.html +120 -0
  234. data/vendor/erubis/doc-api/classes/Erubis/JavaGenerator.html +359 -0
  235. data/vendor/erubis/doc-api/classes/Erubis/JavascriptGenerator.html +386 -0
  236. data/vendor/erubis/doc-api/classes/Erubis/Main.html +340 -0
  237. data/vendor/erubis/doc-api/classes/Erubis/NoCodeEnhancer.html +249 -0
  238. data/vendor/erubis/doc-api/classes/Erubis/NoCodeEruby.html +120 -0
  239. data/vendor/erubis/doc-api/classes/Erubis/NoTextEnhancer.html +159 -0
  240. data/vendor/erubis/doc-api/classes/Erubis/NoTextEruby.html +120 -0
  241. data/vendor/erubis/doc-api/classes/Erubis/NotSupportedError.html +119 -0
  242. data/vendor/erubis/doc-api/classes/Erubis/OptimizedEruby.html +163 -0
  243. data/vendor/erubis/doc-api/classes/Erubis/OptimizedGenerator.html +439 -0
  244. data/vendor/erubis/doc-api/classes/Erubis/OptimizedXmlEruby.html +163 -0
  245. data/vendor/erubis/doc-api/classes/Erubis/PI.html +124 -0
  246. data/vendor/erubis/doc-api/classes/Erubis/PI/Converter.html +266 -0
  247. data/vendor/erubis/doc-api/classes/Erubis/PI/Ec.html +166 -0
  248. data/vendor/erubis/doc-api/classes/Erubis/PI/Ejava.html +166 -0
  249. data/vendor/erubis/doc-api/classes/Erubis/PI/Ejavascript.html +166 -0
  250. data/vendor/erubis/doc-api/classes/Erubis/PI/Engine.html +122 -0
  251. data/vendor/erubis/doc-api/classes/Erubis/PI/Eperl.html +166 -0
  252. data/vendor/erubis/doc-api/classes/Erubis/PI/Ephp.html +166 -0
  253. data/vendor/erubis/doc-api/classes/Erubis/PI/Eruby.html +155 -0
  254. data/vendor/erubis/doc-api/classes/Erubis/PI/Escheme.html +166 -0
  255. data/vendor/erubis/doc-api/classes/Erubis/PI/TinyEruby.html +293 -0
  256. data/vendor/erubis/doc-api/classes/Erubis/PercentLineEnhancer.html +179 -0
  257. data/vendor/erubis/doc-api/classes/Erubis/PercentLineEruby.html +120 -0
  258. data/vendor/erubis/doc-api/classes/Erubis/PerlGenerator.html +344 -0
  259. data/vendor/erubis/doc-api/classes/Erubis/PhpGenerator.html +350 -0
  260. data/vendor/erubis/doc-api/classes/Erubis/PreprocessingEruby.html +183 -0
  261. data/vendor/erubis/doc-api/classes/Erubis/PreprocessingHelper.html +212 -0
  262. data/vendor/erubis/doc-api/classes/Erubis/PrintEnabledEnhancer.html +212 -0
  263. data/vendor/erubis/doc-api/classes/Erubis/PrintEnabledEruby.html +120 -0
  264. data/vendor/erubis/doc-api/classes/Erubis/PrintOutEnhancer.html +244 -0
  265. data/vendor/erubis/doc-api/classes/Erubis/PrintOutEruby.html +120 -0
  266. data/vendor/erubis/doc-api/classes/Erubis/PrintOutSimplifiedEruby.html +121 -0
  267. data/vendor/erubis/doc-api/classes/Erubis/RubyEvaluator.html +227 -0
  268. data/vendor/erubis/doc-api/classes/Erubis/RubyGenerator.html +327 -0
  269. data/vendor/erubis/doc-api/classes/Erubis/SchemeGenerator.html +382 -0
  270. data/vendor/erubis/doc-api/classes/Erubis/SimplifiedEruby.html +120 -0
  271. data/vendor/erubis/doc-api/classes/Erubis/SimplifyEnhancer.html +191 -0
  272. data/vendor/erubis/doc-api/classes/Erubis/StdoutEnhancer.html +173 -0
  273. data/vendor/erubis/doc-api/classes/Erubis/StdoutEruby.html +120 -0
  274. data/vendor/erubis/doc-api/classes/Erubis/StdoutSimplifiedEruby.html +121 -0
  275. data/vendor/erubis/doc-api/classes/Erubis/StringBufferEnhancer.html +174 -0
  276. data/vendor/erubis/doc-api/classes/Erubis/StringBufferEruby.html +120 -0
  277. data/vendor/erubis/doc-api/classes/Erubis/StringIOEruby.html +120 -0
  278. data/vendor/erubis/doc-api/classes/Erubis/TinyEruby.html +299 -0
  279. data/vendor/erubis/doc-api/classes/Erubis/XmlEruby.html +130 -0
  280. data/vendor/erubis/doc-api/classes/Erubis/XmlHelper.html +255 -0
  281. data/vendor/erubis/doc-api/created.rid +1 -0
  282. data/vendor/erubis/doc-api/files/README_txt.html +247 -0
  283. data/vendor/erubis/doc-api/files/erubis/context_rb.html +107 -0
  284. data/vendor/erubis/doc-api/files/erubis/converter_rb.html +114 -0
  285. data/vendor/erubis/doc-api/files/erubis/engine/ec_rb.html +115 -0
  286. data/vendor/erubis/doc-api/files/erubis/engine/ejava_rb.html +115 -0
  287. data/vendor/erubis/doc-api/files/erubis/engine/ejavascript_rb.html +115 -0
  288. data/vendor/erubis/doc-api/files/erubis/engine/enhanced_rb.html +115 -0
  289. data/vendor/erubis/doc-api/files/erubis/engine/eperl_rb.html +115 -0
  290. data/vendor/erubis/doc-api/files/erubis/engine/ephp_rb.html +115 -0
  291. data/vendor/erubis/doc-api/files/erubis/engine/eruby_rb.html +115 -0
  292. data/vendor/erubis/doc-api/files/erubis/engine/escheme_rb.html +115 -0
  293. data/vendor/erubis/doc-api/files/erubis/engine/optimized_rb.html +114 -0
  294. data/vendor/erubis/doc-api/files/erubis/engine_rb.html +117 -0
  295. data/vendor/erubis/doc-api/files/erubis/enhancer_rb.html +107 -0
  296. data/vendor/erubis/doc-api/files/erubis/error_rb.html +107 -0
  297. data/vendor/erubis/doc-api/files/erubis/evaluator_rb.html +115 -0
  298. data/vendor/erubis/doc-api/files/erubis/generator_rb.html +114 -0
  299. data/vendor/erubis/doc-api/files/erubis/helper_rb.html +107 -0
  300. data/vendor/erubis/doc-api/files/erubis/helpers/rails_form_helper_rb.html +107 -0
  301. data/vendor/erubis/doc-api/files/erubis/helpers/rails_helper_rb.html +116 -0
  302. data/vendor/erubis/doc-api/files/erubis/local-setting_rb.html +107 -0
  303. data/vendor/erubis/doc-api/files/erubis/main_rb.html +127 -0
  304. data/vendor/erubis/doc-api/files/erubis/preprocessing_rb.html +114 -0
  305. data/vendor/erubis/doc-api/files/erubis/tiny_rb.html +107 -0
  306. data/vendor/erubis/doc-api/files/erubis_rb.html +118 -0
  307. data/vendor/erubis/doc-api/fr_class_index.html +122 -0
  308. data/vendor/erubis/doc-api/fr_file_index.html +51 -0
  309. data/vendor/erubis/doc-api/fr_method_index.html +248 -0
  310. data/vendor/erubis/doc-api/index.html +24 -0
  311. data/vendor/erubis/doc-api/rdoc-style.css +208 -0
  312. data/vendor/erubis/doc/docstyle.css +188 -0
  313. data/vendor/erubis/doc/users-guide.html +3285 -0
  314. data/vendor/erubis/erubis.gemspec +66 -0
  315. data/vendor/erubis/examples/basic/Makefile +53 -0
  316. data/vendor/erubis/examples/basic/example.ec +42 -0
  317. data/vendor/erubis/examples/basic/example.ejava +45 -0
  318. data/vendor/erubis/examples/basic/example.ejs +16 -0
  319. data/vendor/erubis/examples/basic/example.eperl +16 -0
  320. data/vendor/erubis/examples/basic/example.ephp +17 -0
  321. data/vendor/erubis/examples/basic/example.eruby +15 -0
  322. data/vendor/erubis/examples/basic/example.escheme +26 -0
  323. data/vendor/erubis/examples/pi/Makefile +54 -0
  324. data/vendor/erubis/examples/pi/example.ec +42 -0
  325. data/vendor/erubis/examples/pi/example.ejava +45 -0
  326. data/vendor/erubis/examples/pi/example.ejs +16 -0
  327. data/vendor/erubis/examples/pi/example.eperl +16 -0
  328. data/vendor/erubis/examples/pi/example.ephp +17 -0
  329. data/vendor/erubis/examples/pi/example.eruby +15 -0
  330. data/vendor/erubis/examples/pi/example.escheme +26 -0
  331. data/vendor/erubis/lib/erubis.rb +73 -0
  332. data/vendor/erubis/lib/erubis/context.rb +84 -0
  333. data/vendor/erubis/lib/erubis/converter.rb +358 -0
  334. data/vendor/erubis/lib/erubis/engine.rb +121 -0
  335. data/vendor/erubis/lib/erubis/engine/ec.rb +118 -0
  336. data/vendor/erubis/lib/erubis/engine/ejava.rb +111 -0
  337. data/vendor/erubis/lib/erubis/engine/ejavascript.rb +120 -0
  338. data/vendor/erubis/lib/erubis/engine/enhanced.rb +122 -0
  339. data/vendor/erubis/lib/erubis/engine/eperl.rb +96 -0
  340. data/vendor/erubis/lib/erubis/engine/ephp.rb +100 -0
  341. data/vendor/erubis/lib/erubis/engine/eruby.rb +125 -0
  342. data/vendor/erubis/lib/erubis/engine/escheme.rb +115 -0
  343. data/vendor/erubis/lib/erubis/engine/optimized.rb +128 -0
  344. data/vendor/erubis/lib/erubis/enhancer.rb +681 -0
  345. data/vendor/erubis/lib/erubis/error.rb +24 -0
  346. data/vendor/erubis/lib/erubis/evaluator.rb +89 -0
  347. data/vendor/erubis/lib/erubis/generator.rb +86 -0
  348. data/vendor/erubis/lib/erubis/helper.rb +48 -0
  349. data/vendor/erubis/lib/erubis/helpers/rails_form_helper.rb +198 -0
  350. data/vendor/erubis/lib/erubis/helpers/rails_helper.rb +325 -0
  351. data/vendor/erubis/lib/erubis/local-setting.rb +10 -0
  352. data/vendor/erubis/lib/erubis/main.rb +491 -0
  353. data/vendor/erubis/lib/erubis/preprocessing.rb +59 -0
  354. data/vendor/erubis/lib/erubis/tiny.rb +146 -0
  355. data/vendor/erubis/setup.rb +1331 -0
  356. data/vendor/erubis/test/assert-text-equal.rb +45 -0
  357. data/vendor/erubis/test/assert-text-equal.rbc +0 -0
  358. data/vendor/erubis/test/data/users-guide/Example.ejava +55 -0
  359. data/vendor/erubis/test/data/users-guide/array_example.result +9 -0
  360. data/vendor/erubis/test/data/users-guide/arraybuffer_example.result +9 -0
  361. data/vendor/erubis/test/data/users-guide/bipattern-example.rhtml +4 -0
  362. data/vendor/erubis/test/data/users-guide/bipattern_example.result +6 -0
  363. data/vendor/erubis/test/data/users-guide/context.rb +6 -0
  364. data/vendor/erubis/test/data/users-guide/context.yaml +8 -0
  365. data/vendor/erubis/test/data/users-guide/def_method.rb +14 -0
  366. data/vendor/erubis/test/data/users-guide/def_method.result +3 -0
  367. data/vendor/erubis/test/data/users-guide/escape_example.result +9 -0
  368. data/vendor/erubis/test/data/users-guide/example.ec +27 -0
  369. data/vendor/erubis/test/data/users-guide/example.ejs +20 -0
  370. data/vendor/erubis/test/data/users-guide/example.eperl +18 -0
  371. data/vendor/erubis/test/data/users-guide/example.ephp +18 -0
  372. data/vendor/erubis/test/data/users-guide/example.eruby +6 -0
  373. data/vendor/erubis/test/data/users-guide/example.escheme +28 -0
  374. data/vendor/erubis/test/data/users-guide/example1.eruby +6 -0
  375. data/vendor/erubis/test/data/users-guide/example1.rb +17 -0
  376. data/vendor/erubis/test/data/users-guide/example1.result +16 -0
  377. data/vendor/erubis/test/data/users-guide/example10.rb +4 -0
  378. data/vendor/erubis/test/data/users-guide/example10.result +17 -0
  379. data/vendor/erubis/test/data/users-guide/example10.xhtml +14 -0
  380. data/vendor/erubis/test/data/users-guide/example10_x.result +17 -0
  381. data/vendor/erubis/test/data/users-guide/example11.php +20 -0
  382. data/vendor/erubis/test/data/users-guide/example11.result +23 -0
  383. data/vendor/erubis/test/data/users-guide/example11.rhtml +21 -0
  384. data/vendor/erubis/test/data/users-guide/example11_C.result +10 -0
  385. data/vendor/erubis/test/data/users-guide/example11_N.result +16 -0
  386. data/vendor/erubis/test/data/users-guide/example11_U.result +16 -0
  387. data/vendor/erubis/test/data/users-guide/example11_php.result +15 -0
  388. data/vendor/erubis/test/data/users-guide/example1_x.result +9 -0
  389. data/vendor/erubis/test/data/users-guide/example2.eruby +7 -0
  390. data/vendor/erubis/test/data/users-guide/example2.rb +10 -0
  391. data/vendor/erubis/test/data/users-guide/example2.result +27 -0
  392. data/vendor/erubis/test/data/users-guide/example2_trim.result +10 -0
  393. data/vendor/erubis/test/data/users-guide/example2_x.result +10 -0
  394. data/vendor/erubis/test/data/users-guide/example3.eruby +6 -0
  395. data/vendor/erubis/test/data/users-guide/example3.rb +10 -0
  396. data/vendor/erubis/test/data/users-guide/example31.result +22 -0
  397. data/vendor/erubis/test/data/users-guide/example32.result +4 -0
  398. data/vendor/erubis/test/data/users-guide/example3_e.result +8 -0
  399. data/vendor/erubis/test/data/users-guide/example4.eruby +3 -0
  400. data/vendor/erubis/test/data/users-guide/example4.rb +11 -0
  401. data/vendor/erubis/test/data/users-guide/example4.result +10 -0
  402. data/vendor/erubis/test/data/users-guide/example4_x.result +5 -0
  403. data/vendor/erubis/test/data/users-guide/example5.eruby +6 -0
  404. data/vendor/erubis/test/data/users-guide/example5.rb +16 -0
  405. data/vendor/erubis/test/data/users-guide/example5.result +7 -0
  406. data/vendor/erubis/test/data/users-guide/example6.rb +12 -0
  407. data/vendor/erubis/test/data/users-guide/example6.result +7 -0
  408. data/vendor/erubis/test/data/users-guide/example7.eruby +8 -0
  409. data/vendor/erubis/test/data/users-guide/example71.result +13 -0
  410. data/vendor/erubis/test/data/users-guide/example72.result +13 -0
  411. data/vendor/erubis/test/data/users-guide/example8.eruby +6 -0
  412. data/vendor/erubis/test/data/users-guide/example8_ruby.result +7 -0
  413. data/vendor/erubis/test/data/users-guide/example8_yaml.result +7 -0
  414. data/vendor/erubis/test/data/users-guide/example9.eruby +3 -0
  415. data/vendor/erubis/test/data/users-guide/example9.rb +8 -0
  416. data/vendor/erubis/test/data/users-guide/example9.result +9 -0
  417. data/vendor/erubis/test/data/users-guide/example91.result +5 -0
  418. data/vendor/erubis/test/data/users-guide/example92.result +4 -0
  419. data/vendor/erubis/test/data/users-guide/example_c.result +29 -0
  420. data/vendor/erubis/test/data/users-guide/example_java.result +56 -0
  421. data/vendor/erubis/test/data/users-guide/example_js.result +22 -0
  422. data/vendor/erubis/test/data/users-guide/example_perl.result +20 -0
  423. data/vendor/erubis/test/data/users-guide/example_php.result +19 -0
  424. data/vendor/erubis/test/data/users-guide/example_scheme.result +30 -0
  425. data/vendor/erubis/test/data/users-guide/example_scheme_display.result +29 -0
  426. data/vendor/erubis/test/data/users-guide/fasteruby.rb +11 -0
  427. data/vendor/erubis/test/data/users-guide/fasteruby.result +38 -0
  428. data/vendor/erubis/test/data/users-guide/fasteruby.rhtml +15 -0
  429. data/vendor/erubis/test/data/users-guide/headerfooter-example.eruby +9 -0
  430. data/vendor/erubis/test/data/users-guide/headerfooter-example2.rb +8 -0
  431. data/vendor/erubis/test/data/users-guide/headerfooter-example2.rhtml +10 -0
  432. data/vendor/erubis/test/data/users-guide/headerfooter_example.result +11 -0
  433. data/vendor/erubis/test/data/users-guide/headerfooter_example2.result +13 -0
  434. data/vendor/erubis/test/data/users-guide/interpolation_example.result +9 -0
  435. data/vendor/erubis/test/data/users-guide/main_program1.rb +8 -0
  436. data/vendor/erubis/test/data/users-guide/main_program1.result +6 -0
  437. data/vendor/erubis/test/data/users-guide/main_program2.rb +8 -0
  438. data/vendor/erubis/test/data/users-guide/main_program2.result +6 -0
  439. data/vendor/erubis/test/data/users-guide/nocode-example.eruby +14 -0
  440. data/vendor/erubis/test/data/users-guide/nocode-php.result +20 -0
  441. data/vendor/erubis/test/data/users-guide/nocode_example.result +15 -0
  442. data/vendor/erubis/test/data/users-guide/normal-eruby-test.eruby +9 -0
  443. data/vendor/erubis/test/data/users-guide/normal_eruby_test.result +11 -0
  444. data/vendor/erubis/test/data/users-guide/notext-example.eruby +14 -0
  445. data/vendor/erubis/test/data/users-guide/notext-example.php +19 -0
  446. data/vendor/erubis/test/data/users-guide/notext-php.result +20 -0
  447. data/vendor/erubis/test/data/users-guide/notext_example.result +16 -0
  448. data/vendor/erubis/test/data/users-guide/percentline-example.rhtml +4 -0
  449. data/vendor/erubis/test/data/users-guide/percentline_example.result +7 -0
  450. data/vendor/erubis/test/data/users-guide/printenable_example.result +4 -0
  451. data/vendor/erubis/test/data/users-guide/printenabled-example.eruby +3 -0
  452. data/vendor/erubis/test/data/users-guide/printenabled-example.rb +8 -0
  453. data/vendor/erubis/test/data/users-guide/printstatement_example.result +8 -0
  454. data/vendor/erubis/test/data/users-guide/simplify_example.result +9 -0
  455. data/vendor/erubis/test/data/users-guide/stdout_exmple.result +9 -0
  456. data/vendor/erubis/test/data/users-guide/stringbuffer_example.result +9 -0
  457. data/vendor/erubis/test/data/users-guide/tail_260.result +4 -0
  458. data/vendor/erubis/test/data/users-guide/tailnewline.rhtml +3 -0
  459. data/vendor/erubis/test/data/users-guide/template1.rhtml +4 -0
  460. data/vendor/erubis/test/data/users-guide/template2.rhtml +4 -0
  461. data/vendor/erubis/test/hoge.rb +5 -0
  462. data/vendor/erubis/test/test-engines.rb +370 -0
  463. data/vendor/erubis/test/test-engines.rbc +0 -0
  464. data/vendor/erubis/test/test-enhancers.rb +571 -0
  465. data/vendor/erubis/test/test-erubis.rb +884 -0
  466. data/vendor/erubis/test/test-erubis.rbc +0 -0
  467. data/vendor/erubis/test/test-main.rb +674 -0
  468. data/vendor/erubis/test/test-users-guide.rb +58 -0
  469. data/vendor/erubis/test/test-users-guide.rbc +0 -0
  470. data/vendor/erubis/test/test.rb +30 -0
  471. data/vendor/erubis/test/test.rbc +0 -0
  472. data/vendor/erubis/test/testutil.rb +101 -0
  473. data/vendor/erubis/test/testutil.rbc +0 -0
  474. data/vendor/extlib/History.txt +77 -0
  475. data/vendor/extlib/LICENSE +47 -0
  476. data/{spec/rango/helpers/spec/fixture/app/controllers/bound_select_spec.rb → vendor/extlib/README} +0 -0
  477. data/vendor/extlib/Rakefile +133 -0
  478. data/vendor/extlib/benchmarks/camel_case.rb +45 -0
  479. data/vendor/extlib/benchmarks/to_const_path.rb +65 -0
  480. data/vendor/extlib/benchmarks/to_const_string.rb +91 -0
  481. data/vendor/extlib/lib/extlib.rb +50 -0
  482. data/vendor/extlib/lib/extlib/array.rb +36 -0
  483. data/vendor/extlib/lib/extlib/assertions.rb +8 -0
  484. data/vendor/extlib/lib/extlib/blank.rb +89 -0
  485. data/vendor/extlib/lib/extlib/boolean.rb +11 -0
  486. data/vendor/extlib/lib/extlib/byte_array.rb +6 -0
  487. data/vendor/extlib/lib/extlib/class.rb +177 -0
  488. data/vendor/extlib/lib/extlib/datetime.rb +29 -0
  489. data/vendor/extlib/lib/extlib/dictionary.rb +433 -0
  490. data/vendor/extlib/lib/extlib/hash.rb +442 -0
  491. data/vendor/extlib/lib/extlib/hook.rb +401 -0
  492. data/vendor/extlib/lib/extlib/inflection.rb +440 -0
  493. data/vendor/extlib/lib/extlib/lazy_array.rb +451 -0
  494. data/vendor/extlib/lib/extlib/lazy_module.rb +18 -0
  495. data/vendor/extlib/lib/extlib/logger.rb +198 -0
  496. data/vendor/extlib/lib/extlib/mash.rb +155 -0
  497. data/vendor/extlib/lib/extlib/module.rb +47 -0
  498. data/vendor/extlib/lib/extlib/nil.rb +5 -0
  499. data/vendor/extlib/lib/extlib/numeric.rb +5 -0
  500. data/vendor/extlib/lib/extlib/object.rb +175 -0
  501. data/vendor/extlib/lib/extlib/object_space.rb +13 -0
  502. data/vendor/extlib/lib/extlib/pathname.rb +20 -0
  503. data/vendor/extlib/lib/extlib/pooling.rb +235 -0
  504. data/vendor/extlib/lib/extlib/rubygems.rb +38 -0
  505. data/vendor/extlib/lib/extlib/simple_set.rb +66 -0
  506. data/vendor/extlib/lib/extlib/string.rb +176 -0
  507. data/vendor/extlib/lib/extlib/struct.rb +17 -0
  508. data/vendor/extlib/lib/extlib/symbol.rb +21 -0
  509. data/vendor/extlib/lib/extlib/tasks/release.rb +15 -0
  510. data/vendor/extlib/lib/extlib/time.rb +43 -0
  511. data/vendor/extlib/lib/extlib/version.rb +3 -0
  512. data/vendor/extlib/lib/extlib/virtual_file.rb +10 -0
  513. data/vendor/extlib/spec/array_spec.rb +39 -0
  514. data/vendor/extlib/spec/blank_spec.rb +85 -0
  515. data/vendor/extlib/spec/byte_array_spec.rb +7 -0
  516. data/vendor/extlib/spec/class_spec.rb +157 -0
  517. data/vendor/extlib/spec/datetime_spec.rb +22 -0
  518. data/vendor/extlib/spec/hash_spec.rb +537 -0
  519. data/vendor/extlib/spec/hook_spec.rb +1234 -0
  520. data/vendor/extlib/spec/inflection/plural_spec.rb +564 -0
  521. data/vendor/extlib/spec/inflection/singular_spec.rb +497 -0
  522. data/vendor/extlib/spec/inflection_extras_spec.rb +110 -0
  523. data/vendor/extlib/spec/lazy_array_spec.rb +1957 -0
  524. data/vendor/extlib/spec/lazy_module_spec.rb +38 -0
  525. data/vendor/extlib/spec/mash_spec.rb +311 -0
  526. data/vendor/extlib/spec/module_spec.rb +70 -0
  527. data/vendor/extlib/spec/object_space_spec.rb +9 -0
  528. data/vendor/extlib/spec/object_spec.rb +114 -0
  529. data/vendor/extlib/spec/pooling_spec.rb +511 -0
  530. data/vendor/extlib/spec/simple_set_spec.rb +57 -0
  531. data/vendor/extlib/spec/spec.opts +3 -0
  532. data/vendor/extlib/spec/spec_helper.rb +10 -0
  533. data/vendor/extlib/spec/string_spec.rb +221 -0
  534. data/vendor/extlib/spec/struct_spec.rb +12 -0
  535. data/vendor/extlib/spec/symbol_spec.rb +8 -0
  536. data/vendor/extlib/spec/time_spec.rb +29 -0
  537. data/vendor/extlib/spec/try_call_spec.rb +73 -0
  538. data/vendor/extlib/spec/try_dup_spec.rb +45 -0
  539. data/vendor/extlib/spec/virtual_file_spec.rb +21 -0
  540. data/vendor/media-path/CHANGELOG +3 -0
  541. data/vendor/media-path/LICENSE +20 -0
  542. data/vendor/media-path/README.textile +40 -0
  543. data/vendor/media-path/Rakefile +79 -0
  544. data/vendor/media-path/TODO.txt +6 -0
  545. data/vendor/media-path/deps.rip +5 -0
  546. data/vendor/media-path/lib/media-path.rb +269 -0
  547. data/vendor/media-path/media-path.gemspec +38 -0
  548. data/vendor/media-path/script/spec +14 -0
  549. data/vendor/media-path/spec/media-path_spec.rb +158 -0
  550. data/vendor/media-path/spec/spec.opts +5 -0
  551. data/{spec/rango/helpers/spec/fixture/app/controllers/bound_text_area_spec.rb → vendor/media-path/spec/stubs/blog/public/js/moo.js} +0 -0
  552. data/vendor/rack/COPYING +18 -0
  553. data/vendor/rack/KNOWN-ISSUES +18 -0
  554. data/vendor/rack/README +364 -0
  555. data/vendor/rack/Rakefile +163 -0
  556. data/vendor/rack/bin/rackup +2 -0
  557. data/vendor/rack/contrib/rack_logo.svg +111 -0
  558. data/vendor/rack/example/lobster.ru +4 -0
  559. data/vendor/rack/example/protectedlobster.rb +14 -0
  560. data/vendor/rack/example/protectedlobster.ru +8 -0
  561. data/vendor/rack/lib/rack.rb +86 -0
  562. data/vendor/rack/lib/rack/adapter/camping.rb +22 -0
  563. data/vendor/rack/lib/rack/auth/abstract/handler.rb +37 -0
  564. data/vendor/rack/lib/rack/auth/abstract/request.rb +37 -0
  565. data/vendor/rack/lib/rack/auth/basic.rb +58 -0
  566. data/vendor/rack/lib/rack/auth/digest/md5.rb +124 -0
  567. data/vendor/rack/lib/rack/auth/digest/nonce.rb +51 -0
  568. data/vendor/rack/lib/rack/auth/digest/params.rb +55 -0
  569. data/vendor/rack/lib/rack/auth/digest/request.rb +40 -0
  570. data/vendor/rack/lib/rack/builder.rb +78 -0
  571. data/vendor/rack/lib/rack/cascade.rb +41 -0
  572. data/vendor/rack/lib/rack/chunked.rb +49 -0
  573. data/vendor/rack/lib/rack/commonlogger.rb +52 -0
  574. data/vendor/rack/lib/rack/conditionalget.rb +47 -0
  575. data/vendor/rack/lib/rack/content_length.rb +29 -0
  576. data/vendor/rack/lib/rack/content_type.rb +23 -0
  577. data/vendor/rack/lib/rack/deflater.rb +96 -0
  578. data/vendor/rack/lib/rack/directory.rb +153 -0
  579. data/vendor/rack/lib/rack/file.rb +88 -0
  580. data/vendor/rack/lib/rack/handler.rb +88 -0
  581. data/vendor/rack/lib/rack/handler/cgi.rb +61 -0
  582. data/vendor/rack/lib/rack/handler/evented_mongrel.rb +8 -0
  583. data/vendor/rack/lib/rack/handler/fastcgi.rb +90 -0
  584. data/vendor/rack/lib/rack/handler/lsws.rb +63 -0
  585. data/vendor/rack/lib/rack/handler/mongrel.rb +91 -0
  586. data/vendor/rack/lib/rack/handler/scgi.rb +62 -0
  587. data/vendor/rack/lib/rack/handler/swiftiplied_mongrel.rb +8 -0
  588. data/vendor/rack/lib/rack/handler/thin.rb +18 -0
  589. data/vendor/rack/lib/rack/handler/webrick.rb +71 -0
  590. data/vendor/rack/lib/rack/head.rb +19 -0
  591. data/vendor/rack/lib/rack/lint.rb +546 -0
  592. data/vendor/rack/lib/rack/lobster.rb +65 -0
  593. data/vendor/rack/lib/rack/lock.rb +16 -0
  594. data/vendor/rack/lib/rack/methodoverride.rb +27 -0
  595. data/vendor/rack/lib/rack/mime.rb +205 -0
  596. data/vendor/rack/lib/rack/mock.rb +189 -0
  597. data/vendor/rack/lib/rack/recursive.rb +57 -0
  598. data/vendor/rack/lib/rack/reloader.rb +109 -0
  599. data/vendor/rack/lib/rack/request.rb +248 -0
  600. data/vendor/rack/lib/rack/response.rb +149 -0
  601. data/vendor/rack/lib/rack/rewindable_input.rb +100 -0
  602. data/vendor/rack/lib/rack/server.rb +189 -0
  603. data/vendor/rack/lib/rack/session/abstract/id.rb +140 -0
  604. data/vendor/rack/lib/rack/session/cookie.rb +90 -0
  605. data/vendor/rack/lib/rack/session/memcache.rb +109 -0
  606. data/vendor/rack/lib/rack/session/pool.rb +100 -0
  607. data/vendor/rack/lib/rack/showexceptions.rb +349 -0
  608. data/vendor/rack/lib/rack/showstatus.rb +106 -0
  609. data/vendor/rack/lib/rack/static.rb +38 -0
  610. data/vendor/rack/lib/rack/urlmap.rb +55 -0
  611. data/vendor/rack/lib/rack/utils.rb +590 -0
  612. data/vendor/rack/test/cgi/lighttpd.conf +20 -0
  613. data/vendor/rack/test/cgi/test +9 -0
  614. data/vendor/rack/test/cgi/test.fcgi +8 -0
  615. data/vendor/rack/test/cgi/test.ru +6 -0
  616. data/vendor/rack/test/multipart/binary +0 -0
  617. data/vendor/rack/test/multipart/empty +10 -0
  618. data/vendor/rack/test/multipart/file1.txt +1 -0
  619. data/vendor/rack/test/multipart/ie +6 -0
  620. data/vendor/rack/test/multipart/nested +10 -0
  621. data/vendor/rack/test/multipart/none +9 -0
  622. data/vendor/rack/test/multipart/semicolon +6 -0
  623. data/vendor/rack/test/multipart/text +10 -0
  624. data/vendor/rack/test/rackup/config.ru +31 -0
  625. data/vendor/rack/test/spec_rack_auth_basic.rb +73 -0
  626. data/vendor/rack/test/spec_rack_auth_digest.rb +226 -0
  627. data/vendor/rack/test/spec_rack_builder.rb +84 -0
  628. data/vendor/rack/test/spec_rack_camping.rb +51 -0
  629. data/vendor/rack/test/spec_rack_cascade.rb +48 -0
  630. data/vendor/rack/test/spec_rack_cgi.rb +89 -0
  631. data/vendor/rack/test/spec_rack_chunked.rb +62 -0
  632. data/vendor/rack/test/spec_rack_commonlogger.rb +61 -0
  633. data/vendor/rack/test/spec_rack_conditionalget.rb +41 -0
  634. data/vendor/rack/test/spec_rack_content_length.rb +43 -0
  635. data/vendor/rack/test/spec_rack_content_type.rb +30 -0
  636. data/vendor/rack/test/spec_rack_deflater.rb +127 -0
  637. data/vendor/rack/test/spec_rack_directory.rb +61 -0
  638. data/vendor/rack/test/spec_rack_fastcgi.rb +89 -0
  639. data/vendor/rack/test/spec_rack_file.rb +75 -0
  640. data/vendor/rack/test/spec_rack_handler.rb +43 -0
  641. data/vendor/rack/test/spec_rack_head.rb +30 -0
  642. data/vendor/rack/test/spec_rack_lint.rb +523 -0
  643. data/vendor/rack/test/spec_rack_lobster.rb +45 -0
  644. data/vendor/rack/test/spec_rack_lock.rb +38 -0
  645. data/vendor/rack/test/spec_rack_methodoverride.rb +60 -0
  646. data/vendor/rack/test/spec_rack_mock.rb +243 -0
  647. data/vendor/rack/test/spec_rack_mongrel.rb +189 -0
  648. data/vendor/rack/test/spec_rack_recursive.rb +77 -0
  649. data/vendor/rack/test/spec_rack_request.rb +510 -0
  650. data/vendor/rack/test/spec_rack_response.rb +218 -0
  651. data/vendor/rack/test/spec_rack_rewindable_input.rb +118 -0
  652. data/vendor/rack/test/spec_rack_session_cookie.rb +82 -0
  653. data/vendor/rack/test/spec_rack_session_memcache.rb +250 -0
  654. data/vendor/rack/test/spec_rack_session_pool.rb +172 -0
  655. data/vendor/rack/test/spec_rack_showexceptions.rb +21 -0
  656. data/vendor/rack/test/spec_rack_showstatus.rb +72 -0
  657. data/vendor/rack/test/spec_rack_static.rb +37 -0
  658. data/vendor/rack/test/spec_rack_thin.rb +91 -0
  659. data/vendor/rack/test/spec_rack_urlmap.rb +185 -0
  660. data/vendor/rack/test/spec_rack_utils.rb +488 -0
  661. data/vendor/rack/test/spec_rack_webrick.rb +130 -0
  662. data/vendor/rack/test/spec_rackup.rb +154 -0
  663. data/vendor/rack/test/testrequest.rb +72 -0
  664. data/vendor/rack/test/unregistered_handler/rack/handler/unregistered.rb +7 -0
  665. data/vendor/rack/test/unregistered_handler/rack/handler/unregistered_long_one.rb +7 -0
  666. data/vendor/rspec/History.rdoc +1510 -0
  667. data/vendor/rspec/License.txt +22 -0
  668. data/vendor/rspec/Manifest.txt +383 -0
  669. data/vendor/rspec/README.rdoc +55 -0
  670. data/vendor/rspec/Rakefile +145 -0
  671. data/vendor/rspec/Ruby1.9.rdoc +31 -0
  672. data/vendor/rspec/TODO.txt +17 -0
  673. data/vendor/rspec/Upgrade.rdoc +199 -0
  674. data/vendor/rspec/bin/autospec +4 -0
  675. data/vendor/rspec/bin/spec +5 -0
  676. data/vendor/rspec/cucumber.yml +5 -0
  677. data/vendor/rspec/examples/failing/README.txt +11 -0
  678. data/vendor/rspec/examples/failing/diffing_spec.rb +36 -0
  679. data/vendor/rspec/examples/failing/failing_implicit_docstrings_example.rb +17 -0
  680. data/vendor/rspec/examples/failing/failure_in_after.rb +10 -0
  681. data/vendor/rspec/examples/failing/failure_in_before.rb +10 -0
  682. data/vendor/rspec/examples/failing/mocking_example.rb +38 -0
  683. data/vendor/rspec/examples/failing/mocking_with_flexmock.rb +26 -0
  684. data/vendor/rspec/examples/failing/mocking_with_mocha.rb +25 -0
  685. data/vendor/rspec/examples/failing/mocking_with_rr.rb +27 -0
  686. data/vendor/rspec/examples/failing/partial_mock_example.rb +18 -0
  687. data/vendor/rspec/examples/failing/pending_example.rb +7 -0
  688. data/vendor/rspec/examples/failing/predicate_example.rb +32 -0
  689. data/vendor/rspec/examples/failing/raising_example.rb +47 -0
  690. data/vendor/rspec/examples/failing/syntax_error_example.rb +7 -0
  691. data/vendor/rspec/examples/failing/team_spec.rb +41 -0
  692. data/vendor/rspec/examples/failing/timeout_behaviour.rb +5 -0
  693. data/vendor/rspec/examples/passing/custom_formatter.rb +11 -0
  694. data/vendor/rspec/examples/passing/custom_matchers.rb +54 -0
  695. data/vendor/rspec/examples/passing/dynamic_spec.rb +7 -0
  696. data/vendor/rspec/examples/passing/file_accessor.rb +18 -0
  697. data/vendor/rspec/examples/passing/file_accessor_spec.rb +37 -0
  698. data/vendor/rspec/examples/passing/filtered_formatter.rb +17 -0
  699. data/vendor/rspec/examples/passing/filtered_formatter_example.rb +31 -0
  700. data/vendor/rspec/examples/passing/greeter_spec.rb +30 -0
  701. data/vendor/rspec/examples/passing/helper_method_example.rb +12 -0
  702. data/vendor/rspec/examples/passing/implicit_docstrings_example.rb +16 -0
  703. data/vendor/rspec/examples/passing/io_processor.rb +8 -0
  704. data/vendor/rspec/examples/passing/io_processor_spec.rb +20 -0
  705. data/vendor/rspec/examples/passing/mocking_example.rb +25 -0
  706. data/vendor/rspec/examples/passing/multi_threaded_example_group_runner.rb +26 -0
  707. data/vendor/rspec/examples/passing/nested_classes_example.rb +35 -0
  708. data/vendor/rspec/examples/passing/options_example.rb +29 -0
  709. data/vendor/rspec/examples/passing/options_formatter.rb +20 -0
  710. data/vendor/rspec/examples/passing/partial_mock_example.rb +27 -0
  711. data/vendor/rspec/examples/passing/pending_example.rb +18 -0
  712. data/vendor/rspec/examples/passing/predicate_example.rb +25 -0
  713. data/vendor/rspec/examples/passing/shared_example_group_example.rb +79 -0
  714. data/vendor/rspec/examples/passing/shared_stack_examples.rb +36 -0
  715. data/vendor/rspec/examples/passing/simple_matcher_example.rb +29 -0
  716. data/vendor/rspec/examples/passing/stack.rb +36 -0
  717. data/vendor/rspec/examples/passing/stack_spec.rb +63 -0
  718. data/vendor/rspec/examples/passing/stack_spec_with_nested_example_groups.rb +66 -0
  719. data/vendor/rspec/examples/passing/stubbing_example.rb +67 -0
  720. data/vendor/rspec/examples/passing/yielding_example.rb +31 -0
  721. data/vendor/rspec/examples/ruby1.9.compatibility/access_to_constants_spec.rb +85 -0
  722. data/vendor/rspec/features-pending/cli/conditional_exclusion.feature +39 -0
  723. data/vendor/rspec/features-pending/heckle/heckle.feature +56 -0
  724. data/vendor/rspec/features/before_and_after_blocks/before_and_after_blocks.feature +167 -0
  725. data/vendor/rspec/features/command_line/line_number_option.feature +56 -0
  726. data/vendor/rspec/features/command_line/line_number_option_with_example_with_no_name.feature +22 -0
  727. data/vendor/rspec/features/example_groups/define_example_attribute.feature +41 -0
  728. data/vendor/rspec/features/example_groups/example_group_with_should_methods.feature +29 -0
  729. data/vendor/rspec/features/example_groups/implicit_docstrings.feature +59 -0
  730. data/vendor/rspec/features/example_groups/nested_groups.feature +32 -0
  731. data/vendor/rspec/features/expectations/customized_message.feature +54 -0
  732. data/vendor/rspec/features/expectations/expect_change.feature +65 -0
  733. data/vendor/rspec/features/expectations/expect_error.feature +44 -0
  734. data/vendor/rspec/features/extensions/custom_example_group.feature +19 -0
  735. data/vendor/rspec/features/formatters/custom_formatter.feature +30 -0
  736. data/vendor/rspec/features/interop/examples_and_tests_together.feature +84 -0
  737. data/vendor/rspec/features/interop/rspec_output.feature +25 -0
  738. data/vendor/rspec/features/interop/test_but_not_test_unit.feature +26 -0
  739. data/vendor/rspec/features/interop/test_case_with_should_methods.feature +46 -0
  740. data/vendor/rspec/features/load_paths/add_lib_to_load_path.feature +20 -0
  741. data/vendor/rspec/features/load_paths/add_spec_to_load_path.feature +20 -0
  742. data/vendor/rspec/features/matchers/define_diffable_matcher.feature +26 -0
  743. data/vendor/rspec/features/matchers/define_matcher.feature +179 -0
  744. data/vendor/rspec/features/matchers/define_matcher_outside_rspec.feature +38 -0
  745. data/vendor/rspec/features/matchers/define_matcher_with_fluent_interface.feature +27 -0
  746. data/vendor/rspec/features/matchers/define_wrapped_matcher.feature +29 -0
  747. data/vendor/rspec/features/matchers/match_unless_raises.feature +60 -0
  748. data/vendor/rspec/features/matchers/match_unless_raises_unexpected_error.feature +39 -0
  749. data/vendor/rspec/features/mock_framework_integration/use_flexmock.feature +27 -0
  750. data/vendor/rspec/features/mock_framework_integration/use_mocha.feature +27 -0
  751. data/vendor/rspec/features/mock_framework_integration/use_rr.feature +27 -0
  752. data/vendor/rspec/features/mocks/block_local_expectations.feature +62 -0
  753. data/vendor/rspec/features/mocks/mix_stubs_and_mocks.feature +22 -0
  754. data/vendor/rspec/features/mocks/stub_implementation.feature +26 -0
  755. data/vendor/rspec/features/pending/pending_examples.feature +81 -0
  756. data/vendor/rspec/features/runner/specify_line_number.feature +32 -0
  757. data/vendor/rspec/features/spec_helper/spec_helper.feature +25 -0
  758. data/vendor/rspec/features/step_definitions/running_rspec_steps.rb +43 -0
  759. data/vendor/rspec/features/subject/explicit_subject.feature +31 -0
  760. data/vendor/rspec/features/subject/implicit_subject.feature +43 -0
  761. data/vendor/rspec/features/support/env.rb +82 -0
  762. data/vendor/rspec/features/support/matchers/smart_match.rb +12 -0
  763. data/vendor/rspec/geminstaller.yml +28 -0
  764. data/vendor/rspec/init.rb +9 -0
  765. data/vendor/rspec/lib/autotest/discover.rb +3 -0
  766. data/vendor/rspec/lib/autotest/rspec.rb +54 -0
  767. data/vendor/rspec/lib/spec.rb +8 -0
  768. data/vendor/rspec/lib/spec/adapters/mock_frameworks/flexmock.rb +24 -0
  769. data/vendor/rspec/lib/spec/adapters/mock_frameworks/mocha.rb +25 -0
  770. data/vendor/rspec/lib/spec/adapters/mock_frameworks/rr.rb +22 -0
  771. data/vendor/rspec/lib/spec/adapters/mock_frameworks/rspec.rb +21 -0
  772. data/vendor/rspec/lib/spec/autorun.rb +3 -0
  773. data/vendor/rspec/lib/spec/deprecation.rb +40 -0
  774. data/vendor/rspec/lib/spec/dsl.rb +1 -0
  775. data/vendor/rspec/lib/spec/dsl/main.rb +92 -0
  776. data/vendor/rspec/lib/spec/example.rb +164 -0
  777. data/vendor/rspec/lib/spec/example/args_and_options.rb +27 -0
  778. data/vendor/rspec/lib/spec/example/before_and_after_hooks.rb +93 -0
  779. data/vendor/rspec/lib/spec/example/errors.rb +25 -0
  780. data/vendor/rspec/lib/spec/example/example_group.rb +10 -0
  781. data/vendor/rspec/lib/spec/example/example_group_factory.rb +82 -0
  782. data/vendor/rspec/lib/spec/example/example_group_hierarchy.rb +53 -0
  783. data/vendor/rspec/lib/spec/example/example_group_methods.rb +282 -0
  784. data/vendor/rspec/lib/spec/example/example_group_proxy.rb +61 -0
  785. data/vendor/rspec/lib/spec/example/example_matcher.rb +43 -0
  786. data/vendor/rspec/lib/spec/example/example_methods.rb +152 -0
  787. data/vendor/rspec/lib/spec/example/example_proxy.rb +41 -0
  788. data/vendor/rspec/lib/spec/example/module_reopening_fix.rb +43 -0
  789. data/vendor/rspec/lib/spec/example/pending.rb +18 -0
  790. data/vendor/rspec/lib/spec/example/predicate_matchers.rb +46 -0
  791. data/vendor/rspec/lib/spec/example/shared_example_group.rb +59 -0
  792. data/vendor/rspec/lib/spec/example/subject.rb +108 -0
  793. data/vendor/rspec/lib/spec/expectations.rb +35 -0
  794. data/vendor/rspec/lib/spec/expectations/errors.rb +12 -0
  795. data/vendor/rspec/lib/spec/expectations/extensions.rb +1 -0
  796. data/vendor/rspec/lib/spec/expectations/extensions/kernel.rb +52 -0
  797. data/vendor/rspec/lib/spec/expectations/fail_with.rb +45 -0
  798. data/vendor/rspec/lib/spec/expectations/handler.rb +50 -0
  799. data/vendor/rspec/lib/spec/extensions/instance_exec.rb +31 -0
  800. data/vendor/rspec/lib/spec/interop/test.rb +44 -0
  801. data/vendor/rspec/lib/spec/interop/test/unit/autorunner.rb +6 -0
  802. data/vendor/rspec/lib/spec/interop/test/unit/testcase.rb +56 -0
  803. data/vendor/rspec/lib/spec/interop/test/unit/testresult.rb +6 -0
  804. data/vendor/rspec/lib/spec/interop/test/unit/testsuite_adapter.rb +34 -0
  805. data/vendor/rspec/lib/spec/interop/test/unit/ui/console/testrunner.rb +61 -0
  806. data/vendor/rspec/lib/spec/matchers.rb +195 -0
  807. data/vendor/rspec/lib/spec/matchers/be.rb +211 -0
  808. data/vendor/rspec/lib/spec/matchers/be_close.rb +32 -0
  809. data/vendor/rspec/lib/spec/matchers/be_instance_of.rb +26 -0
  810. data/vendor/rspec/lib/spec/matchers/be_kind_of.rb +26 -0
  811. data/vendor/rspec/lib/spec/matchers/change.rb +151 -0
  812. data/vendor/rspec/lib/spec/matchers/compatibility.rb +14 -0
  813. data/vendor/rspec/lib/spec/matchers/dsl.rb +20 -0
  814. data/vendor/rspec/lib/spec/matchers/eql.rb +42 -0
  815. data/vendor/rspec/lib/spec/matchers/equal.rb +53 -0
  816. data/vendor/rspec/lib/spec/matchers/errors.rb +5 -0
  817. data/vendor/rspec/lib/spec/matchers/exist.rb +16 -0
  818. data/vendor/rspec/lib/spec/matchers/generated_descriptions.rb +36 -0
  819. data/vendor/rspec/lib/spec/matchers/has.rb +35 -0
  820. data/vendor/rspec/lib/spec/matchers/have.rb +152 -0
  821. data/vendor/rspec/lib/spec/matchers/include.rb +44 -0
  822. data/vendor/rspec/lib/spec/matchers/match.rb +21 -0
  823. data/vendor/rspec/lib/spec/matchers/match_array.rb +71 -0
  824. data/vendor/rspec/lib/spec/matchers/matcher.rb +102 -0
  825. data/vendor/rspec/lib/spec/matchers/method_missing.rb +9 -0
  826. data/vendor/rspec/lib/spec/matchers/operator_matcher.rb +78 -0
  827. data/vendor/rspec/lib/spec/matchers/pretty.rb +37 -0
  828. data/vendor/rspec/lib/spec/matchers/raise_error.rb +129 -0
  829. data/vendor/rspec/lib/spec/matchers/respond_to.rb +71 -0
  830. data/vendor/rspec/lib/spec/matchers/satisfy.rb +47 -0
  831. data/vendor/rspec/lib/spec/matchers/simple_matcher.rb +133 -0
  832. data/vendor/rspec/lib/spec/matchers/throw_symbol.rb +104 -0
  833. data/vendor/rspec/lib/spec/matchers/wrap_expectation.rb +55 -0
  834. data/vendor/rspec/lib/spec/mocks.rb +200 -0
  835. data/vendor/rspec/lib/spec/mocks/argument_expectation.rb +51 -0
  836. data/vendor/rspec/lib/spec/mocks/argument_matchers.rb +237 -0
  837. data/vendor/rspec/lib/spec/mocks/error_generator.rb +92 -0
  838. data/vendor/rspec/lib/spec/mocks/errors.rb +10 -0
  839. data/vendor/rspec/lib/spec/mocks/example_methods.rb +69 -0
  840. data/vendor/rspec/lib/spec/mocks/extensions.rb +1 -0
  841. data/vendor/rspec/lib/spec/mocks/extensions/object.rb +3 -0
  842. data/vendor/rspec/lib/spec/mocks/framework.rb +15 -0
  843. data/vendor/rspec/lib/spec/mocks/message_expectation.rb +343 -0
  844. data/vendor/rspec/lib/spec/mocks/methods.rb +89 -0
  845. data/vendor/rspec/lib/spec/mocks/mock.rb +71 -0
  846. data/vendor/rspec/lib/spec/mocks/order_group.rb +29 -0
  847. data/vendor/rspec/lib/spec/mocks/proxy.rb +245 -0
  848. data/vendor/rspec/lib/spec/mocks/space.rb +28 -0
  849. data/vendor/rspec/lib/spec/rake/spectask.rb +230 -0
  850. data/vendor/rspec/lib/spec/rake/verify_rcov.rb +52 -0
  851. data/vendor/rspec/lib/spec/ruby.rb +9 -0
  852. data/vendor/rspec/lib/spec/runner.rb +66 -0
  853. data/vendor/rspec/lib/spec/runner/backtrace_tweaker.rb +77 -0
  854. data/vendor/rspec/lib/spec/runner/class_and_arguments_parser.rb +14 -0
  855. data/vendor/rspec/lib/spec/runner/command_line.rb +15 -0
  856. data/vendor/rspec/lib/spec/runner/configuration.rb +194 -0
  857. data/vendor/rspec/lib/spec/runner/differs/default.rb +93 -0
  858. data/vendor/rspec/lib/spec/runner/differs/load-diff-lcs.rb +12 -0
  859. data/vendor/rspec/lib/spec/runner/drb_command_line.rb +26 -0
  860. data/vendor/rspec/lib/spec/runner/example_group_runner.rb +58 -0
  861. data/vendor/rspec/lib/spec/runner/extensions/kernel.rb +9 -0
  862. data/vendor/rspec/lib/spec/runner/formatter/base_formatter.rb +139 -0
  863. data/vendor/rspec/lib/spec/runner/formatter/base_text_formatter.rb +142 -0
  864. data/vendor/rspec/lib/spec/runner/formatter/failing_example_groups_formatter.rb +25 -0
  865. data/vendor/rspec/lib/spec/runner/formatter/failing_examples_formatter.rb +20 -0
  866. data/vendor/rspec/lib/spec/runner/formatter/html_formatter.rb +338 -0
  867. data/vendor/rspec/lib/spec/runner/formatter/nested_text_formatter.rb +47 -0
  868. data/vendor/rspec/lib/spec/runner/formatter/no_op_method_missing.rb +21 -0
  869. data/vendor/rspec/lib/spec/runner/formatter/profile_formatter.rb +47 -0
  870. data/vendor/rspec/lib/spec/runner/formatter/progress_bar_formatter.rb +33 -0
  871. data/vendor/rspec/lib/spec/runner/formatter/silent_formatter.rb +10 -0
  872. data/vendor/rspec/lib/spec/runner/formatter/snippet_extractor.rb +52 -0
  873. data/vendor/rspec/lib/spec/runner/formatter/specdoc_formatter.rb +33 -0
  874. data/vendor/rspec/lib/spec/runner/formatter/text_mate_formatter.rb +16 -0
  875. data/vendor/rspec/lib/spec/runner/heckle_runner.rb +72 -0
  876. data/vendor/rspec/lib/spec/runner/heckle_runner_unsupported.rb +10 -0
  877. data/vendor/rspec/lib/spec/runner/line_number_query.rb +78 -0
  878. data/vendor/rspec/lib/spec/runner/option_parser.rb +223 -0
  879. data/vendor/rspec/lib/spec/runner/options.rb +400 -0
  880. data/vendor/rspec/lib/spec/runner/reporter.rb +171 -0
  881. data/vendor/rspec/lib/spec/stubs/cucumber.rb +5 -0
  882. data/vendor/rspec/lib/spec/test/unit.rb +10 -0
  883. data/vendor/rspec/lib/spec/version.rb +14 -0
  884. data/vendor/rspec/resources/helpers/cmdline.rb +8 -0
  885. data/vendor/rspec/resources/rake/examples.rake +7 -0
  886. data/vendor/rspec/resources/rake/examples_with_rcov.rake +9 -0
  887. data/vendor/rspec/resources/rake/failing_examples_with_html.rake +9 -0
  888. data/vendor/rspec/resources/rake/verify_rcov.rake +7 -0
  889. data/vendor/rspec/spec/README.jruby +15 -0
  890. data/vendor/rspec/spec/autotest/autotest_helper.rb +8 -0
  891. data/vendor/rspec/spec/autotest/autotest_matchers.rb +38 -0
  892. data/vendor/rspec/spec/autotest/discover_spec.rb +8 -0
  893. data/vendor/rspec/spec/autotest/failed_results_re_spec.rb +31 -0
  894. data/vendor/rspec/spec/autotest/rspec_spec.rb +126 -0
  895. data/vendor/rspec/spec/ruby_forker.rb +13 -0
  896. data/vendor/rspec/spec/spec.opts +6 -0
  897. data/vendor/rspec/spec/spec/dsl/main_spec.rb +95 -0
  898. data/vendor/rspec/spec/spec/example/example_group_class_definition_spec.rb +51 -0
  899. data/vendor/rspec/spec/spec/example/example_group_factory_spec.rb +180 -0
  900. data/vendor/rspec/spec/spec/example/example_group_methods_spec.rb +759 -0
  901. data/vendor/rspec/spec/spec/example/example_group_proxy_spec.rb +107 -0
  902. data/vendor/rspec/spec/spec/example/example_group_spec.rb +643 -0
  903. data/vendor/rspec/spec/spec/example/example_matcher_spec.rb +86 -0
  904. data/vendor/rspec/spec/spec/example/example_methods_spec.rb +162 -0
  905. data/vendor/rspec/spec/spec/example/example_proxy_spec.rb +57 -0
  906. data/vendor/rspec/spec/spec/example/helper_method_spec.rb +24 -0
  907. data/vendor/rspec/spec/spec/example/nested_example_group_spec.rb +71 -0
  908. data/vendor/rspec/spec/spec/example/pending_module_spec.rb +58 -0
  909. data/vendor/rspec/spec/spec/example/predicate_matcher_spec.rb +41 -0
  910. data/vendor/rspec/spec/spec/example/shared_example_group_spec.rb +257 -0
  911. data/vendor/rspec/spec/spec/example/subclassing_example_group_spec.rb +25 -0
  912. data/vendor/rspec/spec/spec/example/subject_spec.rb +103 -0
  913. data/vendor/rspec/spec/spec/expectations/differs/default_spec.rb +194 -0
  914. data/vendor/rspec/spec/spec/expectations/extensions/kernel_spec.rb +45 -0
  915. data/vendor/rspec/spec/spec/expectations/fail_with_spec.rb +96 -0
  916. data/vendor/rspec/spec/spec/expectations/handler_spec.rb +206 -0
  917. data/vendor/rspec/spec/spec/expectations/wrap_expectation_spec.rb +30 -0
  918. data/vendor/rspec/spec/spec/interop/test/unit/resources/spec_that_fails.rb +10 -0
  919. data/vendor/rspec/spec/spec/interop/test/unit/resources/spec_that_passes.rb +10 -0
  920. data/vendor/rspec/spec/spec/interop/test/unit/resources/spec_with_errors.rb +10 -0
  921. data/vendor/rspec/spec/spec/interop/test/unit/resources/spec_with_options_hash.rb +13 -0
  922. data/vendor/rspec/spec/spec/interop/test/unit/resources/test_case_that_fails.rb +10 -0
  923. data/vendor/rspec/spec/spec/interop/test/unit/resources/test_case_that_passes.rb +10 -0
  924. data/vendor/rspec/spec/spec/interop/test/unit/resources/test_case_with_errors.rb +10 -0
  925. data/vendor/rspec/spec/spec/interop/test/unit/resources/test_case_with_various_names.rb +22 -0
  926. data/vendor/rspec/spec/spec/interop/test/unit/resources/testsuite_adapter_spec_with_test_unit.rb +38 -0
  927. data/vendor/rspec/spec/spec/interop/test/unit/spec_spec.rb +48 -0
  928. data/vendor/rspec/spec/spec/interop/test/unit/test_unit_spec_helper.rb +18 -0
  929. data/vendor/rspec/spec/spec/interop/test/unit/testcase_spec.rb +50 -0
  930. data/vendor/rspec/spec/spec/interop/test/unit/testsuite_adapter_spec.rb +9 -0
  931. data/vendor/rspec/spec/spec/matchers/be_close_spec.rb +50 -0
  932. data/vendor/rspec/spec/spec/matchers/be_instance_of_spec.rb +36 -0
  933. data/vendor/rspec/spec/spec/matchers/be_kind_of_spec.rb +33 -0
  934. data/vendor/rspec/spec/spec/matchers/be_spec.rb +419 -0
  935. data/vendor/rspec/spec/spec/matchers/change_spec.rb +349 -0
  936. data/vendor/rspec/spec/spec/matchers/compatibility_spec.rb +28 -0
  937. data/vendor/rspec/spec/spec/matchers/description_generation_spec.rb +160 -0
  938. data/vendor/rspec/spec/spec/matchers/dsl_spec.rb +34 -0
  939. data/vendor/rspec/spec/spec/matchers/eql_spec.rb +33 -0
  940. data/vendor/rspec/spec/spec/matchers/equal_spec.rb +57 -0
  941. data/vendor/rspec/spec/spec/matchers/exist_spec.rb +65 -0
  942. data/vendor/rspec/spec/spec/matchers/has_spec.rb +190 -0
  943. data/vendor/rspec/spec/spec/matchers/have_spec.rb +396 -0
  944. data/vendor/rspec/spec/spec/matchers/include_spec.rb +88 -0
  945. data/vendor/rspec/spec/spec/matchers/match_array_spec.rb +108 -0
  946. data/vendor/rspec/spec/spec/matchers/match_spec.rb +57 -0
  947. data/vendor/rspec/spec/spec/matchers/matcher_methods_spec.rb +63 -0
  948. data/vendor/rspec/spec/spec/matchers/matcher_spec.rb +273 -0
  949. data/vendor/rspec/spec/spec/matchers/matchers_spec.rb +2 -0
  950. data/vendor/rspec/spec/spec/matchers/operator_matcher_spec.rb +191 -0
  951. data/vendor/rspec/spec/spec/matchers/raise_error_spec.rb +333 -0
  952. data/vendor/rspec/spec/spec/matchers/respond_to_spec.rb +116 -0
  953. data/vendor/rspec/spec/spec/matchers/satisfy_spec.rb +36 -0
  954. data/vendor/rspec/spec/spec/matchers/simple_matcher_spec.rb +93 -0
  955. data/vendor/rspec/spec/spec/matchers/throw_symbol_spec.rb +96 -0
  956. data/vendor/rspec/spec/spec/mocks/and_yield_spec.rb +117 -0
  957. data/vendor/rspec/spec/spec/mocks/any_number_of_times_spec.rb +36 -0
  958. data/vendor/rspec/spec/spec/mocks/argument_expectation_spec.rb +23 -0
  959. data/vendor/rspec/spec/spec/mocks/argument_matchers_spec.rb +19 -0
  960. data/vendor/rspec/spec/spec/mocks/at_least_spec.rb +97 -0
  961. data/vendor/rspec/spec/spec/mocks/at_most_spec.rb +93 -0
  962. data/vendor/rspec/spec/spec/mocks/bug_report_10260_spec.rb +8 -0
  963. data/vendor/rspec/spec/spec/mocks/bug_report_10263_spec.rb +27 -0
  964. data/vendor/rspec/spec/spec/mocks/bug_report_11545_spec.rb +32 -0
  965. data/vendor/rspec/spec/spec/mocks/bug_report_15719_spec.rb +30 -0
  966. data/vendor/rspec/spec/spec/mocks/bug_report_496_spec.rb +19 -0
  967. data/vendor/rspec/spec/spec/mocks/bug_report_600_spec.rb +22 -0
  968. data/vendor/rspec/spec/spec/mocks/bug_report_7611_spec.rb +19 -0
  969. data/vendor/rspec/spec/spec/mocks/bug_report_7805_spec.rb +22 -0
  970. data/vendor/rspec/spec/spec/mocks/bug_report_8165_spec.rb +31 -0
  971. data/vendor/rspec/spec/spec/mocks/bug_report_8302_spec.rb +26 -0
  972. data/vendor/rspec/spec/spec/mocks/bug_report_830_spec.rb +21 -0
  973. data/vendor/rspec/spec/spec/mocks/double_spec.rb +12 -0
  974. data/vendor/rspec/spec/spec/mocks/failing_argument_matchers_spec.rb +95 -0
  975. data/vendor/rspec/spec/spec/mocks/hash_including_matcher_spec.rb +90 -0
  976. data/vendor/rspec/spec/spec/mocks/hash_not_including_matcher_spec.rb +67 -0
  977. data/vendor/rspec/spec/spec/mocks/mock_ordering_spec.rb +94 -0
  978. data/vendor/rspec/spec/spec/mocks/mock_space_spec.rb +54 -0
  979. data/vendor/rspec/spec/spec/mocks/mock_spec.rb +594 -0
  980. data/vendor/rspec/spec/spec/mocks/multiple_return_value_spec.rb +113 -0
  981. data/vendor/rspec/spec/spec/mocks/nil_expectation_warning_spec.rb +53 -0
  982. data/vendor/rspec/spec/spec/mocks/null_object_mock_spec.rb +54 -0
  983. data/vendor/rspec/spec/spec/mocks/once_counts_spec.rb +53 -0
  984. data/vendor/rspec/spec/spec/mocks/options_hash_spec.rb +35 -0
  985. data/vendor/rspec/spec/spec/mocks/partial_mock_spec.rb +164 -0
  986. data/vendor/rspec/spec/spec/mocks/partial_mock_using_mocks_directly_spec.rb +66 -0
  987. data/vendor/rspec/spec/spec/mocks/passing_argument_matchers_spec.rb +145 -0
  988. data/vendor/rspec/spec/spec/mocks/precise_counts_spec.rb +52 -0
  989. data/vendor/rspec/spec/spec/mocks/record_messages_spec.rb +26 -0
  990. data/vendor/rspec/spec/spec/mocks/stub_chain_spec.rb +42 -0
  991. data/vendor/rspec/spec/spec/mocks/stub_implementation_spec.rb +31 -0
  992. data/vendor/rspec/spec/spec/mocks/stub_spec.rb +203 -0
  993. data/vendor/rspec/spec/spec/mocks/stubbed_message_expectations_spec.rb +26 -0
  994. data/vendor/rspec/spec/spec/mocks/twice_counts_spec.rb +67 -0
  995. data/vendor/rspec/spec/spec/mocks/unstub_spec.rb +127 -0
  996. data/vendor/rspec/spec/spec/package/bin_spec_spec.rb +16 -0
  997. data/vendor/rspec/spec/spec/rake/spectask_spec.rb +150 -0
  998. data/vendor/rspec/spec/spec/runner/class_and_argument_parser_spec.rb +23 -0
  999. data/vendor/rspec/spec/spec/runner/command_line_spec.rb +162 -0
  1000. data/vendor/rspec/spec/spec/runner/configuration_spec.rb +320 -0
  1001. data/vendor/rspec/spec/spec/runner/drb_command_line_spec.rb +107 -0
  1002. data/{spec/rango/helpers/spec/fixture/app/controllers/bound_text_field_spec.rb → vendor/rspec/spec/spec/runner/empty_file.txt} +0 -0
  1003. data/vendor/rspec/spec/spec/runner/example_group_runner_spec.rb +26 -0
  1004. data/vendor/rspec/spec/spec/runner/examples.txt +2 -0
  1005. data/vendor/rspec/spec/spec/runner/failed.txt +3 -0
  1006. data/vendor/rspec/spec/spec/runner/formatter/base_formatter_spec.rb +30 -0
  1007. data/vendor/rspec/spec/spec/runner/formatter/base_text_formatter_spec.rb +113 -0
  1008. data/vendor/rspec/spec/spec/runner/formatter/failing_example_groups_formatter_spec.rb +45 -0
  1009. data/vendor/rspec/spec/spec/runner/formatter/failing_examples_formatter_spec.rb +33 -0
  1010. data/vendor/rspec/spec/spec/runner/formatter/html_formatted-1.8.6-jruby.html +377 -0
  1011. data/vendor/rspec/spec/spec/runner/formatter/html_formatted-1.8.6.html +377 -0
  1012. data/vendor/rspec/spec/spec/runner/formatter/html_formatted-1.8.7.html +377 -0
  1013. data/vendor/rspec/spec/spec/runner/formatter/html_formatted-1.9.1.html +377 -0
  1014. data/vendor/rspec/spec/spec/runner/formatter/html_formatter_spec.rb +118 -0
  1015. data/vendor/rspec/spec/spec/runner/formatter/nested_text_formatter_spec.rb +305 -0
  1016. data/vendor/rspec/spec/spec/runner/formatter/profile_formatter_spec.rb +70 -0
  1017. data/vendor/rspec/spec/spec/runner/formatter/progress_bar_formatter_spec.rb +149 -0
  1018. data/vendor/rspec/spec/spec/runner/formatter/snippet_extractor_spec.rb +18 -0
  1019. data/vendor/rspec/spec/spec/runner/formatter/specdoc_formatter_spec.rb +159 -0
  1020. data/vendor/rspec/spec/spec/runner/formatter/text_mate_formatted-1.8.6-jruby.html +371 -0
  1021. data/vendor/rspec/spec/spec/runner/formatter/text_mate_formatted-1.8.6.html +371 -0
  1022. data/vendor/rspec/spec/spec/runner/formatter/text_mate_formatted-1.8.7.html +371 -0
  1023. data/vendor/rspec/spec/spec/runner/formatter/text_mate_formatted-1.9.1.html +371 -0
  1024. data/vendor/rspec/spec/spec/runner/formatter/text_mate_formatter_spec.rb +106 -0
  1025. data/vendor/rspec/spec/spec/runner/heckle_runner_spec.rb +78 -0
  1026. data/vendor/rspec/spec/spec/runner/heckler_spec.rb +20 -0
  1027. data/vendor/rspec/spec/spec/runner/line_number_query/line_number_query_fixture.rb +70 -0
  1028. data/vendor/rspec/spec/spec/runner/line_number_query_spec.rb +129 -0
  1029. data/vendor/rspec/spec/spec/runner/noisy_backtrace_tweaker_spec.rb +51 -0
  1030. data/vendor/rspec/spec/spec/runner/option_parser_spec.rb +545 -0
  1031. data/vendor/rspec/spec/spec/runner/options_spec.rb +547 -0
  1032. data/vendor/rspec/spec/spec/runner/output_one_time_fixture.rb +7 -0
  1033. data/vendor/rspec/spec/spec/runner/output_one_time_fixture_runner.rb +7 -0
  1034. data/vendor/rspec/spec/spec/runner/output_one_time_spec.rb +15 -0
  1035. data/vendor/rspec/spec/spec/runner/quiet_backtrace_tweaker_spec.rb +123 -0
  1036. data/vendor/rspec/spec/spec/runner/reporter_spec.rb +244 -0
  1037. data/{spec/rango/helpers/spec/fixture/app/controllers/button_spec.rb → vendor/rspec/spec/spec/runner/resources/a_bar.rb} +0 -0
  1038. data/{spec/rango/helpers/spec/fixture/app/controllers/check_box_spec.rb → vendor/rspec/spec/spec/runner/resources/a_foo.rb} +0 -0
  1039. data/vendor/rspec/spec/spec/runner/resources/a_spec.rb +1 -0
  1040. data/vendor/rspec/spec/spec/runner/resources/custom_example_group_runner.rb +14 -0
  1041. data/vendor/rspec/spec/spec/runner/resources/utf8_encoded.rb +8 -0
  1042. data/vendor/rspec/spec/spec/runner/spec.opts +2 -0
  1043. data/vendor/rspec/spec/spec/runner/spec_drb.opts +2 -0
  1044. data/vendor/rspec/spec/spec/runner/spec_spaced.opts +2 -0
  1045. data/vendor/rspec/spec/spec/runner_spec.rb +13 -0
  1046. data/vendor/rspec/spec/spec_helper.rb +112 -0
  1047. data/vendor/rspec/spec/support/macros.rb +29 -0
  1048. data/vendor/rspec/spec/support/spec_classes.rb +133 -0
  1049. data/vendor/rubyexts/CHANGELOG +2 -0
  1050. data/vendor/rubyexts/LICENSE +20 -0
  1051. data/{spec/rango/helpers/spec/fixture/app/controllers/custom_builder_spec.rb → vendor/rubyexts/README.textile} +0 -0
  1052. data/vendor/rubyexts/Rakefile +79 -0
  1053. data/vendor/rubyexts/TODO.txt +6 -0
  1054. data/vendor/rubyexts/lib/rubyexts.rb +102 -0
  1055. data/{lib/rango/ext → vendor/rubyexts/lib/rubyexts}/array.rb +0 -0
  1056. data/vendor/rubyexts/lib/rubyexts/attribute.rb +151 -0
  1057. data/vendor/rubyexts/lib/rubyexts/capture_io.rb +32 -0
  1058. data/vendor/rubyexts/lib/rubyexts/class.rb +177 -0
  1059. data/vendor/rubyexts/lib/rubyexts/colored_string.rb +103 -0
  1060. data/{lib/rango/ext → vendor/rubyexts/lib/rubyexts}/enumerable.rb +0 -0
  1061. data/{lib/rango/ext → vendor/rubyexts/lib/rubyexts}/file.rb +0 -0
  1062. data/{lib/rango/ext → vendor/rubyexts/lib/rubyexts}/hash.rb +0 -0
  1063. data/vendor/rubyexts/lib/rubyexts/kernel.rb +91 -0
  1064. data/vendor/rubyexts/lib/rubyexts/module.rb +53 -0
  1065. data/{lib/rango/ext → vendor/rubyexts/lib/rubyexts}/object.rb +0 -0
  1066. data/{lib/rango/ext → vendor/rubyexts/lib/rubyexts}/object_space.rb +0 -0
  1067. data/{lib/rango/ext → vendor/rubyexts/lib/rubyexts}/os.rb +0 -0
  1068. data/vendor/rubyexts/lib/rubyexts/platform.rb +27 -0
  1069. data/{lib/rango/ext → vendor/rubyexts/lib/rubyexts}/random.rb +0 -0
  1070. data/vendor/rubyexts/lib/rubyexts/string.rb +92 -0
  1071. data/{lib/rango/ext → vendor/rubyexts/lib/rubyexts}/time.rb +0 -0
  1072. data/{lib/rango/ext → vendor/rubyexts/lib/rubyexts}/time_dsl.rb +0 -0
  1073. data/vendor/rubyexts/lib/rubyexts/try_dup.rb +43 -0
  1074. data/vendor/rubyexts/lib/rubyexts/unique_array.rb +16 -0
  1075. data/vendor/rubyexts/rubyexts.gemspec +36 -0
  1076. data/vendor/rubyexts/script/spec +12 -0
  1077. data/vendor/rubyexts/spec/rubyexts/array_spec.rb +19 -0
  1078. data/vendor/rubyexts/spec/rubyexts/attribute_spec.rb +37 -0
  1079. data/vendor/rubyexts/spec/rubyexts/class_spec.rb +1 -0
  1080. data/{spec/rango/helpers/spec/fixture/app/controllers/delete_button_spec.rb → vendor/rubyexts/spec/rubyexts/cli_spec.rb} +0 -0
  1081. data/vendor/rubyexts/spec/rubyexts/colored_string_spec.rb +9 -0
  1082. data/vendor/rubyexts/spec/rubyexts/enumerable_spec.rb +52 -0
  1083. data/vendor/rubyexts/spec/rubyexts/file_spec.rb +78 -0
  1084. data/vendor/rubyexts/spec/rubyexts/hash_spec.rb +91 -0
  1085. data/vendor/rubyexts/spec/rubyexts/kernel_spec.rb +9 -0
  1086. data/{spec/rango/helpers/spec/fixture/app/controllers/exceptions_spec.rb → vendor/rubyexts/spec/rubyexts/module_spec.rb} +0 -0
  1087. data/vendor/rubyexts/spec/rubyexts/object_space_spec.rb +17 -0
  1088. data/vendor/rubyexts/spec/rubyexts/object_spec.rb +57 -0
  1089. data/vendor/rubyexts/spec/rubyexts/os_spec.rb +121 -0
  1090. data/{spec/rango/helpers/spec/fixture/app/controllers/field_set_spec.rb → vendor/rubyexts/spec/rubyexts/platform_spec.rb} +0 -0
  1091. data/vendor/rubyexts/spec/rubyexts/random_spec.rb +31 -0
  1092. data/vendor/rubyexts/spec/rubyexts/string_spec.rb +23 -0
  1093. data/vendor/rubyexts/spec/rubyexts/time_dsl_spec.rb +88 -0
  1094. data/vendor/rubyexts/spec/rubyexts/time_spec.rb +11 -0
  1095. data/{spec/rango/helpers/spec/fixture/app/controllers/fields_for_spec.rb → vendor/rubyexts/spec/rubyexts/unique_array_spec.rb} +0 -0
  1096. data/vendor/rubyexts/spec/rubyexts_spec.rb +182 -0
  1097. data/vendor/rubyexts/spec/spec.opts +5 -0
  1098. data/vendor/rubyexts/spec/spec_helper.rb +16 -0
  1099. data/vendor/simple-templater/CHANGELOG +10 -0
  1100. data/vendor/simple-templater/LICENSE +20 -0
  1101. data/vendor/simple-templater/README.textile +136 -0
  1102. data/vendor/simple-templater/Rakefile +61 -0
  1103. data/vendor/simple-templater/TODO.txt +15 -0
  1104. data/vendor/simple-templater/bin/simple-templater +66 -0
  1105. data/vendor/simple-templater/deps.rip +7 -0
  1106. data/vendor/simple-templater/lib/simple-templater.rb +97 -0
  1107. data/vendor/simple-templater/lib/simple-templater/argv_parsing.rb +27 -0
  1108. data/vendor/simple-templater/lib/simple-templater/builder.rb +134 -0
  1109. data/vendor/simple-templater/lib/simple-templater/discoverer.rb +20 -0
  1110. data/vendor/simple-templater/lib/simple-templater/discoverers/gems.rb +79 -0
  1111. data/vendor/simple-templater/lib/simple-templater/discoverers/plain.rb +1 -0
  1112. data/vendor/simple-templater/lib/simple-templater/discoverers/rip.rb +1 -0
  1113. data/vendor/simple-templater/lib/simple-templater/dsl.rb +27 -0
  1114. data/vendor/simple-templater/lib/simple-templater/generator.rb +129 -0
  1115. data/vendor/simple-templater/lib/simple-templater/generator_set.rb +45 -0
  1116. data/vendor/simple-templater/lib/simple-templater/helpers.rb +34 -0
  1117. data/vendor/simple-templater/lib/simple-templater/hooks/hook.rb +76 -0
  1118. data/vendor/simple-templater/lib/simple-templater/hooks/postprocess/git_repository.rb +25 -0
  1119. data/vendor/simple-templater/lib/simple-templater/hooks/postprocess/github.rb +20 -0
  1120. data/vendor/simple-templater/lib/simple-templater/hooks/preprocess/full_name.rb +17 -0
  1121. data/vendor/simple-templater/lib/simple-templater/hooks/preprocess/github.rb +25 -0
  1122. data/vendor/simple-templater/script/spec +14 -0
  1123. data/vendor/simple-templater/simple-templater.gemspec +45 -0
  1124. data/vendor/simple-templater/simple-templater.scope +6 -0
  1125. data/vendor/simple-templater/spec/simple-templater/argv_parsing_spec.rb +41 -0
  1126. data/{features/shared/given_steps.rb → vendor/simple-templater/spec/simple-templater/builder_spec.rb} +0 -0
  1127. data/{spec/rango/helpers/spec/fixture/app/controllers/file_field_spec.rb → vendor/simple-templater/spec/simple-templater/discoverers/gems_spec.rb} +0 -0
  1128. data/{spec/rango/helpers/spec/fixture/app/controllers/foo_spec.rb → vendor/simple-templater/spec/simple-templater/discoverers/plain_spec.rb} +0 -0
  1129. data/{spec/rango/helpers/spec/fixture/app/controllers/form_for_spec.rb → vendor/simple-templater/spec/simple-templater/discoverers/rip_spec.rb} +0 -0
  1130. data/vendor/simple-templater/spec/simple-templater/generator_set_spec.rb +55 -0
  1131. data/vendor/simple-templater/spec/simple-templater/generator_spec.rb +30 -0
  1132. data/vendor/simple-templater/spec/simple-templater/helpers_spec.rb +81 -0
  1133. data/vendor/simple-templater/spec/simple-templater/hooks/hook_spec.rb +100 -0
  1134. data/vendor/simple-templater/spec/simple-templater/hooks/postprocess/git_repository_spec.rb +25 -0
  1135. data/vendor/simple-templater/spec/simple-templater/hooks/postprocess/github_spec.rb +8 -0
  1136. data/vendor/simple-templater/spec/simple-templater_spec.rb +112 -0
  1137. data/vendor/simple-templater/spec/spec.opts +5 -0
  1138. data/vendor/simple-templater/spec/spec_helper.rb +19 -0
  1139. data/vendor/simple-templater/spec/stubs/gems/cache/test_generator-0.0.1.gem +0 -0
  1140. data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/simple-generator.scope +8 -0
  1141. data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/simple-templater.scope +8 -0
  1142. data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/stubs/content/%name%1_test.rb.rbt +1 -0
  1143. data/{spec/rango/helpers/spec/fixture/app/controllers/form_spec.rb → vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/stubs/content/%name%_test.rb} +0 -0
  1144. data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/stubs/content/README.textile +3 -0
  1145. data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/stubs/content/script.rb.rbt +1 -0
  1146. data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/stubs/test/content/%name%1_test.rb.rbt +1 -0
  1147. data/{spec/rango/helpers/spec/fixture/app/controllers/hacker_spec.rb → vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/stubs/test/content/%name%_test.rb} +0 -0
  1148. data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/stubs/test/content/README.textile +3 -0
  1149. data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/stubs/test/content/script.rb.rbt +1 -0
  1150. data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/test_generator.gemspec +19 -0
  1151. data/vendor/simple-templater/spec/stubs/gems/specifications/test_generator-0.0.1.gemspec +28 -0
  1152. data/vendor/simple-templater/spec/stubs/simple-templater.scope +8 -0
  1153. data/vendor/simple-templater/spec/stubs/test_generator/simple-templater.scope +8 -0
  1154. data/vendor/simple-templater/spec/stubs/test_generator/stubs/test/content/%name%1_test.rb.rbt +1 -0
  1155. data/{spec/rango/helpers/spec/fixture/app/controllers/hidden_field_spec.rb → vendor/simple-templater/spec/stubs/test_generator/stubs/test/content/%name%_test.rb} +0 -0
  1156. data/vendor/simple-templater/spec/stubs/test_generator/stubs/test/content/README.textile +3 -0
  1157. data/vendor/simple-templater/spec/stubs/test_generator/stubs/test/content/script.rb.rbt +1 -0
  1158. data/vendor/simple-templater/spec/stubs/test_generator/test_generator-0.0.1.gem +0 -0
  1159. data/vendor/simple-templater/spec/stubs/test_generator/test_generator.gemspec +19 -0
  1160. data/vendor/simple-templater/stubs/project/content/%name%.gemspec.rbt +37 -0
  1161. data/vendor/simple-templater/stubs/project/content/CHANGELOG +2 -0
  1162. data/vendor/simple-templater/stubs/project/content/LICENSE.rbt +20 -0
  1163. data/vendor/simple-templater/stubs/project/content/README.textile.rbt +19 -0
  1164. data/vendor/simple-templater/stubs/project/content/Rakefile +39 -0
  1165. data/{spec/rango/helpers/spec/fixture/app/controllers/label_spec.rb → vendor/simple-templater/stubs/project/content/TODO.txt} +0 -0
  1166. data/vendor/simple-templater/stubs/project/content/bin/%name%.rbt +14 -0
  1167. data/vendor/simple-templater/stubs/project/content/deps.rip +5 -0
  1168. data/vendor/simple-templater/stubs/project/content/lib/%name%.rb.rbt +5 -0
  1169. data/vendor/simple-templater/stubs/project/content/spec/%name%_spec.rb.rbt +10 -0
  1170. data/vendor/simple-templater/stubs/project/content/spec/spec.opts +5 -0
  1171. data/vendor/simple-templater/stubs/project/content/spec/spec_helper.rb.rbt +11 -0
  1172. data/vendor/simple-templater/stubs/project/metadata.yml +3 -0
  1173. data/vendor/simple-templater/stubs/project/postprocess.rb +13 -0
  1174. data/vendor/simple-templater/stubs/project/setup.rb +13 -0
  1175. data/vendor/simple-templater/stubs/stub/content/metadata.yml.rbt +3 -0
  1176. data/vendor/simple-templater/stubs/stub/content/postprocess.rb +11 -0
  1177. data/vendor/simple-templater/stubs/stub/content/setup.rb +10 -0
  1178. data/vendor/simple-templater/stubs/stub/metadata.yml +3 -0
  1179. data/vendor/simple-templater/stubs/stub/postprocess.rb +9 -0
  1180. data/vendor/simple-templater/stubs/stub/setup.rb +15 -0
  1181. data/vendor/simple-templater/vendor/abstract/ChangeLog +3 -0
  1182. data/vendor/simple-templater/vendor/abstract/README.txt +57 -0
  1183. data/vendor/simple-templater/vendor/abstract/abstract.gemspec +48 -0
  1184. data/vendor/simple-templater/vendor/abstract/doc/classes/Kernel.html +134 -0
  1185. data/vendor/simple-templater/vendor/abstract/doc/classes/Kernel.src/M000002.html +24 -0
  1186. data/vendor/simple-templater/vendor/abstract/doc/classes/Module.html +140 -0
  1187. data/vendor/simple-templater/vendor/abstract/doc/classes/Module.src/M000001.html +20 -0
  1188. data/vendor/simple-templater/vendor/abstract/doc/created.rid +1 -0
  1189. data/vendor/simple-templater/vendor/abstract/doc/files/README_txt.html +173 -0
  1190. data/vendor/simple-templater/vendor/abstract/doc/files/lib/abstract_rb.html +137 -0
  1191. data/vendor/simple-templater/vendor/abstract/doc/fr_class_index.html +28 -0
  1192. data/vendor/simple-templater/vendor/abstract/doc/fr_file_index.html +28 -0
  1193. data/vendor/simple-templater/vendor/abstract/doc/fr_method_index.html +28 -0
  1194. data/vendor/simple-templater/vendor/abstract/doc/index.html +24 -0
  1195. data/vendor/simple-templater/vendor/abstract/doc/rdoc-style.css +208 -0
  1196. data/vendor/simple-templater/vendor/abstract/lib/abstract.rb +75 -0
  1197. data/vendor/simple-templater/vendor/abstract/setup.rb +1331 -0
  1198. data/vendor/simple-templater/vendor/abstract/test/test.rb +91 -0
  1199. data/vendor/thor/CHANGELOG.rdoc +82 -0
  1200. data/vendor/thor/LICENSE +20 -0
  1201. data/vendor/thor/README.rdoc +234 -0
  1202. data/vendor/thor/Thorfile +63 -0
  1203. data/vendor/thor/bin/rake2thor +86 -0
  1204. data/vendor/thor/bin/thor +7 -0
  1205. data/vendor/thor/lib/thor.rb +242 -0
  1206. data/vendor/thor/lib/thor/actions.rb +273 -0
  1207. data/vendor/thor/lib/thor/actions/create_file.rb +103 -0
  1208. data/vendor/thor/lib/thor/actions/directory.rb +93 -0
  1209. data/vendor/thor/lib/thor/actions/empty_directory.rb +134 -0
  1210. data/vendor/thor/lib/thor/actions/file_manipulation.rb +219 -0
  1211. data/vendor/thor/lib/thor/actions/inject_into_file.rb +101 -0
  1212. data/vendor/thor/lib/thor/base.rb +517 -0
  1213. data/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb +75 -0
  1214. data/vendor/thor/lib/thor/core_ext/ordered_hash.rb +100 -0
  1215. data/vendor/thor/lib/thor/error.rb +27 -0
  1216. data/vendor/thor/lib/thor/group.rb +263 -0
  1217. data/vendor/thor/lib/thor/invocation.rb +178 -0
  1218. data/vendor/thor/lib/thor/parser.rb +4 -0
  1219. data/vendor/thor/lib/thor/parser/argument.rb +67 -0
  1220. data/vendor/thor/lib/thor/parser/arguments.rb +145 -0
  1221. data/vendor/thor/lib/thor/parser/option.rb +132 -0
  1222. data/vendor/thor/lib/thor/parser/options.rb +142 -0
  1223. data/vendor/thor/lib/thor/rake_compat.rb +66 -0
  1224. data/vendor/thor/lib/thor/runner.rb +299 -0
  1225. data/vendor/thor/lib/thor/shell.rb +78 -0
  1226. data/vendor/thor/lib/thor/shell/basic.rb +219 -0
  1227. data/vendor/thor/lib/thor/shell/color.rb +108 -0
  1228. data/vendor/thor/lib/thor/task.rb +122 -0
  1229. data/vendor/thor/lib/thor/util.rb +251 -0
  1230. data/vendor/thor/lib/thor/version.rb +3 -0
  1231. data/vendor/thor/spec/actions/create_file_spec.rb +170 -0
  1232. data/vendor/thor/spec/actions/directory_spec.rb +130 -0
  1233. data/vendor/thor/spec/actions/empty_directory_spec.rb +91 -0
  1234. data/vendor/thor/spec/actions/file_manipulation_spec.rb +249 -0
  1235. data/vendor/thor/spec/actions/inject_into_file_spec.rb +106 -0
  1236. data/vendor/thor/spec/actions_spec.rb +291 -0
  1237. data/vendor/thor/spec/base_spec.rb +236 -0
  1238. data/vendor/thor/spec/core_ext/hash_with_indifferent_access_spec.rb +43 -0
  1239. data/vendor/thor/spec/core_ext/ordered_hash_spec.rb +115 -0
  1240. data/vendor/thor/spec/fixtures/application.rb +2 -0
  1241. data/vendor/thor/spec/fixtures/bundle/execute.rb +6 -0
  1242. data/vendor/thor/spec/fixtures/bundle/main.thor +1 -0
  1243. data/vendor/thor/spec/fixtures/doc/%file_name%.rb.tt +1 -0
  1244. data/vendor/thor/spec/fixtures/doc/README +3 -0
  1245. data/vendor/thor/spec/fixtures/doc/config.rb +1 -0
  1246. data/vendor/thor/spec/fixtures/group.thor +83 -0
  1247. data/vendor/thor/spec/fixtures/invoke.thor +112 -0
  1248. data/vendor/thor/spec/fixtures/script.thor +126 -0
  1249. data/vendor/thor/spec/fixtures/task.thor +10 -0
  1250. data/vendor/thor/spec/group_spec.rb +177 -0
  1251. data/vendor/thor/spec/invocation_spec.rb +107 -0
  1252. data/vendor/thor/spec/parser/argument_spec.rb +47 -0
  1253. data/vendor/thor/spec/parser/arguments_spec.rb +64 -0
  1254. data/vendor/thor/spec/parser/option_spec.rb +212 -0
  1255. data/vendor/thor/spec/parser/options_spec.rb +255 -0
  1256. data/vendor/thor/spec/rake_compat_spec.rb +68 -0
  1257. data/vendor/thor/spec/runner_spec.rb +204 -0
  1258. data/vendor/thor/spec/shell/basic_spec.rb +211 -0
  1259. data/vendor/thor/spec/shell/color_spec.rb +41 -0
  1260. data/vendor/thor/spec/shell_spec.rb +25 -0
  1261. data/vendor/thor/spec/spec.opts +1 -0
  1262. data/vendor/thor/spec/spec_helper.rb +52 -0
  1263. data/vendor/thor/spec/task_spec.rb +88 -0
  1264. data/vendor/thor/spec/thor_spec.rb +234 -0
  1265. data/vendor/thor/spec/util_spec.rb +196 -0
  1266. metadata +1208 -899
  1267. data/cucumber.yml +0 -1
  1268. data/doc/0.0.3/Array.html +0 -354
  1269. data/doc/0.0.3/AttributeMixin.html +0 -697
  1270. data/doc/0.0.3/Class.html +0 -102
  1271. data/doc/0.0.3/ColoredString.html +0 -476
  1272. data/doc/0.0.3/Enumerable.html +0 -256
  1273. data/doc/0.0.3/File.html +0 -909
  1274. data/doc/0.0.3/Hash.html +0 -1586
  1275. data/doc/0.0.3/Kernel.html +0 -956
  1276. data/doc/0.0.3/OS.html +0 -740
  1277. data/doc/0.0.3/Object.html +0 -466
  1278. data/doc/0.0.3/ObjectSpace.html +0 -184
  1279. data/doc/0.0.3/Path.html +0 -2499
  1280. data/doc/0.0.3/Range.html +0 -190
  1281. data/doc/0.0.3/Rango.html +0 -379
  1282. data/doc/0.0.3/Rango/ApplicationMixin.html +0 -396
  1283. data/doc/0.0.3/Rango/Bundling.html +0 -23
  1284. data/doc/0.0.3/Rango/Bundling/RequireStrategy.html +0 -283
  1285. data/doc/0.0.3/Rango/Bundling/Strategy.html +0 -703
  1286. data/doc/0.0.3/Rango/CLI.html +0 -23
  1287. data/doc/0.0.3/Rango/CLI/Generator.html +0 -762
  1288. data/doc/0.0.3/Rango/CLI/Templater.html +0 -258
  1289. data/doc/0.0.3/Rango/CallableStrategy.html +0 -300
  1290. data/doc/0.0.3/Rango/Chainable.html +0 -181
  1291. data/doc/0.0.3/Rango/Configurable.html +0 -199
  1292. data/doc/0.0.3/Rango/Controller.html +0 -962
  1293. data/doc/0.0.3/Rango/ControllerMixin.html +0 -860
  1294. data/doc/0.0.3/Rango/ControllerStrategy.html +0 -264
  1295. data/doc/0.0.3/Rango/DependencyStrategy.html +0 -116
  1296. data/doc/0.0.3/Rango/Dispatcher.html +0 -305
  1297. data/doc/0.0.3/Rango/Form.html +0 -162
  1298. data/doc/0.0.3/Rango/GemDependencyStrategy.html +0 -210
  1299. data/doc/0.0.3/Rango/Generator.html +0 -93
  1300. data/doc/0.0.3/Rango/GenericViews.html +0 -128
  1301. data/doc/0.0.3/Rango/GitDependencyStrategy.html +0 -224
  1302. data/doc/0.0.3/Rango/GithubDependencyStrategy.html +0 -118
  1303. data/doc/0.0.3/Rango/Handler.html +0 -474
  1304. data/doc/0.0.3/Rango/Helpers.html +0 -1335
  1305. data/doc/0.0.3/Rango/Hookable.html +0 -202
  1306. data/doc/0.0.3/Rango/ImportMixin.html +0 -755
  1307. data/doc/0.0.3/Rango/Logger.html +0 -920
  1308. data/doc/0.0.3/Rango/Mini.html +0 -117
  1309. data/doc/0.0.3/Rango/ModelForm.html +0 -42
  1310. data/doc/0.0.3/Rango/Project.html +0 -516
  1311. data/doc/0.0.3/Rango/RenderMixin.html +0 -23
  1312. data/doc/0.0.3/Rango/Request.html +0 -1177
  1313. data/doc/0.0.3/Rango/Route.html +0 -751
  1314. data/doc/0.0.3/Rango/Router.html +0 -42
  1315. data/doc/0.0.3/Rango/Router/Dispatcher.html +0 -311
  1316. data/doc/0.0.3/Rango/RouterStrategy.html +0 -258
  1317. data/doc/0.0.3/Rango/Session.html +0 -23
  1318. data/doc/0.0.3/Rango/Settings.html +0 -23
  1319. data/doc/0.0.3/Rango/Settings/Erubis.html +0 -23
  1320. data/doc/0.0.3/Rango/Settings/Framework.html +0 -254
  1321. data/doc/0.0.3/Rango/Settings/Haml.html +0 -23
  1322. data/doc/0.0.3/Rango/Settings/Template.html +0 -23
  1323. data/doc/0.0.3/Rango/SimpleTemplate.html +0 -187
  1324. data/doc/0.0.3/Rango/StrategyMixin.html +0 -261
  1325. data/doc/0.0.3/Rango/Tasks.html +0 -219
  1326. data/doc/0.0.3/Rango/Template.html +0 -95
  1327. data/doc/0.0.3/Rango/Template/Adapter.html +0 -90
  1328. data/doc/0.0.3/Rango/Templates.html +0 -116
  1329. data/doc/0.0.3/Rango/Templates/Adapter.html +0 -128
  1330. data/doc/0.0.3/Rango/Templates/Template.html +0 -636
  1331. data/doc/0.0.3/Rango/Templates/TemplateHelpers.html +0 -328
  1332. data/doc/0.0.3/RangoThor.html +0 -205
  1333. data/doc/0.0.3/String.html +0 -307
  1334. data/doc/0.0.3/Time.html +0 -193
  1335. data/doc/0.0.3/TimeDSL.html +0 -601
  1336. data/doc/0.0.3/all-methods.html +0 -1908
  1337. data/doc/0.0.3/all-namespaces.html +0 -114
  1338. data/doc/0.0.3/app.js +0 -18
  1339. data/doc/0.0.3/head/Array.html +0 -354
  1340. data/doc/0.0.3/head/AttributeMixin.html +0 -697
  1341. data/doc/0.0.3/head/Class.html +0 -102
  1342. data/doc/0.0.3/head/ColoredString.html +0 -476
  1343. data/doc/0.0.3/head/Enumerable.html +0 -256
  1344. data/doc/0.0.3/head/File.html +0 -909
  1345. data/doc/0.0.3/head/Hash.html +0 -1586
  1346. data/doc/0.0.3/head/Kernel.html +0 -956
  1347. data/doc/0.0.3/head/OS.html +0 -740
  1348. data/doc/0.0.3/head/Object.html +0 -466
  1349. data/doc/0.0.3/head/ObjectSpace.html +0 -184
  1350. data/doc/0.0.3/head/Path.html +0 -2499
  1351. data/doc/0.0.3/head/Range.html +0 -190
  1352. data/doc/0.0.3/head/Rango.html +0 -379
  1353. data/doc/0.0.3/head/Rango/ApplicationMixin.html +0 -396
  1354. data/doc/0.0.3/head/Rango/Bundling.html +0 -23
  1355. data/doc/0.0.3/head/Rango/Bundling/RequireStrategy.html +0 -283
  1356. data/doc/0.0.3/head/Rango/Bundling/Strategy.html +0 -703
  1357. data/doc/0.0.3/head/Rango/CLI.html +0 -23
  1358. data/doc/0.0.3/head/Rango/CLI/Generator.html +0 -762
  1359. data/doc/0.0.3/head/Rango/CLI/Templater.html +0 -258
  1360. data/doc/0.0.3/head/Rango/CallableStrategy.html +0 -300
  1361. data/doc/0.0.3/head/Rango/Chainable.html +0 -181
  1362. data/doc/0.0.3/head/Rango/Configurable.html +0 -199
  1363. data/doc/0.0.3/head/Rango/Controller.html +0 -962
  1364. data/doc/0.0.3/head/Rango/ControllerMixin.html +0 -860
  1365. data/doc/0.0.3/head/Rango/ControllerStrategy.html +0 -264
  1366. data/doc/0.0.3/head/Rango/DependencyStrategy.html +0 -116
  1367. data/doc/0.0.3/head/Rango/Dispatcher.html +0 -305
  1368. data/doc/0.0.3/head/Rango/Form.html +0 -162
  1369. data/doc/0.0.3/head/Rango/GemDependencyStrategy.html +0 -210
  1370. data/doc/0.0.3/head/Rango/Generator.html +0 -93
  1371. data/doc/0.0.3/head/Rango/GenericViews.html +0 -128
  1372. data/doc/0.0.3/head/Rango/GitDependencyStrategy.html +0 -224
  1373. data/doc/0.0.3/head/Rango/GithubDependencyStrategy.html +0 -118
  1374. data/doc/0.0.3/head/Rango/Handler.html +0 -474
  1375. data/doc/0.0.3/head/Rango/Helpers.html +0 -1335
  1376. data/doc/0.0.3/head/Rango/Hookable.html +0 -202
  1377. data/doc/0.0.3/head/Rango/ImportMixin.html +0 -755
  1378. data/doc/0.0.3/head/Rango/Logger.html +0 -920
  1379. data/doc/0.0.3/head/Rango/Mini.html +0 -117
  1380. data/doc/0.0.3/head/Rango/ModelForm.html +0 -42
  1381. data/doc/0.0.3/head/Rango/Project.html +0 -516
  1382. data/doc/0.0.3/head/Rango/RenderMixin.html +0 -23
  1383. data/doc/0.0.3/head/Rango/Request.html +0 -1177
  1384. data/doc/0.0.3/head/Rango/Route.html +0 -751
  1385. data/doc/0.0.3/head/Rango/Router.html +0 -42
  1386. data/doc/0.0.3/head/Rango/Router/Dispatcher.html +0 -311
  1387. data/doc/0.0.3/head/Rango/RouterStrategy.html +0 -258
  1388. data/doc/0.0.3/head/Rango/Session.html +0 -23
  1389. data/doc/0.0.3/head/Rango/Settings.html +0 -23
  1390. data/doc/0.0.3/head/Rango/Settings/Erubis.html +0 -23
  1391. data/doc/0.0.3/head/Rango/Settings/Framework.html +0 -254
  1392. data/doc/0.0.3/head/Rango/Settings/Haml.html +0 -23
  1393. data/doc/0.0.3/head/Rango/Settings/Template.html +0 -23
  1394. data/doc/0.0.3/head/Rango/SimpleTemplate.html +0 -187
  1395. data/doc/0.0.3/head/Rango/StrategyMixin.html +0 -261
  1396. data/doc/0.0.3/head/Rango/Tasks.html +0 -219
  1397. data/doc/0.0.3/head/Rango/Template.html +0 -95
  1398. data/doc/0.0.3/head/Rango/Template/Adapter.html +0 -90
  1399. data/doc/0.0.3/head/Rango/Templates.html +0 -116
  1400. data/doc/0.0.3/head/Rango/Templates/Adapter.html +0 -128
  1401. data/doc/0.0.3/head/Rango/Templates/Template.html +0 -636
  1402. data/doc/0.0.3/head/Rango/Templates/TemplateHelpers.html +0 -328
  1403. data/doc/0.0.3/head/RangoThor.html +0 -205
  1404. data/doc/0.0.3/head/String.html +0 -307
  1405. data/doc/0.0.3/head/Time.html +0 -193
  1406. data/doc/0.0.3/head/TimeDSL.html +0 -601
  1407. data/doc/0.0.3/head/all-methods.html +0 -1908
  1408. data/doc/0.0.3/head/all-namespaces.html +0 -114
  1409. data/doc/0.0.3/head/app.js +0 -18
  1410. data/doc/0.0.3/head/index.html +0 -18
  1411. data/doc/0.0.3/head/jquery.js +0 -11
  1412. data/doc/0.0.3/head/readme.html +0 -36
  1413. data/doc/0.0.3/head/style.css +0 -68
  1414. data/doc/0.0.3/head/syntax_highlight.css +0 -21
  1415. data/doc/0.0.3/index.html +0 -18
  1416. data/doc/0.0.3/jquery.js +0 -11
  1417. data/doc/0.0.3/readme.html +0 -36
  1418. data/doc/0.0.3/style.css +0 -68
  1419. data/doc/0.0.3/syntax_highlight.css +0 -21
  1420. data/doc/0.0.4/Array.html +0 -354
  1421. data/doc/0.0.4/AttributeMixin.html +0 -697
  1422. data/doc/0.0.4/Class.html +0 -102
  1423. data/doc/0.0.4/ColoredString.html +0 -476
  1424. data/doc/0.0.4/Enumerable.html +0 -256
  1425. data/doc/0.0.4/File.html +0 -909
  1426. data/doc/0.0.4/Hash.html +0 -1586
  1427. data/doc/0.0.4/Kernel.html +0 -956
  1428. data/doc/0.0.4/OS.html +0 -740
  1429. data/doc/0.0.4/Object.html +0 -466
  1430. data/doc/0.0.4/ObjectSpace.html +0 -184
  1431. data/doc/0.0.4/Path.html +0 -2499
  1432. data/doc/0.0.4/Range.html +0 -190
  1433. data/doc/0.0.4/Rango.html +0 -379
  1434. data/doc/0.0.4/Rango/ApplicationMixin.html +0 -396
  1435. data/doc/0.0.4/Rango/Bundling.html +0 -23
  1436. data/doc/0.0.4/Rango/Bundling/RequireStrategy.html +0 -283
  1437. data/doc/0.0.4/Rango/Bundling/Strategy.html +0 -703
  1438. data/doc/0.0.4/Rango/CLI.html +0 -23
  1439. data/doc/0.0.4/Rango/CLI/Generator.html +0 -762
  1440. data/doc/0.0.4/Rango/CLI/Templater.html +0 -258
  1441. data/doc/0.0.4/Rango/CallableStrategy.html +0 -300
  1442. data/doc/0.0.4/Rango/Chainable.html +0 -181
  1443. data/doc/0.0.4/Rango/Configurable.html +0 -199
  1444. data/doc/0.0.4/Rango/Controller.html +0 -962
  1445. data/doc/0.0.4/Rango/ControllerMixin.html +0 -860
  1446. data/doc/0.0.4/Rango/ControllerStrategy.html +0 -264
  1447. data/doc/0.0.4/Rango/DependencyStrategy.html +0 -116
  1448. data/doc/0.0.4/Rango/Dispatcher.html +0 -305
  1449. data/doc/0.0.4/Rango/Form.html +0 -162
  1450. data/doc/0.0.4/Rango/GemDependencyStrategy.html +0 -210
  1451. data/doc/0.0.4/Rango/Generator.html +0 -93
  1452. data/doc/0.0.4/Rango/GenericViews.html +0 -128
  1453. data/doc/0.0.4/Rango/GitDependencyStrategy.html +0 -224
  1454. data/doc/0.0.4/Rango/GithubDependencyStrategy.html +0 -118
  1455. data/doc/0.0.4/Rango/Handler.html +0 -474
  1456. data/doc/0.0.4/Rango/Helpers.html +0 -1335
  1457. data/doc/0.0.4/Rango/Hookable.html +0 -202
  1458. data/doc/0.0.4/Rango/ImportMixin.html +0 -755
  1459. data/doc/0.0.4/Rango/Logger.html +0 -920
  1460. data/doc/0.0.4/Rango/Mini.html +0 -117
  1461. data/doc/0.0.4/Rango/ModelForm.html +0 -42
  1462. data/doc/0.0.4/Rango/Project.html +0 -516
  1463. data/doc/0.0.4/Rango/RenderMixin.html +0 -23
  1464. data/doc/0.0.4/Rango/Request.html +0 -1177
  1465. data/doc/0.0.4/Rango/Route.html +0 -751
  1466. data/doc/0.0.4/Rango/Router.html +0 -42
  1467. data/doc/0.0.4/Rango/Router/Dispatcher.html +0 -311
  1468. data/doc/0.0.4/Rango/RouterStrategy.html +0 -258
  1469. data/doc/0.0.4/Rango/Session.html +0 -23
  1470. data/doc/0.0.4/Rango/Settings.html +0 -23
  1471. data/doc/0.0.4/Rango/Settings/Erubis.html +0 -23
  1472. data/doc/0.0.4/Rango/Settings/Framework.html +0 -254
  1473. data/doc/0.0.4/Rango/Settings/Haml.html +0 -23
  1474. data/doc/0.0.4/Rango/Settings/Template.html +0 -23
  1475. data/doc/0.0.4/Rango/SimpleTemplate.html +0 -187
  1476. data/doc/0.0.4/Rango/StrategyMixin.html +0 -261
  1477. data/doc/0.0.4/Rango/Tasks.html +0 -219
  1478. data/doc/0.0.4/Rango/Template.html +0 -95
  1479. data/doc/0.0.4/Rango/Template/Adapter.html +0 -90
  1480. data/doc/0.0.4/Rango/Templates.html +0 -116
  1481. data/doc/0.0.4/Rango/Templates/Adapter.html +0 -128
  1482. data/doc/0.0.4/Rango/Templates/Template.html +0 -636
  1483. data/doc/0.0.4/Rango/Templates/TemplateHelpers.html +0 -328
  1484. data/doc/0.0.4/RangoThor.html +0 -205
  1485. data/doc/0.0.4/String.html +0 -307
  1486. data/doc/0.0.4/Time.html +0 -193
  1487. data/doc/0.0.4/TimeDSL.html +0 -601
  1488. data/doc/0.0.4/all-methods.html +0 -1908
  1489. data/doc/0.0.4/all-namespaces.html +0 -114
  1490. data/doc/0.0.4/app.js +0 -18
  1491. data/doc/0.0.4/head/Array.html +0 -354
  1492. data/doc/0.0.4/head/AttributeMixin.html +0 -697
  1493. data/doc/0.0.4/head/Class.html +0 -102
  1494. data/doc/0.0.4/head/ColoredString.html +0 -476
  1495. data/doc/0.0.4/head/Enumerable.html +0 -256
  1496. data/doc/0.0.4/head/File.html +0 -909
  1497. data/doc/0.0.4/head/Hash.html +0 -1586
  1498. data/doc/0.0.4/head/Kernel.html +0 -956
  1499. data/doc/0.0.4/head/OS.html +0 -740
  1500. data/doc/0.0.4/head/Object.html +0 -466
  1501. data/doc/0.0.4/head/ObjectSpace.html +0 -184
  1502. data/doc/0.0.4/head/Path.html +0 -2499
  1503. data/doc/0.0.4/head/Range.html +0 -190
  1504. data/doc/0.0.4/head/Rango.html +0 -379
  1505. data/doc/0.0.4/head/Rango/ApplicationMixin.html +0 -396
  1506. data/doc/0.0.4/head/Rango/Bundling.html +0 -23
  1507. data/doc/0.0.4/head/Rango/Bundling/RequireStrategy.html +0 -283
  1508. data/doc/0.0.4/head/Rango/Bundling/Strategy.html +0 -703
  1509. data/doc/0.0.4/head/Rango/CLI.html +0 -23
  1510. data/doc/0.0.4/head/Rango/CLI/Generator.html +0 -762
  1511. data/doc/0.0.4/head/Rango/CLI/Templater.html +0 -258
  1512. data/doc/0.0.4/head/Rango/CallableStrategy.html +0 -300
  1513. data/doc/0.0.4/head/Rango/Chainable.html +0 -181
  1514. data/doc/0.0.4/head/Rango/Configurable.html +0 -199
  1515. data/doc/0.0.4/head/Rango/Controller.html +0 -962
  1516. data/doc/0.0.4/head/Rango/ControllerMixin.html +0 -860
  1517. data/doc/0.0.4/head/Rango/ControllerStrategy.html +0 -264
  1518. data/doc/0.0.4/head/Rango/DependencyStrategy.html +0 -116
  1519. data/doc/0.0.4/head/Rango/Dispatcher.html +0 -305
  1520. data/doc/0.0.4/head/Rango/Form.html +0 -162
  1521. data/doc/0.0.4/head/Rango/GemDependencyStrategy.html +0 -210
  1522. data/doc/0.0.4/head/Rango/Generator.html +0 -93
  1523. data/doc/0.0.4/head/Rango/GenericViews.html +0 -128
  1524. data/doc/0.0.4/head/Rango/GitDependencyStrategy.html +0 -224
  1525. data/doc/0.0.4/head/Rango/GithubDependencyStrategy.html +0 -118
  1526. data/doc/0.0.4/head/Rango/Handler.html +0 -474
  1527. data/doc/0.0.4/head/Rango/Helpers.html +0 -1335
  1528. data/doc/0.0.4/head/Rango/Hookable.html +0 -202
  1529. data/doc/0.0.4/head/Rango/ImportMixin.html +0 -755
  1530. data/doc/0.0.4/head/Rango/Logger.html +0 -920
  1531. data/doc/0.0.4/head/Rango/Mini.html +0 -117
  1532. data/doc/0.0.4/head/Rango/ModelForm.html +0 -42
  1533. data/doc/0.0.4/head/Rango/Project.html +0 -516
  1534. data/doc/0.0.4/head/Rango/RenderMixin.html +0 -23
  1535. data/doc/0.0.4/head/Rango/Request.html +0 -1177
  1536. data/doc/0.0.4/head/Rango/Route.html +0 -751
  1537. data/doc/0.0.4/head/Rango/Router.html +0 -42
  1538. data/doc/0.0.4/head/Rango/Router/Dispatcher.html +0 -311
  1539. data/doc/0.0.4/head/Rango/RouterStrategy.html +0 -258
  1540. data/doc/0.0.4/head/Rango/Session.html +0 -23
  1541. data/doc/0.0.4/head/Rango/Settings.html +0 -23
  1542. data/doc/0.0.4/head/Rango/Settings/Erubis.html +0 -23
  1543. data/doc/0.0.4/head/Rango/Settings/Framework.html +0 -254
  1544. data/doc/0.0.4/head/Rango/Settings/Haml.html +0 -23
  1545. data/doc/0.0.4/head/Rango/Settings/Template.html +0 -23
  1546. data/doc/0.0.4/head/Rango/SimpleTemplate.html +0 -187
  1547. data/doc/0.0.4/head/Rango/StrategyMixin.html +0 -261
  1548. data/doc/0.0.4/head/Rango/Tasks.html +0 -219
  1549. data/doc/0.0.4/head/Rango/Template.html +0 -95
  1550. data/doc/0.0.4/head/Rango/Template/Adapter.html +0 -90
  1551. data/doc/0.0.4/head/Rango/Templates.html +0 -116
  1552. data/doc/0.0.4/head/Rango/Templates/Adapter.html +0 -128
  1553. data/doc/0.0.4/head/Rango/Templates/Template.html +0 -636
  1554. data/doc/0.0.4/head/Rango/Templates/TemplateHelpers.html +0 -328
  1555. data/doc/0.0.4/head/RangoThor.html +0 -205
  1556. data/doc/0.0.4/head/String.html +0 -307
  1557. data/doc/0.0.4/head/Time.html +0 -193
  1558. data/doc/0.0.4/head/TimeDSL.html +0 -601
  1559. data/doc/0.0.4/head/all-methods.html +0 -1908
  1560. data/doc/0.0.4/head/all-namespaces.html +0 -114
  1561. data/doc/0.0.4/head/app.js +0 -18
  1562. data/doc/0.0.4/head/index.html +0 -18
  1563. data/doc/0.0.4/head/jquery.js +0 -11
  1564. data/doc/0.0.4/head/readme.html +0 -36
  1565. data/doc/0.0.4/head/style.css +0 -68
  1566. data/doc/0.0.4/head/syntax_highlight.css +0 -21
  1567. data/doc/0.0.4/index.html +0 -18
  1568. data/doc/0.0.4/jquery.js +0 -11
  1569. data/doc/0.0.4/readme.html +0 -36
  1570. data/doc/0.0.4/style.css +0 -68
  1571. data/doc/0.0.4/syntax_highlight.css +0 -21
  1572. data/doc/head/Array.html +0 -354
  1573. data/doc/head/AttributeMixin.html +0 -697
  1574. data/doc/head/Class.html +0 -102
  1575. data/doc/head/ColoredString.html +0 -476
  1576. data/doc/head/Enumerable.html +0 -256
  1577. data/doc/head/File.html +0 -909
  1578. data/doc/head/Hash.html +0 -1586
  1579. data/doc/head/Kernel.html +0 -956
  1580. data/doc/head/OS.html +0 -740
  1581. data/doc/head/Object.html +0 -466
  1582. data/doc/head/ObjectSpace.html +0 -184
  1583. data/doc/head/Path.html +0 -2499
  1584. data/doc/head/Range.html +0 -190
  1585. data/doc/head/Rango.html +0 -379
  1586. data/doc/head/Rango/ApplicationMixin.html +0 -396
  1587. data/doc/head/Rango/Bundling.html +0 -23
  1588. data/doc/head/Rango/Bundling/RequireStrategy.html +0 -283
  1589. data/doc/head/Rango/Bundling/Strategy.html +0 -703
  1590. data/doc/head/Rango/CLI.html +0 -23
  1591. data/doc/head/Rango/CLI/Generator.html +0 -762
  1592. data/doc/head/Rango/CLI/Templater.html +0 -258
  1593. data/doc/head/Rango/CallableStrategy.html +0 -300
  1594. data/doc/head/Rango/Chainable.html +0 -181
  1595. data/doc/head/Rango/Configurable.html +0 -199
  1596. data/doc/head/Rango/Controller.html +0 -962
  1597. data/doc/head/Rango/ControllerMixin.html +0 -860
  1598. data/doc/head/Rango/ControllerStrategy.html +0 -264
  1599. data/doc/head/Rango/DependencyStrategy.html +0 -116
  1600. data/doc/head/Rango/Dispatcher.html +0 -305
  1601. data/doc/head/Rango/Form.html +0 -162
  1602. data/doc/head/Rango/GemDependencyStrategy.html +0 -210
  1603. data/doc/head/Rango/Generator.html +0 -93
  1604. data/doc/head/Rango/GenericViews.html +0 -128
  1605. data/doc/head/Rango/GitDependencyStrategy.html +0 -224
  1606. data/doc/head/Rango/GithubDependencyStrategy.html +0 -118
  1607. data/doc/head/Rango/Handler.html +0 -474
  1608. data/doc/head/Rango/Helpers.html +0 -1335
  1609. data/doc/head/Rango/Hookable.html +0 -202
  1610. data/doc/head/Rango/ImportMixin.html +0 -755
  1611. data/doc/head/Rango/Logger.html +0 -920
  1612. data/doc/head/Rango/Mini.html +0 -117
  1613. data/doc/head/Rango/ModelForm.html +0 -42
  1614. data/doc/head/Rango/Project.html +0 -516
  1615. data/doc/head/Rango/RenderMixin.html +0 -23
  1616. data/doc/head/Rango/Request.html +0 -1177
  1617. data/doc/head/Rango/Route.html +0 -751
  1618. data/doc/head/Rango/Router.html +0 -42
  1619. data/doc/head/Rango/Router/Dispatcher.html +0 -311
  1620. data/doc/head/Rango/RouterStrategy.html +0 -258
  1621. data/doc/head/Rango/Session.html +0 -23
  1622. data/doc/head/Rango/Settings.html +0 -23
  1623. data/doc/head/Rango/Settings/Erubis.html +0 -23
  1624. data/doc/head/Rango/Settings/Framework.html +0 -254
  1625. data/doc/head/Rango/Settings/Haml.html +0 -23
  1626. data/doc/head/Rango/Settings/Template.html +0 -23
  1627. data/doc/head/Rango/SimpleTemplate.html +0 -187
  1628. data/doc/head/Rango/StrategyMixin.html +0 -261
  1629. data/doc/head/Rango/Tasks.html +0 -219
  1630. data/doc/head/Rango/Template.html +0 -95
  1631. data/doc/head/Rango/Template/Adapter.html +0 -90
  1632. data/doc/head/Rango/Templates.html +0 -116
  1633. data/doc/head/Rango/Templates/Adapter.html +0 -128
  1634. data/doc/head/Rango/Templates/Template.html +0 -636
  1635. data/doc/head/Rango/Templates/TemplateHelpers.html +0 -328
  1636. data/doc/head/RangoThor.html +0 -205
  1637. data/doc/head/String.html +0 -307
  1638. data/doc/head/Time.html +0 -193
  1639. data/doc/head/TimeDSL.html +0 -601
  1640. data/doc/head/all-methods.html +0 -1908
  1641. data/doc/head/all-namespaces.html +0 -114
  1642. data/doc/head/app.js +0 -18
  1643. data/doc/head/index.html +0 -18
  1644. data/doc/head/jquery.js +0 -11
  1645. data/doc/head/readme.html +0 -36
  1646. data/doc/head/style.css +0 -68
  1647. data/doc/head/syntax_highlight.css +0 -21
  1648. data/doc/versions/0.0.1/Rango.html +0 -1025
  1649. data/doc/versions/0.0.1/Rango/CallableStrategy.html +0 -166
  1650. data/doc/versions/0.0.1/Rango/ControllerStrategy.html +0 -180
  1651. data/doc/versions/0.0.1/Rango/Route.html +0 -340
  1652. data/doc/versions/0.0.1/Rango/Router.html +0 -502
  1653. data/doc/versions/0.0.1/Rango/RouterStrategy.html +0 -94
  1654. data/doc/versions/0.0.1/Rango/Template.html +0 -28
  1655. data/doc/versions/0.0.1/Rango/Template/Adapter.html +0 -90
  1656. data/doc/versions/0.0.1/all-methods.html +0 -228
  1657. data/doc/versions/0.0.1/all-namespaces.html +0 -36
  1658. data/doc/versions/0.0.1/app.js +0 -18
  1659. data/doc/versions/0.0.1/index.html +0 -18
  1660. data/doc/versions/0.0.1/jquery.js +0 -11
  1661. data/doc/versions/0.0.1/readme.html +0 -137
  1662. data/doc/versions/0.0.1/style.css +0 -68
  1663. data/doc/versions/0.0.1/syntax_highlight.css +0 -21
  1664. data/features/TODO.txt +0 -5
  1665. data/features/generators/app.feature +0 -11
  1666. data/features/generators_steps.rb +0 -26
  1667. data/features/shared/then_steps.rb +0 -1
  1668. data/features/shared/when_steps.rb +0 -1
  1669. data/features/support/env.rb +0 -64
  1670. data/lib/rango/bundling/dependency.rb +0 -61
  1671. data/lib/rango/bundling/strategies/copy.rb +0 -36
  1672. data/lib/rango/bundling/strategies/gem.rb +0 -55
  1673. data/lib/rango/bundling/strategies/git.rb +0 -71
  1674. data/lib/rango/bundling/strategies/hg.rb +0 -9
  1675. data/lib/rango/bundling/strategy.rb +0 -85
  1676. data/lib/rango/cli/generator.rb +0 -122
  1677. data/lib/rango/cli/templater.rb +0 -89
  1678. data/lib/rango/ext.rb +0 -85
  1679. data/lib/rango/ext/attribute.rb +0 -152
  1680. data/lib/rango/ext/colored_string.rb +0 -105
  1681. data/lib/rango/ext/kernel.rb +0 -91
  1682. data/lib/rango/ext/platform.rb +0 -27
  1683. data/lib/rango/ext/string.rb +0 -30
  1684. data/lib/rango/ext/thor.rb +0 -32
  1685. data/lib/rango/ext/unique_array.rb +0 -16
  1686. data/lib/rango/generic_views.rb +0 -18
  1687. data/lib/rango/mixins/controller.rb +0 -114
  1688. data/lib/rango/orm/adapters/datamapper/setup.rb +0 -16
  1689. data/lib/rango/orm/adapters/datamapper/tasks.thor +0 -41
  1690. data/lib/rango/orm/adapters/datamapper/types/unicode_string.rb +0 -15
  1691. data/lib/rango/tasks/bundle.thor +0 -28
  1692. data/lib/rango/tasks/stats.thor +0 -1
  1693. data/rango.gemspec.erb +0 -43
  1694. data/spec/rango/ext/array_spec.rb +0 -19
  1695. data/spec/rango/ext/attribute_spec.rb +0 -37
  1696. data/spec/rango/ext/colored_string_spec.rb +0 -9
  1697. data/spec/rango/ext/enumerable_spec.rb +0 -52
  1698. data/spec/rango/ext/file_spec.rb +0 -78
  1699. data/spec/rango/ext/hash_spec.rb +0 -91
  1700. data/spec/rango/ext/kernel_spec.rb +0 -9
  1701. data/spec/rango/ext/object_space_spec.rb +0 -17
  1702. data/spec/rango/ext/object_spec.rb +0 -57
  1703. data/spec/rango/ext/os_spec.rb +0 -121
  1704. data/spec/rango/ext/random_spec.rb +0 -31
  1705. data/spec/rango/ext/string_spec.rb +0 -23
  1706. data/spec/rango/ext/thor_spec.rb +0 -26
  1707. data/spec/rango/ext/time_dsl_spec.rb +0 -86
  1708. data/spec/rango/ext/time_spec.rb +0 -11
  1709. data/spec/rango/ext_spec.rb +0 -182
  1710. data/spec/rango/helpers/spec/fixture/app/controllers/numeric_ext_spec.rb +0 -0
  1711. data/spec/rango/helpers/spec/fixture/app/controllers/option_tag_spec.rb +0 -0
  1712. data/spec/rango/helpers/spec/fixture/app/controllers/password_field_spec.rb +0 -0
  1713. data/spec/rango/helpers/spec/fixture/app/controllers/radio_button_spec.rb +0 -0
  1714. data/spec/rango/helpers/spec/fixture/app/controllers/radio_group_spec.rb +0 -0
  1715. data/spec/rango/helpers/spec/fixture/app/controllers/relative_date_span_spec.rb +0 -0
  1716. data/spec/rango/helpers/spec/fixture/app/controllers/relative_date_spec.rb +0 -0
  1717. data/spec/rango/helpers/spec/fixture/app/controllers/select_spec.rb +0 -0
  1718. data/spec/rango/helpers/spec/fixture/app/controllers/specs_controller_spec.rb +0 -0
  1719. data/spec/rango/helpers/spec/fixture/app/controllers/submit_spec.rb +0 -0
  1720. data/spec/rango/helpers/spec/fixture/app/controllers/tag_helper_spec.rb +0 -0
  1721. data/spec/rango/helpers/spec/fixture/app/controllers/text_area_spec.rb +0 -0
  1722. data/spec/rango/helpers/spec/fixture/app/controllers/text_field_spec.rb +0 -0
  1723. data/spec/rango/helpers/spec/fixture/app/helpers/global_helpers_spec.rb +0 -0
  1724. data/spec/rango/helpers/spec/fixture/app/models/fake_dm_model_spec.rb +0 -0
  1725. data/spec/rango/helpers/spec/fixture/app/models/first_generic_fake_model_spec.rb +0 -0
  1726. data/spec/rango/helpers/spec/fixture/app/models/hacker_generic_model_spec.rb +0 -0
  1727. data/spec/rango/helpers/spec/fixture/app/models/second_generic_fake_model_spec.rb +0 -0
  1728. data/spec/rango/helpers/spec/fixture/app/models/third_generic_fake_model_spec.rb +0 -0
  1729. data/spec/rango/helpers/spec/fixture/config/environments/development_spec.rb +0 -0
  1730. data/spec/rango/helpers/spec/fixture/config/environments/production_spec.rb +0 -0
  1731. data/spec/rango/helpers/spec/fixture/config/environments/test_spec.rb +0 -0
  1732. data/spec/rango/helpers/spec/fixture/config/init_spec.rb +0 -0
  1733. data/spec/rango/helpers/spec/fixture/config/rack_spec.rb +0 -0
  1734. data/spec/rango/helpers/spec/merb_helpers_config_spec_spec.rb +0 -0
  1735. data/spec/rango/helpers/spec/merb_helpers_date_time_spec_spec.rb +0 -0
  1736. data/spec/rango/helpers/spec/merb_helpers_form_spec_spec.rb +0 -0
  1737. data/spec/rango/helpers/spec/merb_helpers_tag_helper_spec_spec.rb +0 -0
  1738. data/spec/rango/helpers/spec/merb_helpers_text_spec_spec.rb +0 -0
  1739. data/spec/rango/helpers/spec/numeric_extlib_spec_spec.rb +0 -0
  1740. data/spec/rango/helpers/spec/ordinalize_spec_spec.rb +0 -0
  1741. data/spec/rango/helpers/spec/spec_helper_spec.rb +0 -0
  1742. data/spec/rango/helpers/spec/time_dsl_spec_spec.rb +0 -0
  1743. data/spec/rango/mixins/controller_spec.rb +0 -0
  1744. data/spec/rango/orm/adapters/datamapper/setup_spec.rb +0 -0
  1745. data/spec/rango/orm/adapters/datamapper/types/unicode_string_spec.rb +0 -0
  1746. data/spec/rango/router/adapters/basic_spec.rb +0 -0
  1747. data/spec/rango/router/adapters/rack-router_spec.rb +0 -0
  1748. data/spec/rango/router/dispatcher_spec.rb +0 -0
  1749. data/stubs/app/preprocess.rb +0 -14
  1750. data/stubs/bigapp/preprocess.rb +0 -5
  1751. data/stubs/flat/preprocess.rb +0 -5
  1752. data/stubs/project/content/TODO +0 -0
  1753. data/stubs/project/content/Thorfile +0 -12
  1754. data/stubs/project/content/config.ru +0 -33
  1755. data/stubs/project/content/init.rb +0 -24
  1756. data/stubs/project/content/settings.rb.rbt +0 -10
  1757. data/stubs/pupu/content/CHANGELOG +0 -0
  1758. data/stubs/pupu/content/LICENSE.rbt +0 -20
  1759. data/stubs/pupu/content/README.textile.rbt +0 -7
  1760. data/stubs/pupu/content/TODO +0 -5
  1761. data/stubs/pupu/content/Thorfile.rbt +0 -21
  1762. data/stubs/pupu/content/config.rb.rbt +0 -14
  1763. data/stubs/pupu/content/initializers/%name%.css +0 -0
  1764. data/stubs/pupu/content/initializers/%name%.js +0 -3
  1765. data/stubs/pupu/content/javascripts/%name%.js +0 -0
  1766. data/stubs/pupu/content/stylesheets/%name%.css +0 -0
  1767. data/stubs/pupu/metadata.yml +0 -4
  1768. data/stubs/pupu/preprocess.rb +0 -7
  1769. data/stubs/stub/content/metadata.yml +0 -4
  1770. data/stubs/stub/content/postprocess.rb +0 -5
  1771. data/stubs/stub/content/preprocess.rb +0 -5
  1772. data/stubs/stub/metadata.yml +0 -4
  1773. data/templates.txt +0 -39
@@ -0,0 +1,1234 @@
1
+ require File.expand_path(File.join(File.dirname(__FILE__), 'spec_helper'))
2
+
3
+ describe Extlib::Hook do
4
+
5
+ before do
6
+ @module = Module.new do
7
+ def greet; greetings_from_module; end;
8
+ end
9
+
10
+ @class = Class.new do
11
+ include Extlib::Hook
12
+
13
+ def hookable; end;
14
+ def self.clakable; end;
15
+ def ambiguous; hi_mom!; end;
16
+ def self.ambiguous; hi_dad!; end;
17
+ end
18
+
19
+ @another_class = Class.new do
20
+ include Extlib::Hook
21
+ end
22
+
23
+ @other = Class.new do
24
+ include Extlib::Hook
25
+
26
+ def hookable; end
27
+ def self.clakable; end;
28
+ end
29
+
30
+ @class.register_instance_hooks :hookable
31
+ @class.register_class_hooks :clakable
32
+ end
33
+
34
+ #
35
+ # Specs out how hookable methods are registered
36
+ #
37
+ describe "explicit hookable method registration" do
38
+
39
+ describe "for class methods" do
40
+
41
+ it "shouldn't confuse instance method hooks and class method hooks" do
42
+ @class.register_instance_hooks :ambiguous
43
+ @class.register_class_hooks :ambiguous
44
+
45
+ @class.should_receive(:hi_dad!)
46
+ @class.ambiguous
47
+ end
48
+
49
+ it "should be able to register multiple hookable methods at once" do
50
+ %w(method_one method_two method_three).each do |method|
51
+ @another_class.class_eval %(def self.#{method}; end;)
52
+ end
53
+
54
+ @another_class.register_class_hooks :method_one, :method_two, :method_three
55
+ @another_class.class_hooks.should have_key(:method_one)
56
+ @another_class.class_hooks.should have_key(:method_two)
57
+ @another_class.class_hooks.should have_key(:method_three)
58
+ end
59
+
60
+ it "should not allow a method that does not exist to be registered as hookable" do
61
+ lambda { @another_class.register_class_hooks :method_one }.should raise_error(ArgumentError)
62
+ end
63
+
64
+ it "should allow hooks to be registered on methods from module extensions" do
65
+ @class.extend(@module)
66
+ @class.register_class_hooks :greet
67
+ @class.class_hooks[:greet].should_not be_nil
68
+ end
69
+
70
+ it "should allow modules to register hooks in the self.extended method" do
71
+ @module.class_eval do
72
+ def self.extended(base)
73
+ base.register_class_hooks :greet
74
+ end
75
+ end
76
+ @class.extend(@module)
77
+ @class.class_hooks[:greet].should_not be_nil
78
+ end
79
+
80
+ it "should be able to register protected methods as hooks" do
81
+ @class.class_eval %{protected; def self.protected_hookable; end;}
82
+ lambda { @class.register_class_hooks(:protected_hookable) }.should_not raise_error(ArgumentError)
83
+ end
84
+
85
+ it "should not be able to register private methods as hooks" do
86
+ @class.class_eval %{class << self; private; def private_hookable; end; end;}
87
+ lambda { @class.register_class_hooks(:private_hookable) }.should raise_error(ArgumentError)
88
+ end
89
+
90
+ it "should allow advising methods ending in ? or !" do
91
+ @class.class_eval do
92
+ def self.hookable!; two!; end;
93
+ def self.hookable?; three!; end;
94
+ register_class_hooks :hookable!, :hookable?
95
+ end
96
+ @class.before_class_method(:hookable!) { one! }
97
+ @class.after_class_method(:hookable?) { four! }
98
+
99
+ @class.should_receive(:one!).once.ordered
100
+ @class.should_receive(:two!).once.ordered
101
+ @class.should_receive(:three!).once.ordered
102
+ @class.should_receive(:four!).once.ordered
103
+
104
+ @class.hookable!
105
+ @class.hookable?
106
+ end
107
+
108
+ it "should allow hooking methods ending in ?, ! or = with method hooks" do
109
+ @class.class_eval do
110
+ def self.before_hookable!; one!; end;
111
+ def self.hookable!; two!; end;
112
+ def self.hookable?; three!; end;
113
+ def self.after_hookable?; four!; end;
114
+ register_class_hooks :hookable!, :hookable?
115
+ end
116
+ @class.before_class_method(:hookable!, :before_hookable!)
117
+ @class.after_class_method(:hookable?, :after_hookable?)
118
+
119
+ @class.should_receive(:one!).once.ordered
120
+ @class.should_receive(:two!).once.ordered
121
+ @class.should_receive(:three!).once.ordered
122
+ @class.should_receive(:four!).once.ordered
123
+
124
+ @class.hookable!
125
+ @class.hookable?
126
+ end
127
+
128
+ it "should allow hooking methods that have single character names" do
129
+ @class.class_eval do
130
+ def self.a; end;
131
+ def self.b; end;
132
+ end
133
+
134
+ @class.before_class_method(:a) { omg! }
135
+ @class.before_class_method(:b) { hi2u! }
136
+
137
+ @class.should_receive(:omg!).once.ordered
138
+ @class.should_receive(:hi2u!).once.ordered
139
+ @class.a
140
+ @class.b
141
+ end
142
+ end
143
+
144
+ describe "for instance methods" do
145
+
146
+ it "shouldn't confuse instance method hooks and class method hooks" do
147
+ @class.register_instance_hooks :ambiguous
148
+ @class.register_class_hooks :ambiguous
149
+
150
+ inst = @class.new
151
+ inst.should_receive(:hi_mom!)
152
+ inst.ambiguous
153
+ end
154
+
155
+ it "should be able to register multiple hookable methods at once" do
156
+ %w(method_one method_two method_three).each do |method|
157
+ @another_class.send(:define_method, method) {}
158
+ end
159
+
160
+ @another_class.register_instance_hooks :method_one, :method_two, :method_three
161
+ @another_class.instance_hooks.should have_key(:method_one)
162
+ @another_class.instance_hooks.should have_key(:method_two)
163
+ @another_class.instance_hooks.should have_key(:method_three)
164
+ end
165
+
166
+ it "should not allow a method that does not exist to be registered as hookable" do
167
+ lambda { @another_class.register_instance_hooks :method_one }.should raise_error(ArgumentError)
168
+ end
169
+
170
+ it "should allow hooks to be registered on included module methods" do
171
+ @class.send(:include, @module)
172
+ @class.register_instance_hooks :greet
173
+ @class.instance_hooks[:greet].should_not be_nil
174
+ end
175
+
176
+ it "should allow modules to register hooks in the self.included method" do
177
+ @module.class_eval do
178
+ def self.included(base)
179
+ base.register_instance_hooks :greet
180
+ end
181
+ end
182
+ @class.send(:include, @module)
183
+ @class.instance_hooks[:greet].should_not be_nil
184
+ end
185
+
186
+ it "should be able to register protected methods as hooks" do
187
+ @class.class_eval %{protected; def protected_hookable; end;}
188
+ lambda { @class.register_instance_hooks(:protected_hookable) }.should_not raise_error(ArgumentError)
189
+ end
190
+
191
+ it "should not be able to register private methods as hooks" do
192
+ @class.class_eval %{private; def private_hookable; end;}
193
+ lambda { @class.register_instance_hooks(:private_hookable) }.should raise_error(ArgumentError)
194
+ end
195
+
196
+ it "should allow hooking methods ending in ? or ! with block hooks" do
197
+ @class.class_eval do
198
+ def hookable!; two!; end;
199
+ def hookable?; three!; end;
200
+ register_instance_hooks :hookable!, :hookable?
201
+ end
202
+ @class.before(:hookable!) { one! }
203
+ @class.after(:hookable?) { four! }
204
+
205
+ inst = @class.new
206
+ inst.should_receive(:one!).once.ordered
207
+ inst.should_receive(:two!).once.ordered
208
+ inst.should_receive(:three!).once.ordered
209
+ inst.should_receive(:four!).once.ordered
210
+
211
+ inst.hookable!
212
+ inst.hookable?
213
+ end
214
+
215
+ it "should allow hooking methods ending in ?, ! or = with method hooks" do
216
+ @class.class_eval do
217
+ def before_hookable(val); one!; end;
218
+ def hookable=(val); two!; end;
219
+ def hookable?; three!; end;
220
+ def after_hookable?; four!; end;
221
+ register_instance_hooks :hookable=, :hookable?
222
+ end
223
+ @class.before(:hookable=, :before_hookable)
224
+ @class.after(:hookable?, :after_hookable?)
225
+
226
+ inst = @class.new
227
+ inst.should_receive(:one!).once.ordered
228
+ inst.should_receive(:two!).once.ordered
229
+ inst.should_receive(:three!).once.ordered
230
+ inst.should_receive(:four!).once.ordered
231
+
232
+ inst.hookable = 'hello'
233
+ inst.hookable?
234
+ end
235
+
236
+ it "should allow hooking methods that have single character names" do
237
+ @class.class_eval do
238
+ def a; end;
239
+ def b; end;
240
+ end
241
+
242
+ @class.before(:a) { omg! }
243
+ @class.before(:b) { hi2u! }
244
+
245
+ inst = @class.new
246
+ inst.should_receive(:omg!).once.ordered
247
+ inst.should_receive(:hi2u!).once.ordered
248
+ inst.a
249
+ inst.b
250
+ end
251
+ end
252
+
253
+ end
254
+
255
+ describe "implicit hookable method registration" do
256
+
257
+ describe "for class methods" do
258
+ it "should implicitly register the method as hookable" do
259
+ @class.class_eval %{def self.implicit_hook; end;}
260
+ @class.before_class_method(:implicit_hook) { hello }
261
+
262
+ @class.should_receive(:hello)
263
+ @class.implicit_hook
264
+ end
265
+ end
266
+
267
+ describe "for instance methods" do
268
+ it "should implicitly register the method as hookable" do
269
+ @class.class_eval %{def implicit_hook; end;}
270
+ @class.before(:implicit_hook) { hello }
271
+
272
+ inst = @class.new
273
+ inst.should_receive(:hello)
274
+ inst.implicit_hook
275
+ end
276
+
277
+ it 'should not overwrite methods included by modules after the hook is declared' do
278
+ my_module = Module.new do
279
+ # Just another module
280
+ @another_module = Module.new do
281
+ def some_method; "Hello " + super; end;
282
+ end
283
+
284
+ def some_method; "world"; end;
285
+
286
+ def self.included(base)
287
+ base.before(:some_method, :a_method)
288
+ base.send(:include, @another_module)
289
+ end
290
+ end
291
+
292
+ @class.class_eval { include my_module }
293
+
294
+ inst = @class.new
295
+ inst.should_receive(:a_method)
296
+ inst.some_method.should == "Hello world"
297
+ end
298
+ end
299
+
300
+ end
301
+
302
+ describe "hook method registration" do
303
+
304
+ describe "for class methods" do
305
+ it "should complain when only one argument is passed" do
306
+ lambda { @class.before_class_method(:clakable) }.should raise_error(ArgumentError)
307
+ lambda { @class.after_class_method(:clakable) }.should raise_error(ArgumentError)
308
+ end
309
+
310
+ it "should complain when target_method is not a symbol" do
311
+ lambda { @class.before_class_method("clakable", :ambiguous) }.should raise_error(ArgumentError)
312
+ lambda { @class.after_class_method("clakable", :ambiguous) }.should raise_error(ArgumentError)
313
+ end
314
+
315
+ it "should complain when method_sym is not a symbol" do
316
+ lambda { @class.before_class_method(:clakable, "ambiguous") }.should raise_error(ArgumentError)
317
+ lambda { @class.after_class_method(:clakable, "ambiguous") }.should raise_error(ArgumentError)
318
+ end
319
+
320
+ it "should not allow methods ending in = to be hooks" do
321
+ lambda { @class.before_class_method(:clakable, :annoying=) }.should raise_error(ArgumentError)
322
+ lambda { @class.after_class_method(:clakable, :annoying=) }.should raise_error(ArgumentError)
323
+ end
324
+ end
325
+
326
+ describe "for instance methods" do
327
+ it "should complain when only one argument is passed" do
328
+ lambda { @class.before(:hookable) }.should raise_error(ArgumentError)
329
+ lambda { @class.after(:hookable) }.should raise_error(ArgumentError)
330
+ end
331
+
332
+ it "should complain when target_method is not a symbol" do
333
+ lambda { @class.before("hookable", :ambiguous) }.should raise_error(ArgumentError)
334
+ lambda { @class.after("hookable", :ambiguous) }.should raise_error(ArgumentError)
335
+ end
336
+
337
+ it "should complain when method_sym is not a symbol" do
338
+ lambda { @class.before(:hookable, "ambiguous") }.should raise_error(ArgumentError)
339
+ lambda { @class.after(:hookable, "ambiguous") }.should raise_error(ArgumentError)
340
+ end
341
+
342
+ it "should not allow methods ending in = to be hooks" do
343
+ lambda { @class.before(:hookable, :annoying=) }.should raise_error(ArgumentError)
344
+ lambda { @class.after(:hookable, :annoying=) }.should raise_error(ArgumentError)
345
+ end
346
+ end
347
+
348
+ end
349
+
350
+ #
351
+ # Specs out how hook methods / blocks are invoked when there is no inheritance
352
+ # involved
353
+ #
354
+ describe "hook invocation without inheritance" do
355
+
356
+ describe "for class methods" do
357
+ it 'should run an advice block' do
358
+ @class.before_class_method(:clakable) { hi_mom! }
359
+ @class.should_receive(:hi_mom!)
360
+ @class.clakable
361
+ end
362
+
363
+ it 'should run an advice method' do
364
+ @class.class_eval %{def self.before_method; hi_mom!; end;}
365
+ @class.before_class_method(:clakable, :before_method)
366
+
367
+ @class.should_receive(:hi_mom!)
368
+ @class.clakable
369
+ end
370
+
371
+ it "should not pass any of the hookable method's arguments if the hook block does not accept arguments" do
372
+ @class.class_eval do
373
+ def self.method_with_args(one, two, three); end;
374
+ before_class_method(:method_with_args) { hi_mom! }
375
+ end
376
+
377
+ @class.should_receive(:hi_mom!)
378
+ @class.method_with_args(1, 2, 3)
379
+ end
380
+
381
+ it "should not pass any of the hookable method's arguments if the hook method does not accept arguments" do
382
+ @class.class_eval do
383
+ def self.method_with_args(one, two, three); end;
384
+ def self.before_method_with_args; hi_mom!; end;
385
+ before_class_method(:method_with_args, :before_method_with_args)
386
+ end
387
+
388
+ @class.should_receive(:hi_mom!)
389
+ @class.method_with_args(1, 2, 3)
390
+ end
391
+
392
+ it "should not pass any of the hookable method's arguments if the hook is declared after it is registered and does not accept arguments" do
393
+ @class.class_eval do
394
+ def self.method_with_args(one, two, three); end;
395
+ before_class_method(:method_with_args, :before_method_with_args)
396
+ def self.before_method_with_args; hi_mom!; end;
397
+ end
398
+
399
+ @class.should_receive(:hi_mom!)
400
+ @class.method_with_args(1, 2, 3)
401
+ end
402
+
403
+ it "should not pass any of the hookable method's arguments if the hook has been re-defined not to accept arguments" do
404
+ @class.class_eval do
405
+ def self.method_with_args(one, two, three); end;
406
+ def self.before_method_with_args(one, two, three); hi_mom!; end;
407
+ before_class_method(:method_with_args, :before_method_with_args)
408
+ orig_verbose, $VERBOSE = $VERBOSE, false
409
+ def self.before_method_with_args; hi_dad!; end;
410
+ $VERBOSE = orig_verbose
411
+ end
412
+
413
+ @class.should_not_receive(:hi_mom1)
414
+ @class.should_receive(:hi_dad!)
415
+ @class.method_with_args(1, 2, 3)
416
+ end
417
+
418
+ it 'should pass the hookable method arguments to the hook method if the hook method takes arguments' do
419
+ @class.class_eval do
420
+ def self.hook_this(word, lol); end;
421
+ register_class_hooks(:hook_this)
422
+ def self.before_hook_this(word, lol); hi_mom!(word, lol); end;
423
+ before_class_method(:hook_this, :before_hook_this)
424
+ end
425
+
426
+ @class.should_receive(:hi_mom!).with("omg", "hi2u")
427
+ @class.hook_this("omg", "hi2u")
428
+ end
429
+
430
+ it "should pass the hookable method arguments to the hook block if the hook block takes arguments" do
431
+ @class.class_eval do
432
+ def self.method_with_args(word, lol); end;
433
+ before_class_method(:method_with_args) { |one, two| hi_mom!(one, two) }
434
+ end
435
+
436
+ @class.should_receive(:hi_mom!).with('omg', 'hi2u')
437
+ @class.method_with_args('omg', 'hi2u')
438
+ end
439
+
440
+ it 'should pass the hookable method arguments to the hook method if the hook method was re-defined to accept arguments' do
441
+ @class.class_eval do
442
+ def self.method_with_args(word, lol); end;
443
+ def self.before_method_with_args; hi_mom!; end;
444
+ before_class_method(:method_with_args, :before_method_with_args)
445
+ orig_verbose, $VERBOSE = $VERBOSE, false
446
+ def self.before_method_with_args(word, lol); hi_dad!(word, lol); end;
447
+ $VERBOSE = orig_verbose
448
+ end
449
+
450
+ @class.should_not_receive(:hi_mom!)
451
+ @class.should_receive(:hi_dad!).with("omg", "hi2u")
452
+ @class.method_with_args("omg", "hi2u")
453
+ end
454
+
455
+ it 'should work with glob arguments (or whatever you call em)' do
456
+ @class.class_eval do
457
+ def self.hook_this(*args); end;
458
+ def self.before_hook_this(*args); hi_mom!(*args); end;
459
+ before_class_method(:hook_this, :before_hook_this)
460
+ end
461
+
462
+ @class.should_receive(:hi_mom!).with("omg", "hi2u", "lolercoaster")
463
+ @class.hook_this("omg", "hi2u", "lolercoaster")
464
+ end
465
+
466
+ it 'should allow the use of before and after together' do
467
+ @class.class_eval %{def self.before_hook; first!; end;}
468
+ @class.before_class_method(:clakable, :before_hook)
469
+ @class.after_class_method(:clakable) { last! }
470
+
471
+ @class.should_receive(:first!).once.ordered
472
+ @class.should_receive(:last!).once.ordered
473
+ @class.clakable
474
+ end
475
+
476
+ it 'should be able to use private methods as hooks' do
477
+ @class.class_eval do
478
+ class << self
479
+ private
480
+ def nike; doit!; end;
481
+ end
482
+ before_class_method(:clakable, :nike)
483
+ end
484
+
485
+ @class.should_receive(:doit!)
486
+ @class.clakable
487
+ end
488
+ end
489
+
490
+ describe "for instance methods" do
491
+ it 'should run an advice block' do
492
+ @class.before(:hookable) { hi_mom! }
493
+
494
+ inst = @class.new
495
+ inst.should_receive(:hi_mom!)
496
+ inst.hookable
497
+ end
498
+
499
+ it 'should run an advice method' do
500
+ @class.send(:define_method, :before_method) { hi_mom! }
501
+ @class.before(:hookable, :before_method)
502
+
503
+ inst = @class.new
504
+ inst.should_receive(:hi_mom!)
505
+ inst.hookable
506
+ end
507
+
508
+ it "should not pass any of the hookable method's arguments if the hook block does not accept arguments" do
509
+ @class.class_eval do
510
+ def method_with_args(one, two, three); end;
511
+ before(:method_with_args) { hi_mom! }
512
+ end
513
+
514
+ inst = @class.new
515
+ inst.should_receive(:hi_mom!)
516
+ inst.method_with_args(1, 2, 3)
517
+ end
518
+
519
+ it "should not pass any of the hookable method's arguments if the hook method does not accept arguments" do
520
+ @class.class_eval do
521
+ def method_with_args(one, two, three); end;
522
+ def before_method_with_args; hi_mom!; end;
523
+ before(:method_with_args, :before_method_with_args)
524
+ end
525
+
526
+ inst = @class.new
527
+ inst.should_receive(:hi_mom!)
528
+ inst.method_with_args(1, 2, 3)
529
+ end
530
+
531
+ it "should not pass any of the hookable method's arguments if the hook is declared after it is registered and does not accept arguments" do
532
+ @class.class_eval do
533
+ def method_with_args(one, two, three); end;
534
+ before(:method_with_args, :before_method_with_args)
535
+ def before_method_with_args; hi_mom!; end;
536
+ end
537
+
538
+ inst = @class.new
539
+ inst.should_receive(:hi_mom!)
540
+ inst.method_with_args(1, 2, 3)
541
+ end
542
+
543
+ it "should not pass any of the hookable method's arguments if the hook has been re-defined not to accept arguments" do
544
+ @class.class_eval do
545
+ def method_with_args(one, two, three); end;
546
+ def before_method_with_args(one, two, three); hi_mom!; end;
547
+ before(:method_with_args, :before_method_with_args)
548
+ orig_verbose, $VERBOSE = $VERBOSE, false
549
+ def before_method_with_args; hi_dad!; end;
550
+ $VERBOSE = orig_verbose
551
+ end
552
+
553
+ inst = @class.new
554
+ inst.should_not_receive(:hi_mom1)
555
+ inst.should_receive(:hi_dad!)
556
+ inst.method_with_args(1, 2, 3)
557
+ end
558
+
559
+ it 'should pass the hookable method arguments to the hook method if the hook method takes arguments' do
560
+ @class.class_eval do
561
+ def method_with_args(word, lol); end;
562
+ def before_method_with_args(one, two); hi_mom!(one, two); end;
563
+ before(:method_with_args, :before_method_with_args)
564
+ end
565
+
566
+ inst = @class.new
567
+ inst.should_receive(:hi_mom!).with("omg", "hi2u")
568
+ inst.method_with_args("omg", "hi2u")
569
+ end
570
+
571
+ it "should pass the hookable method arguments to the hook block if the hook block takes arguments" do
572
+ @class.class_eval do
573
+ def method_with_args(word, lol); end;
574
+ before(:method_with_args) { |one, two| hi_mom!(one, two) }
575
+ end
576
+
577
+ inst = @class.new
578
+ inst.should_receive(:hi_mom!).with('omg', 'hi2u')
579
+ inst.method_with_args('omg', 'hi2u')
580
+ end
581
+
582
+ it 'should pass the hookable method arguments to the hook method if the hook method was re-defined to accept arguments' do
583
+ @class.class_eval do
584
+ def method_with_args(word, lol); end;
585
+ def before_method_with_args; hi_mom!; end;
586
+ before(:method_with_args, :before_method_with_args)
587
+ orig_verbose, $VERBOSE = $VERBOSE, false
588
+ def before_method_with_args(word, lol); hi_dad!(word, lol); end;
589
+ $VERBOSE = orig_verbose
590
+ end
591
+
592
+ inst = @class.new
593
+ inst.should_not_receive(:hi_mom!)
594
+ inst.should_receive(:hi_dad!).with("omg", "hi2u")
595
+ inst.method_with_args("omg", "hi2u")
596
+ end
597
+
598
+ it "should not pass the method return value to the after hook if the method does not take arguments" do
599
+ @class.class_eval do
600
+ def method_with_ret_val; 'hello'; end;
601
+ def after_method_with_ret_val; hi_mom!; end;
602
+ after(:method_with_ret_val, :after_method_with_ret_val)
603
+ end
604
+
605
+ inst = @class.new
606
+ inst.should_receive(:hi_mom!)
607
+ inst.method_with_ret_val
608
+ end
609
+
610
+ it 'should work with glob arguments (or whatever you call em)' do
611
+ @class.class_eval do
612
+ def hook_this(*args); end;
613
+ def before_hook_this(*args); hi_mom!(*args) end;
614
+ before(:hook_this, :before_hook_this)
615
+ end
616
+
617
+ inst = @class.new
618
+ inst.should_receive(:hi_mom!).with("omg", "hi2u", "lolercoaster")
619
+ inst.hook_this("omg", "hi2u", "lolercoaster")
620
+ end
621
+
622
+ it 'should allow the use of before and after together' do
623
+ @class.class_eval %{def after_hook; last!; end;}
624
+ @class.before(:hookable) { first! }
625
+ @class.after(:hookable, :after_hook)
626
+
627
+ inst = @class.new
628
+ inst.should_receive(:first!).once.ordered
629
+ inst.should_receive(:last!).once.ordered
630
+ inst.hookable
631
+ end
632
+
633
+ it 'should be able to use private methods as hooks' do
634
+ @class.class_eval %{private; def nike; doit!; end;}
635
+ @class.before(:hookable, :nike)
636
+
637
+ inst = @class.new
638
+ inst.should_receive(:doit!)
639
+ inst.hookable
640
+ end
641
+ end
642
+
643
+ end
644
+
645
+ describe "hook invocation with class inheritance" do
646
+
647
+ describe "for class methods" do
648
+ it 'should run an advice block when the class is inherited' do
649
+ @class.before_class_method(:clakable) { hi_mom! }
650
+ @child = Class.new(@class)
651
+ @child.should_receive(:hi_mom!)
652
+ @child.clakable
653
+ end
654
+
655
+ it 'should run an advice block on child class when hook is registered in parent after inheritance' do
656
+ @child = Class.new(@class)
657
+ @class.before_class_method(:clakable) { hi_mom! }
658
+ @child.should_receive(:hi_mom!)
659
+ @child.clakable
660
+ end
661
+
662
+ it 'should be able to declare advice methods in child classes' do
663
+ @class.class_eval %{def self.before_method; hi_dad!; end;}
664
+ @class.before_class_method(:clakable, :before_method)
665
+
666
+ @child = Class.new(@class) do
667
+ def self.child; hi_mom!; end;
668
+ before_class_method(:clakable, :child)
669
+ end
670
+
671
+ @child.should_receive(:hi_dad!).once.ordered
672
+ @child.should_receive(:hi_mom!).once.ordered
673
+ @child.clakable
674
+ end
675
+
676
+ it "should not execute hooks added in the child classes when in the parent class" do
677
+ @child = Class.new(@class) { def self.child; hi_mom!; end; }
678
+ @child.before_class_method(:clakable, :child)
679
+ @class.should_not_receive(:hi_mom!)
680
+ @class.clakable
681
+ end
682
+
683
+ it 'should not call the hook stack if the hookable method is overwritten and does not call super' do
684
+ @class.before_class_method(:clakable) { hi_mom! }
685
+ @child = Class.new(@class) do
686
+ def self.clakable; end;
687
+ end
688
+
689
+ @child.should_not_receive(:hi_mom!)
690
+ @child.clakable
691
+ end
692
+
693
+ it 'should not call hooks defined in the child class for a hookable method in a parent if the child overwrites the hookable method without calling super' do
694
+ @child = Class.new(@class) do
695
+ before_class_method(:clakable) { hi_mom! }
696
+ def self.clakable; end;
697
+ end
698
+
699
+ @child.should_not_receive(:hi_mom!)
700
+ @child.clakable
701
+ end
702
+
703
+ it 'should not call hooks defined in child class even if hook method exists in parent' do
704
+ @class.class_eval %{def self.hello_world; hello_world!; end;}
705
+ @child = Class.new(@class) do
706
+ before_class_method(:clakable, :hello_world)
707
+ end
708
+
709
+ @class.should_not_receive(:hello_world!)
710
+ @class.clakable
711
+ end
712
+ end
713
+
714
+ describe "for instance methods" do
715
+ it 'should run an advice block when the class is inherited' do
716
+ @inherited_class = Class.new(@class)
717
+ @class.before(:hookable) { hi_dad! }
718
+
719
+ inst = @inherited_class.new
720
+ inst.should_receive(:hi_dad!)
721
+ inst.hookable
722
+ end
723
+
724
+ it 'should run an advice block on child class when hook is registered in parent after inheritance' do
725
+ @child = Class.new(@class)
726
+ @class.before(:hookable) { hi_mom! }
727
+
728
+ inst = @child.new
729
+ inst.should_receive(:hi_mom!)
730
+ inst.hookable
731
+ end
732
+
733
+ it 'should be able to declare advice methods in child classes' do
734
+ @class.send(:define_method, :before_method) { hi_dad! }
735
+ @class.before(:hookable, :before_method)
736
+
737
+ @child = Class.new(@class) do
738
+ def child; hi_mom!; end;
739
+ before :hookable, :child
740
+ end
741
+
742
+ inst = @child.new
743
+ inst.should_receive(:hi_dad!).once.ordered
744
+ inst.should_receive(:hi_mom!).once.ordered
745
+ inst.hookable
746
+ end
747
+
748
+ it "should not execute hooks added in the child classes when in parent class" do
749
+ @child = Class.new(@class)
750
+ @child.send(:define_method, :child) { hi_mom! }
751
+ @child.before(:hookable, :child)
752
+
753
+ inst = @class.new
754
+ inst.should_not_receive(:hi_mom!)
755
+ inst.hookable
756
+ end
757
+
758
+ it 'should not call the hook stack if the hookable method is overwritten and does not call super' do
759
+ @class.before(:hookable) { hi_mom! }
760
+ @child = Class.new(@class) do
761
+ def hookable; end;
762
+ end
763
+
764
+ inst = @child.new
765
+ inst.should_not_receive(:hi_mom!)
766
+ inst.hookable
767
+ end
768
+
769
+ it 'should not call hooks defined in the child class for a hookable method in a parent if the child overwrites the hookable method without calling super' do
770
+ @child = Class.new(@class) do
771
+ before(:hookable) { hi_mom! }
772
+ def hookable; end;
773
+ end
774
+
775
+ inst = @child.new
776
+ inst.should_not_receive(:hi_mom!)
777
+ inst.hookable
778
+ end
779
+
780
+ it 'should not call hooks defined in child class even if hook method exists in parent' do
781
+ @class.send(:define_method, :hello_world) { hello_world! }
782
+ @child = Class.new(@class) do
783
+ before(:hookable, :hello_world)
784
+ end
785
+
786
+ inst = @class.new
787
+ inst.should_not_receive(:hello_world!)
788
+ inst.hookable
789
+ end
790
+
791
+ it 'should call different hooks in different children when they are defined there' do
792
+ @class.send(:define_method, :hello_world) {}
793
+
794
+ @child1 = Class.new(@class) do
795
+ before(:hello_world){ hi_dad! }
796
+ end
797
+
798
+ @child2 = Class.new(@class) do
799
+ before(:hello_world){ hi_mom! }
800
+ end
801
+
802
+ @child3 = Class.new(@child1) do
803
+ before(:hello_world){ hi_grandma! }
804
+ end
805
+
806
+ inst1 = @child1.new
807
+ inst2 = @child2.new
808
+ inst3 = @child3.new
809
+ inst1.should_receive(:hi_dad!).once
810
+ inst2.should_receive(:hi_mom!).once
811
+ inst3.should_receive(:hi_dad!).once
812
+ inst3.should_receive(:hi_grandma!).once
813
+ inst1.hello_world
814
+ inst2.hello_world
815
+ inst3.hello_world
816
+ end
817
+
818
+ end
819
+
820
+ end
821
+
822
+ describe "hook invocation with module inclusions / extensions" do
823
+
824
+ describe "for class methods" do
825
+ it "should not overwrite methods included by extensions after the hook is declared" do
826
+ @module.class_eval do
827
+ @another_module = Module.new do
828
+ def greet; greetings_from_another_module; super; end;
829
+ end
830
+
831
+ def self.extended(base)
832
+ base.before_class_method(:clakable, :greet)
833
+ base.extend(@another_module)
834
+ end
835
+ end
836
+
837
+ @class.extend(@module)
838
+ @class.should_receive(:greetings_from_another_module).once.ordered
839
+ @class.should_receive(:greetings_from_module).once.ordered
840
+ @class.clakable
841
+ end
842
+ end
843
+
844
+ describe "for instance methods" do
845
+ it 'should not overwrite methods included by modules after the hook is declared' do
846
+ @module.class_eval do
847
+ @another_module = Module.new do
848
+ def greet; greetings_from_another_module; super; end;
849
+ end
850
+
851
+ def self.included(base)
852
+ base.before(:hookable, :greet)
853
+ base.send(:include, @another_module)
854
+ end
855
+ end
856
+
857
+ @class.send(:include, @module)
858
+
859
+ inst = @class.new
860
+ inst.should_receive(:greetings_from_another_module).once.ordered
861
+ inst.should_receive(:greetings_from_module).once.ordered
862
+ inst.hookable
863
+ end
864
+ end
865
+
866
+ end
867
+
868
+ describe "hook invocation with unrelated classes" do
869
+
870
+ describe "for class methods" do
871
+ it "should not execute hooks registered in an unrelated class" do
872
+ @class.before_class_method(:clakable) { hi_mom! }
873
+
874
+ @other.should_not_receive(:hi_mom!)
875
+ @other.clakable
876
+ end
877
+ end
878
+
879
+ describe "for instance methods" do
880
+ it "should not execute hooks registered in an unrelated class" do
881
+ @class.before(:hookable) { hi_mom! }
882
+
883
+ inst = @other.new
884
+ inst.should_not_receive(:hi_mom!)
885
+ inst.hookable
886
+ end
887
+ end
888
+
889
+ end
890
+
891
+ describe "using before hook" do
892
+
893
+ describe "for class methods" do
894
+
895
+ it 'should run the advice before the advised method' do
896
+ @class.class_eval %{def self.hook_me; second!; end;}
897
+ @class.register_class_hooks(:hook_me)
898
+ @class.before_class_method(:hook_me, :first!)
899
+
900
+ @class.should_receive(:first!).ordered
901
+ @class.should_receive(:second!).ordered
902
+ @class.hook_me
903
+ end
904
+
905
+ it 'should execute all advices once in order' do
906
+ @class.before_class_method(:clakable, :hook_1)
907
+ @class.before_class_method(:clakable, :hook_2)
908
+ @class.before_class_method(:clakable, :hook_3)
909
+
910
+ @class.should_receive(:hook_1).once.ordered
911
+ @class.should_receive(:hook_2).once.ordered
912
+ @class.should_receive(:hook_3).once.ordered
913
+ @class.clakable
914
+ end
915
+ end
916
+
917
+ describe "for instance methods" do
918
+
919
+ it 'should run the advice before the advised method' do
920
+ @class.class_eval %{
921
+ def hook_me; second!; end;
922
+ }
923
+ @class.register_instance_hooks(:hook_me)
924
+ @class.before(:hook_me, :first!)
925
+
926
+ inst = @class.new
927
+ inst.should_receive(:first!).ordered
928
+ inst.should_receive(:second!).ordered
929
+ inst.hook_me
930
+ end
931
+
932
+ it 'should execute all advices once in order' do
933
+ @class.before(:hookable, :hook_1)
934
+ @class.before(:hookable, :hook_2)
935
+ @class.before(:hookable, :hook_3)
936
+
937
+ inst = @class.new
938
+ inst.should_receive(:hook_1).once.ordered
939
+ inst.should_receive(:hook_2).once.ordered
940
+ inst.should_receive(:hook_3).once.ordered
941
+ inst.hookable
942
+ end
943
+ end
944
+
945
+ end
946
+
947
+ describe 'using after hook' do
948
+
949
+ describe "for class methods" do
950
+
951
+ it 'should run the advice after the advised method' do
952
+ @class.class_eval %{def self.hook_me; first!; end;}
953
+ @class.register_class_hooks(:hook_me)
954
+ @class.after_class_method(:hook_me, :second!)
955
+
956
+ @class.should_receive(:first!).ordered
957
+ @class.should_receive(:second!).ordered
958
+ @class.hook_me
959
+ end
960
+
961
+ it 'should execute all advices once in order' do
962
+ @class.after_class_method(:clakable, :hook_1)
963
+ @class.after_class_method(:clakable, :hook_2)
964
+ @class.after_class_method(:clakable, :hook_3)
965
+
966
+ @class.should_receive(:hook_1).once.ordered
967
+ @class.should_receive(:hook_2).once.ordered
968
+ @class.should_receive(:hook_3).once.ordered
969
+ @class.clakable
970
+ end
971
+
972
+ it "the advised method should still return its normal value" do
973
+ @class.class_eval %{def self.hello; "hello world"; end;}
974
+ @class.register_class_hooks(:hello)
975
+ @class.after_class_method(:hello) { "BAM" }
976
+
977
+ @class.hello.should == "hello world"
978
+ end
979
+
980
+ it "should pass the return value to a hook method" do
981
+ @class.class_eval do
982
+ def self.with_return_val; 'hello'; end;
983
+ def self.after_with_return_val(retval); retval.should == 'hello'; end;
984
+ after_class_method(:with_return_val, :after_with_return_val)
985
+ end
986
+
987
+ @class.with_return_val
988
+ end
989
+
990
+ it "should pass the return value to a hook block" do
991
+ @class.class_eval do
992
+ def self.with_return_val; 'hello'; end;
993
+ after_class_method(:with_return_val) { |ret| ret.should == 'hello' }
994
+ end
995
+
996
+ @class.with_return_val
997
+ end
998
+
999
+ it "should pass the return value and method arguments to a hook block" do
1000
+ @class.class_eval do
1001
+ def self.with_args_and_return_val(world); 'hello'; end;
1002
+ after_class_method(:with_args_and_return_val) do |hello, world|
1003
+ hello.should == "hello"
1004
+ world.should == "world"
1005
+ end
1006
+ end
1007
+
1008
+ @class.with_args_and_return_val('world')
1009
+ end
1010
+ end
1011
+
1012
+ describe "for instance methods" do
1013
+
1014
+ it 'should run the advice after the advised method' do
1015
+ @class.class_eval %{def hook_me; first!; end;}
1016
+ @class.register_instance_hooks(:hook_me)
1017
+ @class.after(:hook_me, :second!)
1018
+
1019
+ inst = @class.new
1020
+ inst.should_receive(:first!).ordered
1021
+ inst.should_receive(:second!).ordered
1022
+ inst.hook_me
1023
+ end
1024
+
1025
+ it 'should execute all advices once in order' do
1026
+ @class.after(:hookable, :hook_1)
1027
+ @class.after(:hookable, :hook_2)
1028
+ @class.after(:hookable, :hook_3)
1029
+
1030
+ inst = @class.new
1031
+ inst.should_receive(:hook_1).once.ordered
1032
+ inst.should_receive(:hook_2).once.ordered
1033
+ inst.should_receive(:hook_3).once.ordered
1034
+ inst.hookable
1035
+ end
1036
+
1037
+ it "the advised method should still return its normal value" do
1038
+ @class.class_eval %{def hello; "hello world"; end;}
1039
+ @class.register_instance_hooks(:hello)
1040
+ @class.after(:hello) { "BAM" }
1041
+
1042
+ @class.new.hello.should == "hello world"
1043
+ end
1044
+
1045
+ it "should return nil if an after hook throws :halt without a return value" do
1046
+ @class.class_eval %{def with_value; "hello"; end;}
1047
+ @class.register_instance_hooks(:with_value)
1048
+ @class.after(:with_value) { throw :halt }
1049
+
1050
+ @class.new.with_value.should be_nil
1051
+ end
1052
+
1053
+ it "should pass the return value to a hook method" do
1054
+ @class.class_eval do
1055
+ def with_return_val; 'hello'; end;
1056
+ def after_with_return_val(retval); retval.should == 'hello'; end;
1057
+ after(:with_return_val, :after_with_return_val)
1058
+ end
1059
+
1060
+ @class.new.with_return_val
1061
+ end
1062
+
1063
+ it "should pass the return value to a hook block" do
1064
+ @class.class_eval do
1065
+ def with_return_val; 'hello'; end;
1066
+ after(:with_return_val) { |ret| ret.should == 'hello' }
1067
+ end
1068
+
1069
+ @class.new.with_return_val
1070
+ end
1071
+
1072
+ it "should pass the return value and method arguments to a hook block" do
1073
+ @class.class_eval do
1074
+ def with_args_and_return_val(world); 'hello'; end;
1075
+ after(:with_args_and_return_val) do |hello, world|
1076
+ hello.should == "hello"
1077
+ world.should == "world"
1078
+ end
1079
+ end
1080
+
1081
+ @class.new.with_args_and_return_val('world')
1082
+ end
1083
+ end
1084
+
1085
+ end
1086
+
1087
+ describe 'aborting' do
1088
+
1089
+ describe "for class methods" do
1090
+ it "should catch :halt from a before hook and abort the advised method" do
1091
+ @class.class_eval %{def self.no_love; love_me!; end;}
1092
+ @class.register_class_hooks :no_love
1093
+ @class.before_class_method(:no_love) { maybe! }
1094
+ @class.before_class_method(:no_love) { throw :halt }
1095
+ @class.before_class_method(:no_love) { what_about_me? }
1096
+
1097
+ @class.should_receive(:maybe!)
1098
+ @class.should_not_receive(:what_about_me?)
1099
+ @class.should_not_receive(:love_me!)
1100
+ lambda { @class.no_love }.should_not throw_symbol(:halt)
1101
+ end
1102
+
1103
+ it "should not run after hooks if a before hook throws :halt" do
1104
+ @class.before_class_method(:clakable) { throw :halt }
1105
+ @class.after_class_method(:clakable) { bam! }
1106
+
1107
+ @class.should_not_receive(:bam!)
1108
+ lambda { @class.clakable }.should_not throw_symbol(:halt)
1109
+ end
1110
+
1111
+ it "should return nil from the hookable method if a before hook throws :halt" do
1112
+ @class.class_eval %{def self.with_value; "hello"; end;}
1113
+ @class.register_class_hooks(:with_value)
1114
+ @class.before_class_method(:with_value) { throw :halt }
1115
+
1116
+ @class.with_value.should be_nil
1117
+ end
1118
+
1119
+ it "should catch :halt from an after hook and cease the advice" do
1120
+ @class.after_class_method(:clakable) { throw :halt }
1121
+ @class.after_class_method(:clakable) { never_see_me! }
1122
+
1123
+ @class.should_not_receive(:never_see_me!)
1124
+ lambda { @class.clakable }.should_not throw_symbol(:halt)
1125
+ end
1126
+
1127
+ it "should return nil if an after hook throws :halt without a return value" do
1128
+ @class.class_eval %{def self.with_value; "hello"; end;}
1129
+ @class.register_class_hooks(:with_value)
1130
+ @class.after_class_method(:with_value) { throw :halt }
1131
+
1132
+ @class.with_value.should be_nil
1133
+ end
1134
+ end
1135
+
1136
+ describe "for instance methods" do
1137
+ it "should catch :halt from a before hook and abort the advised method" do
1138
+ @class.class_eval %{def no_love; love_me!; end;}
1139
+ @class.register_instance_hooks :no_love
1140
+ @class.before(:no_love) { maybe! }
1141
+ @class.before(:no_love) { throw :halt }
1142
+ @class.before(:no_love) { what_about_me? }
1143
+
1144
+ inst = @class.new
1145
+ inst.should_receive(:maybe!)
1146
+ inst.should_not_receive(:what_about_me?)
1147
+ inst.should_not_receive(:love_me!)
1148
+ lambda { inst.no_love }.should_not throw_symbol(:halt)
1149
+ end
1150
+
1151
+ it "should not run after hooks if a before hook throws :halt" do
1152
+ @class.before(:hookable) { throw :halt }
1153
+ @class.after(:hookable) { bam! }
1154
+
1155
+ inst = @class.new
1156
+ inst.should_not_receive(:bam!)
1157
+ lambda { inst.hookable }.should_not throw_symbol(:halt)
1158
+ end
1159
+
1160
+ it "should return nil from the hookable method if a before hook throws :halt" do
1161
+ @class.class_eval %{def with_value; "hello"; end;}
1162
+ @class.register_instance_hooks(:with_value)
1163
+ @class.before(:with_value) { throw :halt }
1164
+
1165
+ @class.new.with_value.should be_nil
1166
+ end
1167
+
1168
+ it "should catch :halt from an after hook and cease the advice" do
1169
+ @class.after(:hookable) { throw :halt }
1170
+ @class.after(:hookable) { never_see_me! }
1171
+
1172
+ inst = @class.new
1173
+ inst.should_not_receive(:never_see_me!)
1174
+ lambda { inst.hookable }.should_not throw_symbol(:halt)
1175
+ end
1176
+ end
1177
+
1178
+ end
1179
+
1180
+ describe 'aborting with return values' do
1181
+
1182
+ describe "for class methods" do
1183
+
1184
+ it "should be able to abort from a before hook with a return value" do
1185
+ @class.before_class_method(:clakable) { throw :halt, 'omg' }
1186
+ @class.clakable.should == 'omg'
1187
+ end
1188
+
1189
+ it "should be able to abort from an after hook with a return value" do
1190
+ @class.after_class_method(:clakable) { throw :halt, 'omg' }
1191
+ @class.clakable.should == 'omg'
1192
+ end
1193
+
1194
+ end
1195
+
1196
+ describe "for instance methods" do
1197
+
1198
+ it "should be able to abort from a before hook with a return value" do
1199
+ @class.before(:hookable) { throw :halt, 'omg' }
1200
+
1201
+ inst = @class.new
1202
+ inst.hookable.should == 'omg'
1203
+ end
1204
+
1205
+ it "should be able to abort from an after hook with a return value" do
1206
+ @class.after(:hookable) { throw :halt, 'omg' }
1207
+
1208
+ inst = @class.new
1209
+ inst.hookable.should == 'omg'
1210
+ end
1211
+
1212
+ end
1213
+
1214
+ end
1215
+
1216
+ describe "helper methods" do
1217
+ it 'should generate the correct argument signature' do
1218
+ @class.class_eval do
1219
+ def some_method(a, b, c)
1220
+ [a, b, c]
1221
+ end
1222
+
1223
+ def yet_another(a, *heh)
1224
+ [a, *heh]
1225
+ end
1226
+ end
1227
+
1228
+ @class.args_for(@class.instance_method(:hookable)).should == "&block"
1229
+ @class.args_for(@class.instance_method(:some_method)).should == "_1, _2, _3, &block"
1230
+ @class.args_for(@class.instance_method(:yet_another)).should == "_1, *args, &block"
1231
+ end
1232
+ end
1233
+
1234
+ end