rango 0.1.pre → 0.1.0

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 (1958) hide show
  1. data/CHANGELOG +4 -1
  2. data/README.textile +12 -4
  3. data/examples/README.textile +7 -8
  4. data/{stubs/project/content → examples/blog}/Gemfile +27 -4
  5. data/examples/blog/Rakefile +12 -0
  6. data/{vendor/cli → examples/blog}/TODO.txt +0 -0
  7. data/examples/blog/bin/autospec +3 -0
  8. data/examples/blog/bin/css2sass +3 -0
  9. data/examples/blog/bin/cucumber +3 -0
  10. data/examples/blog/bin/haml +3 -0
  11. data/examples/blog/bin/html2haml +3 -0
  12. data/examples/blog/bin/htmldiff +3 -0
  13. data/examples/blog/bin/launchy +3 -0
  14. data/examples/blog/bin/ldiff +3 -0
  15. data/examples/blog/bin/nokogiri +3 -0
  16. data/examples/blog/bin/racksh +3 -0
  17. data/examples/blog/bin/rackup +3 -0
  18. data/examples/blog/bin/rake +3 -0
  19. data/examples/blog/bin/rango +3 -0
  20. data/examples/blog/bin/sass +3 -0
  21. data/examples/blog/bin/shotgun +3 -0
  22. data/examples/blog/bin/simple-templater +3 -0
  23. data/examples/blog/bin/spec +3 -0
  24. data/examples/blog/bin/tt +3 -0
  25. data/examples/blog/blog/init.rb +9 -0
  26. data/examples/blog/blog/models.rb +21 -0
  27. data/examples/blog/blog/views.rb +16 -0
  28. data/examples/blog/config.ru +19 -0
  29. data/examples/blog/gems/cache/addressable-2.1.1.gem +0 -0
  30. data/examples/blog/gems/cache/builder-2.1.2.gem +0 -0
  31. data/examples/blog/gems/cache/bundler-0.7.0.gem +0 -0
  32. data/examples/blog/gems/cache/cli-0.0.1.gem +0 -0
  33. data/examples/blog/gems/cache/configuration-1.1.0.gem +0 -0
  34. data/examples/blog/gems/cache/cucumber-0.4.4.gem +0 -0
  35. data/examples/blog/gems/cache/data_objects-0.10.0.gem +0 -0
  36. data/examples/blog/gems/cache/diff-lcs-1.1.2.gem +0 -0
  37. data/examples/blog/gems/cache/dm-core-0.10.1.gem +0 -0
  38. data/examples/blog/gems/cache/dm-timestamps-0.10.1.gem +0 -0
  39. data/examples/blog/gems/cache/do_mysql-0.10.0.gem +0 -0
  40. data/examples/blog/gems/cache/do_sqlite3-0.10.0.gem +0 -0
  41. data/examples/blog/gems/cache/extlib-0.9.13.gem +0 -0
  42. data/examples/blog/gems/cache/fuzzyhash-0.0.9.gem +0 -0
  43. data/examples/blog/gems/cache/haml-2.2.14.gem +0 -0
  44. data/examples/blog/gems/cache/launchy-0.3.3.gem +0 -0
  45. data/examples/blog/gems/cache/media-path-0.1.gem +0 -0
  46. data/examples/blog/gems/cache/nokogiri-1.4.0.gem +0 -0
  47. data/examples/blog/gems/cache/polyglot-0.2.9.gem +0 -0
  48. data/examples/blog/gems/cache/rack-1.0.1.gem +0 -0
  49. data/examples/blog/gems/cache/rack-test-0.5.2.gem +0 -0
  50. data/examples/blog/gems/cache/racksh-0.9.4.2.gem +0 -0
  51. data/examples/blog/gems/cache/rake-0.8.7.gem +0 -0
  52. data/examples/blog/gems/cache/rango-0.1.0.gem +0 -0
  53. data/examples/blog/gems/cache/rspec-1.2.9.gem +0 -0
  54. data/examples/blog/gems/cache/rubyexts-0.0.1.gem +0 -0
  55. data/examples/blog/gems/cache/shotgun-0.4.gem +0 -0
  56. data/examples/blog/gems/cache/simple-templater-0.0.1.gem +0 -0
  57. data/examples/blog/gems/cache/term-ansicolor-1.0.4.gem +0 -0
  58. data/examples/blog/gems/cache/treetop-1.4.2.gem +0 -0
  59. data/examples/blog/gems/cache/usher-0.5.11.gem +0 -0
  60. data/examples/blog/gems/cache/webrat-0.5.3.gem +0 -0
  61. data/examples/blog/init.rb +49 -0
  62. data/examples/blog/settings.rb +15 -0
  63. data/examples/{twitter → blog}/settings_local.rb +0 -0
  64. data/examples/blog/spec/blog/init_spec.rb +7 -0
  65. data/examples/blog/spec/blog/models_spec.rb +28 -0
  66. data/examples/blog/spec/blog/views_spec.rb +22 -0
  67. data/{vendor/cli → examples/blog}/spec/spec.opts +0 -0
  68. data/examples/blog/spec/spec_helper.rb +27 -0
  69. data/examples/blog/templates/base.html.haml +16 -0
  70. data/examples/blog/templates/index.html.haml +12 -0
  71. data/lib/rango.rb +1 -1
  72. data/lib/rango/contrib/pagination.rb +1 -2
  73. data/lib/rango/contrib/pagination/TODO +1 -2
  74. data/lib/rango/contrib/pagination/_pagination.html.haml +4 -4
  75. data/lib/rango/contrib/pagination/helpers.rb +10 -0
  76. data/lib/rango/exceptions.rb +1 -4
  77. data/lib/rango/gv.rb +8 -0
  78. data/lib/rango/helpers/merb-helpers/date_time_formatting.rb +2 -0
  79. data/lib/rango/helpers/merb-helpers/form/builder.rb +0 -1
  80. data/lib/rango/mixins/render.rb +3 -0
  81. data/lib/rango/orm/adapters/datamapper.rb +8 -0
  82. data/lib/rango/orm/support/datamapper/support.rb +2 -0
  83. data/lib/rango/orm/tasks/datamapper.rake +41 -0
  84. data/lib/rango/orm/tasks/sequel.rake +3 -0
  85. data/lib/rango/rack/request.rb +2 -0
  86. data/lib/rango/rango.rb +19 -5
  87. data/lib/rango/router.rb +9 -0
  88. data/lib/rango/router/adapters/rack_mount.rb +17 -0
  89. data/lib/rango/router/adapters/usher.rb +1 -1
  90. data/lib/rango/settings/erubis.rb +2 -0
  91. data/lib/rango/settings/framework.rb +1 -1
  92. data/lib/rango/settings/haml.rb +6 -0
  93. data/lib/rango/settings/template.rb +3 -1
  94. data/lib/rango/tasks/spec.rake +7 -0
  95. data/lib/rango/templates/adapter.rb +1 -1
  96. data/lib/rango/templates/erubis.rb +2 -2
  97. data/lib/rango/templates/template.rb +13 -1
  98. data/lib/rango/templates/templates.txt +1 -1
  99. data/lib/rango/{testing.rb → utils.rb} +1 -1
  100. data/spec/rango/helpers/merb-helpers/merb_helpers_text_spec.rb +1 -0
  101. data/spec/rango/helpers/merb-helpers/ordinalize_spec.rb +1 -0
  102. data/spec/rango/project_spec.rb +2 -2
  103. data/spec/rango_spec.rb +0 -4
  104. data/stubs/app/content/init.rb.rbt +4 -1
  105. data/stubs/app/content/models.rb.rbt +17 -6
  106. data/stubs/app/content/views.rb.rbt +17 -6
  107. data/stubs/app/setup.rb +4 -3
  108. data/stubs/project/content/Gemfile.rbt +106 -0
  109. data/stubs/project/content/Rakefile.rbt +12 -0
  110. data/stubs/project/content/config.ru.rbt +33 -5
  111. data/stubs/project/content/init.rb.rbt +34 -4
  112. data/stubs/project/content/spec/%name%/init_spec.rb.rbt +7 -0
  113. data/stubs/project/content/spec/%name%/models_spec.rb.rbt +23 -0
  114. data/stubs/project/content/spec/%name%/views_spec.rb.rbt +23 -0
  115. data/{vendor/media-path → stubs/project/content}/spec/spec.opts +0 -0
  116. data/stubs/project/content/spec/spec_helper.rb +24 -6
  117. data/stubs/project/content/templates/base.html.haml.rbt +9 -22
  118. data/stubs/project/content/templates/index.html.haml +37 -0
  119. data/stubs/project/postprocess.rb +7 -1
  120. data/stubs/project/setup.rb +6 -3
  121. metadata +92 -1857
  122. data/benchmarks/ab.rb +0 -6
  123. data/benchmarks/bm/boot.rb +0 -20
  124. data/benchmarks/bm/callbacks.rb +0 -0
  125. data/benchmarks/bm/request.rb +0 -4
  126. data/benchmarks/bm/routers.rb +0 -22
  127. data/benchmarks/bm/stack.rb +0 -19
  128. data/benchmarks/bm/templates.rb +0 -0
  129. data/benchmarks/helper.rb +0 -7
  130. data/benchmarks/stubs/merb-app/Rakefile +0 -35
  131. data/benchmarks/stubs/merb-app/app/controllers/application.rb +0 -4
  132. data/benchmarks/stubs/merb-app/app/controllers/exceptions.rb +0 -15
  133. data/benchmarks/stubs/merb-app/app/helpers/global_helpers.rb +0 -7
  134. data/benchmarks/stubs/merb-app/app/models/user.rb +0 -19
  135. data/benchmarks/stubs/merb-app/app/views/exceptions/not_acceptable.html.erb +0 -63
  136. data/benchmarks/stubs/merb-app/app/views/exceptions/not_found.html.erb +0 -47
  137. data/benchmarks/stubs/merb-app/app/views/layout/application.html.erb +0 -12
  138. data/benchmarks/stubs/merb-app/autotest/discover.rb +0 -4
  139. data/benchmarks/stubs/merb-app/autotest/merb.rb +0 -154
  140. data/benchmarks/stubs/merb-app/autotest/merb_rspec.rb +0 -167
  141. data/benchmarks/stubs/merb-app/config/database.yml +0 -33
  142. data/benchmarks/stubs/merb-app/config/dependencies.rb +0 -36
  143. data/benchmarks/stubs/merb-app/config/environments/development.rb +0 -17
  144. data/benchmarks/stubs/merb-app/config/environments/production.rb +0 -12
  145. data/benchmarks/stubs/merb-app/config/environments/rake.rb +0 -13
  146. data/benchmarks/stubs/merb-app/config/environments/staging.rb +0 -12
  147. data/benchmarks/stubs/merb-app/config/environments/test.rb +0 -14
  148. data/benchmarks/stubs/merb-app/config/init.rb +0 -26
  149. data/benchmarks/stubs/merb-app/config/rack.rb +0 -13
  150. data/benchmarks/stubs/merb-app/config/router.rb +0 -46
  151. data/benchmarks/stubs/merb-app/doc/rdoc/generators/merb_generator.rb +0 -1364
  152. data/benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb/api_grease.js +0 -640
  153. data/benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb/index.html.erb +0 -37
  154. data/benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb/merb.css +0 -252
  155. data/benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb/merb.rb +0 -353
  156. data/benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb/merb_doc_styles.css +0 -492
  157. data/benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb/prototype.js +0 -2515
  158. data/benchmarks/stubs/merb-app/merb/merb-auth/setup.rb +0 -46
  159. data/benchmarks/stubs/merb-app/merb/merb-auth/strategies.rb +0 -13
  160. data/benchmarks/stubs/merb-app/merb/session/session.rb +0 -11
  161. data/benchmarks/stubs/merb-app/public/favicon.ico +0 -0
  162. data/benchmarks/stubs/merb-app/public/images/merb.jpg +0 -0
  163. data/benchmarks/stubs/merb-app/public/javascripts/application.js +0 -1
  164. data/benchmarks/stubs/merb-app/public/javascripts/jquery.js +0 -19
  165. data/benchmarks/stubs/merb-app/public/merb.fcgi +0 -22
  166. data/benchmarks/stubs/merb-app/public/robots.txt +0 -5
  167. data/benchmarks/stubs/merb-app/public/stylesheets/master.css +0 -119
  168. data/benchmarks/stubs/merb-app/spec/spec.opts +0 -0
  169. data/benchmarks/stubs/merb-app/spec/spec_helper.rb +0 -27
  170. data/benchmarks/stubs/merb-app/tasks/doc.thor +0 -151
  171. data/benchmarks/stubs/merb-app/tasks/merb.thor/app_script.rb +0 -33
  172. data/benchmarks/stubs/merb-app/tasks/merb.thor/common.rb +0 -70
  173. data/benchmarks/stubs/merb-app/tasks/merb.thor/gem_ext.rb +0 -127
  174. data/benchmarks/stubs/merb-app/tasks/merb.thor/main.thor +0 -152
  175. data/benchmarks/stubs/merb-app/tasks/merb.thor/ops.rb +0 -95
  176. data/benchmarks/stubs/merb-app/tasks/merb.thor/utils.rb +0 -42
  177. data/benchmarks/stubs/merb-core/Rakefile +0 -35
  178. data/benchmarks/stubs/merb-core/app/controllers/application.rb +0 -4
  179. data/benchmarks/stubs/merb-core/app/controllers/exceptions.rb +0 -15
  180. data/benchmarks/stubs/merb-core/app/helpers/global_helpers.rb +0 -7
  181. data/benchmarks/stubs/merb-core/app/views/exceptions/not_acceptable.html.erb +0 -63
  182. data/benchmarks/stubs/merb-core/app/views/exceptions/not_found.html.erb +0 -47
  183. data/benchmarks/stubs/merb-core/app/views/layout/application.html.erb +0 -12
  184. data/benchmarks/stubs/merb-core/autotest/discover.rb +0 -1
  185. data/benchmarks/stubs/merb-core/autotest/merb.rb +0 -151
  186. data/benchmarks/stubs/merb-core/autotest/merb_rspec.rb +0 -167
  187. data/benchmarks/stubs/merb-core/config/environments/development.rb +0 -17
  188. data/benchmarks/stubs/merb-core/config/environments/production.rb +0 -12
  189. data/benchmarks/stubs/merb-core/config/environments/rake.rb +0 -13
  190. data/benchmarks/stubs/merb-core/config/environments/staging.rb +0 -12
  191. data/benchmarks/stubs/merb-core/config/environments/test.rb +0 -14
  192. data/benchmarks/stubs/merb-core/config/init.rb +0 -27
  193. data/benchmarks/stubs/merb-core/config/rack.rb +0 -13
  194. data/benchmarks/stubs/merb-core/config/router.rb +0 -43
  195. data/benchmarks/stubs/merb-core/doc/rdoc/generators/merb_generator.rb +0 -1364
  196. data/benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb/api_grease.js +0 -640
  197. data/benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb/index.html.erb +0 -37
  198. data/benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb/merb.css +0 -252
  199. data/benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb/merb.rb +0 -353
  200. data/benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb/merb_doc_styles.css +0 -492
  201. data/benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb/prototype.js +0 -2515
  202. data/benchmarks/stubs/merb-core/public/favicon.ico +0 -0
  203. data/benchmarks/stubs/merb-core/public/images/merb.jpg +0 -0
  204. data/benchmarks/stubs/merb-core/public/javascripts/application.js +0 -1
  205. data/benchmarks/stubs/merb-core/public/merb.fcgi +0 -22
  206. data/benchmarks/stubs/merb-core/public/robots.txt +0 -5
  207. data/benchmarks/stubs/merb-core/public/stylesheets/master.css +0 -119
  208. data/benchmarks/stubs/merb-core/spec/spec.opts +0 -0
  209. data/benchmarks/stubs/merb-core/spec/spec_helper.rb +0 -22
  210. data/benchmarks/stubs/merb-core/tasks/merb.thor/app_script.rb +0 -33
  211. data/benchmarks/stubs/merb-core/tasks/merb.thor/common.rb +0 -70
  212. data/benchmarks/stubs/merb-core/tasks/merb.thor/gem_ext.rb +0 -127
  213. data/benchmarks/stubs/merb-core/tasks/merb.thor/main.thor +0 -152
  214. data/benchmarks/stubs/merb-core/tasks/merb.thor/ops.rb +0 -95
  215. data/benchmarks/stubs/merb-core/tasks/merb.thor/utils.rb +0 -42
  216. data/benchmarks/stubs/merb-flat/README.txt +0 -10
  217. data/benchmarks/stubs/merb-flat/Rakefile +0 -35
  218. data/benchmarks/stubs/merb-flat/application.rb +0 -17
  219. data/benchmarks/stubs/merb-flat/config/framework.rb +0 -9
  220. data/benchmarks/stubs/merb-flat/config/init.rb +0 -42
  221. data/benchmarks/stubs/merb-flat/spec/spec_helper.rb +0 -26
  222. data/benchmarks/stubs/merb-flat/tasks/merb.thor/app_script.rb +0 -33
  223. data/benchmarks/stubs/merb-flat/tasks/merb.thor/common.rb +0 -70
  224. data/benchmarks/stubs/merb-flat/tasks/merb.thor/gem_ext.rb +0 -127
  225. data/benchmarks/stubs/merb-flat/tasks/merb.thor/main.thor +0 -152
  226. data/benchmarks/stubs/merb-flat/tasks/merb.thor/ops.rb +0 -95
  227. data/benchmarks/stubs/merb-flat/tasks/merb.thor/utils.rb +0 -42
  228. data/benchmarks/stubs/merb-flat/views/foo.html.erb +0 -3
  229. data/benchmarks/stubs/merb-very-flat/Rakefile +0 -35
  230. data/benchmarks/stubs/merb-very-flat/merb-very-flat.rb +0 -61
  231. data/benchmarks/stubs/merb-very-flat/spec/spec_helper.rb +0 -26
  232. data/benchmarks/stubs/merb-very-flat/tasks/merb.thor/app_script.rb +0 -33
  233. data/benchmarks/stubs/merb-very-flat/tasks/merb.thor/common.rb +0 -70
  234. data/benchmarks/stubs/merb-very-flat/tasks/merb.thor/gem_ext.rb +0 -127
  235. data/benchmarks/stubs/merb-very-flat/tasks/merb.thor/main.thor +0 -152
  236. data/benchmarks/stubs/merb-very-flat/tasks/merb.thor/ops.rb +0 -95
  237. data/benchmarks/stubs/merb-very-flat/tasks/merb.thor/utils.rb +0 -42
  238. data/benchmarks/stubs/rails/README +0 -243
  239. data/benchmarks/stubs/rails/Rakefile +0 -10
  240. data/benchmarks/stubs/rails/app/controllers/application_controller.rb +0 -12
  241. data/benchmarks/stubs/rails/app/helpers/application_helper.rb +0 -5
  242. data/benchmarks/stubs/rails/config/boot.rb +0 -112
  243. data/benchmarks/stubs/rails/config/database.yml +0 -22
  244. data/benchmarks/stubs/rails/config/environment.rb +0 -43
  245. data/benchmarks/stubs/rails/config/environments/development.rb +0 -19
  246. data/benchmarks/stubs/rails/config/environments/production.rb +0 -30
  247. data/benchmarks/stubs/rails/config/environments/test.rb +0 -30
  248. data/benchmarks/stubs/rails/config/initializers/backtrace_silencers.rb +0 -9
  249. data/benchmarks/stubs/rails/config/initializers/inflections.rb +0 -12
  250. data/benchmarks/stubs/rails/config/initializers/mime_types.rb +0 -7
  251. data/benchmarks/stubs/rails/config/initializers/new_rails_defaults.rb +0 -21
  252. data/benchmarks/stubs/rails/config/initializers/session_store.rb +0 -17
  253. data/benchmarks/stubs/rails/config/locales/en.yml +0 -5
  254. data/benchmarks/stubs/rails/config/routes.rb +0 -45
  255. data/benchmarks/stubs/rails/doc/README_FOR_APP +0 -2
  256. data/benchmarks/stubs/rails/log/development.log +0 -0
  257. data/benchmarks/stubs/rails/log/production.log +0 -0
  258. data/benchmarks/stubs/rails/log/server.log +0 -0
  259. data/benchmarks/stubs/rails/log/test.log +0 -0
  260. data/benchmarks/stubs/rails/public/404.html +0 -30
  261. data/benchmarks/stubs/rails/public/422.html +0 -30
  262. data/benchmarks/stubs/rails/public/500.html +0 -30
  263. data/benchmarks/stubs/rails/public/favicon.ico +0 -0
  264. data/benchmarks/stubs/rails/public/images/rails.png +0 -0
  265. data/benchmarks/stubs/rails/public/index.html +0 -275
  266. data/benchmarks/stubs/rails/public/javascripts/application.js +0 -2
  267. data/benchmarks/stubs/rails/public/javascripts/controls.js +0 -963
  268. data/benchmarks/stubs/rails/public/javascripts/dragdrop.js +0 -973
  269. data/benchmarks/stubs/rails/public/javascripts/effects.js +0 -1128
  270. data/benchmarks/stubs/rails/public/javascripts/prototype.js +0 -4320
  271. data/benchmarks/stubs/rails/public/robots.txt +0 -5
  272. data/benchmarks/stubs/rails/script/about +0 -4
  273. data/benchmarks/stubs/rails/script/console +0 -3
  274. data/benchmarks/stubs/rails/script/dbconsole +0 -3
  275. data/benchmarks/stubs/rails/script/destroy +0 -3
  276. data/benchmarks/stubs/rails/script/generate +0 -3
  277. data/benchmarks/stubs/rails/script/performance/benchmarker +0 -3
  278. data/benchmarks/stubs/rails/script/performance/profiler +0 -3
  279. data/benchmarks/stubs/rails/script/plugin +0 -3
  280. data/benchmarks/stubs/rails/script/runner +0 -3
  281. data/benchmarks/stubs/rails/script/server +0 -3
  282. data/benchmarks/stubs/rails/test/performance/browsing_test.rb +0 -11
  283. data/benchmarks/stubs/rails/test/test_helper.rb +0 -40
  284. data/benchmarks/stubs/ramaze.rb +0 -0
  285. data/benchmarks/stubs/sinatra.rb +0 -11
  286. data/deps.rip +0 -8
  287. data/doc/0.0.3/Array.html +0 -354
  288. data/doc/0.0.3/AttributeMixin.html +0 -697
  289. data/doc/0.0.3/Class.html +0 -102
  290. data/doc/0.0.3/ColoredString.html +0 -476
  291. data/doc/0.0.3/Enumerable.html +0 -256
  292. data/doc/0.0.3/File.html +0 -909
  293. data/doc/0.0.3/Hash.html +0 -1586
  294. data/doc/0.0.3/Kernel.html +0 -956
  295. data/doc/0.0.3/OS.html +0 -740
  296. data/doc/0.0.3/Object.html +0 -466
  297. data/doc/0.0.3/ObjectSpace.html +0 -184
  298. data/doc/0.0.3/Path.html +0 -2499
  299. data/doc/0.0.3/Range.html +0 -190
  300. data/doc/0.0.3/Rango.html +0 -379
  301. data/doc/0.0.3/Rango/ApplicationMixin.html +0 -396
  302. data/doc/0.0.3/Rango/Bundling.html +0 -23
  303. data/doc/0.0.3/Rango/Bundling/RequireStrategy.html +0 -283
  304. data/doc/0.0.3/Rango/Bundling/Strategy.html +0 -703
  305. data/doc/0.0.3/Rango/CLI.html +0 -23
  306. data/doc/0.0.3/Rango/CLI/Generator.html +0 -762
  307. data/doc/0.0.3/Rango/CLI/Templater.html +0 -258
  308. data/doc/0.0.3/Rango/CallableStrategy.html +0 -300
  309. data/doc/0.0.3/Rango/Chainable.html +0 -181
  310. data/doc/0.0.3/Rango/Configurable.html +0 -199
  311. data/doc/0.0.3/Rango/Controller.html +0 -962
  312. data/doc/0.0.3/Rango/ControllerMixin.html +0 -860
  313. data/doc/0.0.3/Rango/ControllerStrategy.html +0 -264
  314. data/doc/0.0.3/Rango/DependencyStrategy.html +0 -116
  315. data/doc/0.0.3/Rango/Dispatcher.html +0 -305
  316. data/doc/0.0.3/Rango/Form.html +0 -162
  317. data/doc/0.0.3/Rango/GemDependencyStrategy.html +0 -210
  318. data/doc/0.0.3/Rango/Generator.html +0 -93
  319. data/doc/0.0.3/Rango/GenericViews.html +0 -128
  320. data/doc/0.0.3/Rango/GitDependencyStrategy.html +0 -224
  321. data/doc/0.0.3/Rango/GithubDependencyStrategy.html +0 -118
  322. data/doc/0.0.3/Rango/Handler.html +0 -474
  323. data/doc/0.0.3/Rango/Helpers.html +0 -1335
  324. data/doc/0.0.3/Rango/Hookable.html +0 -202
  325. data/doc/0.0.3/Rango/ImportMixin.html +0 -755
  326. data/doc/0.0.3/Rango/Logger.html +0 -920
  327. data/doc/0.0.3/Rango/Mini.html +0 -117
  328. data/doc/0.0.3/Rango/ModelForm.html +0 -42
  329. data/doc/0.0.3/Rango/Project.html +0 -516
  330. data/doc/0.0.3/Rango/RenderMixin.html +0 -23
  331. data/doc/0.0.3/Rango/Request.html +0 -1177
  332. data/doc/0.0.3/Rango/Route.html +0 -751
  333. data/doc/0.0.3/Rango/Router.html +0 -42
  334. data/doc/0.0.3/Rango/Router/Dispatcher.html +0 -311
  335. data/doc/0.0.3/Rango/RouterStrategy.html +0 -258
  336. data/doc/0.0.3/Rango/Session.html +0 -23
  337. data/doc/0.0.3/Rango/Settings.html +0 -23
  338. data/doc/0.0.3/Rango/Settings/Erubis.html +0 -23
  339. data/doc/0.0.3/Rango/Settings/Framework.html +0 -254
  340. data/doc/0.0.3/Rango/Settings/Haml.html +0 -23
  341. data/doc/0.0.3/Rango/Settings/Template.html +0 -23
  342. data/doc/0.0.3/Rango/SimpleTemplate.html +0 -187
  343. data/doc/0.0.3/Rango/StrategyMixin.html +0 -261
  344. data/doc/0.0.3/Rango/Tasks.html +0 -219
  345. data/doc/0.0.3/Rango/Template.html +0 -95
  346. data/doc/0.0.3/Rango/Template/Adapter.html +0 -90
  347. data/doc/0.0.3/Rango/Templates.html +0 -116
  348. data/doc/0.0.3/Rango/Templates/Adapter.html +0 -128
  349. data/doc/0.0.3/Rango/Templates/Template.html +0 -636
  350. data/doc/0.0.3/Rango/Templates/TemplateHelpers.html +0 -328
  351. data/doc/0.0.3/RangoThor.html +0 -205
  352. data/doc/0.0.3/String.html +0 -307
  353. data/doc/0.0.3/Time.html +0 -193
  354. data/doc/0.0.3/TimeDSL.html +0 -601
  355. data/doc/0.0.3/all-methods.html +0 -1908
  356. data/doc/0.0.3/all-namespaces.html +0 -114
  357. data/doc/0.0.3/app.js +0 -18
  358. data/doc/0.0.3/head/Array.html +0 -354
  359. data/doc/0.0.3/head/AttributeMixin.html +0 -697
  360. data/doc/0.0.3/head/Class.html +0 -102
  361. data/doc/0.0.3/head/ColoredString.html +0 -476
  362. data/doc/0.0.3/head/Enumerable.html +0 -256
  363. data/doc/0.0.3/head/File.html +0 -909
  364. data/doc/0.0.3/head/Hash.html +0 -1586
  365. data/doc/0.0.3/head/Kernel.html +0 -956
  366. data/doc/0.0.3/head/OS.html +0 -740
  367. data/doc/0.0.3/head/Object.html +0 -466
  368. data/doc/0.0.3/head/ObjectSpace.html +0 -184
  369. data/doc/0.0.3/head/Path.html +0 -2499
  370. data/doc/0.0.3/head/Range.html +0 -190
  371. data/doc/0.0.3/head/Rango.html +0 -379
  372. data/doc/0.0.3/head/Rango/ApplicationMixin.html +0 -396
  373. data/doc/0.0.3/head/Rango/Bundling.html +0 -23
  374. data/doc/0.0.3/head/Rango/Bundling/RequireStrategy.html +0 -283
  375. data/doc/0.0.3/head/Rango/Bundling/Strategy.html +0 -703
  376. data/doc/0.0.3/head/Rango/CLI.html +0 -23
  377. data/doc/0.0.3/head/Rango/CLI/Generator.html +0 -762
  378. data/doc/0.0.3/head/Rango/CLI/Templater.html +0 -258
  379. data/doc/0.0.3/head/Rango/CallableStrategy.html +0 -300
  380. data/doc/0.0.3/head/Rango/Chainable.html +0 -181
  381. data/doc/0.0.3/head/Rango/Configurable.html +0 -199
  382. data/doc/0.0.3/head/Rango/Controller.html +0 -962
  383. data/doc/0.0.3/head/Rango/ControllerMixin.html +0 -860
  384. data/doc/0.0.3/head/Rango/ControllerStrategy.html +0 -264
  385. data/doc/0.0.3/head/Rango/DependencyStrategy.html +0 -116
  386. data/doc/0.0.3/head/Rango/Dispatcher.html +0 -305
  387. data/doc/0.0.3/head/Rango/Form.html +0 -162
  388. data/doc/0.0.3/head/Rango/GemDependencyStrategy.html +0 -210
  389. data/doc/0.0.3/head/Rango/Generator.html +0 -93
  390. data/doc/0.0.3/head/Rango/GenericViews.html +0 -128
  391. data/doc/0.0.3/head/Rango/GitDependencyStrategy.html +0 -224
  392. data/doc/0.0.3/head/Rango/GithubDependencyStrategy.html +0 -118
  393. data/doc/0.0.3/head/Rango/Handler.html +0 -474
  394. data/doc/0.0.3/head/Rango/Helpers.html +0 -1335
  395. data/doc/0.0.3/head/Rango/Hookable.html +0 -202
  396. data/doc/0.0.3/head/Rango/ImportMixin.html +0 -755
  397. data/doc/0.0.3/head/Rango/Logger.html +0 -920
  398. data/doc/0.0.3/head/Rango/Mini.html +0 -117
  399. data/doc/0.0.3/head/Rango/ModelForm.html +0 -42
  400. data/doc/0.0.3/head/Rango/Project.html +0 -516
  401. data/doc/0.0.3/head/Rango/RenderMixin.html +0 -23
  402. data/doc/0.0.3/head/Rango/Request.html +0 -1177
  403. data/doc/0.0.3/head/Rango/Route.html +0 -751
  404. data/doc/0.0.3/head/Rango/Router.html +0 -42
  405. data/doc/0.0.3/head/Rango/Router/Dispatcher.html +0 -311
  406. data/doc/0.0.3/head/Rango/RouterStrategy.html +0 -258
  407. data/doc/0.0.3/head/Rango/Session.html +0 -23
  408. data/doc/0.0.3/head/Rango/Settings.html +0 -23
  409. data/doc/0.0.3/head/Rango/Settings/Erubis.html +0 -23
  410. data/doc/0.0.3/head/Rango/Settings/Framework.html +0 -254
  411. data/doc/0.0.3/head/Rango/Settings/Haml.html +0 -23
  412. data/doc/0.0.3/head/Rango/Settings/Template.html +0 -23
  413. data/doc/0.0.3/head/Rango/SimpleTemplate.html +0 -187
  414. data/doc/0.0.3/head/Rango/StrategyMixin.html +0 -261
  415. data/doc/0.0.3/head/Rango/Tasks.html +0 -219
  416. data/doc/0.0.3/head/Rango/Template.html +0 -95
  417. data/doc/0.0.3/head/Rango/Template/Adapter.html +0 -90
  418. data/doc/0.0.3/head/Rango/Templates.html +0 -116
  419. data/doc/0.0.3/head/Rango/Templates/Adapter.html +0 -128
  420. data/doc/0.0.3/head/Rango/Templates/Template.html +0 -636
  421. data/doc/0.0.3/head/Rango/Templates/TemplateHelpers.html +0 -328
  422. data/doc/0.0.3/head/RangoThor.html +0 -205
  423. data/doc/0.0.3/head/String.html +0 -307
  424. data/doc/0.0.3/head/Time.html +0 -193
  425. data/doc/0.0.3/head/TimeDSL.html +0 -601
  426. data/doc/0.0.3/head/all-methods.html +0 -1908
  427. data/doc/0.0.3/head/all-namespaces.html +0 -114
  428. data/doc/0.0.3/head/app.js +0 -18
  429. data/doc/0.0.3/head/index.html +0 -18
  430. data/doc/0.0.3/head/jquery.js +0 -11
  431. data/doc/0.0.3/head/readme.html +0 -36
  432. data/doc/0.0.3/head/style.css +0 -68
  433. data/doc/0.0.3/head/syntax_highlight.css +0 -21
  434. data/doc/0.0.3/index.html +0 -18
  435. data/doc/0.0.3/jquery.js +0 -11
  436. data/doc/0.0.3/readme.html +0 -36
  437. data/doc/0.0.3/style.css +0 -68
  438. data/doc/0.0.3/syntax_highlight.css +0 -21
  439. data/doc/0.0.4/Array.html +0 -354
  440. data/doc/0.0.4/AttributeMixin.html +0 -697
  441. data/doc/0.0.4/Class.html +0 -102
  442. data/doc/0.0.4/ColoredString.html +0 -476
  443. data/doc/0.0.4/Enumerable.html +0 -256
  444. data/doc/0.0.4/File.html +0 -909
  445. data/doc/0.0.4/Hash.html +0 -1586
  446. data/doc/0.0.4/Kernel.html +0 -956
  447. data/doc/0.0.4/OS.html +0 -740
  448. data/doc/0.0.4/Object.html +0 -466
  449. data/doc/0.0.4/ObjectSpace.html +0 -184
  450. data/doc/0.0.4/Path.html +0 -2499
  451. data/doc/0.0.4/Range.html +0 -190
  452. data/doc/0.0.4/Rango.html +0 -379
  453. data/doc/0.0.4/Rango/ApplicationMixin.html +0 -396
  454. data/doc/0.0.4/Rango/Bundling.html +0 -23
  455. data/doc/0.0.4/Rango/Bundling/RequireStrategy.html +0 -283
  456. data/doc/0.0.4/Rango/Bundling/Strategy.html +0 -703
  457. data/doc/0.0.4/Rango/CLI.html +0 -23
  458. data/doc/0.0.4/Rango/CLI/Generator.html +0 -762
  459. data/doc/0.0.4/Rango/CLI/Templater.html +0 -258
  460. data/doc/0.0.4/Rango/CallableStrategy.html +0 -300
  461. data/doc/0.0.4/Rango/Chainable.html +0 -181
  462. data/doc/0.0.4/Rango/Configurable.html +0 -199
  463. data/doc/0.0.4/Rango/Controller.html +0 -962
  464. data/doc/0.0.4/Rango/ControllerMixin.html +0 -860
  465. data/doc/0.0.4/Rango/ControllerStrategy.html +0 -264
  466. data/doc/0.0.4/Rango/DependencyStrategy.html +0 -116
  467. data/doc/0.0.4/Rango/Dispatcher.html +0 -305
  468. data/doc/0.0.4/Rango/Form.html +0 -162
  469. data/doc/0.0.4/Rango/GemDependencyStrategy.html +0 -210
  470. data/doc/0.0.4/Rango/Generator.html +0 -93
  471. data/doc/0.0.4/Rango/GenericViews.html +0 -128
  472. data/doc/0.0.4/Rango/GitDependencyStrategy.html +0 -224
  473. data/doc/0.0.4/Rango/GithubDependencyStrategy.html +0 -118
  474. data/doc/0.0.4/Rango/Handler.html +0 -474
  475. data/doc/0.0.4/Rango/Helpers.html +0 -1335
  476. data/doc/0.0.4/Rango/Hookable.html +0 -202
  477. data/doc/0.0.4/Rango/ImportMixin.html +0 -755
  478. data/doc/0.0.4/Rango/Logger.html +0 -920
  479. data/doc/0.0.4/Rango/Mini.html +0 -117
  480. data/doc/0.0.4/Rango/ModelForm.html +0 -42
  481. data/doc/0.0.4/Rango/Project.html +0 -516
  482. data/doc/0.0.4/Rango/RenderMixin.html +0 -23
  483. data/doc/0.0.4/Rango/Request.html +0 -1177
  484. data/doc/0.0.4/Rango/Route.html +0 -751
  485. data/doc/0.0.4/Rango/Router.html +0 -42
  486. data/doc/0.0.4/Rango/Router/Dispatcher.html +0 -311
  487. data/doc/0.0.4/Rango/RouterStrategy.html +0 -258
  488. data/doc/0.0.4/Rango/Session.html +0 -23
  489. data/doc/0.0.4/Rango/Settings.html +0 -23
  490. data/doc/0.0.4/Rango/Settings/Erubis.html +0 -23
  491. data/doc/0.0.4/Rango/Settings/Framework.html +0 -254
  492. data/doc/0.0.4/Rango/Settings/Haml.html +0 -23
  493. data/doc/0.0.4/Rango/Settings/Template.html +0 -23
  494. data/doc/0.0.4/Rango/SimpleTemplate.html +0 -187
  495. data/doc/0.0.4/Rango/StrategyMixin.html +0 -261
  496. data/doc/0.0.4/Rango/Tasks.html +0 -219
  497. data/doc/0.0.4/Rango/Template.html +0 -95
  498. data/doc/0.0.4/Rango/Template/Adapter.html +0 -90
  499. data/doc/0.0.4/Rango/Templates.html +0 -116
  500. data/doc/0.0.4/Rango/Templates/Adapter.html +0 -128
  501. data/doc/0.0.4/Rango/Templates/Template.html +0 -636
  502. data/doc/0.0.4/Rango/Templates/TemplateHelpers.html +0 -328
  503. data/doc/0.0.4/RangoThor.html +0 -205
  504. data/doc/0.0.4/String.html +0 -307
  505. data/doc/0.0.4/Time.html +0 -193
  506. data/doc/0.0.4/TimeDSL.html +0 -601
  507. data/doc/0.0.4/all-methods.html +0 -1908
  508. data/doc/0.0.4/all-namespaces.html +0 -114
  509. data/doc/0.0.4/app.js +0 -18
  510. data/doc/0.0.4/head/Array.html +0 -354
  511. data/doc/0.0.4/head/AttributeMixin.html +0 -697
  512. data/doc/0.0.4/head/Class.html +0 -102
  513. data/doc/0.0.4/head/ColoredString.html +0 -476
  514. data/doc/0.0.4/head/Enumerable.html +0 -256
  515. data/doc/0.0.4/head/File.html +0 -909
  516. data/doc/0.0.4/head/Hash.html +0 -1586
  517. data/doc/0.0.4/head/Kernel.html +0 -956
  518. data/doc/0.0.4/head/OS.html +0 -740
  519. data/doc/0.0.4/head/Object.html +0 -466
  520. data/doc/0.0.4/head/ObjectSpace.html +0 -184
  521. data/doc/0.0.4/head/Path.html +0 -2499
  522. data/doc/0.0.4/head/Range.html +0 -190
  523. data/doc/0.0.4/head/Rango.html +0 -379
  524. data/doc/0.0.4/head/Rango/ApplicationMixin.html +0 -396
  525. data/doc/0.0.4/head/Rango/Bundling.html +0 -23
  526. data/doc/0.0.4/head/Rango/Bundling/RequireStrategy.html +0 -283
  527. data/doc/0.0.4/head/Rango/Bundling/Strategy.html +0 -703
  528. data/doc/0.0.4/head/Rango/CLI.html +0 -23
  529. data/doc/0.0.4/head/Rango/CLI/Generator.html +0 -762
  530. data/doc/0.0.4/head/Rango/CLI/Templater.html +0 -258
  531. data/doc/0.0.4/head/Rango/CallableStrategy.html +0 -300
  532. data/doc/0.0.4/head/Rango/Chainable.html +0 -181
  533. data/doc/0.0.4/head/Rango/Configurable.html +0 -199
  534. data/doc/0.0.4/head/Rango/Controller.html +0 -962
  535. data/doc/0.0.4/head/Rango/ControllerMixin.html +0 -860
  536. data/doc/0.0.4/head/Rango/ControllerStrategy.html +0 -264
  537. data/doc/0.0.4/head/Rango/DependencyStrategy.html +0 -116
  538. data/doc/0.0.4/head/Rango/Dispatcher.html +0 -305
  539. data/doc/0.0.4/head/Rango/Form.html +0 -162
  540. data/doc/0.0.4/head/Rango/GemDependencyStrategy.html +0 -210
  541. data/doc/0.0.4/head/Rango/Generator.html +0 -93
  542. data/doc/0.0.4/head/Rango/GenericViews.html +0 -128
  543. data/doc/0.0.4/head/Rango/GitDependencyStrategy.html +0 -224
  544. data/doc/0.0.4/head/Rango/GithubDependencyStrategy.html +0 -118
  545. data/doc/0.0.4/head/Rango/Handler.html +0 -474
  546. data/doc/0.0.4/head/Rango/Helpers.html +0 -1335
  547. data/doc/0.0.4/head/Rango/Hookable.html +0 -202
  548. data/doc/0.0.4/head/Rango/ImportMixin.html +0 -755
  549. data/doc/0.0.4/head/Rango/Logger.html +0 -920
  550. data/doc/0.0.4/head/Rango/Mini.html +0 -117
  551. data/doc/0.0.4/head/Rango/ModelForm.html +0 -42
  552. data/doc/0.0.4/head/Rango/Project.html +0 -516
  553. data/doc/0.0.4/head/Rango/RenderMixin.html +0 -23
  554. data/doc/0.0.4/head/Rango/Request.html +0 -1177
  555. data/doc/0.0.4/head/Rango/Route.html +0 -751
  556. data/doc/0.0.4/head/Rango/Router.html +0 -42
  557. data/doc/0.0.4/head/Rango/Router/Dispatcher.html +0 -311
  558. data/doc/0.0.4/head/Rango/RouterStrategy.html +0 -258
  559. data/doc/0.0.4/head/Rango/Session.html +0 -23
  560. data/doc/0.0.4/head/Rango/Settings.html +0 -23
  561. data/doc/0.0.4/head/Rango/Settings/Erubis.html +0 -23
  562. data/doc/0.0.4/head/Rango/Settings/Framework.html +0 -254
  563. data/doc/0.0.4/head/Rango/Settings/Haml.html +0 -23
  564. data/doc/0.0.4/head/Rango/Settings/Template.html +0 -23
  565. data/doc/0.0.4/head/Rango/SimpleTemplate.html +0 -187
  566. data/doc/0.0.4/head/Rango/StrategyMixin.html +0 -261
  567. data/doc/0.0.4/head/Rango/Tasks.html +0 -219
  568. data/doc/0.0.4/head/Rango/Template.html +0 -95
  569. data/doc/0.0.4/head/Rango/Template/Adapter.html +0 -90
  570. data/doc/0.0.4/head/Rango/Templates.html +0 -116
  571. data/doc/0.0.4/head/Rango/Templates/Adapter.html +0 -128
  572. data/doc/0.0.4/head/Rango/Templates/Template.html +0 -636
  573. data/doc/0.0.4/head/Rango/Templates/TemplateHelpers.html +0 -328
  574. data/doc/0.0.4/head/RangoThor.html +0 -205
  575. data/doc/0.0.4/head/String.html +0 -307
  576. data/doc/0.0.4/head/Time.html +0 -193
  577. data/doc/0.0.4/head/TimeDSL.html +0 -601
  578. data/doc/0.0.4/head/all-methods.html +0 -1908
  579. data/doc/0.0.4/head/all-namespaces.html +0 -114
  580. data/doc/0.0.4/head/app.js +0 -18
  581. data/doc/0.0.4/head/index.html +0 -18
  582. data/doc/0.0.4/head/jquery.js +0 -11
  583. data/doc/0.0.4/head/readme.html +0 -36
  584. data/doc/0.0.4/head/style.css +0 -68
  585. data/doc/0.0.4/head/syntax_highlight.css +0 -21
  586. data/doc/0.0.4/index.html +0 -18
  587. data/doc/0.0.4/jquery.js +0 -11
  588. data/doc/0.0.4/readme.html +0 -36
  589. data/doc/0.0.4/style.css +0 -68
  590. data/doc/0.0.4/syntax_highlight.css +0 -21
  591. data/doc/0.0.5/Array.html +0 -354
  592. data/doc/0.0.5/AttributeMixin.html +0 -697
  593. data/doc/0.0.5/Class.html +0 -102
  594. data/doc/0.0.5/ColoredString.html +0 -476
  595. data/doc/0.0.5/Enumerable.html +0 -256
  596. data/doc/0.0.5/File.html +0 -909
  597. data/doc/0.0.5/Hash.html +0 -1586
  598. data/doc/0.0.5/Kernel.html +0 -956
  599. data/doc/0.0.5/OS.html +0 -740
  600. data/doc/0.0.5/Object.html +0 -466
  601. data/doc/0.0.5/ObjectSpace.html +0 -184
  602. data/doc/0.0.5/Path.html +0 -2499
  603. data/doc/0.0.5/Range.html +0 -190
  604. data/doc/0.0.5/Rango.html +0 -379
  605. data/doc/0.0.5/Rango/ApplicationMixin.html +0 -396
  606. data/doc/0.0.5/Rango/Bundling.html +0 -23
  607. data/doc/0.0.5/Rango/Bundling/RequireStrategy.html +0 -283
  608. data/doc/0.0.5/Rango/Bundling/Strategy.html +0 -703
  609. data/doc/0.0.5/Rango/CLI.html +0 -23
  610. data/doc/0.0.5/Rango/CLI/Generator.html +0 -762
  611. data/doc/0.0.5/Rango/CLI/Templater.html +0 -258
  612. data/doc/0.0.5/Rango/CallableStrategy.html +0 -300
  613. data/doc/0.0.5/Rango/Chainable.html +0 -181
  614. data/doc/0.0.5/Rango/Configurable.html +0 -199
  615. data/doc/0.0.5/Rango/Controller.html +0 -962
  616. data/doc/0.0.5/Rango/ControllerMixin.html +0 -860
  617. data/doc/0.0.5/Rango/ControllerStrategy.html +0 -264
  618. data/doc/0.0.5/Rango/DependencyStrategy.html +0 -116
  619. data/doc/0.0.5/Rango/Dispatcher.html +0 -305
  620. data/doc/0.0.5/Rango/Form.html +0 -162
  621. data/doc/0.0.5/Rango/GemDependencyStrategy.html +0 -210
  622. data/doc/0.0.5/Rango/Generator.html +0 -93
  623. data/doc/0.0.5/Rango/GenericViews.html +0 -128
  624. data/doc/0.0.5/Rango/GitDependencyStrategy.html +0 -224
  625. data/doc/0.0.5/Rango/GithubDependencyStrategy.html +0 -118
  626. data/doc/0.0.5/Rango/Handler.html +0 -474
  627. data/doc/0.0.5/Rango/Helpers.html +0 -1335
  628. data/doc/0.0.5/Rango/Hookable.html +0 -202
  629. data/doc/0.0.5/Rango/ImportMixin.html +0 -755
  630. data/doc/0.0.5/Rango/Logger.html +0 -920
  631. data/doc/0.0.5/Rango/Mini.html +0 -117
  632. data/doc/0.0.5/Rango/ModelForm.html +0 -42
  633. data/doc/0.0.5/Rango/Project.html +0 -516
  634. data/doc/0.0.5/Rango/RenderMixin.html +0 -23
  635. data/doc/0.0.5/Rango/Request.html +0 -1177
  636. data/doc/0.0.5/Rango/Route.html +0 -751
  637. data/doc/0.0.5/Rango/Router.html +0 -42
  638. data/doc/0.0.5/Rango/Router/Dispatcher.html +0 -311
  639. data/doc/0.0.5/Rango/RouterStrategy.html +0 -258
  640. data/doc/0.0.5/Rango/Session.html +0 -23
  641. data/doc/0.0.5/Rango/Settings.html +0 -23
  642. data/doc/0.0.5/Rango/Settings/Erubis.html +0 -23
  643. data/doc/0.0.5/Rango/Settings/Framework.html +0 -254
  644. data/doc/0.0.5/Rango/Settings/Haml.html +0 -23
  645. data/doc/0.0.5/Rango/Settings/Template.html +0 -23
  646. data/doc/0.0.5/Rango/SimpleTemplate.html +0 -187
  647. data/doc/0.0.5/Rango/StrategyMixin.html +0 -261
  648. data/doc/0.0.5/Rango/Tasks.html +0 -219
  649. data/doc/0.0.5/Rango/Template.html +0 -95
  650. data/doc/0.0.5/Rango/Template/Adapter.html +0 -90
  651. data/doc/0.0.5/Rango/Templates.html +0 -116
  652. data/doc/0.0.5/Rango/Templates/Adapter.html +0 -128
  653. data/doc/0.0.5/Rango/Templates/Template.html +0 -636
  654. data/doc/0.0.5/Rango/Templates/TemplateHelpers.html +0 -328
  655. data/doc/0.0.5/RangoThor.html +0 -205
  656. data/doc/0.0.5/String.html +0 -307
  657. data/doc/0.0.5/Time.html +0 -193
  658. data/doc/0.0.5/TimeDSL.html +0 -601
  659. data/doc/0.0.5/all-methods.html +0 -2092
  660. data/doc/0.0.5/all-namespaces.html +0 -126
  661. data/doc/0.0.5/app.js +0 -18
  662. data/doc/0.0.5/index.html +0 -18
  663. data/doc/0.0.5/jquery.js +0 -11
  664. data/doc/0.0.5/readme.html +0 -36
  665. data/doc/0.0.5/style.css +0 -68
  666. data/doc/0.0.5/syntax_highlight.css +0 -21
  667. data/doc/head/Array.html +0 -354
  668. data/doc/head/AttributeMixin.html +0 -697
  669. data/doc/head/Class.html +0 -102
  670. data/doc/head/ColoredString.html +0 -476
  671. data/doc/head/Enumerable.html +0 -256
  672. data/doc/head/File.html +0 -909
  673. data/doc/head/Hash.html +0 -1586
  674. data/doc/head/Kernel.html +0 -956
  675. data/doc/head/OS.html +0 -740
  676. data/doc/head/Object.html +0 -466
  677. data/doc/head/ObjectSpace.html +0 -184
  678. data/doc/head/Path.html +0 -2499
  679. data/doc/head/Range.html +0 -190
  680. data/doc/head/Rango.html +0 -379
  681. data/doc/head/Rango/ApplicationMixin.html +0 -396
  682. data/doc/head/Rango/Bundling.html +0 -23
  683. data/doc/head/Rango/Bundling/RequireStrategy.html +0 -283
  684. data/doc/head/Rango/Bundling/Strategy.html +0 -703
  685. data/doc/head/Rango/CLI.html +0 -23
  686. data/doc/head/Rango/CLI/Generator.html +0 -762
  687. data/doc/head/Rango/CLI/Templater.html +0 -258
  688. data/doc/head/Rango/CallableStrategy.html +0 -300
  689. data/doc/head/Rango/Chainable.html +0 -181
  690. data/doc/head/Rango/Configurable.html +0 -199
  691. data/doc/head/Rango/Controller.html +0 -962
  692. data/doc/head/Rango/ControllerMixin.html +0 -860
  693. data/doc/head/Rango/ControllerStrategy.html +0 -264
  694. data/doc/head/Rango/DependencyStrategy.html +0 -116
  695. data/doc/head/Rango/Dispatcher.html +0 -305
  696. data/doc/head/Rango/Form.html +0 -162
  697. data/doc/head/Rango/GemDependencyStrategy.html +0 -210
  698. data/doc/head/Rango/Generator.html +0 -93
  699. data/doc/head/Rango/GenericViews.html +0 -128
  700. data/doc/head/Rango/GitDependencyStrategy.html +0 -224
  701. data/doc/head/Rango/GithubDependencyStrategy.html +0 -118
  702. data/doc/head/Rango/Handler.html +0 -474
  703. data/doc/head/Rango/Helpers.html +0 -1335
  704. data/doc/head/Rango/Hookable.html +0 -202
  705. data/doc/head/Rango/ImportMixin.html +0 -755
  706. data/doc/head/Rango/Logger.html +0 -920
  707. data/doc/head/Rango/Mini.html +0 -117
  708. data/doc/head/Rango/ModelForm.html +0 -42
  709. data/doc/head/Rango/Project.html +0 -516
  710. data/doc/head/Rango/RenderMixin.html +0 -23
  711. data/doc/head/Rango/Request.html +0 -1177
  712. data/doc/head/Rango/Route.html +0 -751
  713. data/doc/head/Rango/Router.html +0 -42
  714. data/doc/head/Rango/Router/Dispatcher.html +0 -311
  715. data/doc/head/Rango/RouterStrategy.html +0 -258
  716. data/doc/head/Rango/Session.html +0 -23
  717. data/doc/head/Rango/Settings.html +0 -23
  718. data/doc/head/Rango/Settings/Erubis.html +0 -23
  719. data/doc/head/Rango/Settings/Framework.html +0 -254
  720. data/doc/head/Rango/Settings/Haml.html +0 -23
  721. data/doc/head/Rango/Settings/Template.html +0 -23
  722. data/doc/head/Rango/SimpleTemplate.html +0 -187
  723. data/doc/head/Rango/StrategyMixin.html +0 -261
  724. data/doc/head/Rango/Tasks.html +0 -219
  725. data/doc/head/Rango/Template.html +0 -95
  726. data/doc/head/Rango/Template/Adapter.html +0 -90
  727. data/doc/head/Rango/Templates.html +0 -116
  728. data/doc/head/Rango/Templates/Adapter.html +0 -128
  729. data/doc/head/Rango/Templates/Template.html +0 -636
  730. data/doc/head/Rango/Templates/TemplateHelpers.html +0 -328
  731. data/doc/head/RangoThor.html +0 -205
  732. data/doc/head/String.html +0 -307
  733. data/doc/head/Time.html +0 -193
  734. data/doc/head/TimeDSL.html +0 -601
  735. data/doc/head/all-methods.html +0 -2092
  736. data/doc/head/all-namespaces.html +0 -126
  737. data/doc/head/app.js +0 -18
  738. data/doc/head/index.html +0 -18
  739. data/doc/head/jquery.js +0 -11
  740. data/doc/head/readme.html +0 -36
  741. data/doc/head/style.css +0 -68
  742. data/doc/head/syntax_highlight.css +0 -21
  743. data/doc/versions/0.0.1/Rango.html +0 -1025
  744. data/doc/versions/0.0.1/Rango/CallableStrategy.html +0 -166
  745. data/doc/versions/0.0.1/Rango/ControllerStrategy.html +0 -180
  746. data/doc/versions/0.0.1/Rango/Route.html +0 -340
  747. data/doc/versions/0.0.1/Rango/Router.html +0 -502
  748. data/doc/versions/0.0.1/Rango/RouterStrategy.html +0 -94
  749. data/doc/versions/0.0.1/Rango/Template.html +0 -28
  750. data/doc/versions/0.0.1/Rango/Template/Adapter.html +0 -90
  751. data/doc/versions/0.0.1/all-methods.html +0 -228
  752. data/doc/versions/0.0.1/all-namespaces.html +0 -36
  753. data/doc/versions/0.0.1/app.js +0 -18
  754. data/doc/versions/0.0.1/index.html +0 -18
  755. data/doc/versions/0.0.1/jquery.js +0 -11
  756. data/doc/versions/0.0.1/readme.html +0 -137
  757. data/doc/versions/0.0.1/style.css +0 -68
  758. data/doc/versions/0.0.1/syntax_highlight.css +0 -21
  759. data/examples/TODO +0 -0
  760. data/examples/flat/basic.ru +0 -31
  761. data/examples/flat/generic_views.ru +0 -16
  762. data/examples/flat/info.ru +0 -18
  763. data/examples/flat/simple_controller.ru +0 -1
  764. data/examples/flat/templates/about/author.html.haml +0 -1
  765. data/examples/flat/templates/about/contact.html.haml +0 -0
  766. data/examples/flat/templates/base.html.haml +0 -0
  767. data/examples/flat/templates/info.html.haml +0 -25
  768. data/examples/twitter/Thorfile +0 -12
  769. data/examples/twitter/config.ru +0 -48
  770. data/examples/twitter/development.db +0 -0
  771. data/examples/twitter/factories.rb +0 -19
  772. data/examples/twitter/init.rb +0 -15
  773. data/examples/twitter/media/hello-static.txt +0 -0
  774. data/examples/twitter/models.rb +0 -13
  775. data/examples/twitter/run.rb +0 -8
  776. data/examples/twitter/settings.rb +0 -5
  777. data/examples/twitter/templates/base.html.haml +0 -9
  778. data/examples/twitter/templates/index.html.haml +0 -4
  779. data/examples/twitter/templates/show.html.haml +0 -4
  780. data/examples/twitter/templates/timeline.html.haml +0 -10
  781. data/examples/twitter/views.rb +0 -40
  782. data/lib/rango/orm/tasks/datamapper.thor +0 -41
  783. data/lib/rango/orm/tasks/sequel.thor +0 -0
  784. data/rango-0.0.6.pre.gem +0 -0
  785. data/rango.gemspec +0 -48
  786. data/rango.pre.gemspec +0 -48
  787. data/runcoderun.sh +0 -19
  788. data/script/erubis +0 -11
  789. data/script/rackup +0 -2
  790. data/script/rake2thor +0 -86
  791. data/script/spec +0 -12
  792. data/script/thor +0 -12
  793. data/stubs/project/content/Rakefile +0 -9
  794. data/support/Rango.tmbundle/Commands/Documentation for current word.tmCommand +0 -22
  795. data/support/Rango.tmbundle/Commands/Got to import.tmCommand +0 -23
  796. data/support/Rango.tmbundle/Commands/Rango console.tmCommand +0 -22
  797. data/support/Rango.tmbundle/Commands/Rango server.tmCommand +0 -22
  798. data/support/Rango.tmbundle/Commands/Read documentation.tmCommand +0 -22
  799. data/support/Rango.tmbundle/Snippets/Method with yardoc.tmSnippet +0 -20
  800. data/support/Rango.tmbundle/Snippets/Project_configure.tmSnippet +0 -18
  801. data/support/Rango.tmbundle/Snippets/Project_import.tmSnippet +0 -16
  802. data/support/Rango.tmbundle/Snippets/Project_logger_debug.tmSnippet +0 -16
  803. data/support/Rango.tmbundle/Snippets/Project_logger_error.tmSnippet +0 -16
  804. data/support/Rango.tmbundle/Snippets/Project_logger_fatal.tmSnippet +0 -16
  805. data/support/Rango.tmbundle/Snippets/Project_logger_inspect.tmSnippet +0 -16
  806. data/support/Rango.tmbundle/Snippets/Project_logger_warn.tmSnippet +0 -16
  807. data/support/Rango.tmbundle/Snippets/Rango_dependency.tmSnippet +0 -16
  808. data/support/Rango.tmbundle/Snippets/Rango_import.tmSnippet +0 -16
  809. data/support/Rango.tmbundle/Snippets/Rango_logger_debug.tmSnippet +0 -16
  810. data/support/Rango.tmbundle/Snippets/Rango_logger_error.tmSnippet +0 -16
  811. data/support/Rango.tmbundle/Snippets/Rango_logger_fatal.tmSnippet +0 -16
  812. data/support/Rango.tmbundle/Snippets/Rango_logger_inspect.tmSnippet +0 -16
  813. data/support/Rango.tmbundle/Snippets/Rango_logger_warn.tmSnippet +0 -16
  814. data/support/Rango.tmbundle/Snippets/controller.tmSnippet +0 -28
  815. data/support/Rango.tmbundle/Snippets/doc.tmSnippet +0 -20
  816. data/support/Rango.tmbundle/Snippets/match.tmSnippet +0 -16
  817. data/support/Rango.tmbundle/Snippets/thor task.tmSnippet +0 -19
  818. data/support/Rango.tmbundle/info.plist +0 -37
  819. data/support/hooks/commit-msg +0 -13
  820. data/support/hooks/post-commit +0 -4
  821. data/support/hooks/pre-commit +0 -4
  822. data/support/hooks/pre-rebase +0 -169
  823. data/support/hooks/prepare-commit-msg +0 -36
  824. data/tasks/benchmark.thor +0 -15
  825. data/tasks/hooks.thor +0 -26
  826. data/tasks/package.thor +0 -31
  827. data/tasks/prerelease.thor +0 -34
  828. data/tasks/release.thor +0 -85
  829. data/tasks/repair.thor +0 -64
  830. data/tasks/spec.thor +0 -41
  831. data/tasks/stats.thor +0 -82
  832. data/tasks/system.thor +0 -158
  833. data/tasks/yardoc.thor +0 -16
  834. data/vendor/abstract/ChangeLog +0 -3
  835. data/vendor/abstract/README.txt +0 -57
  836. data/vendor/abstract/abstract.gemspec +0 -48
  837. data/vendor/abstract/doc/classes/Kernel.html +0 -134
  838. data/vendor/abstract/doc/classes/Kernel.src/M000002.html +0 -24
  839. data/vendor/abstract/doc/classes/Module.html +0 -140
  840. data/vendor/abstract/doc/classes/Module.src/M000001.html +0 -20
  841. data/vendor/abstract/doc/created.rid +0 -1
  842. data/vendor/abstract/doc/files/README_txt.html +0 -173
  843. data/vendor/abstract/doc/files/lib/abstract_rb.html +0 -137
  844. data/vendor/abstract/doc/fr_class_index.html +0 -28
  845. data/vendor/abstract/doc/fr_file_index.html +0 -28
  846. data/vendor/abstract/doc/fr_method_index.html +0 -28
  847. data/vendor/abstract/doc/index.html +0 -24
  848. data/vendor/abstract/doc/rdoc-style.css +0 -208
  849. data/vendor/abstract/lib/abstract.rb +0 -75
  850. data/vendor/abstract/setup.rb +0 -1331
  851. data/vendor/abstract/test/test.rb +0 -91
  852. data/vendor/cli/CHANGELOG +0 -2
  853. data/vendor/cli/LICENSE +0 -20
  854. data/vendor/cli/README.textile +0 -0
  855. data/vendor/cli/Rakefile +0 -61
  856. data/vendor/cli/cli.gemspec +0 -42
  857. data/vendor/cli/deps.rip +0 -5
  858. data/vendor/cli/lib/cli.rb +0 -33
  859. data/vendor/cli/script/spec +0 -12
  860. data/vendor/cli/spec/cli_spec.rb +0 -56
  861. data/vendor/cli/spec/spec_helper.rb +0 -18
  862. data/vendor/erubis/CHANGES.txt +0 -717
  863. data/vendor/erubis/MIT-LICENSE +0 -20
  864. data/vendor/erubis/README.txt +0 -102
  865. data/vendor/erubis/benchmark/Makefile +0 -6
  866. data/vendor/erubis/benchmark/bench.rb +0 -314
  867. data/vendor/erubis/benchmark/bench_context.yaml +0 -141
  868. data/vendor/erubis/benchmark/templates/_footer.html +0 -4
  869. data/vendor/erubis/benchmark/templates/_header.html +0 -52
  870. data/vendor/erubis/benchmark/templates/bench_erb.rhtml +0 -29
  871. data/vendor/erubis/benchmark/templates/bench_erubis.rhtml +0 -29
  872. data/vendor/erubis/benchmark/templates/bench_eruby.rhtml +0 -29
  873. data/vendor/erubis/bin/erubis +0 -11
  874. data/vendor/erubis/contrib/erubis +0 -11
  875. data/vendor/erubis/contrib/erubis-run.rb +0 -132
  876. data/vendor/erubis/contrib/inline-require +0 -153
  877. data/vendor/erubis/doc-api/classes/ActionView.html +0 -105
  878. data/vendor/erubis/doc-api/classes/ActionView/TemplateHandlers/ErubisHandler.html +0 -181
  879. data/vendor/erubis/doc-api/classes/ERB.html +0 -101
  880. data/vendor/erubis/doc-api/classes/Erubis.html +0 -353
  881. data/vendor/erubis/doc-api/classes/Erubis/ArrayBufferEnhancer.html +0 -175
  882. data/vendor/erubis/doc-api/classes/Erubis/ArrayBufferEruby.html +0 -120
  883. data/vendor/erubis/doc-api/classes/Erubis/ArrayEnhancer.html +0 -174
  884. data/vendor/erubis/doc-api/classes/Erubis/ArrayEruby.html +0 -120
  885. data/vendor/erubis/doc-api/classes/Erubis/Basic.html +0 -112
  886. data/vendor/erubis/doc-api/classes/Erubis/Basic/Converter.html +0 -327
  887. data/vendor/erubis/doc-api/classes/Erubis/Basic/Engine.html +0 -130
  888. data/vendor/erubis/doc-api/classes/Erubis/BiPatternEnhancer.html +0 -215
  889. data/vendor/erubis/doc-api/classes/Erubis/BiPatternEruby.html +0 -120
  890. data/vendor/erubis/doc-api/classes/Erubis/CGenerator.html +0 -386
  891. data/vendor/erubis/doc-api/classes/Erubis/CommandOptionError.html +0 -113
  892. data/vendor/erubis/doc-api/classes/Erubis/Context.html +0 -344
  893. data/vendor/erubis/doc-api/classes/Erubis/Converter.html +0 -283
  894. data/vendor/erubis/doc-api/classes/Erubis/DeleteIndentEnhancer.html +0 -150
  895. data/vendor/erubis/doc-api/classes/Erubis/DeleteIndentEruby.html +0 -120
  896. data/vendor/erubis/doc-api/classes/Erubis/Ec.html +0 -126
  897. data/vendor/erubis/doc-api/classes/Erubis/Ejava.html +0 -126
  898. data/vendor/erubis/doc-api/classes/Erubis/Ejavascript.html +0 -126
  899. data/vendor/erubis/doc-api/classes/Erubis/Engine.html +0 -305
  900. data/vendor/erubis/doc-api/classes/Erubis/Eperl.html +0 -126
  901. data/vendor/erubis/doc-api/classes/Erubis/Ephp.html +0 -126
  902. data/vendor/erubis/doc-api/classes/Erubis/ErboutEnhancer.html +0 -175
  903. data/vendor/erubis/doc-api/classes/Erubis/ErboutEruby.html +0 -120
  904. data/vendor/erubis/doc-api/classes/Erubis/ErubisError.html +0 -117
  905. data/vendor/erubis/doc-api/classes/Erubis/Eruby.html +0 -132
  906. data/vendor/erubis/doc-api/classes/Erubis/EscapeEnhancer.html +0 -165
  907. data/vendor/erubis/doc-api/classes/Erubis/EscapedEc.html +0 -120
  908. data/vendor/erubis/doc-api/classes/Erubis/EscapedEjava.html +0 -120
  909. data/vendor/erubis/doc-api/classes/Erubis/EscapedEjavascript.html +0 -120
  910. data/vendor/erubis/doc-api/classes/Erubis/EscapedEperl.html +0 -120
  911. data/vendor/erubis/doc-api/classes/Erubis/EscapedEphp.html +0 -120
  912. data/vendor/erubis/doc-api/classes/Erubis/EscapedEruby.html +0 -127
  913. data/vendor/erubis/doc-api/classes/Erubis/EscapedEscheme.html +0 -120
  914. data/vendor/erubis/doc-api/classes/Erubis/Escheme.html +0 -126
  915. data/vendor/erubis/doc-api/classes/Erubis/Evaluator.html +0 -212
  916. data/vendor/erubis/doc-api/classes/Erubis/FastEruby.html +0 -131
  917. data/vendor/erubis/doc-api/classes/Erubis/Generator.html +0 -416
  918. data/vendor/erubis/doc-api/classes/Erubis/HeaderFooterEnhancer.html +0 -267
  919. data/vendor/erubis/doc-api/classes/Erubis/HeaderFooterEruby.html +0 -120
  920. data/vendor/erubis/doc-api/classes/Erubis/Helpers.html +0 -116
  921. data/vendor/erubis/doc-api/classes/Erubis/Helpers/RailsFormHelper.html +0 -787
  922. data/vendor/erubis/doc-api/classes/Erubis/Helpers/RailsHelper.html +0 -349
  923. data/vendor/erubis/doc-api/classes/Erubis/Helpers/RailsHelper/TemplateConverter.html +0 -164
  924. data/vendor/erubis/doc-api/classes/Erubis/InterpolationEnhancer.html +0 -306
  925. data/vendor/erubis/doc-api/classes/Erubis/InterpolationEruby.html +0 -120
  926. data/vendor/erubis/doc-api/classes/Erubis/JavaGenerator.html +0 -359
  927. data/vendor/erubis/doc-api/classes/Erubis/JavascriptGenerator.html +0 -386
  928. data/vendor/erubis/doc-api/classes/Erubis/Main.html +0 -340
  929. data/vendor/erubis/doc-api/classes/Erubis/NoCodeEnhancer.html +0 -249
  930. data/vendor/erubis/doc-api/classes/Erubis/NoCodeEruby.html +0 -120
  931. data/vendor/erubis/doc-api/classes/Erubis/NoTextEnhancer.html +0 -159
  932. data/vendor/erubis/doc-api/classes/Erubis/NoTextEruby.html +0 -120
  933. data/vendor/erubis/doc-api/classes/Erubis/NotSupportedError.html +0 -119
  934. data/vendor/erubis/doc-api/classes/Erubis/OptimizedEruby.html +0 -163
  935. data/vendor/erubis/doc-api/classes/Erubis/OptimizedGenerator.html +0 -439
  936. data/vendor/erubis/doc-api/classes/Erubis/OptimizedXmlEruby.html +0 -163
  937. data/vendor/erubis/doc-api/classes/Erubis/PI.html +0 -124
  938. data/vendor/erubis/doc-api/classes/Erubis/PI/Converter.html +0 -266
  939. data/vendor/erubis/doc-api/classes/Erubis/PI/Ec.html +0 -166
  940. data/vendor/erubis/doc-api/classes/Erubis/PI/Ejava.html +0 -166
  941. data/vendor/erubis/doc-api/classes/Erubis/PI/Ejavascript.html +0 -166
  942. data/vendor/erubis/doc-api/classes/Erubis/PI/Engine.html +0 -122
  943. data/vendor/erubis/doc-api/classes/Erubis/PI/Eperl.html +0 -166
  944. data/vendor/erubis/doc-api/classes/Erubis/PI/Ephp.html +0 -166
  945. data/vendor/erubis/doc-api/classes/Erubis/PI/Eruby.html +0 -155
  946. data/vendor/erubis/doc-api/classes/Erubis/PI/Escheme.html +0 -166
  947. data/vendor/erubis/doc-api/classes/Erubis/PI/TinyEruby.html +0 -293
  948. data/vendor/erubis/doc-api/classes/Erubis/PercentLineEnhancer.html +0 -179
  949. data/vendor/erubis/doc-api/classes/Erubis/PercentLineEruby.html +0 -120
  950. data/vendor/erubis/doc-api/classes/Erubis/PerlGenerator.html +0 -344
  951. data/vendor/erubis/doc-api/classes/Erubis/PhpGenerator.html +0 -350
  952. data/vendor/erubis/doc-api/classes/Erubis/PreprocessingEruby.html +0 -183
  953. data/vendor/erubis/doc-api/classes/Erubis/PreprocessingHelper.html +0 -212
  954. data/vendor/erubis/doc-api/classes/Erubis/PrintEnabledEnhancer.html +0 -212
  955. data/vendor/erubis/doc-api/classes/Erubis/PrintEnabledEruby.html +0 -120
  956. data/vendor/erubis/doc-api/classes/Erubis/PrintOutEnhancer.html +0 -244
  957. data/vendor/erubis/doc-api/classes/Erubis/PrintOutEruby.html +0 -120
  958. data/vendor/erubis/doc-api/classes/Erubis/PrintOutSimplifiedEruby.html +0 -121
  959. data/vendor/erubis/doc-api/classes/Erubis/RubyEvaluator.html +0 -227
  960. data/vendor/erubis/doc-api/classes/Erubis/RubyGenerator.html +0 -327
  961. data/vendor/erubis/doc-api/classes/Erubis/SchemeGenerator.html +0 -382
  962. data/vendor/erubis/doc-api/classes/Erubis/SimplifiedEruby.html +0 -120
  963. data/vendor/erubis/doc-api/classes/Erubis/SimplifyEnhancer.html +0 -191
  964. data/vendor/erubis/doc-api/classes/Erubis/StdoutEnhancer.html +0 -173
  965. data/vendor/erubis/doc-api/classes/Erubis/StdoutEruby.html +0 -120
  966. data/vendor/erubis/doc-api/classes/Erubis/StdoutSimplifiedEruby.html +0 -121
  967. data/vendor/erubis/doc-api/classes/Erubis/StringBufferEnhancer.html +0 -174
  968. data/vendor/erubis/doc-api/classes/Erubis/StringBufferEruby.html +0 -120
  969. data/vendor/erubis/doc-api/classes/Erubis/StringIOEruby.html +0 -120
  970. data/vendor/erubis/doc-api/classes/Erubis/TinyEruby.html +0 -299
  971. data/vendor/erubis/doc-api/classes/Erubis/XmlEruby.html +0 -130
  972. data/vendor/erubis/doc-api/classes/Erubis/XmlHelper.html +0 -255
  973. data/vendor/erubis/doc-api/created.rid +0 -1
  974. data/vendor/erubis/doc-api/files/README_txt.html +0 -247
  975. data/vendor/erubis/doc-api/files/erubis/context_rb.html +0 -107
  976. data/vendor/erubis/doc-api/files/erubis/converter_rb.html +0 -114
  977. data/vendor/erubis/doc-api/files/erubis/engine/ec_rb.html +0 -115
  978. data/vendor/erubis/doc-api/files/erubis/engine/ejava_rb.html +0 -115
  979. data/vendor/erubis/doc-api/files/erubis/engine/ejavascript_rb.html +0 -115
  980. data/vendor/erubis/doc-api/files/erubis/engine/enhanced_rb.html +0 -115
  981. data/vendor/erubis/doc-api/files/erubis/engine/eperl_rb.html +0 -115
  982. data/vendor/erubis/doc-api/files/erubis/engine/ephp_rb.html +0 -115
  983. data/vendor/erubis/doc-api/files/erubis/engine/eruby_rb.html +0 -115
  984. data/vendor/erubis/doc-api/files/erubis/engine/escheme_rb.html +0 -115
  985. data/vendor/erubis/doc-api/files/erubis/engine/optimized_rb.html +0 -114
  986. data/vendor/erubis/doc-api/files/erubis/engine_rb.html +0 -117
  987. data/vendor/erubis/doc-api/files/erubis/enhancer_rb.html +0 -107
  988. data/vendor/erubis/doc-api/files/erubis/error_rb.html +0 -107
  989. data/vendor/erubis/doc-api/files/erubis/evaluator_rb.html +0 -115
  990. data/vendor/erubis/doc-api/files/erubis/generator_rb.html +0 -114
  991. data/vendor/erubis/doc-api/files/erubis/helper_rb.html +0 -107
  992. data/vendor/erubis/doc-api/files/erubis/helpers/rails_form_helper_rb.html +0 -107
  993. data/vendor/erubis/doc-api/files/erubis/helpers/rails_helper_rb.html +0 -116
  994. data/vendor/erubis/doc-api/files/erubis/local-setting_rb.html +0 -107
  995. data/vendor/erubis/doc-api/files/erubis/main_rb.html +0 -127
  996. data/vendor/erubis/doc-api/files/erubis/preprocessing_rb.html +0 -114
  997. data/vendor/erubis/doc-api/files/erubis/tiny_rb.html +0 -107
  998. data/vendor/erubis/doc-api/files/erubis_rb.html +0 -118
  999. data/vendor/erubis/doc-api/fr_class_index.html +0 -122
  1000. data/vendor/erubis/doc-api/fr_file_index.html +0 -51
  1001. data/vendor/erubis/doc-api/fr_method_index.html +0 -248
  1002. data/vendor/erubis/doc-api/index.html +0 -24
  1003. data/vendor/erubis/doc-api/rdoc-style.css +0 -208
  1004. data/vendor/erubis/doc/docstyle.css +0 -188
  1005. data/vendor/erubis/doc/users-guide.html +0 -3285
  1006. data/vendor/erubis/erubis.gemspec +0 -66
  1007. data/vendor/erubis/examples/basic/Makefile +0 -53
  1008. data/vendor/erubis/examples/basic/example.ec +0 -42
  1009. data/vendor/erubis/examples/basic/example.ejava +0 -45
  1010. data/vendor/erubis/examples/basic/example.ejs +0 -16
  1011. data/vendor/erubis/examples/basic/example.eperl +0 -16
  1012. data/vendor/erubis/examples/basic/example.ephp +0 -17
  1013. data/vendor/erubis/examples/basic/example.eruby +0 -15
  1014. data/vendor/erubis/examples/basic/example.escheme +0 -26
  1015. data/vendor/erubis/examples/pi/Makefile +0 -54
  1016. data/vendor/erubis/examples/pi/example.ec +0 -42
  1017. data/vendor/erubis/examples/pi/example.ejava +0 -45
  1018. data/vendor/erubis/examples/pi/example.ejs +0 -16
  1019. data/vendor/erubis/examples/pi/example.eperl +0 -16
  1020. data/vendor/erubis/examples/pi/example.ephp +0 -17
  1021. data/vendor/erubis/examples/pi/example.eruby +0 -15
  1022. data/vendor/erubis/examples/pi/example.escheme +0 -26
  1023. data/vendor/erubis/lib/erubis.rb +0 -73
  1024. data/vendor/erubis/lib/erubis/context.rb +0 -84
  1025. data/vendor/erubis/lib/erubis/converter.rb +0 -358
  1026. data/vendor/erubis/lib/erubis/engine.rb +0 -121
  1027. data/vendor/erubis/lib/erubis/engine/ec.rb +0 -118
  1028. data/vendor/erubis/lib/erubis/engine/ejava.rb +0 -111
  1029. data/vendor/erubis/lib/erubis/engine/ejavascript.rb +0 -120
  1030. data/vendor/erubis/lib/erubis/engine/enhanced.rb +0 -122
  1031. data/vendor/erubis/lib/erubis/engine/eperl.rb +0 -96
  1032. data/vendor/erubis/lib/erubis/engine/ephp.rb +0 -100
  1033. data/vendor/erubis/lib/erubis/engine/eruby.rb +0 -125
  1034. data/vendor/erubis/lib/erubis/engine/escheme.rb +0 -115
  1035. data/vendor/erubis/lib/erubis/engine/optimized.rb +0 -128
  1036. data/vendor/erubis/lib/erubis/enhancer.rb +0 -681
  1037. data/vendor/erubis/lib/erubis/error.rb +0 -24
  1038. data/vendor/erubis/lib/erubis/evaluator.rb +0 -89
  1039. data/vendor/erubis/lib/erubis/generator.rb +0 -86
  1040. data/vendor/erubis/lib/erubis/helper.rb +0 -48
  1041. data/vendor/erubis/lib/erubis/helpers/rails_form_helper.rb +0 -198
  1042. data/vendor/erubis/lib/erubis/helpers/rails_helper.rb +0 -325
  1043. data/vendor/erubis/lib/erubis/local-setting.rb +0 -10
  1044. data/vendor/erubis/lib/erubis/main.rb +0 -491
  1045. data/vendor/erubis/lib/erubis/preprocessing.rb +0 -59
  1046. data/vendor/erubis/lib/erubis/tiny.rb +0 -146
  1047. data/vendor/erubis/setup.rb +0 -1331
  1048. data/vendor/erubis/test/assert-text-equal.rb +0 -45
  1049. data/vendor/erubis/test/assert-text-equal.rbc +0 -0
  1050. data/vendor/erubis/test/data/users-guide/Example.ejava +0 -55
  1051. data/vendor/erubis/test/data/users-guide/array_example.result +0 -9
  1052. data/vendor/erubis/test/data/users-guide/arraybuffer_example.result +0 -9
  1053. data/vendor/erubis/test/data/users-guide/bipattern-example.rhtml +0 -4
  1054. data/vendor/erubis/test/data/users-guide/bipattern_example.result +0 -6
  1055. data/vendor/erubis/test/data/users-guide/context.rb +0 -6
  1056. data/vendor/erubis/test/data/users-guide/context.yaml +0 -8
  1057. data/vendor/erubis/test/data/users-guide/def_method.rb +0 -14
  1058. data/vendor/erubis/test/data/users-guide/def_method.result +0 -3
  1059. data/vendor/erubis/test/data/users-guide/escape_example.result +0 -9
  1060. data/vendor/erubis/test/data/users-guide/example.ec +0 -27
  1061. data/vendor/erubis/test/data/users-guide/example.ejs +0 -20
  1062. data/vendor/erubis/test/data/users-guide/example.eperl +0 -18
  1063. data/vendor/erubis/test/data/users-guide/example.ephp +0 -18
  1064. data/vendor/erubis/test/data/users-guide/example.eruby +0 -6
  1065. data/vendor/erubis/test/data/users-guide/example.escheme +0 -28
  1066. data/vendor/erubis/test/data/users-guide/example1.eruby +0 -6
  1067. data/vendor/erubis/test/data/users-guide/example1.rb +0 -17
  1068. data/vendor/erubis/test/data/users-guide/example1.result +0 -16
  1069. data/vendor/erubis/test/data/users-guide/example10.rb +0 -4
  1070. data/vendor/erubis/test/data/users-guide/example10.result +0 -17
  1071. data/vendor/erubis/test/data/users-guide/example10.xhtml +0 -14
  1072. data/vendor/erubis/test/data/users-guide/example10_x.result +0 -17
  1073. data/vendor/erubis/test/data/users-guide/example11.php +0 -20
  1074. data/vendor/erubis/test/data/users-guide/example11.result +0 -23
  1075. data/vendor/erubis/test/data/users-guide/example11.rhtml +0 -21
  1076. data/vendor/erubis/test/data/users-guide/example11_C.result +0 -10
  1077. data/vendor/erubis/test/data/users-guide/example11_N.result +0 -16
  1078. data/vendor/erubis/test/data/users-guide/example11_U.result +0 -16
  1079. data/vendor/erubis/test/data/users-guide/example11_php.result +0 -15
  1080. data/vendor/erubis/test/data/users-guide/example1_x.result +0 -9
  1081. data/vendor/erubis/test/data/users-guide/example2.eruby +0 -7
  1082. data/vendor/erubis/test/data/users-guide/example2.rb +0 -10
  1083. data/vendor/erubis/test/data/users-guide/example2.result +0 -27
  1084. data/vendor/erubis/test/data/users-guide/example2_trim.result +0 -10
  1085. data/vendor/erubis/test/data/users-guide/example2_x.result +0 -10
  1086. data/vendor/erubis/test/data/users-guide/example3.eruby +0 -6
  1087. data/vendor/erubis/test/data/users-guide/example3.rb +0 -10
  1088. data/vendor/erubis/test/data/users-guide/example31.result +0 -22
  1089. data/vendor/erubis/test/data/users-guide/example32.result +0 -4
  1090. data/vendor/erubis/test/data/users-guide/example3_e.result +0 -8
  1091. data/vendor/erubis/test/data/users-guide/example4.eruby +0 -3
  1092. data/vendor/erubis/test/data/users-guide/example4.rb +0 -11
  1093. data/vendor/erubis/test/data/users-guide/example4.result +0 -10
  1094. data/vendor/erubis/test/data/users-guide/example4_x.result +0 -5
  1095. data/vendor/erubis/test/data/users-guide/example5.eruby +0 -6
  1096. data/vendor/erubis/test/data/users-guide/example5.rb +0 -16
  1097. data/vendor/erubis/test/data/users-guide/example5.result +0 -7
  1098. data/vendor/erubis/test/data/users-guide/example6.rb +0 -12
  1099. data/vendor/erubis/test/data/users-guide/example6.result +0 -7
  1100. data/vendor/erubis/test/data/users-guide/example7.eruby +0 -8
  1101. data/vendor/erubis/test/data/users-guide/example71.result +0 -13
  1102. data/vendor/erubis/test/data/users-guide/example72.result +0 -13
  1103. data/vendor/erubis/test/data/users-guide/example8.eruby +0 -6
  1104. data/vendor/erubis/test/data/users-guide/example8_ruby.result +0 -7
  1105. data/vendor/erubis/test/data/users-guide/example8_yaml.result +0 -7
  1106. data/vendor/erubis/test/data/users-guide/example9.eruby +0 -3
  1107. data/vendor/erubis/test/data/users-guide/example9.rb +0 -8
  1108. data/vendor/erubis/test/data/users-guide/example9.result +0 -9
  1109. data/vendor/erubis/test/data/users-guide/example91.result +0 -5
  1110. data/vendor/erubis/test/data/users-guide/example92.result +0 -4
  1111. data/vendor/erubis/test/data/users-guide/example_c.result +0 -29
  1112. data/vendor/erubis/test/data/users-guide/example_java.result +0 -56
  1113. data/vendor/erubis/test/data/users-guide/example_js.result +0 -22
  1114. data/vendor/erubis/test/data/users-guide/example_perl.result +0 -20
  1115. data/vendor/erubis/test/data/users-guide/example_php.result +0 -19
  1116. data/vendor/erubis/test/data/users-guide/example_scheme.result +0 -30
  1117. data/vendor/erubis/test/data/users-guide/example_scheme_display.result +0 -29
  1118. data/vendor/erubis/test/data/users-guide/fasteruby.rb +0 -11
  1119. data/vendor/erubis/test/data/users-guide/fasteruby.result +0 -38
  1120. data/vendor/erubis/test/data/users-guide/fasteruby.rhtml +0 -15
  1121. data/vendor/erubis/test/data/users-guide/headerfooter-example.eruby +0 -9
  1122. data/vendor/erubis/test/data/users-guide/headerfooter-example2.rb +0 -8
  1123. data/vendor/erubis/test/data/users-guide/headerfooter-example2.rhtml +0 -10
  1124. data/vendor/erubis/test/data/users-guide/headerfooter_example.result +0 -11
  1125. data/vendor/erubis/test/data/users-guide/headerfooter_example2.result +0 -13
  1126. data/vendor/erubis/test/data/users-guide/interpolation_example.result +0 -9
  1127. data/vendor/erubis/test/data/users-guide/main_program1.rb +0 -8
  1128. data/vendor/erubis/test/data/users-guide/main_program1.result +0 -6
  1129. data/vendor/erubis/test/data/users-guide/main_program2.rb +0 -8
  1130. data/vendor/erubis/test/data/users-guide/main_program2.result +0 -6
  1131. data/vendor/erubis/test/data/users-guide/nocode-example.eruby +0 -14
  1132. data/vendor/erubis/test/data/users-guide/nocode-php.result +0 -20
  1133. data/vendor/erubis/test/data/users-guide/nocode_example.result +0 -15
  1134. data/vendor/erubis/test/data/users-guide/normal-eruby-test.eruby +0 -9
  1135. data/vendor/erubis/test/data/users-guide/normal_eruby_test.result +0 -11
  1136. data/vendor/erubis/test/data/users-guide/notext-example.eruby +0 -14
  1137. data/vendor/erubis/test/data/users-guide/notext-example.php +0 -19
  1138. data/vendor/erubis/test/data/users-guide/notext-php.result +0 -20
  1139. data/vendor/erubis/test/data/users-guide/notext_example.result +0 -16
  1140. data/vendor/erubis/test/data/users-guide/percentline-example.rhtml +0 -4
  1141. data/vendor/erubis/test/data/users-guide/percentline_example.result +0 -7
  1142. data/vendor/erubis/test/data/users-guide/printenable_example.result +0 -4
  1143. data/vendor/erubis/test/data/users-guide/printenabled-example.eruby +0 -3
  1144. data/vendor/erubis/test/data/users-guide/printenabled-example.rb +0 -8
  1145. data/vendor/erubis/test/data/users-guide/printstatement_example.result +0 -8
  1146. data/vendor/erubis/test/data/users-guide/simplify_example.result +0 -9
  1147. data/vendor/erubis/test/data/users-guide/stdout_exmple.result +0 -9
  1148. data/vendor/erubis/test/data/users-guide/stringbuffer_example.result +0 -9
  1149. data/vendor/erubis/test/data/users-guide/tail_260.result +0 -4
  1150. data/vendor/erubis/test/data/users-guide/tailnewline.rhtml +0 -3
  1151. data/vendor/erubis/test/data/users-guide/template1.rhtml +0 -4
  1152. data/vendor/erubis/test/data/users-guide/template2.rhtml +0 -4
  1153. data/vendor/erubis/test/hoge.rb +0 -5
  1154. data/vendor/erubis/test/test-engines.rb +0 -370
  1155. data/vendor/erubis/test/test-engines.rbc +0 -0
  1156. data/vendor/erubis/test/test-enhancers.rb +0 -571
  1157. data/vendor/erubis/test/test-erubis.rb +0 -884
  1158. data/vendor/erubis/test/test-erubis.rbc +0 -0
  1159. data/vendor/erubis/test/test-main.rb +0 -674
  1160. data/vendor/erubis/test/test-users-guide.rb +0 -58
  1161. data/vendor/erubis/test/test-users-guide.rbc +0 -0
  1162. data/vendor/erubis/test/test.rb +0 -30
  1163. data/vendor/erubis/test/test.rbc +0 -0
  1164. data/vendor/erubis/test/testutil.rb +0 -101
  1165. data/vendor/erubis/test/testutil.rbc +0 -0
  1166. data/vendor/extlib/History.txt +0 -77
  1167. data/vendor/extlib/LICENSE +0 -47
  1168. data/vendor/extlib/README +0 -0
  1169. data/vendor/extlib/Rakefile +0 -133
  1170. data/vendor/extlib/benchmarks/camel_case.rb +0 -45
  1171. data/vendor/extlib/benchmarks/to_const_path.rb +0 -65
  1172. data/vendor/extlib/benchmarks/to_const_string.rb +0 -91
  1173. data/vendor/extlib/lib/extlib.rb +0 -50
  1174. data/vendor/extlib/lib/extlib/array.rb +0 -36
  1175. data/vendor/extlib/lib/extlib/assertions.rb +0 -8
  1176. data/vendor/extlib/lib/extlib/blank.rb +0 -89
  1177. data/vendor/extlib/lib/extlib/boolean.rb +0 -11
  1178. data/vendor/extlib/lib/extlib/byte_array.rb +0 -6
  1179. data/vendor/extlib/lib/extlib/class.rb +0 -177
  1180. data/vendor/extlib/lib/extlib/datetime.rb +0 -29
  1181. data/vendor/extlib/lib/extlib/dictionary.rb +0 -433
  1182. data/vendor/extlib/lib/extlib/hash.rb +0 -442
  1183. data/vendor/extlib/lib/extlib/hook.rb +0 -401
  1184. data/vendor/extlib/lib/extlib/inflection.rb +0 -440
  1185. data/vendor/extlib/lib/extlib/lazy_array.rb +0 -451
  1186. data/vendor/extlib/lib/extlib/lazy_module.rb +0 -18
  1187. data/vendor/extlib/lib/extlib/logger.rb +0 -198
  1188. data/vendor/extlib/lib/extlib/mash.rb +0 -155
  1189. data/vendor/extlib/lib/extlib/module.rb +0 -47
  1190. data/vendor/extlib/lib/extlib/nil.rb +0 -5
  1191. data/vendor/extlib/lib/extlib/numeric.rb +0 -5
  1192. data/vendor/extlib/lib/extlib/object.rb +0 -175
  1193. data/vendor/extlib/lib/extlib/object_space.rb +0 -13
  1194. data/vendor/extlib/lib/extlib/pathname.rb +0 -20
  1195. data/vendor/extlib/lib/extlib/pooling.rb +0 -235
  1196. data/vendor/extlib/lib/extlib/rubygems.rb +0 -38
  1197. data/vendor/extlib/lib/extlib/simple_set.rb +0 -66
  1198. data/vendor/extlib/lib/extlib/string.rb +0 -176
  1199. data/vendor/extlib/lib/extlib/struct.rb +0 -17
  1200. data/vendor/extlib/lib/extlib/symbol.rb +0 -21
  1201. data/vendor/extlib/lib/extlib/tasks/release.rb +0 -15
  1202. data/vendor/extlib/lib/extlib/time.rb +0 -43
  1203. data/vendor/extlib/lib/extlib/version.rb +0 -3
  1204. data/vendor/extlib/lib/extlib/virtual_file.rb +0 -10
  1205. data/vendor/extlib/spec/array_spec.rb +0 -39
  1206. data/vendor/extlib/spec/blank_spec.rb +0 -85
  1207. data/vendor/extlib/spec/byte_array_spec.rb +0 -7
  1208. data/vendor/extlib/spec/class_spec.rb +0 -157
  1209. data/vendor/extlib/spec/datetime_spec.rb +0 -22
  1210. data/vendor/extlib/spec/hash_spec.rb +0 -537
  1211. data/vendor/extlib/spec/hook_spec.rb +0 -1234
  1212. data/vendor/extlib/spec/inflection/plural_spec.rb +0 -564
  1213. data/vendor/extlib/spec/inflection/singular_spec.rb +0 -497
  1214. data/vendor/extlib/spec/inflection_extras_spec.rb +0 -110
  1215. data/vendor/extlib/spec/lazy_array_spec.rb +0 -1957
  1216. data/vendor/extlib/spec/lazy_module_spec.rb +0 -38
  1217. data/vendor/extlib/spec/mash_spec.rb +0 -311
  1218. data/vendor/extlib/spec/module_spec.rb +0 -70
  1219. data/vendor/extlib/spec/object_space_spec.rb +0 -9
  1220. data/vendor/extlib/spec/object_spec.rb +0 -114
  1221. data/vendor/extlib/spec/pooling_spec.rb +0 -511
  1222. data/vendor/extlib/spec/simple_set_spec.rb +0 -57
  1223. data/vendor/extlib/spec/spec.opts +0 -3
  1224. data/vendor/extlib/spec/spec_helper.rb +0 -10
  1225. data/vendor/extlib/spec/string_spec.rb +0 -221
  1226. data/vendor/extlib/spec/struct_spec.rb +0 -12
  1227. data/vendor/extlib/spec/symbol_spec.rb +0 -8
  1228. data/vendor/extlib/spec/time_spec.rb +0 -29
  1229. data/vendor/extlib/spec/try_call_spec.rb +0 -73
  1230. data/vendor/extlib/spec/try_dup_spec.rb +0 -45
  1231. data/vendor/extlib/spec/virtual_file_spec.rb +0 -21
  1232. data/vendor/media-path/CHANGELOG +0 -3
  1233. data/vendor/media-path/LICENSE +0 -20
  1234. data/vendor/media-path/README.textile +0 -40
  1235. data/vendor/media-path/Rakefile +0 -61
  1236. data/vendor/media-path/TODO.txt +0 -6
  1237. data/vendor/media-path/deps.rip +0 -5
  1238. data/vendor/media-path/lib/media-path.rb +0 -269
  1239. data/vendor/media-path/media-path.gemspec +0 -38
  1240. data/vendor/media-path/script/spec +0 -14
  1241. data/vendor/media-path/spec/media-path_spec.rb +0 -158
  1242. data/vendor/media-path/spec/stubs/blog/public/js/moo.js +0 -0
  1243. data/vendor/rack/COPYING +0 -18
  1244. data/vendor/rack/KNOWN-ISSUES +0 -18
  1245. data/vendor/rack/README +0 -364
  1246. data/vendor/rack/Rakefile +0 -164
  1247. data/vendor/rack/bin/rackup +0 -2
  1248. data/vendor/rack/contrib/rack_logo.svg +0 -111
  1249. data/vendor/rack/example/lobster.ru +0 -4
  1250. data/vendor/rack/example/protectedlobster.rb +0 -14
  1251. data/vendor/rack/example/protectedlobster.ru +0 -8
  1252. data/vendor/rack/lib/rack.rb +0 -87
  1253. data/vendor/rack/lib/rack/adapter/camping.rb +0 -22
  1254. data/vendor/rack/lib/rack/auth/abstract/handler.rb +0 -37
  1255. data/vendor/rack/lib/rack/auth/abstract/request.rb +0 -37
  1256. data/vendor/rack/lib/rack/auth/basic.rb +0 -58
  1257. data/vendor/rack/lib/rack/auth/digest/md5.rb +0 -124
  1258. data/vendor/rack/lib/rack/auth/digest/nonce.rb +0 -51
  1259. data/vendor/rack/lib/rack/auth/digest/params.rb +0 -55
  1260. data/vendor/rack/lib/rack/auth/digest/request.rb +0 -40
  1261. data/vendor/rack/lib/rack/auth/openid.rb +0 -487
  1262. data/vendor/rack/lib/rack/builder.rb +0 -78
  1263. data/vendor/rack/lib/rack/cascade.rb +0 -41
  1264. data/vendor/rack/lib/rack/chunked.rb +0 -49
  1265. data/vendor/rack/lib/rack/commonlogger.rb +0 -52
  1266. data/vendor/rack/lib/rack/conditionalget.rb +0 -47
  1267. data/vendor/rack/lib/rack/content_length.rb +0 -29
  1268. data/vendor/rack/lib/rack/content_type.rb +0 -23
  1269. data/vendor/rack/lib/rack/deflater.rb +0 -96
  1270. data/vendor/rack/lib/rack/directory.rb +0 -153
  1271. data/vendor/rack/lib/rack/file.rb +0 -88
  1272. data/vendor/rack/lib/rack/handler.rb +0 -88
  1273. data/vendor/rack/lib/rack/handler/cgi.rb +0 -61
  1274. data/vendor/rack/lib/rack/handler/evented_mongrel.rb +0 -8
  1275. data/vendor/rack/lib/rack/handler/fastcgi.rb +0 -90
  1276. data/vendor/rack/lib/rack/handler/lsws.rb +0 -63
  1277. data/vendor/rack/lib/rack/handler/mongrel.rb +0 -91
  1278. data/vendor/rack/lib/rack/handler/scgi.rb +0 -62
  1279. data/vendor/rack/lib/rack/handler/swiftiplied_mongrel.rb +0 -8
  1280. data/vendor/rack/lib/rack/handler/thin.rb +0 -18
  1281. data/vendor/rack/lib/rack/handler/webrick.rb +0 -71
  1282. data/vendor/rack/lib/rack/head.rb +0 -19
  1283. data/vendor/rack/lib/rack/lint.rb +0 -546
  1284. data/vendor/rack/lib/rack/lobster.rb +0 -65
  1285. data/vendor/rack/lib/rack/lock.rb +0 -16
  1286. data/vendor/rack/lib/rack/methodoverride.rb +0 -27
  1287. data/vendor/rack/lib/rack/mime.rb +0 -205
  1288. data/vendor/rack/lib/rack/mock.rb +0 -189
  1289. data/vendor/rack/lib/rack/recursive.rb +0 -57
  1290. data/vendor/rack/lib/rack/reloader.rb +0 -109
  1291. data/vendor/rack/lib/rack/request.rb +0 -248
  1292. data/vendor/rack/lib/rack/response.rb +0 -149
  1293. data/vendor/rack/lib/rack/rewindable_input.rb +0 -100
  1294. data/vendor/rack/lib/rack/server.rb +0 -189
  1295. data/vendor/rack/lib/rack/session/abstract/id.rb +0 -140
  1296. data/vendor/rack/lib/rack/session/cookie.rb +0 -90
  1297. data/vendor/rack/lib/rack/session/memcache.rb +0 -109
  1298. data/vendor/rack/lib/rack/session/pool.rb +0 -100
  1299. data/vendor/rack/lib/rack/showexceptions.rb +0 -349
  1300. data/vendor/rack/lib/rack/showstatus.rb +0 -106
  1301. data/vendor/rack/lib/rack/static.rb +0 -38
  1302. data/vendor/rack/lib/rack/urlmap.rb +0 -55
  1303. data/vendor/rack/lib/rack/utils.rb +0 -590
  1304. data/vendor/rack/test/cgi/lighttpd.conf +0 -20
  1305. data/vendor/rack/test/cgi/test +0 -9
  1306. data/vendor/rack/test/cgi/test.fcgi +0 -8
  1307. data/vendor/rack/test/cgi/test.ru +0 -6
  1308. data/vendor/rack/test/multipart/binary +0 -0
  1309. data/vendor/rack/test/multipart/empty +0 -10
  1310. data/vendor/rack/test/multipart/file1.txt +0 -1
  1311. data/vendor/rack/test/multipart/ie +0 -6
  1312. data/vendor/rack/test/multipart/nested +0 -10
  1313. data/vendor/rack/test/multipart/none +0 -9
  1314. data/vendor/rack/test/multipart/semicolon +0 -6
  1315. data/vendor/rack/test/multipart/text +0 -10
  1316. data/vendor/rack/test/rackup/config.ru +0 -31
  1317. data/vendor/rack/test/spec_rack_auth_basic.rb +0 -73
  1318. data/vendor/rack/test/spec_rack_auth_digest.rb +0 -226
  1319. data/vendor/rack/test/spec_rack_auth_openid.rb +0 -84
  1320. data/vendor/rack/test/spec_rack_builder.rb +0 -84
  1321. data/vendor/rack/test/spec_rack_camping.rb +0 -51
  1322. data/vendor/rack/test/spec_rack_cascade.rb +0 -48
  1323. data/vendor/rack/test/spec_rack_cgi.rb +0 -89
  1324. data/vendor/rack/test/spec_rack_chunked.rb +0 -62
  1325. data/vendor/rack/test/spec_rack_commonlogger.rb +0 -61
  1326. data/vendor/rack/test/spec_rack_conditionalget.rb +0 -41
  1327. data/vendor/rack/test/spec_rack_content_length.rb +0 -43
  1328. data/vendor/rack/test/spec_rack_content_type.rb +0 -30
  1329. data/vendor/rack/test/spec_rack_deflater.rb +0 -127
  1330. data/vendor/rack/test/spec_rack_directory.rb +0 -61
  1331. data/vendor/rack/test/spec_rack_fastcgi.rb +0 -89
  1332. data/vendor/rack/test/spec_rack_file.rb +0 -75
  1333. data/vendor/rack/test/spec_rack_handler.rb +0 -43
  1334. data/vendor/rack/test/spec_rack_head.rb +0 -30
  1335. data/vendor/rack/test/spec_rack_lint.rb +0 -523
  1336. data/vendor/rack/test/spec_rack_lobster.rb +0 -45
  1337. data/vendor/rack/test/spec_rack_lock.rb +0 -38
  1338. data/vendor/rack/test/spec_rack_methodoverride.rb +0 -60
  1339. data/vendor/rack/test/spec_rack_mock.rb +0 -243
  1340. data/vendor/rack/test/spec_rack_mongrel.rb +0 -189
  1341. data/vendor/rack/test/spec_rack_recursive.rb +0 -77
  1342. data/vendor/rack/test/spec_rack_request.rb +0 -510
  1343. data/vendor/rack/test/spec_rack_response.rb +0 -218
  1344. data/vendor/rack/test/spec_rack_rewindable_input.rb +0 -118
  1345. data/vendor/rack/test/spec_rack_session_cookie.rb +0 -82
  1346. data/vendor/rack/test/spec_rack_session_memcache.rb +0 -250
  1347. data/vendor/rack/test/spec_rack_session_pool.rb +0 -172
  1348. data/vendor/rack/test/spec_rack_showexceptions.rb +0 -21
  1349. data/vendor/rack/test/spec_rack_showstatus.rb +0 -72
  1350. data/vendor/rack/test/spec_rack_static.rb +0 -37
  1351. data/vendor/rack/test/spec_rack_thin.rb +0 -91
  1352. data/vendor/rack/test/spec_rack_urlmap.rb +0 -185
  1353. data/vendor/rack/test/spec_rack_utils.rb +0 -488
  1354. data/vendor/rack/test/spec_rack_webrick.rb +0 -130
  1355. data/vendor/rack/test/spec_rackup.rb +0 -154
  1356. data/vendor/rack/test/testrequest.rb +0 -72
  1357. data/vendor/rack/test/unregistered_handler/rack/handler/unregistered.rb +0 -7
  1358. data/vendor/rack/test/unregistered_handler/rack/handler/unregistered_long_one.rb +0 -7
  1359. data/vendor/rspec/History.rdoc +0 -1510
  1360. data/vendor/rspec/License.txt +0 -22
  1361. data/vendor/rspec/Manifest.txt +0 -383
  1362. data/vendor/rspec/README.rdoc +0 -55
  1363. data/vendor/rspec/Rakefile +0 -145
  1364. data/vendor/rspec/Ruby1.9.rdoc +0 -31
  1365. data/vendor/rspec/TODO.txt +0 -17
  1366. data/vendor/rspec/Upgrade.rdoc +0 -199
  1367. data/vendor/rspec/bin/autospec +0 -4
  1368. data/vendor/rspec/bin/spec +0 -5
  1369. data/vendor/rspec/cucumber.yml +0 -5
  1370. data/vendor/rspec/examples/failing/README.txt +0 -11
  1371. data/vendor/rspec/examples/failing/diffing_spec.rb +0 -36
  1372. data/vendor/rspec/examples/failing/failing_implicit_docstrings_example.rb +0 -17
  1373. data/vendor/rspec/examples/failing/failure_in_after.rb +0 -10
  1374. data/vendor/rspec/examples/failing/failure_in_before.rb +0 -10
  1375. data/vendor/rspec/examples/failing/mocking_example.rb +0 -38
  1376. data/vendor/rspec/examples/failing/mocking_with_flexmock.rb +0 -26
  1377. data/vendor/rspec/examples/failing/mocking_with_mocha.rb +0 -25
  1378. data/vendor/rspec/examples/failing/mocking_with_rr.rb +0 -27
  1379. data/vendor/rspec/examples/failing/partial_mock_example.rb +0 -18
  1380. data/vendor/rspec/examples/failing/pending_example.rb +0 -7
  1381. data/vendor/rspec/examples/failing/predicate_example.rb +0 -32
  1382. data/vendor/rspec/examples/failing/raising_example.rb +0 -47
  1383. data/vendor/rspec/examples/failing/syntax_error_example.rb +0 -7
  1384. data/vendor/rspec/examples/failing/team_spec.rb +0 -41
  1385. data/vendor/rspec/examples/failing/timeout_behaviour.rb +0 -5
  1386. data/vendor/rspec/examples/passing/custom_formatter.rb +0 -11
  1387. data/vendor/rspec/examples/passing/custom_matchers.rb +0 -54
  1388. data/vendor/rspec/examples/passing/dynamic_spec.rb +0 -7
  1389. data/vendor/rspec/examples/passing/file_accessor.rb +0 -18
  1390. data/vendor/rspec/examples/passing/file_accessor_spec.rb +0 -37
  1391. data/vendor/rspec/examples/passing/filtered_formatter.rb +0 -17
  1392. data/vendor/rspec/examples/passing/filtered_formatter_example.rb +0 -31
  1393. data/vendor/rspec/examples/passing/greeter_spec.rb +0 -30
  1394. data/vendor/rspec/examples/passing/helper_method_example.rb +0 -12
  1395. data/vendor/rspec/examples/passing/implicit_docstrings_example.rb +0 -16
  1396. data/vendor/rspec/examples/passing/io_processor.rb +0 -8
  1397. data/vendor/rspec/examples/passing/io_processor_spec.rb +0 -20
  1398. data/vendor/rspec/examples/passing/mocking_example.rb +0 -25
  1399. data/vendor/rspec/examples/passing/multi_threaded_example_group_runner.rb +0 -26
  1400. data/vendor/rspec/examples/passing/nested_classes_example.rb +0 -35
  1401. data/vendor/rspec/examples/passing/options_example.rb +0 -29
  1402. data/vendor/rspec/examples/passing/options_formatter.rb +0 -20
  1403. data/vendor/rspec/examples/passing/partial_mock_example.rb +0 -27
  1404. data/vendor/rspec/examples/passing/pending_example.rb +0 -18
  1405. data/vendor/rspec/examples/passing/predicate_example.rb +0 -25
  1406. data/vendor/rspec/examples/passing/shared_example_group_example.rb +0 -79
  1407. data/vendor/rspec/examples/passing/shared_stack_examples.rb +0 -36
  1408. data/vendor/rspec/examples/passing/simple_matcher_example.rb +0 -29
  1409. data/vendor/rspec/examples/passing/stack.rb +0 -36
  1410. data/vendor/rspec/examples/passing/stack_spec.rb +0 -63
  1411. data/vendor/rspec/examples/passing/stack_spec_with_nested_example_groups.rb +0 -66
  1412. data/vendor/rspec/examples/passing/stubbing_example.rb +0 -67
  1413. data/vendor/rspec/examples/passing/yielding_example.rb +0 -31
  1414. data/vendor/rspec/examples/ruby1.9.compatibility/access_to_constants_spec.rb +0 -85
  1415. data/vendor/rspec/features-pending/cli/conditional_exclusion.feature +0 -39
  1416. data/vendor/rspec/features-pending/heckle/heckle.feature +0 -56
  1417. data/vendor/rspec/features/before_and_after_blocks/before_and_after_blocks.feature +0 -167
  1418. data/vendor/rspec/features/command_line/line_number_option.feature +0 -56
  1419. data/vendor/rspec/features/command_line/line_number_option_with_example_with_no_name.feature +0 -22
  1420. data/vendor/rspec/features/example_groups/define_example_attribute.feature +0 -41
  1421. data/vendor/rspec/features/example_groups/example_group_with_should_methods.feature +0 -29
  1422. data/vendor/rspec/features/example_groups/implicit_docstrings.feature +0 -59
  1423. data/vendor/rspec/features/example_groups/nested_groups.feature +0 -32
  1424. data/vendor/rspec/features/expectations/customized_message.feature +0 -54
  1425. data/vendor/rspec/features/expectations/expect_change.feature +0 -65
  1426. data/vendor/rspec/features/expectations/expect_error.feature +0 -44
  1427. data/vendor/rspec/features/extensions/custom_example_group.feature +0 -19
  1428. data/vendor/rspec/features/formatters/custom_formatter.feature +0 -30
  1429. data/vendor/rspec/features/interop/examples_and_tests_together.feature +0 -84
  1430. data/vendor/rspec/features/interop/rspec_output.feature +0 -25
  1431. data/vendor/rspec/features/interop/test_but_not_test_unit.feature +0 -26
  1432. data/vendor/rspec/features/interop/test_case_with_should_methods.feature +0 -46
  1433. data/vendor/rspec/features/load_paths/add_lib_to_load_path.feature +0 -20
  1434. data/vendor/rspec/features/load_paths/add_spec_to_load_path.feature +0 -20
  1435. data/vendor/rspec/features/matchers/define_diffable_matcher.feature +0 -26
  1436. data/vendor/rspec/features/matchers/define_matcher.feature +0 -179
  1437. data/vendor/rspec/features/matchers/define_matcher_outside_rspec.feature +0 -38
  1438. data/vendor/rspec/features/matchers/define_matcher_with_fluent_interface.feature +0 -27
  1439. data/vendor/rspec/features/matchers/define_wrapped_matcher.feature +0 -29
  1440. data/vendor/rspec/features/matchers/match_unless_raises.feature +0 -60
  1441. data/vendor/rspec/features/matchers/match_unless_raises_unexpected_error.feature +0 -39
  1442. data/vendor/rspec/features/mock_framework_integration/use_flexmock.feature +0 -27
  1443. data/vendor/rspec/features/mock_framework_integration/use_mocha.feature +0 -27
  1444. data/vendor/rspec/features/mock_framework_integration/use_rr.feature +0 -27
  1445. data/vendor/rspec/features/mocks/block_local_expectations.feature +0 -62
  1446. data/vendor/rspec/features/mocks/mix_stubs_and_mocks.feature +0 -22
  1447. data/vendor/rspec/features/mocks/stub_implementation.feature +0 -26
  1448. data/vendor/rspec/features/pending/pending_examples.feature +0 -81
  1449. data/vendor/rspec/features/runner/specify_line_number.feature +0 -32
  1450. data/vendor/rspec/features/spec_helper/spec_helper.feature +0 -25
  1451. data/vendor/rspec/features/step_definitions/running_rspec_steps.rb +0 -43
  1452. data/vendor/rspec/features/subject/explicit_subject.feature +0 -31
  1453. data/vendor/rspec/features/subject/implicit_subject.feature +0 -43
  1454. data/vendor/rspec/features/support/env.rb +0 -82
  1455. data/vendor/rspec/features/support/matchers/smart_match.rb +0 -12
  1456. data/vendor/rspec/geminstaller.yml +0 -28
  1457. data/vendor/rspec/init.rb +0 -9
  1458. data/vendor/rspec/lib/autotest/discover.rb +0 -3
  1459. data/vendor/rspec/lib/autotest/rspec.rb +0 -54
  1460. data/vendor/rspec/lib/spec.rb +0 -8
  1461. data/vendor/rspec/lib/spec/adapters/mock_frameworks/flexmock.rb +0 -24
  1462. data/vendor/rspec/lib/spec/adapters/mock_frameworks/mocha.rb +0 -25
  1463. data/vendor/rspec/lib/spec/adapters/mock_frameworks/rr.rb +0 -22
  1464. data/vendor/rspec/lib/spec/adapters/mock_frameworks/rspec.rb +0 -21
  1465. data/vendor/rspec/lib/spec/autorun.rb +0 -3
  1466. data/vendor/rspec/lib/spec/deprecation.rb +0 -40
  1467. data/vendor/rspec/lib/spec/dsl.rb +0 -1
  1468. data/vendor/rspec/lib/spec/dsl/main.rb +0 -92
  1469. data/vendor/rspec/lib/spec/example.rb +0 -164
  1470. data/vendor/rspec/lib/spec/example/args_and_options.rb +0 -27
  1471. data/vendor/rspec/lib/spec/example/before_and_after_hooks.rb +0 -93
  1472. data/vendor/rspec/lib/spec/example/errors.rb +0 -25
  1473. data/vendor/rspec/lib/spec/example/example_group.rb +0 -10
  1474. data/vendor/rspec/lib/spec/example/example_group_factory.rb +0 -82
  1475. data/vendor/rspec/lib/spec/example/example_group_hierarchy.rb +0 -53
  1476. data/vendor/rspec/lib/spec/example/example_group_methods.rb +0 -282
  1477. data/vendor/rspec/lib/spec/example/example_group_proxy.rb +0 -61
  1478. data/vendor/rspec/lib/spec/example/example_matcher.rb +0 -43
  1479. data/vendor/rspec/lib/spec/example/example_methods.rb +0 -152
  1480. data/vendor/rspec/lib/spec/example/example_proxy.rb +0 -41
  1481. data/vendor/rspec/lib/spec/example/module_reopening_fix.rb +0 -43
  1482. data/vendor/rspec/lib/spec/example/pending.rb +0 -18
  1483. data/vendor/rspec/lib/spec/example/predicate_matchers.rb +0 -46
  1484. data/vendor/rspec/lib/spec/example/shared_example_group.rb +0 -59
  1485. data/vendor/rspec/lib/spec/example/subject.rb +0 -108
  1486. data/vendor/rspec/lib/spec/expectations.rb +0 -35
  1487. data/vendor/rspec/lib/spec/expectations/errors.rb +0 -12
  1488. data/vendor/rspec/lib/spec/expectations/extensions.rb +0 -1
  1489. data/vendor/rspec/lib/spec/expectations/extensions/kernel.rb +0 -52
  1490. data/vendor/rspec/lib/spec/expectations/fail_with.rb +0 -45
  1491. data/vendor/rspec/lib/spec/expectations/handler.rb +0 -50
  1492. data/vendor/rspec/lib/spec/extensions/instance_exec.rb +0 -31
  1493. data/vendor/rspec/lib/spec/interop/test.rb +0 -44
  1494. data/vendor/rspec/lib/spec/interop/test/unit/autorunner.rb +0 -6
  1495. data/vendor/rspec/lib/spec/interop/test/unit/testcase.rb +0 -56
  1496. data/vendor/rspec/lib/spec/interop/test/unit/testresult.rb +0 -6
  1497. data/vendor/rspec/lib/spec/interop/test/unit/testsuite_adapter.rb +0 -34
  1498. data/vendor/rspec/lib/spec/interop/test/unit/ui/console/testrunner.rb +0 -61
  1499. data/vendor/rspec/lib/spec/matchers.rb +0 -195
  1500. data/vendor/rspec/lib/spec/matchers/be.rb +0 -211
  1501. data/vendor/rspec/lib/spec/matchers/be_close.rb +0 -32
  1502. data/vendor/rspec/lib/spec/matchers/be_instance_of.rb +0 -26
  1503. data/vendor/rspec/lib/spec/matchers/be_kind_of.rb +0 -26
  1504. data/vendor/rspec/lib/spec/matchers/change.rb +0 -151
  1505. data/vendor/rspec/lib/spec/matchers/compatibility.rb +0 -14
  1506. data/vendor/rspec/lib/spec/matchers/dsl.rb +0 -20
  1507. data/vendor/rspec/lib/spec/matchers/eql.rb +0 -42
  1508. data/vendor/rspec/lib/spec/matchers/equal.rb +0 -53
  1509. data/vendor/rspec/lib/spec/matchers/errors.rb +0 -5
  1510. data/vendor/rspec/lib/spec/matchers/exist.rb +0 -16
  1511. data/vendor/rspec/lib/spec/matchers/generated_descriptions.rb +0 -36
  1512. data/vendor/rspec/lib/spec/matchers/has.rb +0 -35
  1513. data/vendor/rspec/lib/spec/matchers/have.rb +0 -152
  1514. data/vendor/rspec/lib/spec/matchers/include.rb +0 -44
  1515. data/vendor/rspec/lib/spec/matchers/match.rb +0 -21
  1516. data/vendor/rspec/lib/spec/matchers/match_array.rb +0 -71
  1517. data/vendor/rspec/lib/spec/matchers/matcher.rb +0 -102
  1518. data/vendor/rspec/lib/spec/matchers/method_missing.rb +0 -9
  1519. data/vendor/rspec/lib/spec/matchers/operator_matcher.rb +0 -78
  1520. data/vendor/rspec/lib/spec/matchers/pretty.rb +0 -37
  1521. data/vendor/rspec/lib/spec/matchers/raise_error.rb +0 -129
  1522. data/vendor/rspec/lib/spec/matchers/respond_to.rb +0 -71
  1523. data/vendor/rspec/lib/spec/matchers/satisfy.rb +0 -47
  1524. data/vendor/rspec/lib/spec/matchers/simple_matcher.rb +0 -133
  1525. data/vendor/rspec/lib/spec/matchers/throw_symbol.rb +0 -104
  1526. data/vendor/rspec/lib/spec/matchers/wrap_expectation.rb +0 -55
  1527. data/vendor/rspec/lib/spec/mocks.rb +0 -200
  1528. data/vendor/rspec/lib/spec/mocks/argument_expectation.rb +0 -51
  1529. data/vendor/rspec/lib/spec/mocks/argument_matchers.rb +0 -237
  1530. data/vendor/rspec/lib/spec/mocks/error_generator.rb +0 -92
  1531. data/vendor/rspec/lib/spec/mocks/errors.rb +0 -10
  1532. data/vendor/rspec/lib/spec/mocks/example_methods.rb +0 -69
  1533. data/vendor/rspec/lib/spec/mocks/extensions.rb +0 -1
  1534. data/vendor/rspec/lib/spec/mocks/extensions/object.rb +0 -3
  1535. data/vendor/rspec/lib/spec/mocks/framework.rb +0 -15
  1536. data/vendor/rspec/lib/spec/mocks/message_expectation.rb +0 -343
  1537. data/vendor/rspec/lib/spec/mocks/methods.rb +0 -89
  1538. data/vendor/rspec/lib/spec/mocks/mock.rb +0 -71
  1539. data/vendor/rspec/lib/spec/mocks/order_group.rb +0 -29
  1540. data/vendor/rspec/lib/spec/mocks/proxy.rb +0 -245
  1541. data/vendor/rspec/lib/spec/mocks/space.rb +0 -28
  1542. data/vendor/rspec/lib/spec/rake/spectask.rb +0 -230
  1543. data/vendor/rspec/lib/spec/rake/verify_rcov.rb +0 -52
  1544. data/vendor/rspec/lib/spec/ruby.rb +0 -9
  1545. data/vendor/rspec/lib/spec/runner.rb +0 -66
  1546. data/vendor/rspec/lib/spec/runner/backtrace_tweaker.rb +0 -77
  1547. data/vendor/rspec/lib/spec/runner/class_and_arguments_parser.rb +0 -14
  1548. data/vendor/rspec/lib/spec/runner/command_line.rb +0 -15
  1549. data/vendor/rspec/lib/spec/runner/configuration.rb +0 -194
  1550. data/vendor/rspec/lib/spec/runner/differs/default.rb +0 -93
  1551. data/vendor/rspec/lib/spec/runner/differs/load-diff-lcs.rb +0 -12
  1552. data/vendor/rspec/lib/spec/runner/drb_command_line.rb +0 -26
  1553. data/vendor/rspec/lib/spec/runner/example_group_runner.rb +0 -58
  1554. data/vendor/rspec/lib/spec/runner/extensions/kernel.rb +0 -9
  1555. data/vendor/rspec/lib/spec/runner/formatter/base_formatter.rb +0 -139
  1556. data/vendor/rspec/lib/spec/runner/formatter/base_text_formatter.rb +0 -142
  1557. data/vendor/rspec/lib/spec/runner/formatter/failing_example_groups_formatter.rb +0 -25
  1558. data/vendor/rspec/lib/spec/runner/formatter/failing_examples_formatter.rb +0 -20
  1559. data/vendor/rspec/lib/spec/runner/formatter/html_formatter.rb +0 -338
  1560. data/vendor/rspec/lib/spec/runner/formatter/nested_text_formatter.rb +0 -47
  1561. data/vendor/rspec/lib/spec/runner/formatter/no_op_method_missing.rb +0 -21
  1562. data/vendor/rspec/lib/spec/runner/formatter/profile_formatter.rb +0 -47
  1563. data/vendor/rspec/lib/spec/runner/formatter/progress_bar_formatter.rb +0 -33
  1564. data/vendor/rspec/lib/spec/runner/formatter/silent_formatter.rb +0 -10
  1565. data/vendor/rspec/lib/spec/runner/formatter/snippet_extractor.rb +0 -52
  1566. data/vendor/rspec/lib/spec/runner/formatter/specdoc_formatter.rb +0 -33
  1567. data/vendor/rspec/lib/spec/runner/formatter/text_mate_formatter.rb +0 -16
  1568. data/vendor/rspec/lib/spec/runner/heckle_runner.rb +0 -72
  1569. data/vendor/rspec/lib/spec/runner/heckle_runner_unsupported.rb +0 -10
  1570. data/vendor/rspec/lib/spec/runner/line_number_query.rb +0 -78
  1571. data/vendor/rspec/lib/spec/runner/option_parser.rb +0 -223
  1572. data/vendor/rspec/lib/spec/runner/options.rb +0 -400
  1573. data/vendor/rspec/lib/spec/runner/reporter.rb +0 -171
  1574. data/vendor/rspec/lib/spec/stubs/cucumber.rb +0 -5
  1575. data/vendor/rspec/lib/spec/test/unit.rb +0 -10
  1576. data/vendor/rspec/lib/spec/version.rb +0 -14
  1577. data/vendor/rspec/resources/helpers/cmdline.rb +0 -8
  1578. data/vendor/rspec/resources/rake/examples.rake +0 -7
  1579. data/vendor/rspec/resources/rake/examples_with_rcov.rake +0 -9
  1580. data/vendor/rspec/resources/rake/failing_examples_with_html.rake +0 -9
  1581. data/vendor/rspec/resources/rake/verify_rcov.rake +0 -7
  1582. data/vendor/rspec/spec/README.jruby +0 -15
  1583. data/vendor/rspec/spec/autotest/autotest_helper.rb +0 -8
  1584. data/vendor/rspec/spec/autotest/autotest_matchers.rb +0 -38
  1585. data/vendor/rspec/spec/autotest/discover_spec.rb +0 -8
  1586. data/vendor/rspec/spec/autotest/failed_results_re_spec.rb +0 -31
  1587. data/vendor/rspec/spec/autotest/rspec_spec.rb +0 -126
  1588. data/vendor/rspec/spec/ruby_forker.rb +0 -13
  1589. data/vendor/rspec/spec/spec.opts +0 -6
  1590. data/vendor/rspec/spec/spec/dsl/main_spec.rb +0 -95
  1591. data/vendor/rspec/spec/spec/example/example_group_class_definition_spec.rb +0 -51
  1592. data/vendor/rspec/spec/spec/example/example_group_factory_spec.rb +0 -180
  1593. data/vendor/rspec/spec/spec/example/example_group_methods_spec.rb +0 -759
  1594. data/vendor/rspec/spec/spec/example/example_group_proxy_spec.rb +0 -107
  1595. data/vendor/rspec/spec/spec/example/example_group_spec.rb +0 -643
  1596. data/vendor/rspec/spec/spec/example/example_matcher_spec.rb +0 -86
  1597. data/vendor/rspec/spec/spec/example/example_methods_spec.rb +0 -162
  1598. data/vendor/rspec/spec/spec/example/example_proxy_spec.rb +0 -57
  1599. data/vendor/rspec/spec/spec/example/helper_method_spec.rb +0 -24
  1600. data/vendor/rspec/spec/spec/example/nested_example_group_spec.rb +0 -71
  1601. data/vendor/rspec/spec/spec/example/pending_module_spec.rb +0 -58
  1602. data/vendor/rspec/spec/spec/example/predicate_matcher_spec.rb +0 -41
  1603. data/vendor/rspec/spec/spec/example/shared_example_group_spec.rb +0 -257
  1604. data/vendor/rspec/spec/spec/example/subclassing_example_group_spec.rb +0 -25
  1605. data/vendor/rspec/spec/spec/example/subject_spec.rb +0 -103
  1606. data/vendor/rspec/spec/spec/expectations/differs/default_spec.rb +0 -194
  1607. data/vendor/rspec/spec/spec/expectations/extensions/kernel_spec.rb +0 -45
  1608. data/vendor/rspec/spec/spec/expectations/fail_with_spec.rb +0 -96
  1609. data/vendor/rspec/spec/spec/expectations/handler_spec.rb +0 -206
  1610. data/vendor/rspec/spec/spec/expectations/wrap_expectation_spec.rb +0 -30
  1611. data/vendor/rspec/spec/spec/interop/test/unit/resources/spec_that_fails.rb +0 -10
  1612. data/vendor/rspec/spec/spec/interop/test/unit/resources/spec_that_passes.rb +0 -10
  1613. data/vendor/rspec/spec/spec/interop/test/unit/resources/spec_with_errors.rb +0 -10
  1614. data/vendor/rspec/spec/spec/interop/test/unit/resources/spec_with_options_hash.rb +0 -13
  1615. data/vendor/rspec/spec/spec/interop/test/unit/resources/test_case_that_fails.rb +0 -10
  1616. data/vendor/rspec/spec/spec/interop/test/unit/resources/test_case_that_passes.rb +0 -10
  1617. data/vendor/rspec/spec/spec/interop/test/unit/resources/test_case_with_errors.rb +0 -10
  1618. data/vendor/rspec/spec/spec/interop/test/unit/resources/test_case_with_various_names.rb +0 -22
  1619. data/vendor/rspec/spec/spec/interop/test/unit/resources/testsuite_adapter_spec_with_test_unit.rb +0 -38
  1620. data/vendor/rspec/spec/spec/interop/test/unit/spec_spec.rb +0 -48
  1621. data/vendor/rspec/spec/spec/interop/test/unit/test_unit_spec_helper.rb +0 -18
  1622. data/vendor/rspec/spec/spec/interop/test/unit/testcase_spec.rb +0 -50
  1623. data/vendor/rspec/spec/spec/interop/test/unit/testsuite_adapter_spec.rb +0 -9
  1624. data/vendor/rspec/spec/spec/matchers/be_close_spec.rb +0 -50
  1625. data/vendor/rspec/spec/spec/matchers/be_instance_of_spec.rb +0 -36
  1626. data/vendor/rspec/spec/spec/matchers/be_kind_of_spec.rb +0 -33
  1627. data/vendor/rspec/spec/spec/matchers/be_spec.rb +0 -419
  1628. data/vendor/rspec/spec/spec/matchers/change_spec.rb +0 -349
  1629. data/vendor/rspec/spec/spec/matchers/compatibility_spec.rb +0 -28
  1630. data/vendor/rspec/spec/spec/matchers/description_generation_spec.rb +0 -160
  1631. data/vendor/rspec/spec/spec/matchers/dsl_spec.rb +0 -34
  1632. data/vendor/rspec/spec/spec/matchers/eql_spec.rb +0 -33
  1633. data/vendor/rspec/spec/spec/matchers/equal_spec.rb +0 -57
  1634. data/vendor/rspec/spec/spec/matchers/exist_spec.rb +0 -65
  1635. data/vendor/rspec/spec/spec/matchers/has_spec.rb +0 -190
  1636. data/vendor/rspec/spec/spec/matchers/have_spec.rb +0 -396
  1637. data/vendor/rspec/spec/spec/matchers/include_spec.rb +0 -88
  1638. data/vendor/rspec/spec/spec/matchers/match_array_spec.rb +0 -108
  1639. data/vendor/rspec/spec/spec/matchers/match_spec.rb +0 -57
  1640. data/vendor/rspec/spec/spec/matchers/matcher_methods_spec.rb +0 -63
  1641. data/vendor/rspec/spec/spec/matchers/matcher_spec.rb +0 -273
  1642. data/vendor/rspec/spec/spec/matchers/matchers_spec.rb +0 -2
  1643. data/vendor/rspec/spec/spec/matchers/operator_matcher_spec.rb +0 -191
  1644. data/vendor/rspec/spec/spec/matchers/raise_error_spec.rb +0 -333
  1645. data/vendor/rspec/spec/spec/matchers/respond_to_spec.rb +0 -116
  1646. data/vendor/rspec/spec/spec/matchers/satisfy_spec.rb +0 -36
  1647. data/vendor/rspec/spec/spec/matchers/simple_matcher_spec.rb +0 -93
  1648. data/vendor/rspec/spec/spec/matchers/throw_symbol_spec.rb +0 -96
  1649. data/vendor/rspec/spec/spec/mocks/and_yield_spec.rb +0 -117
  1650. data/vendor/rspec/spec/spec/mocks/any_number_of_times_spec.rb +0 -36
  1651. data/vendor/rspec/spec/spec/mocks/argument_expectation_spec.rb +0 -23
  1652. data/vendor/rspec/spec/spec/mocks/argument_matchers_spec.rb +0 -19
  1653. data/vendor/rspec/spec/spec/mocks/at_least_spec.rb +0 -97
  1654. data/vendor/rspec/spec/spec/mocks/at_most_spec.rb +0 -93
  1655. data/vendor/rspec/spec/spec/mocks/bug_report_10260_spec.rb +0 -8
  1656. data/vendor/rspec/spec/spec/mocks/bug_report_10263_spec.rb +0 -27
  1657. data/vendor/rspec/spec/spec/mocks/bug_report_11545_spec.rb +0 -32
  1658. data/vendor/rspec/spec/spec/mocks/bug_report_15719_spec.rb +0 -30
  1659. data/vendor/rspec/spec/spec/mocks/bug_report_496_spec.rb +0 -19
  1660. data/vendor/rspec/spec/spec/mocks/bug_report_600_spec.rb +0 -22
  1661. data/vendor/rspec/spec/spec/mocks/bug_report_7611_spec.rb +0 -19
  1662. data/vendor/rspec/spec/spec/mocks/bug_report_7805_spec.rb +0 -22
  1663. data/vendor/rspec/spec/spec/mocks/bug_report_8165_spec.rb +0 -31
  1664. data/vendor/rspec/spec/spec/mocks/bug_report_8302_spec.rb +0 -26
  1665. data/vendor/rspec/spec/spec/mocks/bug_report_830_spec.rb +0 -21
  1666. data/vendor/rspec/spec/spec/mocks/double_spec.rb +0 -12
  1667. data/vendor/rspec/spec/spec/mocks/failing_argument_matchers_spec.rb +0 -95
  1668. data/vendor/rspec/spec/spec/mocks/hash_including_matcher_spec.rb +0 -90
  1669. data/vendor/rspec/spec/spec/mocks/hash_not_including_matcher_spec.rb +0 -67
  1670. data/vendor/rspec/spec/spec/mocks/mock_ordering_spec.rb +0 -94
  1671. data/vendor/rspec/spec/spec/mocks/mock_space_spec.rb +0 -54
  1672. data/vendor/rspec/spec/spec/mocks/mock_spec.rb +0 -594
  1673. data/vendor/rspec/spec/spec/mocks/multiple_return_value_spec.rb +0 -113
  1674. data/vendor/rspec/spec/spec/mocks/nil_expectation_warning_spec.rb +0 -53
  1675. data/vendor/rspec/spec/spec/mocks/null_object_mock_spec.rb +0 -54
  1676. data/vendor/rspec/spec/spec/mocks/once_counts_spec.rb +0 -53
  1677. data/vendor/rspec/spec/spec/mocks/options_hash_spec.rb +0 -35
  1678. data/vendor/rspec/spec/spec/mocks/partial_mock_spec.rb +0 -164
  1679. data/vendor/rspec/spec/spec/mocks/partial_mock_using_mocks_directly_spec.rb +0 -66
  1680. data/vendor/rspec/spec/spec/mocks/passing_argument_matchers_spec.rb +0 -145
  1681. data/vendor/rspec/spec/spec/mocks/precise_counts_spec.rb +0 -52
  1682. data/vendor/rspec/spec/spec/mocks/record_messages_spec.rb +0 -26
  1683. data/vendor/rspec/spec/spec/mocks/stub_chain_spec.rb +0 -42
  1684. data/vendor/rspec/spec/spec/mocks/stub_implementation_spec.rb +0 -31
  1685. data/vendor/rspec/spec/spec/mocks/stub_spec.rb +0 -203
  1686. data/vendor/rspec/spec/spec/mocks/stubbed_message_expectations_spec.rb +0 -26
  1687. data/vendor/rspec/spec/spec/mocks/twice_counts_spec.rb +0 -67
  1688. data/vendor/rspec/spec/spec/mocks/unstub_spec.rb +0 -127
  1689. data/vendor/rspec/spec/spec/package/bin_spec_spec.rb +0 -16
  1690. data/vendor/rspec/spec/spec/rake/spectask_spec.rb +0 -150
  1691. data/vendor/rspec/spec/spec/runner/class_and_argument_parser_spec.rb +0 -23
  1692. data/vendor/rspec/spec/spec/runner/command_line_spec.rb +0 -162
  1693. data/vendor/rspec/spec/spec/runner/configuration_spec.rb +0 -320
  1694. data/vendor/rspec/spec/spec/runner/drb_command_line_spec.rb +0 -107
  1695. data/vendor/rspec/spec/spec/runner/empty_file.txt +0 -0
  1696. data/vendor/rspec/spec/spec/runner/example_group_runner_spec.rb +0 -26
  1697. data/vendor/rspec/spec/spec/runner/examples.txt +0 -2
  1698. data/vendor/rspec/spec/spec/runner/failed.txt +0 -3
  1699. data/vendor/rspec/spec/spec/runner/formatter/base_formatter_spec.rb +0 -30
  1700. data/vendor/rspec/spec/spec/runner/formatter/base_text_formatter_spec.rb +0 -113
  1701. data/vendor/rspec/spec/spec/runner/formatter/failing_example_groups_formatter_spec.rb +0 -45
  1702. data/vendor/rspec/spec/spec/runner/formatter/failing_examples_formatter_spec.rb +0 -33
  1703. data/vendor/rspec/spec/spec/runner/formatter/html_formatted-1.8.6-jruby.html +0 -377
  1704. data/vendor/rspec/spec/spec/runner/formatter/html_formatted-1.8.6.html +0 -377
  1705. data/vendor/rspec/spec/spec/runner/formatter/html_formatted-1.8.7.html +0 -377
  1706. data/vendor/rspec/spec/spec/runner/formatter/html_formatted-1.9.1.html +0 -377
  1707. data/vendor/rspec/spec/spec/runner/formatter/html_formatter_spec.rb +0 -118
  1708. data/vendor/rspec/spec/spec/runner/formatter/nested_text_formatter_spec.rb +0 -305
  1709. data/vendor/rspec/spec/spec/runner/formatter/profile_formatter_spec.rb +0 -70
  1710. data/vendor/rspec/spec/spec/runner/formatter/progress_bar_formatter_spec.rb +0 -149
  1711. data/vendor/rspec/spec/spec/runner/formatter/snippet_extractor_spec.rb +0 -18
  1712. data/vendor/rspec/spec/spec/runner/formatter/specdoc_formatter_spec.rb +0 -159
  1713. data/vendor/rspec/spec/spec/runner/formatter/text_mate_formatted-1.8.6-jruby.html +0 -371
  1714. data/vendor/rspec/spec/spec/runner/formatter/text_mate_formatted-1.8.6.html +0 -371
  1715. data/vendor/rspec/spec/spec/runner/formatter/text_mate_formatted-1.8.7.html +0 -371
  1716. data/vendor/rspec/spec/spec/runner/formatter/text_mate_formatted-1.9.1.html +0 -371
  1717. data/vendor/rspec/spec/spec/runner/formatter/text_mate_formatter_spec.rb +0 -106
  1718. data/vendor/rspec/spec/spec/runner/heckle_runner_spec.rb +0 -78
  1719. data/vendor/rspec/spec/spec/runner/heckler_spec.rb +0 -20
  1720. data/vendor/rspec/spec/spec/runner/line_number_query/line_number_query_fixture.rb +0 -70
  1721. data/vendor/rspec/spec/spec/runner/line_number_query_spec.rb +0 -129
  1722. data/vendor/rspec/spec/spec/runner/noisy_backtrace_tweaker_spec.rb +0 -51
  1723. data/vendor/rspec/spec/spec/runner/option_parser_spec.rb +0 -545
  1724. data/vendor/rspec/spec/spec/runner/options_spec.rb +0 -547
  1725. data/vendor/rspec/spec/spec/runner/output_one_time_fixture.rb +0 -7
  1726. data/vendor/rspec/spec/spec/runner/output_one_time_fixture_runner.rb +0 -7
  1727. data/vendor/rspec/spec/spec/runner/output_one_time_spec.rb +0 -15
  1728. data/vendor/rspec/spec/spec/runner/quiet_backtrace_tweaker_spec.rb +0 -123
  1729. data/vendor/rspec/spec/spec/runner/reporter_spec.rb +0 -244
  1730. data/vendor/rspec/spec/spec/runner/resources/a_bar.rb +0 -0
  1731. data/vendor/rspec/spec/spec/runner/resources/a_foo.rb +0 -0
  1732. data/vendor/rspec/spec/spec/runner/resources/a_spec.rb +0 -1
  1733. data/vendor/rspec/spec/spec/runner/resources/custom_example_group_runner.rb +0 -14
  1734. data/vendor/rspec/spec/spec/runner/resources/utf8_encoded.rb +0 -8
  1735. data/vendor/rspec/spec/spec/runner/spec.opts +0 -2
  1736. data/vendor/rspec/spec/spec/runner/spec_drb.opts +0 -2
  1737. data/vendor/rspec/spec/spec/runner/spec_spaced.opts +0 -2
  1738. data/vendor/rspec/spec/spec/runner_spec.rb +0 -13
  1739. data/vendor/rspec/spec/spec_helper.rb +0 -112
  1740. data/vendor/rspec/spec/support/macros.rb +0 -29
  1741. data/vendor/rspec/spec/support/spec_classes.rb +0 -133
  1742. data/vendor/rubyexts/CHANGELOG +0 -2
  1743. data/vendor/rubyexts/LICENSE +0 -20
  1744. data/vendor/rubyexts/README.textile +0 -0
  1745. data/vendor/rubyexts/Rakefile +0 -61
  1746. data/vendor/rubyexts/TODO.txt +0 -6
  1747. data/vendor/rubyexts/lib/rubyexts.rb +0 -102
  1748. data/vendor/rubyexts/lib/rubyexts/array.rb +0 -20
  1749. data/vendor/rubyexts/lib/rubyexts/attribute.rb +0 -151
  1750. data/vendor/rubyexts/lib/rubyexts/capture_io.rb +0 -32
  1751. data/vendor/rubyexts/lib/rubyexts/class.rb +0 -177
  1752. data/vendor/rubyexts/lib/rubyexts/colored_string.rb +0 -103
  1753. data/vendor/rubyexts/lib/rubyexts/enumerable.rb +0 -30
  1754. data/vendor/rubyexts/lib/rubyexts/file.rb +0 -84
  1755. data/vendor/rubyexts/lib/rubyexts/hash.rb +0 -147
  1756. data/vendor/rubyexts/lib/rubyexts/kernel.rb +0 -91
  1757. data/vendor/rubyexts/lib/rubyexts/module.rb +0 -53
  1758. data/vendor/rubyexts/lib/rubyexts/object.rb +0 -56
  1759. data/vendor/rubyexts/lib/rubyexts/object_space.rb +0 -16
  1760. data/vendor/rubyexts/lib/rubyexts/os.rb +0 -89
  1761. data/vendor/rubyexts/lib/rubyexts/platform.rb +0 -27
  1762. data/vendor/rubyexts/lib/rubyexts/random.rb +0 -25
  1763. data/vendor/rubyexts/lib/rubyexts/string.rb +0 -92
  1764. data/vendor/rubyexts/lib/rubyexts/time.rb +0 -15
  1765. data/vendor/rubyexts/lib/rubyexts/time_dsl.rb +0 -62
  1766. data/vendor/rubyexts/lib/rubyexts/try_dup.rb +0 -43
  1767. data/vendor/rubyexts/lib/rubyexts/unique_array.rb +0 -16
  1768. data/vendor/rubyexts/rubyexts.gemspec +0 -36
  1769. data/vendor/rubyexts/script/spec +0 -12
  1770. data/vendor/rubyexts/spec/rubyexts/array_spec.rb +0 -19
  1771. data/vendor/rubyexts/spec/rubyexts/attribute_spec.rb +0 -37
  1772. data/vendor/rubyexts/spec/rubyexts/class_spec.rb +0 -1
  1773. data/vendor/rubyexts/spec/rubyexts/cli_spec.rb +0 -0
  1774. data/vendor/rubyexts/spec/rubyexts/colored_string_spec.rb +0 -9
  1775. data/vendor/rubyexts/spec/rubyexts/enumerable_spec.rb +0 -52
  1776. data/vendor/rubyexts/spec/rubyexts/file_spec.rb +0 -78
  1777. data/vendor/rubyexts/spec/rubyexts/hash_spec.rb +0 -91
  1778. data/vendor/rubyexts/spec/rubyexts/kernel_spec.rb +0 -9
  1779. data/vendor/rubyexts/spec/rubyexts/module_spec.rb +0 -0
  1780. data/vendor/rubyexts/spec/rubyexts/object_space_spec.rb +0 -17
  1781. data/vendor/rubyexts/spec/rubyexts/object_spec.rb +0 -57
  1782. data/vendor/rubyexts/spec/rubyexts/os_spec.rb +0 -121
  1783. data/vendor/rubyexts/spec/rubyexts/platform_spec.rb +0 -0
  1784. data/vendor/rubyexts/spec/rubyexts/random_spec.rb +0 -31
  1785. data/vendor/rubyexts/spec/rubyexts/string_spec.rb +0 -23
  1786. data/vendor/rubyexts/spec/rubyexts/time_dsl_spec.rb +0 -88
  1787. data/vendor/rubyexts/spec/rubyexts/time_spec.rb +0 -11
  1788. data/vendor/rubyexts/spec/rubyexts/unique_array_spec.rb +0 -0
  1789. data/vendor/rubyexts/spec/rubyexts_spec.rb +0 -182
  1790. data/vendor/rubyexts/spec/spec.opts +0 -5
  1791. data/vendor/rubyexts/spec/spec_helper.rb +0 -16
  1792. data/vendor/simple-templater/CHANGELOG +0 -10
  1793. data/vendor/simple-templater/LICENSE +0 -20
  1794. data/vendor/simple-templater/README.textile +0 -136
  1795. data/vendor/simple-templater/Rakefile +0 -61
  1796. data/vendor/simple-templater/TODO.txt +0 -15
  1797. data/vendor/simple-templater/bin/simple-templater +0 -66
  1798. data/vendor/simple-templater/deps.rip +0 -7
  1799. data/vendor/simple-templater/lib/simple-templater.rb +0 -97
  1800. data/vendor/simple-templater/lib/simple-templater/argv_parsing.rb +0 -27
  1801. data/vendor/simple-templater/lib/simple-templater/builder.rb +0 -134
  1802. data/vendor/simple-templater/lib/simple-templater/discoverer.rb +0 -20
  1803. data/vendor/simple-templater/lib/simple-templater/discoverers/gems.rb +0 -79
  1804. data/vendor/simple-templater/lib/simple-templater/discoverers/plain.rb +0 -1
  1805. data/vendor/simple-templater/lib/simple-templater/discoverers/rip.rb +0 -1
  1806. data/vendor/simple-templater/lib/simple-templater/dsl.rb +0 -27
  1807. data/vendor/simple-templater/lib/simple-templater/generator.rb +0 -129
  1808. data/vendor/simple-templater/lib/simple-templater/generator_set.rb +0 -45
  1809. data/vendor/simple-templater/lib/simple-templater/helpers.rb +0 -34
  1810. data/vendor/simple-templater/lib/simple-templater/hooks/hook.rb +0 -76
  1811. data/vendor/simple-templater/lib/simple-templater/hooks/postprocess/git_repository.rb +0 -25
  1812. data/vendor/simple-templater/lib/simple-templater/hooks/postprocess/github.rb +0 -20
  1813. data/vendor/simple-templater/lib/simple-templater/hooks/preprocess/full_name.rb +0 -17
  1814. data/vendor/simple-templater/lib/simple-templater/hooks/preprocess/github.rb +0 -25
  1815. data/vendor/simple-templater/script/spec +0 -14
  1816. data/vendor/simple-templater/simple-templater.gemspec +0 -45
  1817. data/vendor/simple-templater/simple-templater.scope +0 -6
  1818. data/vendor/simple-templater/spec/simple-templater/argv_parsing_spec.rb +0 -41
  1819. data/vendor/simple-templater/spec/simple-templater/builder_spec.rb +0 -1
  1820. data/vendor/simple-templater/spec/simple-templater/discoverers/gems_spec.rb +0 -0
  1821. data/vendor/simple-templater/spec/simple-templater/discoverers/plain_spec.rb +0 -0
  1822. data/vendor/simple-templater/spec/simple-templater/discoverers/rip_spec.rb +0 -0
  1823. data/vendor/simple-templater/spec/simple-templater/generator_set_spec.rb +0 -55
  1824. data/vendor/simple-templater/spec/simple-templater/generator_spec.rb +0 -30
  1825. data/vendor/simple-templater/spec/simple-templater/helpers_spec.rb +0 -81
  1826. data/vendor/simple-templater/spec/simple-templater/hooks/hook_spec.rb +0 -100
  1827. data/vendor/simple-templater/spec/simple-templater/hooks/postprocess/git_repository_spec.rb +0 -25
  1828. data/vendor/simple-templater/spec/simple-templater/hooks/postprocess/github_spec.rb +0 -8
  1829. data/vendor/simple-templater/spec/simple-templater_spec.rb +0 -112
  1830. data/vendor/simple-templater/spec/spec.opts +0 -5
  1831. data/vendor/simple-templater/spec/spec_helper.rb +0 -19
  1832. data/vendor/simple-templater/spec/stubs/gems/cache/test_generator-0.0.1.gem +0 -0
  1833. data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/simple-generator.scope +0 -8
  1834. data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/simple-templater.scope +0 -8
  1835. data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/stubs/content/%name%1_test.rb.rbt +0 -1
  1836. data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/stubs/content/%name%_test.rb +0 -0
  1837. data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/stubs/content/README.textile +0 -3
  1838. data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/stubs/content/script.rb.rbt +0 -1
  1839. data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/stubs/test/content/%name%1_test.rb.rbt +0 -1
  1840. data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/stubs/test/content/%name%_test.rb +0 -0
  1841. data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/stubs/test/content/README.textile +0 -3
  1842. data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/stubs/test/content/script.rb.rbt +0 -1
  1843. data/vendor/simple-templater/spec/stubs/gems/gems/test_generator-0.0.1/test_generator.gemspec +0 -19
  1844. data/vendor/simple-templater/spec/stubs/gems/specifications/test_generator-0.0.1.gemspec +0 -28
  1845. data/vendor/simple-templater/spec/stubs/simple-templater.scope +0 -8
  1846. data/vendor/simple-templater/spec/stubs/test_generator/simple-templater.scope +0 -8
  1847. data/vendor/simple-templater/spec/stubs/test_generator/stubs/test/content/%name%1_test.rb.rbt +0 -1
  1848. data/vendor/simple-templater/spec/stubs/test_generator/stubs/test/content/%name%_test.rb +0 -0
  1849. data/vendor/simple-templater/spec/stubs/test_generator/stubs/test/content/README.textile +0 -3
  1850. data/vendor/simple-templater/spec/stubs/test_generator/stubs/test/content/script.rb.rbt +0 -1
  1851. data/vendor/simple-templater/spec/stubs/test_generator/test_generator-0.0.1.gem +0 -0
  1852. data/vendor/simple-templater/spec/stubs/test_generator/test_generator.gemspec +0 -19
  1853. data/vendor/simple-templater/stubs/project/content/%name%.gemspec.rbt +0 -37
  1854. data/vendor/simple-templater/stubs/project/content/CHANGELOG +0 -2
  1855. data/vendor/simple-templater/stubs/project/content/LICENSE.rbt +0 -20
  1856. data/vendor/simple-templater/stubs/project/content/README.textile.rbt +0 -19
  1857. data/vendor/simple-templater/stubs/project/content/Rakefile +0 -39
  1858. data/vendor/simple-templater/stubs/project/content/TODO.txt +0 -0
  1859. data/vendor/simple-templater/stubs/project/content/bin/%name%.rbt +0 -14
  1860. data/vendor/simple-templater/stubs/project/content/deps.rip +0 -5
  1861. data/vendor/simple-templater/stubs/project/content/lib/%name%.rb.rbt +0 -5
  1862. data/vendor/simple-templater/stubs/project/content/spec/%name%_spec.rb.rbt +0 -10
  1863. data/vendor/simple-templater/stubs/project/content/spec/spec.opts +0 -5
  1864. data/vendor/simple-templater/stubs/project/content/spec/spec_helper.rb.rbt +0 -11
  1865. data/vendor/simple-templater/stubs/project/metadata.yml +0 -3
  1866. data/vendor/simple-templater/stubs/project/postprocess.rb +0 -13
  1867. data/vendor/simple-templater/stubs/project/setup.rb +0 -13
  1868. data/vendor/simple-templater/stubs/stub/content/metadata.yml.rbt +0 -3
  1869. data/vendor/simple-templater/stubs/stub/content/postprocess.rb +0 -11
  1870. data/vendor/simple-templater/stubs/stub/content/setup.rb +0 -10
  1871. data/vendor/simple-templater/stubs/stub/metadata.yml +0 -3
  1872. data/vendor/simple-templater/stubs/stub/postprocess.rb +0 -9
  1873. data/vendor/simple-templater/stubs/stub/setup.rb +0 -15
  1874. data/vendor/simple-templater/vendor/abstract/ChangeLog +0 -3
  1875. data/vendor/simple-templater/vendor/abstract/README.txt +0 -57
  1876. data/vendor/simple-templater/vendor/abstract/abstract.gemspec +0 -48
  1877. data/vendor/simple-templater/vendor/abstract/doc/classes/Kernel.html +0 -134
  1878. data/vendor/simple-templater/vendor/abstract/doc/classes/Kernel.src/M000002.html +0 -24
  1879. data/vendor/simple-templater/vendor/abstract/doc/classes/Module.html +0 -140
  1880. data/vendor/simple-templater/vendor/abstract/doc/classes/Module.src/M000001.html +0 -20
  1881. data/vendor/simple-templater/vendor/abstract/doc/created.rid +0 -1
  1882. data/vendor/simple-templater/vendor/abstract/doc/files/README_txt.html +0 -173
  1883. data/vendor/simple-templater/vendor/abstract/doc/files/lib/abstract_rb.html +0 -137
  1884. data/vendor/simple-templater/vendor/abstract/doc/fr_class_index.html +0 -28
  1885. data/vendor/simple-templater/vendor/abstract/doc/fr_file_index.html +0 -28
  1886. data/vendor/simple-templater/vendor/abstract/doc/fr_method_index.html +0 -28
  1887. data/vendor/simple-templater/vendor/abstract/doc/index.html +0 -24
  1888. data/vendor/simple-templater/vendor/abstract/doc/rdoc-style.css +0 -208
  1889. data/vendor/simple-templater/vendor/abstract/lib/abstract.rb +0 -75
  1890. data/vendor/simple-templater/vendor/abstract/setup.rb +0 -1331
  1891. data/vendor/simple-templater/vendor/abstract/test/test.rb +0 -91
  1892. data/vendor/thor/CHANGELOG.rdoc +0 -82
  1893. data/vendor/thor/LICENSE +0 -20
  1894. data/vendor/thor/README.rdoc +0 -234
  1895. data/vendor/thor/Thorfile +0 -63
  1896. data/vendor/thor/bin/rake2thor +0 -86
  1897. data/vendor/thor/bin/thor +0 -7
  1898. data/vendor/thor/lib/thor.rb +0 -242
  1899. data/vendor/thor/lib/thor/actions.rb +0 -273
  1900. data/vendor/thor/lib/thor/actions/create_file.rb +0 -103
  1901. data/vendor/thor/lib/thor/actions/directory.rb +0 -93
  1902. data/vendor/thor/lib/thor/actions/empty_directory.rb +0 -134
  1903. data/vendor/thor/lib/thor/actions/file_manipulation.rb +0 -219
  1904. data/vendor/thor/lib/thor/actions/inject_into_file.rb +0 -101
  1905. data/vendor/thor/lib/thor/base.rb +0 -517
  1906. data/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb +0 -75
  1907. data/vendor/thor/lib/thor/core_ext/ordered_hash.rb +0 -100
  1908. data/vendor/thor/lib/thor/error.rb +0 -27
  1909. data/vendor/thor/lib/thor/group.rb +0 -263
  1910. data/vendor/thor/lib/thor/invocation.rb +0 -178
  1911. data/vendor/thor/lib/thor/parser.rb +0 -4
  1912. data/vendor/thor/lib/thor/parser/argument.rb +0 -67
  1913. data/vendor/thor/lib/thor/parser/arguments.rb +0 -145
  1914. data/vendor/thor/lib/thor/parser/option.rb +0 -132
  1915. data/vendor/thor/lib/thor/parser/options.rb +0 -142
  1916. data/vendor/thor/lib/thor/rake_compat.rb +0 -66
  1917. data/vendor/thor/lib/thor/runner.rb +0 -299
  1918. data/vendor/thor/lib/thor/shell.rb +0 -78
  1919. data/vendor/thor/lib/thor/shell/basic.rb +0 -219
  1920. data/vendor/thor/lib/thor/shell/color.rb +0 -108
  1921. data/vendor/thor/lib/thor/task.rb +0 -122
  1922. data/vendor/thor/lib/thor/util.rb +0 -251
  1923. data/vendor/thor/lib/thor/version.rb +0 -3
  1924. data/vendor/thor/spec/actions/create_file_spec.rb +0 -170
  1925. data/vendor/thor/spec/actions/directory_spec.rb +0 -130
  1926. data/vendor/thor/spec/actions/empty_directory_spec.rb +0 -91
  1927. data/vendor/thor/spec/actions/file_manipulation_spec.rb +0 -249
  1928. data/vendor/thor/spec/actions/inject_into_file_spec.rb +0 -106
  1929. data/vendor/thor/spec/actions_spec.rb +0 -291
  1930. data/vendor/thor/spec/base_spec.rb +0 -236
  1931. data/vendor/thor/spec/core_ext/hash_with_indifferent_access_spec.rb +0 -43
  1932. data/vendor/thor/spec/core_ext/ordered_hash_spec.rb +0 -115
  1933. data/vendor/thor/spec/fixtures/application.rb +0 -2
  1934. data/vendor/thor/spec/fixtures/bundle/execute.rb +0 -6
  1935. data/vendor/thor/spec/fixtures/bundle/main.thor +0 -1
  1936. data/vendor/thor/spec/fixtures/doc/%file_name%.rb.tt +0 -1
  1937. data/vendor/thor/spec/fixtures/doc/README +0 -3
  1938. data/vendor/thor/spec/fixtures/doc/config.rb +0 -1
  1939. data/vendor/thor/spec/fixtures/group.thor +0 -83
  1940. data/vendor/thor/spec/fixtures/invoke.thor +0 -112
  1941. data/vendor/thor/spec/fixtures/script.thor +0 -126
  1942. data/vendor/thor/spec/fixtures/task.thor +0 -10
  1943. data/vendor/thor/spec/group_spec.rb +0 -177
  1944. data/vendor/thor/spec/invocation_spec.rb +0 -107
  1945. data/vendor/thor/spec/parser/argument_spec.rb +0 -47
  1946. data/vendor/thor/spec/parser/arguments_spec.rb +0 -64
  1947. data/vendor/thor/spec/parser/option_spec.rb +0 -212
  1948. data/vendor/thor/spec/parser/options_spec.rb +0 -255
  1949. data/vendor/thor/spec/rake_compat_spec.rb +0 -68
  1950. data/vendor/thor/spec/runner_spec.rb +0 -204
  1951. data/vendor/thor/spec/shell/basic_spec.rb +0 -211
  1952. data/vendor/thor/spec/shell/color_spec.rb +0 -41
  1953. data/vendor/thor/spec/shell_spec.rb +0 -25
  1954. data/vendor/thor/spec/spec.opts +0 -1
  1955. data/vendor/thor/spec/spec_helper.rb +0 -52
  1956. data/vendor/thor/spec/task_spec.rb +0 -88
  1957. data/vendor/thor/spec/thor_spec.rb +0 -234
  1958. data/vendor/thor/spec/util_spec.rb +0 -196
@@ -1,110 +0,0 @@
1
- require File.expand_path(File.join(File.dirname(__FILE__), 'spec_helper'))
2
-
3
- describe Extlib::Inflection do
4
- describe "#classify" do
5
- it 'classifies data_mapper as DataMapper' do
6
- Extlib::Inflection.classify('data_mapper').should == 'DataMapper'
7
- end
8
-
9
- it "classifies enlarged_testes as EnlargedTestis" do
10
- Extlib::Inflection.classify('enlarged_testes').should == 'EnlargedTestis'
11
- end
12
-
13
- it "singularizes string first: classifies data_mappers as egg_and_hams as EggAndHam" do
14
- Extlib::Inflection.classify('egg_and_hams').should == 'EggAndHam'
15
- end
16
- end
17
-
18
- describe "#camelize" do
19
- it 'camelizes data_mapper as DataMapper' do
20
- Extlib::Inflection.camelize('data_mapper').should == 'DataMapper'
21
- end
22
-
23
- it "camelizes merb as Merb" do
24
- Extlib::Inflection.camelize('merb').should == 'Merb'
25
- end
26
-
27
- it "camelizes data_mapper/resource as DataMapper::Resource" do
28
- Extlib::Inflection.camelize('data_mapper/resource').should == 'DataMapper::Resource'
29
- end
30
-
31
- it "camelizes data_mapper/associations/one_to_many as DataMapper::Associations::OneToMany" do
32
- Extlib::Inflection.camelize('data_mapper/associations/one_to_many').should == 'DataMapper::Associations::OneToMany'
33
- end
34
- end
35
-
36
- describe "#underscore" do
37
- it 'underscores DataMapper as data_mapper' do
38
- Extlib::Inflection.underscore('DataMapper').should == 'data_mapper'
39
- end
40
-
41
- it 'underscores Merb as merb' do
42
- Extlib::Inflection.underscore('Merb').should == 'merb'
43
- end
44
-
45
- it 'underscores DataMapper::Resource as data_mapper/resource' do
46
- Extlib::Inflection.underscore('DataMapper::Resource').should == 'data_mapper/resource'
47
- end
48
-
49
- it 'underscores Merb::BootLoader::Rackup as merb/boot_loader/rackup' do
50
- Extlib::Inflection.underscore('Merb::BootLoader::Rackup').should == 'merb/boot_loader/rackup'
51
- end
52
- end
53
-
54
- describe "#humanize" do
55
- it 'replaces _ with space: humanizes employee_salary as Employee salary' do
56
- Extlib::Inflection.humanize('employee_salary').should == 'Employee salary'
57
- end
58
-
59
- it "strips _id endings: humanizes author_id as Author" do
60
- Extlib::Inflection.humanize('author_id').should == 'Author'
61
- end
62
- end
63
-
64
- describe "#demodulize" do
65
- it 'demodulizes module name: DataMapper::Inflector => Inflector' do
66
- Extlib::Inflection.demodulize('DataMapper::Inflector').should == 'Inflector'
67
- end
68
-
69
- it 'demodulizes module name: A::B::C::D::E => E' do
70
- Extlib::Inflection.demodulize('A::B::C::D::E').should == 'E'
71
- end
72
- end
73
-
74
- describe "#tableize" do
75
- it 'pluralizes last word in snake_case strings: fancy_category => fancy_categories' do
76
- Extlib::Inflection.tableize('fancy_category').should == 'fancy_categories'
77
- end
78
-
79
- it 'underscores CamelCase strings before pluralization: enlarged_testis => enlarged_testes' do
80
- Extlib::Inflection.tableize('enlarged_testis').should == 'enlarged_testes'
81
- end
82
-
83
- it 'underscores CamelCase strings before pluralization: FancyCategory => fancy_categories' do
84
- Extlib::Inflection.tableize('FancyCategory').should == 'fancy_categories'
85
- end
86
-
87
- it 'underscores CamelCase strings before pluralization: EnlargedTestis => enlarged_testes' do
88
- Extlib::Inflection.tableize('EnlargedTestis').should == 'enlarged_testes'
89
- end
90
-
91
- it 'replaces :: with underscores: Fancy::Category => fancy_categories' do
92
- Extlib::Inflection.tableize('Fancy::Category').should == 'fancy_categories'
93
- end
94
-
95
- it 'underscores CamelCase strings before pluralization: Enlarged::Testis => enlarged_testes' do
96
- Extlib::Inflection.tableize('Enlarged::Testis').should == 'enlarged_testes'
97
- end
98
-
99
- end
100
-
101
- describe "#foreign_key" do
102
- it 'adds _id to downcased string: Message => message_id' do
103
- Extlib::Inflection.foreign_key('Message').should == 'message_id'
104
- end
105
-
106
- it "demodulizes string first: Admin::Post => post_id" do
107
- Extlib::Inflection.foreign_key('Admin::Post').should == 'post_id'
108
- end
109
- end
110
- end
@@ -1,1957 +0,0 @@
1
- require File.expand_path(File.join(File.dirname(__FILE__), 'spec_helper'))
2
-
3
- module LazyArraySpec
4
- module GroupMethods
5
- def self.extended(base)
6
- base.class_inheritable_accessor :loaded, :subject_block, :action_block
7
- end
8
-
9
- def subject(&block)
10
- self.subject_block = block
11
- end
12
-
13
- def action(&block)
14
- self.action_block = block
15
- end
16
-
17
- def should_respond_to(method)
18
- unless loaded
19
- it { subject.should respond_to(method) }
20
- end
21
- end
22
-
23
- def should_return_expected_value(&block)
24
- it 'should return expected value' do
25
- action.should eql(instance_eval(&block))
26
- end
27
- end
28
-
29
- def should_return_subject
30
- should_return_kind_of(LazyArray)
31
-
32
- it 'should return self' do
33
- action.should equal(subject)
34
- end
35
- end
36
-
37
- def should_return_kind_of(klass)
38
- it { action.should be_a_kind_of(klass) }
39
- end
40
-
41
- def should_return_copy
42
- it 'should not return self' do
43
- action.should_not equal(subject)
44
- end
45
-
46
- it 'should eql self' do
47
- action.should eql(subject)
48
- end
49
- end
50
-
51
- def should_return_true
52
- it 'should return true' do
53
- action.should be_true
54
- end
55
- end
56
-
57
- def should_return_false
58
- it 'should return false' do
59
- action.should be_false
60
- end
61
- end
62
-
63
- def should_return_nil
64
- it 'should return nil' do
65
- action.should be_nil
66
- end
67
- end
68
-
69
- def should_raise_error(klass, message = nil)
70
- it { lambda { action }.should raise_error(klass, message) }
71
- end
72
-
73
- def should_clear_subject
74
- it 'should clear self' do
75
- lambda { action }.should change(subject, :empty?).from(false).to(true)
76
- end
77
- end
78
-
79
- def should_yield_to_each_entry
80
- it 'should yield to each entry' do
81
- lambda { action }.should change(@accumulator, :entries).from([]).to(subject.entries)
82
- end
83
- end
84
-
85
- def should_not_change_subject
86
- it 'should not change self' do
87
- # XXX: the following does not work with Array#delete_if, even when nothing removed (ruby bug?)
88
- #subject.freeze
89
- #lambda { action }.should_not raise_error(RUBY_VERSION >= '1.9.0' ? RuntimeError : TypeError)
90
- lambda { action }.should_not change(subject, :entries)
91
- end
92
- end
93
-
94
- def should_be_a_kicker
95
- unless loaded
96
- it 'should be a kicker' do
97
- lambda { action }.should change(subject, :loaded?).from(false).to(true)
98
- end
99
- end
100
- end
101
-
102
- def should_not_be_a_kicker
103
- unless loaded
104
- it 'should not be a kicker' do
105
- subject.should_not be_loaded
106
- lambda { action }.should_not change(subject, :loaded?)
107
- end
108
- end
109
- end
110
- end
111
-
112
- module Methods
113
- def subject
114
- @subject ||= instance_eval(&self.class.subject_block)
115
- end
116
-
117
- def action
118
- instance_eval(&self.class.action_block)
119
- end
120
- end
121
- end
122
-
123
- [ false, true ].each do |loaded|
124
- describe LazyArray do
125
- extend LazyArraySpec::GroupMethods
126
- include LazyArraySpec::Methods
127
-
128
- self.loaded = loaded
129
-
130
- # message describing the object state
131
- state = "(#{'not ' unless loaded}loaded)"
132
-
133
- before do
134
- @nancy = 'nancy'
135
- @bessie = 'bessie'
136
- @steve = 'steve'
137
-
138
- @lazy_array = LazyArray.new
139
- @lazy_array.load_with { |la| la.push(@nancy, @bessie) }
140
-
141
- @other = LazyArray.new
142
- @other.load_with { |la| la.push(@steve) }
143
-
144
- @lazy_array.entries if loaded
145
- end
146
-
147
- subject { @lazy_array }
148
-
149
- it 'should be an Enumerable' do
150
- (Enumerable === subject).should be_true
151
- end
152
-
153
- describe 'when frozen', state do
154
- before { subject.freeze }
155
-
156
- it 'should still be able to kick' do
157
- lambda { subject.entries }.should_not raise_error
158
- end
159
-
160
- it 'should not allow any modifications' do
161
- lambda { subject << @steve }.should raise_error(RUBY_VERSION >= '1.9.0' ? RuntimeError : TypeError)
162
- end
163
- end
164
-
165
- should_respond_to(:<<)
166
-
167
- describe '#<<' do
168
- action { subject << @steve }
169
-
170
- should_return_subject
171
- should_not_be_a_kicker
172
-
173
- it 'should append an entry' do
174
- (subject << @steve).should == [ @nancy, @bessie, @steve ]
175
- end
176
- end
177
-
178
- should_respond_to(:any?)
179
-
180
- describe '#any?', state do
181
- describe 'when not provided a block' do
182
- action { subject.any? }
183
-
184
- describe 'when the subject has entries that are not loaded' do
185
- should_return_true
186
- should_be_a_kicker
187
- should_not_change_subject
188
- end
189
-
190
- describe 'when the subject has entries that are prepended' do
191
- subject { LazyArray.new.unshift(@nancy) }
192
-
193
- should_return_true
194
- should_not_be_a_kicker
195
- should_not_change_subject
196
- end
197
-
198
- describe 'when the subject has entries that are appended' do
199
- subject { LazyArray.new << @nancy }
200
-
201
- should_return_true
202
- should_not_be_a_kicker
203
- should_not_change_subject
204
- end
205
-
206
- describe 'when the subject has no entries' do
207
- subject { LazyArray.new }
208
-
209
- should_return_false
210
- should_be_a_kicker
211
- should_not_change_subject
212
- end
213
- end
214
-
215
- describe 'when provided a block that always returns true' do
216
- action { subject.any? { true } }
217
-
218
- describe 'when the subject has entries that are not loaded' do
219
- should_return_true
220
- should_be_a_kicker
221
- should_not_change_subject
222
- end
223
-
224
- describe 'when the subject has entries that are prepended' do
225
- subject { LazyArray.new.unshift(@nancy) }
226
-
227
- should_return_true
228
- should_not_be_a_kicker
229
- should_not_change_subject
230
- end
231
-
232
- describe 'when the subject has entries that are appended' do
233
- subject { LazyArray.new << @nancy }
234
-
235
- should_return_true
236
- should_not_be_a_kicker
237
- should_not_change_subject
238
- end
239
-
240
- describe 'when the subject has no entries' do
241
- subject { LazyArray.new }
242
-
243
- should_return_false
244
- should_be_a_kicker
245
- should_not_change_subject
246
- end
247
- end
248
- end
249
-
250
- should_respond_to(:at)
251
-
252
- describe '#at', state do
253
- describe 'with positive index' do
254
- action { subject.at(0) }
255
-
256
- should_return_expected_value { @nancy }
257
- should_be_a_kicker
258
- should_not_change_subject
259
- end
260
-
261
- describe 'with positive index', 'after prepending to the LazyArray' do
262
- before { subject.unshift(@steve) }
263
-
264
- action { subject.at(0) }
265
-
266
- should_return_expected_value { @steve }
267
- should_not_be_a_kicker
268
- should_not_change_subject
269
- end
270
-
271
- describe 'with negative index' do
272
- action { subject.at(-1) }
273
-
274
- should_return_expected_value { @bessie }
275
- should_be_a_kicker
276
- should_not_change_subject
277
- end
278
-
279
- describe 'with negative index', 'after appending to the LazyArray' do
280
- before { subject.push(@steve) }
281
-
282
- action { subject.at(-1) }
283
-
284
- should_return_expected_value { @steve }
285
- should_not_be_a_kicker
286
- should_not_change_subject
287
- end
288
-
289
- describe 'with an index not within the LazyArray' do
290
- action { subject.at(2) }
291
-
292
- should_return_nil
293
- should_be_a_kicker
294
- should_not_change_subject
295
- end
296
- end
297
-
298
- should_respond_to(:clear)
299
-
300
- describe '#clear', state do
301
- action { subject.clear }
302
-
303
- should_return_subject
304
- should_be_a_kicker # only marks as loadd, does not lazy load
305
- should_clear_subject
306
- end
307
-
308
- [ :collect!, :map! ].each do |method|
309
- it { @lazy_array.should respond_to(method) }
310
-
311
- describe "##{method}", state do
312
- before { @accumulator = [] }
313
-
314
- action { subject.send(method) { |e| @accumulator << e; @steve } }
315
-
316
- should_return_subject
317
- should_yield_to_each_entry
318
- should_be_a_kicker
319
-
320
- it 'should update with the block results' do
321
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @steve, @steve ])
322
- end
323
- end
324
- end
325
-
326
- should_respond_to(:concat)
327
-
328
- describe '#concat', state do
329
- action { subject.concat(@other) }
330
-
331
- should_return_subject
332
- should_not_be_a_kicker
333
-
334
- it 'should concatenate other Enumerable' do
335
- subject.concat(@other).should == [ @nancy, @bessie, @steve ]
336
- end
337
- end
338
-
339
- should_respond_to(:delete)
340
-
341
- describe '#delete', state do
342
- describe 'with an object within the LazyArray', state do
343
- action { subject.delete(@nancy) }
344
-
345
- should_return_expected_value { @nancy }
346
- should_be_a_kicker
347
-
348
- it 'should remove the matching entry' do
349
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @bessie ])
350
- end
351
- end
352
-
353
- describe 'with an object not within the LazyArray', 'without a default block' do
354
- action { subject.delete(@steve) }
355
-
356
- should_return_nil
357
- should_not_change_subject
358
- should_be_a_kicker
359
- end
360
-
361
- describe 'with an object not within the LazyArray', 'with a default block' do
362
- action { subject.delete(@steve) { @steve } }
363
-
364
- should_return_expected_value { @steve }
365
- should_not_change_subject
366
- should_be_a_kicker
367
- end
368
- end
369
-
370
- should_respond_to(:delete_at)
371
-
372
- describe '#delete_at', state do
373
- describe 'with a positive index' do
374
- action { subject.delete_at(0) }
375
-
376
- should_return_expected_value { @nancy }
377
- should_be_a_kicker
378
-
379
- it 'should remove the matching entry' do
380
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @bessie ])
381
- end
382
- end
383
-
384
- describe 'with a positive index', 'after prepending to the LazyArray' do
385
- before { subject.unshift(@steve) }
386
-
387
- action { subject.delete_at(0) }
388
-
389
- should_return_expected_value { @steve }
390
- should_not_be_a_kicker
391
-
392
- it 'should remove the matching entry' do
393
- lambda { action }.should change(subject, :entries).from([ @steve, @nancy, @bessie ]).to([ @nancy, @bessie ])
394
- end
395
- end
396
-
397
- describe 'with a negative index' do
398
- action { subject.delete_at(-1) }
399
-
400
- should_return_expected_value { @bessie }
401
- should_be_a_kicker
402
-
403
- it 'should remove the matching entry' do
404
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @nancy ])
405
- end
406
- end
407
-
408
- describe 'with a negative index', 'after appending to the LazyArray' do
409
- before { subject.push(@steve) }
410
-
411
- action { subject.delete_at(-1) }
412
-
413
- should_return_expected_value { @steve }
414
- should_not_be_a_kicker
415
-
416
- it 'should remove the matching entry' do
417
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie, @steve ]).to([ @nancy, @bessie ])
418
- end
419
- end
420
-
421
- describe 'with an index not within the LazyArray' do
422
- action { subject.delete_at(2) }
423
-
424
- should_return_nil
425
- should_not_change_subject
426
- should_be_a_kicker
427
- end
428
- end
429
-
430
- should_respond_to(:delete_if)
431
-
432
- describe '#delete_if', state do
433
- before { @accumulator = [] }
434
-
435
- describe 'with a block that matches an entry' do
436
- action { subject.delete_if { |e| @accumulator << e; true } }
437
-
438
- should_return_subject
439
- should_yield_to_each_entry
440
- should_not_be_a_kicker
441
-
442
- it 'should update with the block results' do
443
- lambda { action }.should change(subject, :empty?).from(false).to(true)
444
- end
445
- end
446
-
447
- describe 'with a block that does not match an entry' do
448
- action { subject.delete_if { |e| @accumulator << e; false } }
449
-
450
- should_return_subject
451
- should_yield_to_each_entry
452
- should_not_be_a_kicker
453
- should_not_change_subject
454
- end
455
- end
456
-
457
- should_respond_to(:dup)
458
-
459
- describe '#dup', state do
460
- action { subject.dup }
461
-
462
- should_return_kind_of(LazyArray)
463
- should_return_copy
464
- should_not_be_a_kicker
465
-
466
- if loaded
467
- it 'should be loaded if subject loaded' do
468
- action.should be_loaded
469
- end
470
- end
471
- end
472
-
473
- should_respond_to(:each)
474
-
475
- describe '#each', state do
476
- before { @accumulator = [] }
477
-
478
- action { subject.each { |e| @accumulator << e } }
479
-
480
- should_return_subject
481
- should_yield_to_each_entry
482
- should_be_a_kicker
483
- should_not_change_subject
484
- end
485
-
486
- should_respond_to(:each_index)
487
-
488
- describe '#each_index', state do
489
- before { @accumulator = [] }
490
-
491
- action { subject.each_index { |i| @accumulator << i } }
492
-
493
- should_return_subject
494
- should_be_a_kicker
495
- should_not_change_subject
496
-
497
- it 'should yield to each index' do
498
- lambda { action }.should change(@accumulator, :entries).from([]).to([ 0, 1 ])
499
- end
500
- end
501
-
502
- should_respond_to(:each_with_index)
503
-
504
- describe '#each_with_index', state do
505
- before { @accumulator = [] }
506
-
507
- action { subject.each_with_index { |entry,index| @accumulator << [ entry, index ] } }
508
-
509
- should_return_subject
510
- should_be_a_kicker
511
- should_not_change_subject
512
-
513
- it 'should yield to each entry and index' do
514
- lambda { action }.should change(@accumulator, :entries).from([]).to([ [ @nancy, 0 ], [ @bessie, 1 ] ])
515
- end
516
- end
517
-
518
- should_respond_to(:empty?)
519
-
520
- describe '#empty?', state do
521
- describe 'when the subject has entries that are not loaded' do
522
- action { subject.empty? }
523
-
524
- should_return_false
525
- should_be_a_kicker
526
- should_not_change_subject
527
- end
528
-
529
- describe 'when the subject has entries that are prepended' do
530
- subject { LazyArray.new.unshift(@nancy) }
531
-
532
- action { subject.empty? }
533
-
534
- should_return_false
535
- should_not_be_a_kicker
536
- should_not_change_subject
537
- end
538
-
539
- describe 'when the subject has entries that are appended' do
540
- subject { LazyArray.new << @nancy }
541
-
542
- action { subject.empty? }
543
-
544
- should_return_false
545
- should_not_be_a_kicker
546
- should_not_change_subject
547
- end
548
-
549
- describe 'when the subject has no entries' do
550
- subject { LazyArray.new }
551
-
552
- action { subject.empty? }
553
-
554
- should_return_true
555
- should_be_a_kicker
556
- should_not_change_subject
557
- end
558
-
559
- describe 'when the subject has only nil entries' do
560
- subject { LazyArray.new << nil }
561
-
562
- action { subject.empty? }
563
-
564
- should_return_false
565
- should_not_be_a_kicker
566
- should_not_change_subject
567
- end
568
-
569
- end
570
-
571
- [ :eql?, :== ].each do |method|
572
- should_respond_to(method)
573
-
574
- describe "##{method}", state do
575
- describe 'with an Enumerable containing the same entries' do
576
- before do
577
- if method == :eql?
578
- @other = LazyArray.new
579
- @other.load_with { |la| la.push(@nancy, @bessie) }
580
- else
581
- @other = [ @nancy, @bessie ]
582
- end
583
- end
584
-
585
- action { subject.send(method, @other) }
586
-
587
- should_return_true
588
- should_be_a_kicker
589
- should_not_change_subject
590
- end
591
-
592
- describe 'with an Enumerable containing different entries' do
593
- action { subject.send(method, @other) }
594
-
595
- should_return_false
596
- should_be_a_kicker
597
- should_not_change_subject
598
- end
599
-
600
- describe 'with an Enumerable with different entries than in head' do
601
- before { subject.unshift(@nancy) }
602
-
603
- action { subject.send(method, [ @steve ]) }
604
-
605
- should_return_false
606
- should_not_be_a_kicker
607
- should_not_change_subject
608
- end
609
-
610
- describe 'with an Enumerable with different entries than in tail' do
611
- before { subject.push(@nancy) }
612
-
613
- action { subject.send(method, [ @steve ]) }
614
-
615
- should_return_false
616
- should_not_be_a_kicker
617
- should_not_change_subject
618
- end
619
- end
620
- end
621
-
622
- should_respond_to(:fetch)
623
-
624
- describe '#fetch', state do
625
- describe 'with positive index' do
626
- action { subject.fetch(0) }
627
-
628
- should_return_expected_value { @nancy }
629
- should_be_a_kicker
630
- should_not_change_subject
631
- end
632
-
633
- describe 'with positive index', 'after prepending to the LazyArray' do
634
- before { subject.unshift(@steve) }
635
-
636
- action { subject.fetch(0) }
637
-
638
- should_return_expected_value { @steve }
639
- should_not_be_a_kicker
640
- should_not_change_subject
641
- end
642
-
643
- describe 'with negative index' do
644
- action { subject.fetch(-1) }
645
-
646
- should_return_expected_value { @bessie }
647
- should_be_a_kicker
648
- should_not_change_subject
649
- end
650
-
651
- describe 'with negative index', 'after appending to the LazyArray' do
652
- before { subject.push(@steve) }
653
-
654
- action { subject.fetch(-1) }
655
-
656
- should_return_expected_value { @steve }
657
- should_not_be_a_kicker
658
- should_not_change_subject
659
- end
660
-
661
- describe 'with an index not within the LazyArray' do
662
- action { subject.fetch(2) }
663
-
664
- should_raise_error(IndexError)
665
- end
666
-
667
- describe 'with an index not within the LazyArray and default' do
668
- action { subject.fetch(2, @steve) }
669
-
670
- should_return_expected_value { @steve }
671
- should_be_a_kicker
672
- should_not_change_subject
673
- end
674
-
675
- describe 'with an index not within the LazyArray and default block' do
676
- action { subject.fetch(2) { @steve } }
677
-
678
- should_return_expected_value { @steve }
679
- should_be_a_kicker
680
- should_not_change_subject
681
- end
682
- end
683
-
684
- should_respond_to(:freeze)
685
-
686
- describe '#freeze', state do
687
- action { subject.freeze }
688
-
689
- should_return_subject
690
- should_not_be_a_kicker
691
-
692
- it { lambda { action }.should change(subject, :frozen?).from(false).to(true) }
693
- end
694
-
695
- should_respond_to(:first)
696
-
697
- describe '#first', state do
698
- describe 'with no arguments' do
699
- action { subject.first }
700
-
701
- should_return_expected_value { @nancy }
702
- should_be_a_kicker
703
- should_not_change_subject
704
- end
705
-
706
- describe 'with no arguments', 'after prepending to the LazyArray' do
707
- before { subject.unshift(@steve) }
708
-
709
- action { subject.first }
710
-
711
- should_return_expected_value { @steve }
712
- should_not_be_a_kicker
713
- should_not_change_subject
714
- end
715
-
716
- describe 'with length specified' do
717
- action { subject.first(1) }
718
-
719
- it { action.should == [ @nancy ] }
720
-
721
- should_be_a_kicker
722
- should_not_change_subject
723
- end
724
-
725
- describe 'with length specified', 'after prepending to the LazyArray' do
726
- before { subject.unshift(@steve) }
727
-
728
- action { subject.first(1) }
729
-
730
- it { action.should == [ @steve ] }
731
-
732
- should_not_be_a_kicker
733
- should_not_change_subject
734
- end
735
- end
736
-
737
- should_respond_to(:include?)
738
-
739
- describe '#include?', state do
740
- describe 'with an included entry' do
741
- action { subject.include?(@nancy) }
742
-
743
- should_return_true
744
- should_be_a_kicker
745
- should_not_change_subject
746
- end
747
-
748
- describe 'with an included entry', 'after prepending to the LazyArray' do
749
- before { subject.unshift(@steve) }
750
-
751
- action { subject.include?(@steve) }
752
-
753
- should_return_true
754
- should_not_be_a_kicker
755
- should_not_change_subject
756
- end
757
-
758
- describe 'with an included entry', 'after appending to the LazyArray' do
759
- before { subject.push(@steve) }
760
-
761
- action { subject.include?(@steve) }
762
-
763
- should_return_true
764
- should_not_be_a_kicker
765
- should_not_change_subject
766
- end
767
-
768
- describe 'with an entry not included' do
769
- action { subject.include?(@steve) }
770
-
771
- should_return_false
772
- should_be_a_kicker
773
- should_not_change_subject
774
- end
775
- end
776
-
777
- should_respond_to(:index)
778
-
779
- describe '#index', state do
780
- describe 'with an included entry' do
781
- action { subject.index(@nancy) }
782
-
783
- should_return_expected_value { 0 }
784
- should_be_a_kicker
785
- should_not_change_subject
786
- end
787
-
788
- describe 'with an included entry', 'after prepending to the LazyArray' do
789
- before { subject.unshift(@steve) }
790
-
791
- action { subject.index(@steve) }
792
-
793
- should_return_expected_value { 0 }
794
- should_not_be_a_kicker
795
- should_not_change_subject
796
- end
797
-
798
- describe 'with an included entry', 'after appending to the LazyArray' do
799
- before { subject.push(@steve) }
800
-
801
- action { subject.index(@steve) }
802
-
803
- should_return_expected_value { 2 }
804
- should_be_a_kicker # need to kick because first index could be in lazy array
805
- should_not_change_subject
806
- end
807
-
808
- describe 'with an entry not included' do
809
- action { subject.index(@steve) }
810
-
811
- should_return_nil
812
- should_be_a_kicker
813
- should_not_change_subject
814
- end
815
- end
816
-
817
- should_respond_to(:insert)
818
-
819
- describe '#insert', state do
820
- describe 'with an index of 0' do
821
- action { subject.insert(0, @steve) }
822
-
823
- should_return_subject
824
- should_not_be_a_kicker
825
-
826
- it 'should insert the entries before the index' do
827
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @steve, @nancy, @bessie ])
828
- end
829
- end
830
-
831
- describe 'with an positive index greater than the head size' do
832
- action { subject.insert(1, @steve) }
833
-
834
- should_return_subject
835
- should_be_a_kicker
836
-
837
- it 'should insert the entries before the index' do
838
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @nancy, @steve, @bessie ])
839
- end
840
- end
841
-
842
- describe 'with an index of -1' do
843
- action { subject.insert(-1, @steve) }
844
-
845
- should_return_subject
846
- should_not_be_a_kicker
847
-
848
- it 'should insert the entries before the index' do
849
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @nancy, @bessie, @steve ])
850
- end
851
- end
852
-
853
- describe 'with a negative index greater than the tail size' do
854
- action { subject.insert(-2, @steve) }
855
-
856
- should_return_subject
857
- should_be_a_kicker
858
-
859
- it 'should insert the entries before the index' do
860
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @nancy, @steve, @bessie ])
861
- end
862
- end
863
-
864
- describe 'with a positive index 1 greater than the maximum index of the LazyArray' do
865
- action { subject.insert(2, @steve) }
866
-
867
- should_return_subject
868
- should_be_a_kicker
869
-
870
- it 'should insert the entries before the index' do
871
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @nancy, @bessie, @steve ])
872
- end
873
- end
874
-
875
- describe 'with a positive index not within the LazyArray' do
876
- action { subject.insert(3, @steve) }
877
-
878
- should_return_subject
879
- should_be_a_kicker
880
-
881
- it 'should insert the entries before the index, expanding the LazyArray' do
882
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @nancy, @bessie, nil, @steve ])
883
- end
884
- end
885
-
886
- describe 'with a negative index 1 greater than the maximum index of the LazyArray' do
887
- action { subject.insert(-3, @steve) }
888
-
889
- should_return_subject
890
- should_be_a_kicker
891
-
892
- it 'should insert the entries before the index, expanding the LazyArray' do
893
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @steve, @nancy, @bessie ])
894
- end
895
- end
896
-
897
- describe 'with a negative index not within the LazyArray' do
898
- action { subject.insert(-4, @steve) }
899
-
900
- should_raise_error(IndexError)
901
- end
902
- end
903
-
904
- should_respond_to(:kind_of?)
905
-
906
- describe '#kind_of' do
907
- describe 'when provided a class that is a superclass' do
908
- action { subject.kind_of?(Object) }
909
-
910
- should_return_true
911
- should_not_be_a_kicker
912
- should_not_change_subject
913
- end
914
-
915
- describe 'when provided a class that is a proxy class superclass' do
916
- action { subject.kind_of?(Array) }
917
-
918
- should_return_true
919
- should_not_be_a_kicker
920
- should_not_change_subject
921
- end
922
-
923
- describe 'when provided a class that is not a superclass' do
924
- action { subject.kind_of?(Hash) }
925
-
926
- should_return_false
927
- should_not_be_a_kicker
928
- should_not_change_subject
929
- end
930
- end
931
-
932
- should_respond_to(:last)
933
-
934
- describe '#last', state do
935
- describe 'with no arguments' do
936
- action { subject.last }
937
-
938
- should_return_expected_value { @bessie }
939
- should_be_a_kicker
940
- should_not_change_subject
941
- end
942
-
943
- describe 'with no arguments', 'after appending to the LazyArray' do
944
- before { subject.push(@steve) }
945
-
946
- action { subject.last }
947
-
948
- should_return_expected_value { @steve }
949
- should_not_be_a_kicker
950
- should_not_change_subject
951
- end
952
-
953
- describe 'with length specified' do
954
- action { subject.last(1) }
955
-
956
- it { action.should == [ @bessie ] }
957
-
958
- should_be_a_kicker
959
- should_not_change_subject
960
- end
961
-
962
- describe 'with length specified', 'after appending to the LazyArray' do
963
- before { subject.push(@steve) }
964
-
965
- action { subject.last(1) }
966
-
967
- it { action.should == [ @steve ] }
968
-
969
- should_not_be_a_kicker
970
- should_not_change_subject
971
- end
972
- end
973
-
974
- should_respond_to(:loaded?)
975
-
976
- describe '#loaded?' do
977
- if loaded
978
- describe 'when loaded' do
979
- action { subject.loaded? }
980
-
981
- should_return_true
982
- should_not_change_subject
983
- end
984
- else
985
- describe 'when not loaded' do
986
- action { subject.loaded? }
987
-
988
- should_return_false
989
- should_not_change_subject
990
- end
991
- end
992
- end
993
-
994
- should_respond_to(:nil?)
995
-
996
- describe '#nil?' do
997
- action { subject.nil? }
998
-
999
- should_return_expected_value { false }
1000
-
1001
- should_not_be_a_kicker
1002
- end
1003
-
1004
- should_respond_to(:pop)
1005
-
1006
- describe '#pop', state do
1007
- describe 'without appending to the LazyArray' do
1008
- action { subject.pop }
1009
-
1010
- should_return_expected_value { @bessie }
1011
- should_be_a_kicker
1012
-
1013
- it 'should remove the last entry' do
1014
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @nancy ])
1015
- end
1016
- end
1017
-
1018
- describe 'after appending to the LazyArray' do
1019
- before { subject.push(@steve) }
1020
-
1021
- action { subject.pop }
1022
-
1023
- should_return_expected_value { @steve }
1024
- should_not_be_a_kicker
1025
-
1026
- it 'should remove the last entry' do
1027
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie, @steve ]).to([ @nancy, @bessie ])
1028
- end
1029
- end
1030
- end
1031
-
1032
- should_respond_to(:push)
1033
-
1034
- describe '#push', state do
1035
- action { subject.push(@steve, @steve) }
1036
-
1037
- should_return_subject
1038
- should_not_be_a_kicker
1039
-
1040
- it 'should append entries' do
1041
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @nancy, @bessie, @steve, @steve ])
1042
- end
1043
- end
1044
-
1045
- should_respond_to(:reject!)
1046
-
1047
- describe '#reject!', state do
1048
- before { @accumulator = [] }
1049
-
1050
- describe 'with a block that matches an entry' do
1051
- action { subject.reject! { |e| @accumulator << e; true } }
1052
-
1053
- should_return_subject
1054
- should_yield_to_each_entry
1055
- should_be_a_kicker
1056
-
1057
- it 'should update with the block results' do
1058
- lambda { action }.should change(subject, :empty?).from(false).to(true)
1059
- end
1060
- end
1061
-
1062
- describe 'with a block that does not match an entry' do
1063
- action { subject.reject! { |e| @accumulator << e; false } }
1064
-
1065
- should_return_nil
1066
- should_yield_to_each_entry
1067
- should_be_a_kicker
1068
- should_not_change_subject
1069
- end
1070
- end
1071
-
1072
- should_respond_to(:replace)
1073
-
1074
- describe '#replace' do
1075
- action { subject.replace(@other) }
1076
-
1077
- should_return_subject
1078
- should_be_a_kicker
1079
-
1080
- it 'should replace with other Enumerable' do
1081
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @steve ])
1082
- end
1083
- end
1084
-
1085
- should_respond_to(:reverse)
1086
-
1087
- describe '#reverse', state do
1088
- action { subject.reverse }
1089
-
1090
- should_return_kind_of(LazyArray)
1091
- should_not_be_a_kicker
1092
- should_not_change_subject
1093
-
1094
- it 'should return a reversed LazyArray' do
1095
- action.should == [ @bessie, @nancy ]
1096
- end
1097
- end
1098
-
1099
- should_respond_to(:reverse!)
1100
-
1101
- describe '#reverse!', state do
1102
- action { subject.reverse! }
1103
-
1104
- should_return_subject
1105
- should_not_be_a_kicker
1106
-
1107
- it 'should return a reversed LazyArray' do
1108
- action.should == [ @bessie, @nancy ]
1109
- end
1110
- end
1111
-
1112
- should_respond_to(:reverse_each)
1113
-
1114
- describe '#reverse_each', state do
1115
- before { @accumulator = [] }
1116
-
1117
- action { subject.reverse_each { |e| @accumulator << e } }
1118
-
1119
- should_return_subject
1120
- should_be_a_kicker
1121
- should_not_change_subject
1122
-
1123
- it 'should yield to each entry' do
1124
- lambda { action }.should change(@accumulator, :entries).from([]).to([ @bessie, @nancy ])
1125
- end
1126
- end
1127
-
1128
- should_respond_to(:rindex)
1129
-
1130
- describe '#rindex', state do
1131
- describe 'with an included entry' do
1132
- action { subject.rindex(@nancy) }
1133
-
1134
- should_return_expected_value { 0 }
1135
- should_be_a_kicker # rindex always a kicker
1136
- should_not_change_subject
1137
- end
1138
-
1139
- describe 'with an included entry', 'after prepending to the LazyArray' do
1140
- before { subject.unshift(@steve) }
1141
-
1142
- action { subject.rindex(@steve) }
1143
-
1144
- should_return_expected_value { 0 }
1145
- should_be_a_kicker # rindex always a kicker
1146
- should_not_change_subject
1147
- end
1148
-
1149
- describe 'with an included entry', 'after appending to the LazyArray' do
1150
- before { subject.push(@steve) }
1151
-
1152
- action { subject.rindex(@steve) }
1153
-
1154
- should_return_expected_value { 2 }
1155
- should_be_a_kicker # rindex always a kicker
1156
- should_not_change_subject
1157
- end
1158
-
1159
- describe 'with an entry not included' do
1160
- action { subject.rindex(@steve) }
1161
-
1162
- should_return_nil
1163
- should_be_a_kicker # rindex always a kicker
1164
- should_not_change_subject
1165
- end
1166
- end
1167
-
1168
- should_respond_to(:shift)
1169
-
1170
- describe '#shift', state do
1171
- describe 'without prepending to the LazyArray' do
1172
- action { subject.shift }
1173
-
1174
- should_return_expected_value { @nancy }
1175
- should_be_a_kicker
1176
-
1177
- it 'should remove the last entry' do
1178
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @bessie ])
1179
- end
1180
- end
1181
-
1182
- describe 'after prepending to the LazyArray' do
1183
- before { subject.unshift(@steve) }
1184
-
1185
- action { subject.shift }
1186
-
1187
- should_return_expected_value { @steve }
1188
- should_not_be_a_kicker
1189
-
1190
- it 'should remove the last entry' do
1191
- lambda { action }.should change(subject, :entries).from([ @steve, @nancy, @bessie ]).to([ @nancy, @bessie ])
1192
- end
1193
- end
1194
- end
1195
-
1196
- [ :slice, :[] ].each do |method|
1197
- should_respond_to(method)
1198
-
1199
- describe "##{method}", state do
1200
- describe 'with a positive index' do
1201
- action { subject.send(method, 0) }
1202
-
1203
- should_return_expected_value { @nancy }
1204
- should_be_a_kicker
1205
- should_not_change_subject
1206
- end
1207
-
1208
- describe 'with a positive index', 'after prepending to the LazyArray' do
1209
- before { subject.unshift(@steve) }
1210
-
1211
- action { subject.send(method, 0) }
1212
-
1213
- should_return_expected_value { @steve }
1214
- should_not_be_a_kicker
1215
- should_not_change_subject
1216
- end
1217
-
1218
- describe 'with a positive index and length' do
1219
- action { subject.send(method, 0, 1) }
1220
-
1221
- should_return_kind_of(Array)
1222
- should_return_expected_value { [ @nancy ] }
1223
- should_be_a_kicker
1224
- should_not_change_subject
1225
- end
1226
-
1227
- describe 'with a positive index and length', 'after prepending to the LazyArray' do
1228
- before { subject.unshift(@steve) }
1229
-
1230
- action { subject.send(method, 0, 1) }
1231
-
1232
- should_return_kind_of(Array)
1233
- should_return_expected_value { [ @steve ] }
1234
- should_not_be_a_kicker
1235
- should_not_change_subject
1236
- end
1237
-
1238
- describe 'with a positive range' do
1239
- action { subject.send(method, 0..0) }
1240
-
1241
- should_return_kind_of(Array)
1242
- should_return_expected_value { [ @nancy ] }
1243
- should_be_a_kicker
1244
- should_not_change_subject
1245
- end
1246
-
1247
- describe 'with a positive range', 'after prepending to the LazyArray' do
1248
- before { subject.unshift(@steve) }
1249
-
1250
- action { subject.send(method, 0..0) }
1251
-
1252
- should_return_kind_of(Array)
1253
- should_return_expected_value { [ @steve ] }
1254
- should_not_be_a_kicker
1255
- should_not_change_subject
1256
- end
1257
-
1258
- describe 'with a negative index' do
1259
- action { subject.send(method, -1) }
1260
-
1261
- should_return_expected_value { @bessie }
1262
- should_be_a_kicker
1263
- should_not_change_subject
1264
- end
1265
-
1266
- describe 'with a negative index', 'after appending to the LazyArray' do
1267
- before { subject.push(@steve) }
1268
-
1269
- action { subject.send(method, -1) }
1270
-
1271
- should_return_expected_value { @steve }
1272
- should_not_be_a_kicker
1273
- should_not_change_subject
1274
- end
1275
-
1276
- describe 'with a negative index and length' do
1277
- action { subject.send(method, -1, 1) }
1278
-
1279
- should_return_kind_of(Array)
1280
- should_return_expected_value { [ @bessie ] }
1281
- should_be_a_kicker
1282
- should_not_change_subject
1283
- end
1284
-
1285
- describe 'with a negative index and length', 'after appending to the LazyArray' do
1286
- before { subject.push(@steve) }
1287
-
1288
- action { subject.send(method, -1, 1) }
1289
-
1290
- should_return_kind_of(Array)
1291
- should_return_expected_value { [ @steve ] }
1292
- should_not_be_a_kicker
1293
- should_not_change_subject
1294
- end
1295
-
1296
- describe 'with a negative range' do
1297
- action { subject.send(method, -1..-1) }
1298
-
1299
- should_return_kind_of(Array)
1300
- should_return_expected_value { [ @bessie ] }
1301
- should_be_a_kicker
1302
- should_not_change_subject
1303
- end
1304
-
1305
- describe 'with a negative range', 'after appending to the LazyArray' do
1306
- before { subject.push(@steve) }
1307
-
1308
- action { subject.send(method, -1..-1) }
1309
-
1310
- should_return_kind_of(Array)
1311
- should_return_expected_value { [ @steve ] }
1312
- should_not_be_a_kicker
1313
- should_not_change_subject
1314
- end
1315
-
1316
- describe 'with an index not within the LazyArray' do
1317
- action { subject.send(method, 2) }
1318
-
1319
- should_return_nil
1320
- should_be_a_kicker
1321
- should_not_change_subject
1322
- end
1323
-
1324
- describe 'with an index and length not within the LazyArray' do
1325
- action { subject.send(method, 2, 1) }
1326
-
1327
- should_return_kind_of(Array)
1328
- should_return_expected_value { [] }
1329
- should_be_a_kicker
1330
- should_not_change_subject
1331
- end
1332
-
1333
- describe 'with a range not within the LazyArray' do
1334
- action { subject.send(method, 2..2) }
1335
-
1336
- should_return_kind_of(Array)
1337
- should_return_expected_value { [] }
1338
- should_be_a_kicker
1339
- should_not_change_subject
1340
- end
1341
-
1342
- describe 'with invalid arguments' do
1343
- action { subject.send(method, 1, 1..1) }
1344
-
1345
- should_raise_error(ArgumentError)
1346
- end
1347
- end
1348
- end
1349
-
1350
- should_respond_to(:slice!)
1351
-
1352
- describe '#slice!', state do
1353
- describe 'with a positive index' do
1354
- action { subject.slice!(0) }
1355
-
1356
- should_return_expected_value { @nancy }
1357
- should_be_a_kicker
1358
-
1359
- it 'should remove the matching entry' do
1360
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @bessie ])
1361
- end
1362
- end
1363
-
1364
- describe 'with a positive index', 'after prepending to the LazyArray' do
1365
- before { subject.unshift(@steve) }
1366
-
1367
- action { subject.slice!(0) }
1368
-
1369
- should_return_expected_value { @steve }
1370
- should_not_be_a_kicker
1371
-
1372
- it 'should remove the matching entry' do
1373
- lambda { action }.should change(subject, :entries).from([ @steve, @nancy, @bessie ]).to([ @nancy, @bessie ])
1374
- end
1375
- end
1376
-
1377
- describe 'with a positive index and length' do
1378
- action { subject.slice!(0, 1) }
1379
-
1380
- should_return_kind_of(Array)
1381
- should_return_expected_value { [ @nancy ] }
1382
- should_be_a_kicker
1383
-
1384
- it 'should remove the matching entries' do
1385
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @bessie ])
1386
- end
1387
- end
1388
-
1389
- describe 'with a positive index and length', 'after prepending to the LazyArray' do
1390
- before { subject.unshift(@steve) }
1391
-
1392
- action { subject.slice!(0, 1) }
1393
-
1394
- should_return_kind_of(Array)
1395
- should_return_expected_value { [ @steve ] }
1396
- should_not_be_a_kicker
1397
-
1398
- it 'should remove the matching entries' do
1399
- lambda { action }.should change(subject, :entries).from([ @steve, @nancy, @bessie ]).to([ @nancy, @bessie ])
1400
- end
1401
- end
1402
-
1403
- describe 'with a positive range' do
1404
- action { subject.slice!(0..0) }
1405
-
1406
- should_return_kind_of(Array)
1407
- should_return_expected_value { [ @nancy ] }
1408
- should_be_a_kicker
1409
-
1410
- it 'should remove the matching entries' do
1411
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @bessie ])
1412
- end
1413
- end
1414
-
1415
- describe 'with a positive range', 'after prepending to the LazyArray' do
1416
- before { subject.unshift(@steve) }
1417
-
1418
- action { subject.slice!(0..0) }
1419
-
1420
- should_return_kind_of(Array)
1421
- should_return_expected_value { [ @steve ] }
1422
- should_not_be_a_kicker
1423
-
1424
- it 'should remove the matching entry' do
1425
- lambda { action }.should change(subject, :entries).from([ @steve, @nancy, @bessie ]).to([ @nancy, @bessie ])
1426
- end
1427
- end
1428
-
1429
- describe 'with a negative index' do
1430
- action { subject.slice!(-1) }
1431
-
1432
- should_return_expected_value { @bessie }
1433
- should_be_a_kicker
1434
-
1435
- it 'should remove the matching entries' do
1436
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @nancy ])
1437
- end
1438
- end
1439
-
1440
- describe 'with a negative index', 'after appending to the LazyArray' do
1441
- before { subject.push(@steve) }
1442
-
1443
- action { subject.slice!(-1) }
1444
-
1445
- should_return_expected_value { @steve }
1446
- should_not_be_a_kicker
1447
-
1448
- it 'should remove the matching entries' do
1449
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie, @steve ]).to([ @nancy, @bessie ])
1450
- end
1451
- end
1452
-
1453
- describe 'with a negative index and length' do
1454
- action { subject.slice!(-1, 1) }
1455
-
1456
- should_return_kind_of(Array)
1457
- should_return_expected_value { [ @bessie ] }
1458
- should_be_a_kicker
1459
-
1460
- it 'should remove the matching entries' do
1461
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @nancy ])
1462
- end
1463
- end
1464
-
1465
- describe 'with a negative index and length', 'after appending to the LazyArray' do
1466
- before { subject.push(@steve) }
1467
-
1468
- action { subject.slice!(-1, 1) }
1469
-
1470
- should_return_kind_of(Array)
1471
- should_return_expected_value { [ @steve ] }
1472
- should_not_be_a_kicker
1473
-
1474
- it 'should remove the matching entries' do
1475
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie, @steve ]).to([ @nancy, @bessie ])
1476
- end
1477
- end
1478
-
1479
- describe 'with a negative range' do
1480
- action { subject.slice!(-1..-1) }
1481
-
1482
- should_return_kind_of(Array)
1483
- should_return_expected_value { [ @bessie ] }
1484
- should_be_a_kicker
1485
-
1486
- it 'should remove the matching entries' do
1487
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @nancy ])
1488
- end
1489
- end
1490
-
1491
- describe 'with a negative range', 'after appending to the LazyArray' do
1492
- before { subject.push(@steve) }
1493
-
1494
- action { subject.slice!(-1..-1) }
1495
-
1496
- should_return_kind_of(Array)
1497
- should_return_expected_value { [ @steve ] }
1498
- should_not_be_a_kicker
1499
-
1500
- it 'should remove the matching entries' do
1501
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie, @steve ]).to([ @nancy, @bessie ])
1502
- end
1503
- end
1504
-
1505
- describe 'with an index not within the LazyArray' do
1506
- action { subject.slice!(2) }
1507
-
1508
- should_return_nil
1509
- should_be_a_kicker
1510
- should_not_change_subject
1511
- end
1512
-
1513
- describe 'with an index and length not within the LazyArray' do
1514
- action { subject.slice!(2, 1) }
1515
-
1516
- should_return_kind_of(Array)
1517
- should_return_expected_value { [] }
1518
- should_be_a_kicker
1519
- should_not_change_subject
1520
- end
1521
-
1522
- describe 'with a range not within the LazyArray' do
1523
- action { subject.slice!(2..2) }
1524
-
1525
- should_return_kind_of(Array)
1526
- should_return_expected_value { [] }
1527
- should_be_a_kicker
1528
- should_not_change_subject
1529
- end
1530
- end
1531
-
1532
- should_respond_to(:sort!)
1533
-
1534
- describe '#sort!', state do
1535
- describe 'without a block' do
1536
- action { subject.sort! }
1537
-
1538
- should_return_subject
1539
- should_be_a_kicker
1540
-
1541
- it 'should sort the LazyArray inline using default sort order' do
1542
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @bessie, @nancy ])
1543
- end
1544
- end
1545
-
1546
- describe 'without a block' do
1547
- action { subject.sort! { |a,b| a <=> b } }
1548
-
1549
- should_return_subject
1550
- should_be_a_kicker
1551
-
1552
- it 'should sort the LazyArray inline using block' do
1553
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @bessie, @nancy ])
1554
- end
1555
- end
1556
- end
1557
-
1558
- [ :splice, :[]= ].each do |method|
1559
- should_respond_to(method)
1560
-
1561
- describe "##{method}", state do
1562
- before do
1563
- @jon = 'jon'
1564
- end
1565
-
1566
- describe 'with a positive index and entry' do
1567
- action { subject.send(method, 0, @jon) }
1568
-
1569
- should_return_expected_value { @jon }
1570
- should_be_a_kicker
1571
-
1572
- it 'should change the matching entry' do
1573
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @jon, @bessie ])
1574
- end
1575
- end
1576
-
1577
- describe 'with a positive index', 'after prepending to the LazyArray' do
1578
- before { subject.unshift(@steve) }
1579
-
1580
- action { subject.send(method, 0, @jon) }
1581
-
1582
- should_return_expected_value { @jon }
1583
- should_not_be_a_kicker
1584
-
1585
- it 'should change the matching entry' do
1586
- lambda { action }.should change(subject, :entries).from([ @steve, @nancy, @bessie ]).to([ @jon, @nancy, @bessie ])
1587
- end
1588
- end
1589
-
1590
- describe 'with a positive index and length' do
1591
- action { subject.send(method, 0, 1, [ @jon ]) }
1592
-
1593
- should_return_kind_of(Array)
1594
- should_return_expected_value { [ @jon ] }
1595
- should_be_a_kicker
1596
-
1597
- it 'should change the matching entries' do
1598
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @jon, @bessie ])
1599
- end
1600
- end
1601
-
1602
- describe 'with a positive index and length', 'after prepending to the LazyArray' do
1603
- before { subject.unshift(@steve) }
1604
-
1605
- action { subject.send(method, 0, 1, [ @jon ]) }
1606
-
1607
- should_return_kind_of(Array)
1608
- should_return_expected_value { [ @jon ] }
1609
- should_not_be_a_kicker
1610
-
1611
- it 'should change the matching entries' do
1612
- lambda { action }.should change(subject, :entries).from([ @steve, @nancy, @bessie ]).to([ @jon, @nancy, @bessie ])
1613
- end
1614
- end
1615
-
1616
- describe 'with a positive range' do
1617
- action { subject.send(method, 0..0, [ @jon ]) }
1618
-
1619
- should_return_kind_of(Array)
1620
- should_return_expected_value { [ @jon ] }
1621
- should_be_a_kicker
1622
-
1623
- it 'should change the matching entries' do
1624
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @jon, @bessie ])
1625
- end
1626
- end
1627
-
1628
- describe 'with a positive range', 'after prepending to the LazyArray' do
1629
- before { subject.unshift(@steve) }
1630
-
1631
- action { subject.send(method, 0..0, [ @jon ]) }
1632
-
1633
- should_return_kind_of(Array)
1634
- should_return_expected_value { [ @jon ] }
1635
- should_not_be_a_kicker
1636
-
1637
- it 'should change the matching entry' do
1638
- lambda { action }.should change(subject, :entries).from([ @steve, @nancy, @bessie ]).to([ @jon, @nancy, @bessie ])
1639
- end
1640
- end
1641
-
1642
- describe 'with a negative index' do
1643
- action { subject.send(method, -1, @jon) }
1644
-
1645
- should_return_expected_value { @jon }
1646
- should_be_a_kicker
1647
-
1648
- it 'should change the matching entries' do
1649
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @nancy, @jon ])
1650
- end
1651
- end
1652
-
1653
- describe 'with a negative index', 'after appending to the LazyArray' do
1654
- before { subject.push(@steve) }
1655
-
1656
- action { subject.send(method, -1, @jon) }
1657
-
1658
- should_return_expected_value { @jon }
1659
- should_not_be_a_kicker
1660
-
1661
- it 'should change the matching entries' do
1662
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie, @steve ]).to([ @nancy, @bessie, @jon ])
1663
- end
1664
- end
1665
-
1666
- describe 'with a negative index and length' do
1667
- action { subject.send(method, -1, 1, [ @jon ]) }
1668
-
1669
- should_return_kind_of(Array)
1670
- should_return_expected_value { [ @jon ] }
1671
- should_be_a_kicker
1672
-
1673
- it 'should change the matching entries' do
1674
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @nancy, @jon ])
1675
- end
1676
- end
1677
-
1678
- describe 'with a negative index and length', 'after appending to the LazyArray' do
1679
- before { subject.push(@steve) }
1680
-
1681
- action { subject.send(method, -1, 1, [ @jon ]) }
1682
-
1683
- should_return_kind_of(Array)
1684
- should_return_expected_value { [ @jon ] }
1685
- should_not_be_a_kicker
1686
-
1687
- it 'should change the matching entries' do
1688
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie, @steve ]).to([ @nancy, @bessie, @jon ])
1689
- end
1690
- end
1691
-
1692
- describe 'with a negative range' do
1693
- action { subject.send(method, -1..-1, [ @jon ]) }
1694
-
1695
- should_return_kind_of(Array)
1696
- should_return_expected_value { [ @jon ] }
1697
- should_be_a_kicker
1698
-
1699
- it 'should change the matching entries' do
1700
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @nancy, @jon ])
1701
- end
1702
- end
1703
-
1704
- describe 'with a negative range', 'after appending to the LazyArray' do
1705
- before { subject.push(@steve) }
1706
-
1707
- action { subject.send(method, -1..-1, [ @jon ]) }
1708
-
1709
- should_return_kind_of(Array)
1710
- should_return_expected_value { [ @jon ] }
1711
- should_not_be_a_kicker
1712
-
1713
- it 'should change the matching entries' do
1714
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie, @steve ]).to([ @nancy, @bessie, @jon ])
1715
- end
1716
- end
1717
-
1718
- describe 'with a positive index 1 greater than the maximum index of the LazyArray' do
1719
- action { subject.send(method, 2, @jon) }
1720
-
1721
- should_return_expected_value { @jon }
1722
- should_be_a_kicker
1723
-
1724
- it 'should change the matching entries' do
1725
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @nancy, @bessie, @jon ])
1726
- end
1727
- end
1728
-
1729
- describe 'with a positive index not within the LazyArray' do
1730
- action { subject.send(method, 3, @jon) }
1731
-
1732
- should_return_expected_value { @jon }
1733
- should_be_a_kicker
1734
-
1735
- it 'should change the matching entries' do
1736
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @nancy, @bessie, nil, @jon ])
1737
- end
1738
- end
1739
-
1740
- describe 'with a negative index not within the LazyArray' do
1741
- action { subject.send(method, -3, @jon) }
1742
-
1743
- should_raise_error(IndexError)
1744
- end
1745
-
1746
- describe 'with a positive index and length 1 greater than the maximum index of the LazyArray' do
1747
- action { subject.send(method, 2, 1, [ @jon ]) }
1748
-
1749
- should_return_kind_of(Array)
1750
- should_return_expected_value { [ @jon ] }
1751
- should_be_a_kicker
1752
-
1753
- it 'should change the matching entries' do
1754
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @nancy, @bessie, @jon ])
1755
- end
1756
- end
1757
-
1758
- describe 'with a positive index and length not within the LazyArray' do
1759
- action { subject.send(method, 3, 1, [ @jon ]) }
1760
-
1761
- should_return_kind_of(Array)
1762
- should_return_expected_value { [ @jon ] }
1763
- should_be_a_kicker
1764
-
1765
- it 'should change the matching entries' do
1766
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @nancy, @bessie, nil, @jon ])
1767
- end
1768
- end
1769
-
1770
- describe 'with a negative index and length not within the LazyArray ' do
1771
- action { subject.send(method, -3, 1, [ @jon ]) }
1772
-
1773
- should_raise_error(IndexError)
1774
- end
1775
-
1776
- describe 'with a positive range 1 greater than the maximum index of the LazyArray' do
1777
- action { subject.send(method, 2..2, [ @jon ]) }
1778
-
1779
- should_return_kind_of(Array)
1780
- should_return_expected_value { [ @jon ] }
1781
- should_be_a_kicker
1782
-
1783
- it 'should change the matching entries' do
1784
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @nancy, @bessie, @jon ])
1785
- end
1786
- end
1787
-
1788
- describe 'with a positive range not within the LazyArray' do
1789
- action { subject.send(method, 3..3, [ @jon ]) }
1790
-
1791
- should_return_kind_of(Array)
1792
- should_return_expected_value { [ @jon ] }
1793
- should_be_a_kicker
1794
-
1795
- it 'should change the matching entries' do
1796
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @nancy, @bessie, nil, @jon ])
1797
- end
1798
- end
1799
-
1800
- describe 'with a negative range not within the LazyArray' do
1801
- action { subject.send(method, -3..-3, [ @jon ]) }
1802
-
1803
- should_raise_error(RangeError)
1804
- end
1805
- end
1806
- end
1807
-
1808
- should_respond_to(:to_a)
1809
-
1810
- describe '#to_a', state do
1811
- action { subject.to_a }
1812
-
1813
- should_return_kind_of(Array)
1814
- should_be_a_kicker
1815
-
1816
- it 'should be equivalent to self' do
1817
- action.should == subject
1818
- end
1819
- end
1820
-
1821
- should_respond_to(:unshift)
1822
-
1823
- describe '#unshift', state do
1824
- action { subject.unshift(@steve, @steve) }
1825
-
1826
- should_return_subject
1827
- should_not_be_a_kicker
1828
-
1829
- it 'should prepend entries' do
1830
- lambda { action }.should change(subject, :entries).from([ @nancy, @bessie ]).to([ @steve, @steve, @nancy, @bessie ])
1831
- end
1832
- end
1833
-
1834
- should_respond_to(:values_at)
1835
-
1836
- describe '#values_at', state do
1837
- describe 'with a positive index' do
1838
- action { subject.values_at(0) }
1839
-
1840
- should_return_kind_of(Array)
1841
- should_return_expected_value { [ @nancy ] }
1842
- should_be_a_kicker
1843
- should_not_change_subject
1844
- end
1845
-
1846
- describe 'with a positive index', 'after prepending to the LazyArray' do
1847
- before { subject.unshift(@steve) }
1848
-
1849
- action { subject.values_at(0) }
1850
-
1851
- should_return_kind_of(Array)
1852
- should_return_expected_value { [ @steve ] }
1853
- should_not_be_a_kicker
1854
- should_not_change_subject
1855
- end
1856
-
1857
- describe 'with a positive range' do
1858
- action { subject.values_at(0..0) }
1859
-
1860
- should_return_kind_of(Array)
1861
- should_return_expected_value { [ @nancy ] }
1862
- should_be_a_kicker
1863
- should_not_change_subject
1864
- end
1865
-
1866
- describe 'with a positive range', 'after prepending to the LazyArray' do
1867
- before { subject.unshift(@steve) }
1868
-
1869
- action { subject.values_at(0..0) }
1870
-
1871
- should_return_kind_of(Array)
1872
- should_return_expected_value { [ @steve ] }
1873
- should_not_be_a_kicker
1874
- should_not_change_subject
1875
- end
1876
-
1877
- describe 'with a negative index' do
1878
- action { subject.values_at(-1) }
1879
-
1880
- should_return_kind_of(Array)
1881
- should_return_expected_value { [ @bessie ] }
1882
- should_be_a_kicker
1883
- should_not_change_subject
1884
- end
1885
-
1886
- describe 'with a negative index', 'after appending to the LazyArray' do
1887
- before { subject.push(@steve) }
1888
-
1889
- action { subject.values_at(-1) }
1890
-
1891
- should_return_kind_of(Array)
1892
- should_return_expected_value { [ @steve ] }
1893
- should_not_be_a_kicker
1894
- should_not_change_subject
1895
- end
1896
-
1897
- describe 'with a negative range' do
1898
- action { subject.values_at(-1..-1) }
1899
-
1900
- should_return_kind_of(Array)
1901
- should_return_expected_value { [ @bessie ] }
1902
- should_be_a_kicker
1903
- should_not_change_subject
1904
- end
1905
-
1906
- describe 'with a negative range', 'after appending to the LazyArray' do
1907
- before { subject.push(@steve) }
1908
-
1909
- action { subject.values_at(-1..-1) }
1910
-
1911
- should_return_kind_of(Array)
1912
- should_return_expected_value { [ @steve ] }
1913
- should_not_be_a_kicker
1914
- should_not_change_subject
1915
- end
1916
-
1917
- describe 'with an index not within the LazyArray' do
1918
- action { subject.values_at(2) }
1919
-
1920
- should_return_kind_of(Array)
1921
- should_return_expected_value { [ nil ] }
1922
- should_be_a_kicker
1923
- should_not_change_subject
1924
- end
1925
-
1926
- describe 'with a range not within the LazyArray' do
1927
- action { subject.values_at(2..2) }
1928
-
1929
- should_return_kind_of(Array)
1930
- should_return_expected_value { [ nil ] }
1931
- should_be_a_kicker
1932
- should_not_change_subject
1933
- end
1934
- end
1935
-
1936
- describe 'a method mixed into Array' do
1937
- before :all do
1938
- Enumerable.class_eval do
1939
- remove_method :lazy_spec if instance_methods(false).any? { |m| m.to_sym == :lazy_spec }
1940
- def lazy_spec
1941
- true
1942
- end
1943
- end
1944
- end
1945
-
1946
- it 'should delegate to the Array' do
1947
- subject.lazy_spec.should be_true
1948
- end
1949
- end
1950
-
1951
- describe 'an unknown method' do
1952
- action { subject.unknown }
1953
-
1954
- should_raise_error(NoMethodError)
1955
- end
1956
- end
1957
- end