gemstreamer 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1662) hide show
  1. data/.document +5 -0
  2. data/.gitignore +5 -0
  3. data/LICENSE +20 -0
  4. data/README.rdoc +18 -0
  5. data/Rakefile +53 -0
  6. data/VERSION.yml +1 -0
  7. data/bin/gemstreamer +44 -0
  8. data/gemstreamer.gemspec +2782 -0
  9. data/lib/dependencies.rb +18 -0
  10. data/lib/gemstreamer.rb +6 -0
  11. data/lib/publisher.rb +26 -0
  12. data/spec/assets/testapp/.gitignore +8 -0
  13. data/spec/assets/testapp/Rakefile +10 -0
  14. data/spec/assets/testapp/app/controllers/application_controller.rb +57 -0
  15. data/spec/assets/testapp/app/controllers/user_sessions_controller.rb +34 -0
  16. data/spec/assets/testapp/app/controllers/users_controller.rb +42 -0
  17. data/spec/assets/testapp/app/helpers/application_helper.rb +3 -0
  18. data/spec/assets/testapp/app/helpers/user_sessions_helper.rb +2 -0
  19. data/spec/assets/testapp/app/helpers/users_helper.rb +2 -0
  20. data/spec/assets/testapp/app/models/.gitignore +0 -0
  21. data/spec/assets/testapp/app/models/permission.rb +13 -0
  22. data/spec/assets/testapp/app/models/settings.rb +4 -0
  23. data/spec/assets/testapp/app/models/user.rb +4 -0
  24. data/spec/assets/testapp/app/models/user_group.rb +15 -0
  25. data/spec/assets/testapp/app/models/user_session.rb +3 -0
  26. data/spec/assets/testapp/app/views/layouts/.gitignore +0 -0
  27. data/spec/assets/testapp/app/views/user_sessions/new.html.haml +18 -0
  28. data/spec/assets/testapp/app/views/users/_form.html.haml +14 -0
  29. data/spec/assets/testapp/app/views/users/edit.html.haml +7 -0
  30. data/spec/assets/testapp/app/views/users/new.html.haml +5 -0
  31. data/spec/assets/testapp/app/views/users/show.html.haml +22 -0
  32. data/spec/assets/testapp/config/application.yml +14 -0
  33. data/spec/assets/testapp/config/boot.rb +110 -0
  34. data/spec/assets/testapp/config/environment.rb +57 -0
  35. data/spec/assets/testapp/config/environments/cucumber.rb +26 -0
  36. data/spec/assets/testapp/config/environments/development.rb +17 -0
  37. data/spec/assets/testapp/config/environments/production.rb +28 -0
  38. data/spec/assets/testapp/config/environments/test.rb +36 -0
  39. data/spec/assets/testapp/config/initializers/backtrace_silencers.rb +7 -0
  40. data/spec/assets/testapp/config/initializers/formtastic.rb +47 -0
  41. data/spec/assets/testapp/config/initializers/inflections.rb +10 -0
  42. data/spec/assets/testapp/config/initializers/lockit.rb +1 -0
  43. data/spec/assets/testapp/config/initializers/mime_types.rb +5 -0
  44. data/spec/assets/testapp/config/initializers/new_rails_defaults.rb +21 -0
  45. data/spec/assets/testapp/config/initializers/session_store.rb +16 -0
  46. data/spec/assets/testapp/config/locales/en.yml +5 -0
  47. data/spec/assets/testapp/config/routes.rb +54 -0
  48. data/spec/assets/testapp/db/migrate/20091031093219_create_users.rb +28 -0
  49. data/spec/assets/testapp/db/migrate/20091031093230_create_user_groups.rb +19 -0
  50. data/spec/assets/testapp/db/migrate/20091031093231_create_permissions.rb +19 -0
  51. data/spec/assets/testapp/db/migrate/20091031093345_create_sessions.rb +16 -0
  52. data/spec/assets/testapp/db/seeds.rb +17 -0
  53. data/spec/assets/testapp/doc/README_FOR_APP +2 -0
  54. data/spec/assets/testapp/features/step_definitions/webrat_steps.rb +189 -0
  55. data/spec/assets/testapp/features/support/env.rb +49 -0
  56. data/spec/assets/testapp/features/support/paths.rb +27 -0
  57. data/spec/assets/testapp/features/support/version_check.rb +29 -0
  58. data/spec/assets/testapp/lib/lockdown/README +42 -0
  59. data/spec/assets/testapp/lib/lockdown/init.rb +149 -0
  60. data/spec/assets/testapp/lib/tasks/.gitignore +0 -0
  61. data/spec/assets/testapp/lib/tasks/cucumber.rake +44 -0
  62. data/spec/assets/testapp/lib/tasks/rcov.rake +26 -0
  63. data/spec/assets/testapp/lib/tasks/rspec.rake +182 -0
  64. data/spec/assets/testapp/log/.gitignore +0 -0
  65. data/spec/assets/testapp/public/404.html +30 -0
  66. data/spec/assets/testapp/public/422.html +30 -0
  67. data/spec/assets/testapp/public/500.html +30 -0
  68. data/spec/assets/testapp/public/favicon.ico +0 -0
  69. data/spec/assets/testapp/public/images/rails.png +0 -0
  70. data/spec/assets/testapp/public/javascripts/application.js +0 -0
  71. data/spec/assets/testapp/public/javascripts/jquery-ui.js +298 -0
  72. data/spec/assets/testapp/public/javascripts/jquery.js +19 -0
  73. data/spec/assets/testapp/public/robots.txt +5 -0
  74. data/spec/assets/testapp/public/stylesheets/.gitignore +0 -0
  75. data/spec/assets/testapp/public/stylesheets/formtastic.css +137 -0
  76. data/spec/assets/testapp/public/stylesheets/formtastic_changes.css +10 -0
  77. data/spec/assets/testapp/script/about +4 -0
  78. data/spec/assets/testapp/script/autospec +6 -0
  79. data/spec/assets/testapp/script/console +3 -0
  80. data/spec/assets/testapp/script/cucumber +17 -0
  81. data/spec/assets/testapp/script/dbconsole +3 -0
  82. data/spec/assets/testapp/script/destroy +3 -0
  83. data/spec/assets/testapp/script/generate +3 -0
  84. data/spec/assets/testapp/script/performance/benchmarker +3 -0
  85. data/spec/assets/testapp/script/performance/profiler +3 -0
  86. data/spec/assets/testapp/script/plugin +3 -0
  87. data/spec/assets/testapp/script/runner +3 -0
  88. data/spec/assets/testapp/script/server +3 -0
  89. data/spec/assets/testapp/script/spec +10 -0
  90. data/spec/assets/testapp/script/spec_server +9 -0
  91. data/spec/assets/testapp/spec/controllers/user_sessions_controller_spec.rb +10 -0
  92. data/spec/assets/testapp/spec/controllers/users_controller_spec.rb +10 -0
  93. data/spec/assets/testapp/spec/fixtures/users.yml +7 -0
  94. data/spec/assets/testapp/spec/helpers/user_sessions_helper_spec.rb +11 -0
  95. data/spec/assets/testapp/spec/helpers/users_helper_spec.rb +11 -0
  96. data/spec/assets/testapp/spec/models/user_spec.rb +13 -0
  97. data/spec/assets/testapp/spec/rcov.opts +4 -0
  98. data/spec/assets/testapp/spec/spec.opts +4 -0
  99. data/spec/assets/testapp/spec/spec_helper.rb +51 -0
  100. data/spec/assets/testapp/test/fixtures/.gitignore +0 -0
  101. data/spec/assets/testapp/test/functional/.gitignore +0 -0
  102. data/spec/assets/testapp/test/integration/.gitignore +0 -0
  103. data/spec/assets/testapp/test/performance/browsing_test.rb +9 -0
  104. data/spec/assets/testapp/test/test_helper.rb +38 -0
  105. data/spec/assets/testapp/test/unit/.gitignore +0 -0
  106. data/spec/assets/testapp/tmp/.gitignore +0 -0
  107. data/spec/assets/testapp/vendor/.gitignore +0 -0
  108. data/spec/assets/testapp/vendor/rails/actionmailer/CHANGELOG +366 -0
  109. data/spec/assets/testapp/vendor/rails/actionmailer/MIT-LICENSE +21 -0
  110. data/spec/assets/testapp/vendor/rails/actionmailer/README +149 -0
  111. data/spec/assets/testapp/vendor/rails/actionmailer/Rakefile +99 -0
  112. data/spec/assets/testapp/vendor/rails/actionmailer/install.rb +30 -0
  113. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/adv_attr_accessor.rb +30 -0
  114. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/base.rb +706 -0
  115. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/helpers.rb +113 -0
  116. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/mail_helper.rb +17 -0
  117. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/part.rb +107 -0
  118. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/part_container.rb +55 -0
  119. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/quoting.rb +61 -0
  120. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/test_case.rb +64 -0
  121. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/test_helper.rb +68 -0
  122. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/utils.rb +7 -0
  123. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/text-format-0.6.3/text/format.rb +1466 -0
  124. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/text_format.rb +10 -0
  125. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/address.rb +426 -0
  126. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/attachments.rb +46 -0
  127. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/base64.rb +46 -0
  128. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/compat.rb +41 -0
  129. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/config.rb +67 -0
  130. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/core_extensions.rb +63 -0
  131. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/encode.rb +581 -0
  132. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/header.rb +960 -0
  133. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/index.rb +9 -0
  134. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/interface.rb +1130 -0
  135. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/loader.rb +3 -0
  136. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/mail.rb +578 -0
  137. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/mailbox.rb +495 -0
  138. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/main.rb +6 -0
  139. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/mbox.rb +3 -0
  140. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/net.rb +248 -0
  141. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/obsolete.rb +132 -0
  142. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/parser.rb +1476 -0
  143. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/port.rb +379 -0
  144. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/quoting.rb +118 -0
  145. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/require_arch.rb +58 -0
  146. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/scanner.rb +49 -0
  147. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/scanner_r.rb +261 -0
  148. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/stringio.rb +280 -0
  149. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/utils.rb +337 -0
  150. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/version.rb +39 -0
  151. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail.rb +5 -0
  152. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail.rb +17 -0
  153. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/version.rb +9 -0
  154. data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer.rb +62 -0
  155. data/spec/assets/testapp/vendor/rails/actionmailer/lib/actionmailer.rb +1 -0
  156. data/spec/assets/testapp/vendor/rails/actionmailer/test/abstract_unit.rb +62 -0
  157. data/spec/assets/testapp/vendor/rails/actionmailer/test/asset_host_test.rb +54 -0
  158. data/spec/assets/testapp/vendor/rails/actionmailer/test/delivery_method_test.rb +51 -0
  159. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/asset_host_mailer/email_with_asset.html.erb +1 -0
  160. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/auto_layout_mailer/hello.html.erb +1 -0
  161. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/auto_layout_mailer/multipart.text.html.erb +1 -0
  162. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/auto_layout_mailer/multipart.text.plain.erb +1 -0
  163. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/explicit_layout_mailer/logout.html.erb +1 -0
  164. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/explicit_layout_mailer/signup.html.erb +1 -0
  165. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/first_mailer/share.erb +1 -0
  166. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_example_helper.erb +1 -0
  167. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper.erb +1 -0
  168. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper_method.erb +1 -0
  169. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_mail_helper.erb +5 -0
  170. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/helpers/example_helper.rb +5 -0
  171. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/layouts/auto_layout_mailer.html.erb +1 -0
  172. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/layouts/auto_layout_mailer.text.erb +1 -0
  173. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/layouts/spam.html.erb +1 -0
  174. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/path.with.dots/funky_path_mailer/multipart_with_template_path_with_dots.erb +1 -0
  175. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email +14 -0
  176. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email10 +20 -0
  177. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email12 +32 -0
  178. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email13 +29 -0
  179. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email2 +114 -0
  180. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email3 +70 -0
  181. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email4 +59 -0
  182. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email5 +19 -0
  183. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email6 +20 -0
  184. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email7 +66 -0
  185. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email8 +47 -0
  186. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email9 +28 -0
  187. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email_quoted_with_0d0a +14 -0
  188. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email_with_invalid_characters_in_content_type +104 -0
  189. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email_with_nested_attachment +100 -0
  190. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email_with_partially_quoted_subject +14 -0
  191. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/second_mailer/share.erb +1 -0
  192. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/templates/signed_up.erb +3 -0
  193. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/test_mailer/_subtemplate.text.plain.erb +1 -0
  194. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/test_mailer/body_ivar.erb +2 -0
  195. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/test_mailer/custom_templating_extension.text.html.haml +6 -0
  196. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/test_mailer/custom_templating_extension.text.plain.haml +6 -0
  197. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.ignored.erb +1 -0
  198. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.html.erb +10 -0
  199. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.plain.erb +2 -0
  200. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.yaml.erb +1 -0
  201. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/test_mailer/included_subtemplate.text.plain.erb +1 -0
  202. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/test_mailer/rxml_template.builder +2 -0
  203. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/test_mailer/rxml_template.rxml +2 -0
  204. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up.html.erb +3 -0
  205. data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up_with_url.erb +5 -0
  206. data/spec/assets/testapp/vendor/rails/actionmailer/test/mail_helper_test.rb +95 -0
  207. data/spec/assets/testapp/vendor/rails/actionmailer/test/mail_layout_test.rb +123 -0
  208. data/spec/assets/testapp/vendor/rails/actionmailer/test/mail_render_test.rb +116 -0
  209. data/spec/assets/testapp/vendor/rails/actionmailer/test/mail_service_test.rb +1079 -0
  210. data/spec/assets/testapp/vendor/rails/actionmailer/test/quoting_test.rb +99 -0
  211. data/spec/assets/testapp/vendor/rails/actionmailer/test/test_helper_test.rb +129 -0
  212. data/spec/assets/testapp/vendor/rails/actionmailer/test/tmail_test.rb +22 -0
  213. data/spec/assets/testapp/vendor/rails/actionmailer/test/url_test.rb +76 -0
  214. data/spec/assets/testapp/vendor/rails/actionpack/CHANGELOG +5172 -0
  215. data/spec/assets/testapp/vendor/rails/actionpack/MIT-LICENSE +21 -0
  216. data/spec/assets/testapp/vendor/rails/actionpack/README +409 -0
  217. data/spec/assets/testapp/vendor/rails/actionpack/RUNNING_UNIT_TESTS +24 -0
  218. data/spec/assets/testapp/vendor/rails/actionpack/Rakefile +160 -0
  219. data/spec/assets/testapp/vendor/rails/actionpack/install.rb +30 -0
  220. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/assertions/dom_assertions.rb +39 -0
  221. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/assertions/model_assertions.rb +21 -0
  222. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/assertions/response_assertions.rb +160 -0
  223. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/assertions/routing_assertions.rb +146 -0
  224. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/assertions/selector_assertions.rb +632 -0
  225. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/assertions/tag_assertions.rb +127 -0
  226. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/base.rb +1423 -0
  227. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/benchmarking.rb +107 -0
  228. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/caching/actions.rb +177 -0
  229. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/caching/fragments.rb +120 -0
  230. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/caching/pages.rb +152 -0
  231. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/caching/sweeper.rb +45 -0
  232. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/caching/sweeping.rb +55 -0
  233. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/caching.rb +70 -0
  234. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/cgi_ext/cookie.rb +112 -0
  235. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/cgi_ext/query_extension.rb +22 -0
  236. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/cgi_ext/stdinput.rb +24 -0
  237. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/cgi_ext.rb +15 -0
  238. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/cgi_process.rb +77 -0
  239. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/cookies.rb +94 -0
  240. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/dispatcher.rb +133 -0
  241. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/failsafe.rb +86 -0
  242. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/filters.rb +680 -0
  243. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/flash.rb +171 -0
  244. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/headers.rb +33 -0
  245. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/helpers.rb +225 -0
  246. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/http_authentication.rb +308 -0
  247. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/integration.rb +680 -0
  248. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/layout.rb +281 -0
  249. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/middleware_stack.rb +119 -0
  250. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/middlewares.rb +12 -0
  251. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/mime_responds.rb +193 -0
  252. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/mime_type.rb +212 -0
  253. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/mime_types.rb +21 -0
  254. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/params_parser.rb +77 -0
  255. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/performance_test.rb +15 -0
  256. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb +204 -0
  257. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/record_identifier.rb +104 -0
  258. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/reloader.rb +54 -0
  259. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/request.rb +493 -0
  260. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/request_forgery_protection.rb +109 -0
  261. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/rescue.rb +183 -0
  262. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/resources.rb +682 -0
  263. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/response.rb +238 -0
  264. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/routing/builder.rb +197 -0
  265. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/routing/optimisations.rb +130 -0
  266. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/routing/recognition_optimisation.rb +167 -0
  267. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/routing/route.rb +265 -0
  268. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/routing/route_set.rb +502 -0
  269. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/routing/routing_ext.rb +49 -0
  270. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/routing/segments.rb +343 -0
  271. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/routing.rb +388 -0
  272. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/session/abstract_store.rb +181 -0
  273. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/session/cookie_store.rb +221 -0
  274. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/session/mem_cache_store.rb +51 -0
  275. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/session_management.rb +54 -0
  276. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/status_codes.rb +88 -0
  277. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/streaming.rb +181 -0
  278. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/templates/rescues/_request_and_response.erb +24 -0
  279. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/templates/rescues/_trace.erb +26 -0
  280. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/templates/rescues/diagnostics.erb +11 -0
  281. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb +29 -0
  282. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/templates/rescues/missing_template.erb +2 -0
  283. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/templates/rescues/routing_error.erb +10 -0
  284. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/templates/rescues/template_error.erb +21 -0
  285. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/templates/rescues/unknown_action.erb +2 -0
  286. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/test_case.rb +204 -0
  287. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/test_process.rb +580 -0
  288. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/translation.rb +13 -0
  289. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/uploaded_file.rb +44 -0
  290. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/url_rewriter.rb +216 -0
  291. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/document.rb +68 -0
  292. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/node.rb +537 -0
  293. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/sanitizer.rb +173 -0
  294. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/selector.rb +828 -0
  295. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/tokenizer.rb +105 -0
  296. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/version.rb +11 -0
  297. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner.rb +16 -0
  298. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/verification.rb +130 -0
  299. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller.rb +111 -0
  300. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_pack/version.rb +9 -0
  301. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_pack.rb +24 -0
  302. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/base.rb +357 -0
  303. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/erb/util.rb +38 -0
  304. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/active_record_helper.rb +305 -0
  305. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/asset_tag_helper.rb +694 -0
  306. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/atom_feed_helper.rb +198 -0
  307. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/benchmark_helper.rb +54 -0
  308. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/cache_helper.rb +39 -0
  309. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/capture_helper.rb +136 -0
  310. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/date_helper.rb +976 -0
  311. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/debug_helper.rb +38 -0
  312. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb +1053 -0
  313. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/form_options_helper.rb +600 -0
  314. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/form_tag_helper.rb +487 -0
  315. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/javascript_helper.rb +208 -0
  316. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/number_helper.rb +303 -0
  317. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/prototype_helper.rb +1305 -0
  318. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/record_identification_helper.rb +20 -0
  319. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/record_tag_helper.rb +58 -0
  320. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb +251 -0
  321. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/scriptaculous_helper.rb +226 -0
  322. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/tag_helper.rb +150 -0
  323. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/text_helper.rb +587 -0
  324. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/translation_helper.rb +39 -0
  325. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/url_helper.rb +638 -0
  326. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers.rb +57 -0
  327. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/inline_template.rb +19 -0
  328. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/locale/en.yml +114 -0
  329. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/partials.rb +240 -0
  330. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/paths.rb +69 -0
  331. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/reloadable_template.rb +117 -0
  332. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/renderable.rb +95 -0
  333. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/renderable_partial.rb +47 -0
  334. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/template.rb +246 -0
  335. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/template_error.rb +99 -0
  336. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/template_handler.rb +34 -0
  337. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/template_handlers/builder.rb +17 -0
  338. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/template_handlers/erb.rb +22 -0
  339. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/template_handlers/rjs.rb +13 -0
  340. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/template_handlers.rb +48 -0
  341. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/test_case.rb +87 -0
  342. data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view.rb +58 -0
  343. data/spec/assets/testapp/vendor/rails/actionpack/lib/actionpack.rb +1 -0
  344. data/spec/assets/testapp/vendor/rails/actionpack/test/abstract_unit.rb +61 -0
  345. data/spec/assets/testapp/vendor/rails/actionpack/test/active_record_unit.rb +104 -0
  346. data/spec/assets/testapp/vendor/rails/actionpack/test/activerecord/active_record_store_test.rb +174 -0
  347. data/spec/assets/testapp/vendor/rails/actionpack/test/activerecord/render_partial_with_record_identification_test.rb +188 -0
  348. data/spec/assets/testapp/vendor/rails/actionpack/test/adv_attr_test.rb +20 -0
  349. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/action_pack_assertions_test.rb +543 -0
  350. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/addresses_render_test.rb +37 -0
  351. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/assert_select_test.rb +734 -0
  352. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/base_test.rb +217 -0
  353. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/benchmark_test.rb +32 -0
  354. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/caching_test.rb +729 -0
  355. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/capture_test.rb +66 -0
  356. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/content_type_test.rb +168 -0
  357. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/controller_fixtures/app/controllers/admin/user_controller.rb +0 -0
  358. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/controller_fixtures/app/controllers/user_controller.rb +0 -0
  359. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/controller_fixtures/vendor/plugins/bad_plugin/lib/plugin_controller.rb +0 -0
  360. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/cookie_test.rb +127 -0
  361. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/deprecation/deprecated_base_methods_test.rb +32 -0
  362. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/dispatcher_test.rb +144 -0
  363. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/failsafe_test.rb +60 -0
  364. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/fake_controllers.rb +33 -0
  365. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/fake_models.rb +19 -0
  366. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/filter_params_test.rb +51 -0
  367. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/filters_test.rb +885 -0
  368. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/flash_test.rb +147 -0
  369. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/header_test.rb +14 -0
  370. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/helper_test.rb +224 -0
  371. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/html-scanner/cdata_node_test.rb +15 -0
  372. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/html-scanner/document_test.rb +148 -0
  373. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/html-scanner/node_test.rb +89 -0
  374. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/html-scanner/sanitizer_test.rb +273 -0
  375. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/html-scanner/tag_node_test.rb +238 -0
  376. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/html-scanner/text_node_test.rb +50 -0
  377. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/html-scanner/tokenizer_test.rb +131 -0
  378. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/http_basic_authentication_test.rb +113 -0
  379. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/http_digest_authentication_test.rb +232 -0
  380. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/integration_test.rb +445 -0
  381. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/layout_test.rb +204 -0
  382. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/logging_test.rb +46 -0
  383. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/middleware_stack_test.rb +90 -0
  384. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/mime_responds_test.rb +536 -0
  385. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/mime_type_test.rb +93 -0
  386. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/polymorphic_routes_test.rb +293 -0
  387. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/rack_test.rb +311 -0
  388. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/record_identifier_test.rb +139 -0
  389. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/redirect_test.rb +285 -0
  390. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/reloader_test.rb +124 -0
  391. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/render_test.rb +1762 -0
  392. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/request/json_params_parsing_test.rb +65 -0
  393. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/request/multipart_params_parsing_test.rb +162 -0
  394. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/request/query_string_parsing_test.rb +120 -0
  395. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/request/test_request_test.rb +35 -0
  396. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/request/url_encoded_params_parsing_test.rb +146 -0
  397. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/request/xml_params_parsing_test.rb +103 -0
  398. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/request_forgery_protection_test.rb +247 -0
  399. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/request_test.rb +395 -0
  400. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/rescue_test.rb +536 -0
  401. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/resources_test.rb +1393 -0
  402. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/routing_test.rb +2583 -0
  403. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/selector_test.rb +628 -0
  404. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/send_file_test.rb +171 -0
  405. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/session/cookie_store_test.rb +216 -0
  406. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/session/mem_cache_store_test.rb +127 -0
  407. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/session/test_session_test.rb +58 -0
  408. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/test_test.rb +700 -0
  409. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/translation_test.rb +26 -0
  410. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/url_rewriter_test.rb +385 -0
  411. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/verification_test.rb +270 -0
  412. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/view_paths_test.rb +141 -0
  413. data/spec/assets/testapp/vendor/rails/actionpack/test/controller/webservice_test.rb +260 -0
  414. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/_top_level_partial.html.erb +1 -0
  415. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/_top_level_partial_only.erb +1 -0
  416. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/addresses/list.erb +1 -0
  417. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/alternate_helpers/foo_helper.rb +3 -0
  418. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/bad_customers/_bad_customer.html.erb +1 -0
  419. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/companies.yml +24 -0
  420. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/company.rb +10 -0
  421. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/content_type/render_default_content_types_for_respond_to.rhtml +1 -0
  422. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rhtml.rhtml +1 -0
  423. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rjs.rjs +1 -0
  424. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rxml.rxml +1 -0
  425. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/customers/_customer.html.erb +1 -0
  426. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/db_definitions/sqlite.sql +49 -0
  427. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/developer.rb +9 -0
  428. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/developers/_developer.erb +1 -0
  429. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/developers.yml +21 -0
  430. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/developers_projects.yml +13 -0
  431. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/failsafe/500.html +1 -0
  432. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/fun/games/_game.erb +1 -0
  433. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/fun/games/hello_world.erb +1 -0
  434. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/fun/serious/games/_game.erb +1 -0
  435. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/functional_caching/_partial.erb +3 -0
  436. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/functional_caching/formatted_fragment_cached.html.erb +3 -0
  437. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/functional_caching/formatted_fragment_cached.js.rjs +6 -0
  438. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/functional_caching/formatted_fragment_cached.xml.builder +5 -0
  439. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/functional_caching/fragment_cached.html.erb +2 -0
  440. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/functional_caching/html_fragment_cached_with_partial.html.erb +1 -0
  441. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/functional_caching/inline_fragment_cached.html.erb +2 -0
  442. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/functional_caching/js_fragment_cached_with_partial.js.rjs +1 -0
  443. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/good_customers/_good_customer.html.erb +1 -0
  444. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/helpers/abc_helper.rb +5 -0
  445. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/helpers/fun/games_helper.rb +3 -0
  446. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/helpers/fun/pdf_helper.rb +3 -0
  447. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layout_tests/alt/hello.rhtml +1 -0
  448. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layout_tests/alt/layouts/alt.rhtml +0 -0
  449. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/controller_name_space/nested.rhtml +1 -0
  450. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/item.rhtml +1 -0
  451. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/layout_test.rhtml +1 -0
  452. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/multiple_extensions.html.erb +1 -0
  453. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/third_party_template_library.mab +1 -0
  454. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layout_tests/views/hello.rhtml +1 -0
  455. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layouts/_column.html.erb +2 -0
  456. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layouts/block_with_layout.erb +3 -0
  457. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layouts/builder.builder +3 -0
  458. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layouts/default_html.html.erb +1 -0
  459. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layouts/partial_with_layout.erb +3 -0
  460. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layouts/standard.erb +1 -0
  461. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layouts/talk_from_action.erb +2 -0
  462. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layouts/xhr.html.erb +2 -0
  463. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layouts/yield.erb +2 -0
  464. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/mascot.rb +3 -0
  465. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/mascots/_mascot.html.erb +1 -0
  466. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/mascots.yml +4 -0
  467. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/multipart/binary_file +0 -0
  468. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/multipart/boundary_problem_file +10 -0
  469. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/multipart/bracketed_param +5 -0
  470. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/multipart/empty +10 -0
  471. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/multipart/hello.txt +1 -0
  472. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/multipart/large_text_file +10 -0
  473. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/multipart/mixed_files +0 -0
  474. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/multipart/mona_lisa.jpg +0 -0
  475. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/multipart/none +9 -0
  476. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/multipart/single_parameter +5 -0
  477. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/multipart/text_file +10 -0
  478. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/override/test/hello_world.erb +1 -0
  479. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/override2/layouts/test/sub.erb +1 -0
  480. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/post_test/layouts/post.html.erb +1 -0
  481. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/post_test/layouts/super_post.iphone.erb +1 -0
  482. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/post_test/post/index.html.erb +1 -0
  483. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/post_test/post/index.iphone.erb +1 -0
  484. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/post_test/super_post/index.html.erb +1 -0
  485. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/post_test/super_post/index.iphone.erb +1 -0
  486. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/project.rb +3 -0
  487. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/projects/_project.erb +1 -0
  488. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/projects.yml +7 -0
  489. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/404.html +1 -0
  490. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/500.da.html +1 -0
  491. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/500.html +1 -0
  492. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/absolute/test.css +23 -0
  493. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/absolute/test.js +63 -0
  494. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/images/rails.png +0 -0
  495. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/javascripts/application.js +1 -0
  496. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/javascripts/bank.js +1 -0
  497. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/javascripts/controls.js +1 -0
  498. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/javascripts/dragdrop.js +1 -0
  499. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/javascripts/effects.js +1 -0
  500. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/javascripts/prototype.js +1 -0
  501. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/javascripts/robber.js +1 -0
  502. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/javascripts/subdir/subdir.js +1 -0
  503. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/javascripts/version.1.0.js +1 -0
  504. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/stylesheets/bank.css +1 -0
  505. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/stylesheets/robber.css +1 -0
  506. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/stylesheets/subdir/subdir.css +1 -0
  507. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/stylesheets/version.1.0.css +1 -0
  508. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/quiz/questions/_question.html.erb +1 -0
  509. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/replies/_reply.erb +1 -0
  510. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/replies.yml +15 -0
  511. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/reply.rb +7 -0
  512. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/respond_to/all_types_with_layout.html.erb +1 -0
  513. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/respond_to/all_types_with_layout.js.rjs +1 -0
  514. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/respond_to/custom_constant_handling_without_block.mobile.erb +1 -0
  515. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/respond_to/iphone_with_html_response_type.html.erb +1 -0
  516. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/respond_to/iphone_with_html_response_type.iphone.erb +1 -0
  517. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/respond_to/layouts/missing.html.erb +1 -0
  518. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/respond_to/layouts/standard.html.erb +1 -0
  519. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/respond_to/layouts/standard.iphone.erb +1 -0
  520. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.html.erb +1 -0
  521. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.js.rjs +1 -0
  522. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.xml.builder +1 -0
  523. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.html.erb +1 -0
  524. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.js.rjs +1 -0
  525. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.xml.builder +1 -0
  526. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/scope/test/modgreet.erb +1 -0
  527. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/shared.html.erb +1 -0
  528. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/symlink_parent/symlinked_layout.erb +5 -0
  529. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_counter.html.erb +1 -0
  530. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_customer.erb +1 -0
  531. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_customer_counter.erb +1 -0
  532. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_customer_greeting.erb +1 -0
  533. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_customer_with_var.erb +1 -0
  534. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_form.erb +1 -0
  535. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_hash_greeting.erb +1 -0
  536. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_hash_object.erb +2 -0
  537. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_hello.builder +1 -0
  538. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_labelling_form.erb +1 -0
  539. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_layout_for_block_with_args.html.erb +3 -0
  540. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_layout_for_partial.html.erb +3 -0
  541. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_local_inspector.html.erb +1 -0
  542. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_one.html.erb +1 -0
  543. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_partial.erb +1 -0
  544. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_partial.html.erb +1 -0
  545. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_partial.js.erb +1 -0
  546. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_partial_for_use_in_layout.html.erb +1 -0
  547. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_partial_only.erb +1 -0
  548. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_partial_with_only_html_version.html.erb +1 -0
  549. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_person.erb +2 -0
  550. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_raise.html.erb +1 -0
  551. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_two.html.erb +1 -0
  552. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/action_talk_to_layout.erb +2 -0
  553. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/calling_partial_with_layout.html.erb +1 -0
  554. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/capturing.erb +4 -0
  555. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/content_for.erb +2 -0
  556. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/content_for_concatenated.erb +3 -0
  557. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/content_for_with_parameter.erb +2 -0
  558. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/delete_with_js.rjs +2 -0
  559. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/dont_pick_me +1 -0
  560. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/dot.directory/render_file_with_ivar.erb +1 -0
  561. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/enum_rjs_test.rjs +6 -0
  562. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/formatted_html_erb.html.erb +1 -0
  563. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.builder +1 -0
  564. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.html.erb +1 -0
  565. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.xml.erb +1 -0
  566. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/greeting.erb +1 -0
  567. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/greeting.js.rjs +1 -0
  568. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/hello.builder +4 -0
  569. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/hello_world.da.html.erb +1 -0
  570. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/hello_world.erb +1 -0
  571. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/hello_world.pt-BR.html.erb +1 -0
  572. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/hello_world_container.builder +3 -0
  573. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/hello_world_from_rxml.builder +4 -0
  574. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/hello_world_with_layout_false.erb +1 -0
  575. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/hello_xml_world.builder +11 -0
  576. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/hyphen-ated.erb +1 -0
  577. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/implicit_content_type.atom.builder +2 -0
  578. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/list.erb +1 -0
  579. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/nested_layout.erb +3 -0
  580. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/non_erb_block_content_for.builder +4 -0
  581. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/potential_conflicts.erb +4 -0
  582. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/render_explicit_html_template.js.rjs +1 -0
  583. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/render_file_from_template.html.erb +1 -0
  584. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/render_file_with_ivar.erb +1 -0
  585. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/render_file_with_locals.erb +1 -0
  586. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/render_implicit_html_template.js.rjs +1 -0
  587. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/render_implicit_html_template_from_xhr_request.da.html.erb +1 -0
  588. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/render_implicit_html_template_from_xhr_request.html.erb +1 -0
  589. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/render_implicit_js_template_without_layout.js.erb +1 -0
  590. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/render_to_string_test.erb +1 -0
  591. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/sub_template_raise.html.erb +1 -0
  592. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/template.erb +1 -0
  593. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/update_element_with_capture.erb +9 -0
  594. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/using_layout_around_block.html.erb +1 -0
  595. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/using_layout_around_block_with_args.html.erb +1 -0
  596. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/utf8.html.erb +2 -0
  597. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/topic.rb +3 -0
  598. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/topics/_topic.html.erb +1 -0
  599. data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/topics.yml +22 -0
  600. data/spec/assets/testapp/vendor/rails/actionpack/test/template/active_record_helper_i18n_test.rb +44 -0
  601. data/spec/assets/testapp/vendor/rails/actionpack/test/template/active_record_helper_test.rb +302 -0
  602. data/spec/assets/testapp/vendor/rails/actionpack/test/template/asset_tag_helper_test.rb +759 -0
  603. data/spec/assets/testapp/vendor/rails/actionpack/test/template/atom_feed_helper_test.rb +315 -0
  604. data/spec/assets/testapp/vendor/rails/actionpack/test/template/benchmark_helper_test.rb +86 -0
  605. data/spec/assets/testapp/vendor/rails/actionpack/test/template/compiled_templates_test.rb +203 -0
  606. data/spec/assets/testapp/vendor/rails/actionpack/test/template/date_helper_i18n_test.rb +120 -0
  607. data/spec/assets/testapp/vendor/rails/actionpack/test/template/date_helper_test.rb +2469 -0
  608. data/spec/assets/testapp/vendor/rails/actionpack/test/template/erb_util_test.rb +24 -0
  609. data/spec/assets/testapp/vendor/rails/actionpack/test/template/form_helper_test.rb +1313 -0
  610. data/spec/assets/testapp/vendor/rails/actionpack/test/template/form_options_helper_i18n_test.rb +27 -0
  611. data/spec/assets/testapp/vendor/rails/actionpack/test/template/form_options_helper_test.rb +807 -0
  612. data/spec/assets/testapp/vendor/rails/actionpack/test/template/form_tag_helper_test.rb +344 -0
  613. data/spec/assets/testapp/vendor/rails/actionpack/test/template/javascript_helper_test.rb +106 -0
  614. data/spec/assets/testapp/vendor/rails/actionpack/test/template/number_helper_i18n_test.rb +69 -0
  615. data/spec/assets/testapp/vendor/rails/actionpack/test/template/number_helper_test.rb +128 -0
  616. data/spec/assets/testapp/vendor/rails/actionpack/test/template/prototype_helper_test.rb +639 -0
  617. data/spec/assets/testapp/vendor/rails/actionpack/test/template/record_tag_helper_test.rb +58 -0
  618. data/spec/assets/testapp/vendor/rails/actionpack/test/template/render_test.rb +290 -0
  619. data/spec/assets/testapp/vendor/rails/actionpack/test/template/sanitize_helper_test.rb +48 -0
  620. data/spec/assets/testapp/vendor/rails/actionpack/test/template/scriptaculous_helper_test.rb +90 -0
  621. data/spec/assets/testapp/vendor/rails/actionpack/test/template/tag_helper_test.rb +97 -0
  622. data/spec/assets/testapp/vendor/rails/actionpack/test/template/template_test.rb +32 -0
  623. data/spec/assets/testapp/vendor/rails/actionpack/test/template/test_test.rb +54 -0
  624. data/spec/assets/testapp/vendor/rails/actionpack/test/template/text_helper_test.rb +543 -0
  625. data/spec/assets/testapp/vendor/rails/actionpack/test/template/translation_helper_test.rb +32 -0
  626. data/spec/assets/testapp/vendor/rails/actionpack/test/template/url_helper_test.rb +622 -0
  627. data/spec/assets/testapp/vendor/rails/actionpack/test/testing_sandbox.rb +15 -0
  628. data/spec/assets/testapp/vendor/rails/actionpack/test/view/test_case_test.rb +8 -0
  629. data/spec/assets/testapp/vendor/rails/activerecord/CHANGELOG +5850 -0
  630. data/spec/assets/testapp/vendor/rails/activerecord/README +351 -0
  631. data/spec/assets/testapp/vendor/rails/activerecord/RUNNING_UNIT_TESTS +36 -0
  632. data/spec/assets/testapp/vendor/rails/activerecord/Rakefile +270 -0
  633. data/spec/assets/testapp/vendor/rails/activerecord/examples/associations.png +0 -0
  634. data/spec/assets/testapp/vendor/rails/activerecord/examples/performance.rb +162 -0
  635. data/spec/assets/testapp/vendor/rails/activerecord/install.rb +30 -0
  636. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/aggregations.rb +261 -0
  637. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/association_preload.rb +389 -0
  638. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/associations/association_collection.rb +475 -0
  639. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/associations/association_proxy.rb +279 -0
  640. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/associations/belongs_to_association.rb +76 -0
  641. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/associations/belongs_to_polymorphic_association.rb +53 -0
  642. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb +143 -0
  643. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/associations/has_many_association.rb +122 -0
  644. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/associations/has_many_through_association.rb +266 -0
  645. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/associations/has_one_association.rb +124 -0
  646. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/associations/has_one_through_association.rb +37 -0
  647. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/associations.rb +2238 -0
  648. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/attribute_methods.rb +388 -0
  649. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/autosave_association.rb +355 -0
  650. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/base.rb +3158 -0
  651. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/batches.rb +81 -0
  652. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/calculations.rb +311 -0
  653. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/callbacks.rb +360 -0
  654. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb +371 -0
  655. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb +139 -0
  656. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb +289 -0
  657. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb +94 -0
  658. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/quoting.rb +69 -0
  659. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb +722 -0
  660. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +434 -0
  661. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb +241 -0
  662. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb +626 -0
  663. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb +1113 -0
  664. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb +34 -0
  665. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb +453 -0
  666. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/dirty.rb +183 -0
  667. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/dynamic_finder_match.rb +41 -0
  668. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/dynamic_scope_match.rb +25 -0
  669. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/fixtures.rb +996 -0
  670. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/i18n_interpolation_deprecation.rb +26 -0
  671. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/locale/en.yml +58 -0
  672. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/locking/optimistic.rb +181 -0
  673. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/locking/pessimistic.rb +77 -0
  674. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/migration.rb +566 -0
  675. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/named_scope.rb +192 -0
  676. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/nested_attributes.rb +329 -0
  677. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/observer.rb +197 -0
  678. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/query_cache.rb +33 -0
  679. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/reflection.rb +320 -0
  680. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/schema.rb +51 -0
  681. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/schema_dumper.rb +182 -0
  682. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/serialization.rb +101 -0
  683. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/serializers/json_serializer.rb +91 -0
  684. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/serializers/xml_serializer.rb +357 -0
  685. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/session_store.rb +326 -0
  686. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/test_case.rb +66 -0
  687. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/timestamp.rb +71 -0
  688. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/transactions.rb +235 -0
  689. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/validations.rb +1135 -0
  690. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/version.rb +9 -0
  691. data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record.rb +84 -0
  692. data/spec/assets/testapp/vendor/rails/activerecord/lib/activerecord.rb +1 -0
  693. data/spec/assets/testapp/vendor/rails/activerecord/test/assets/example.log +1 -0
  694. data/spec/assets/testapp/vendor/rails/activerecord/test/assets/flowers.jpg +0 -0
  695. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/aaa_create_tables_test.rb +24 -0
  696. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/active_schema_test_mysql.rb +100 -0
  697. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/active_schema_test_postgresql.rb +24 -0
  698. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/adapter_test.rb +145 -0
  699. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/aggregations_test.rb +167 -0
  700. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/ar_schema_test.rb +32 -0
  701. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/belongs_to_associations_test.rb +425 -0
  702. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/callbacks_test.rb +161 -0
  703. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/cascaded_eager_loading_test.rb +131 -0
  704. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/eager_load_includes_full_sti_class_test.rb +36 -0
  705. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/eager_load_nested_include_test.rb +130 -0
  706. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/eager_singularization_test.rb +145 -0
  707. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/eager_test.rb +834 -0
  708. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/extension_test.rb +62 -0
  709. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/habtm_join_table_test.rb +56 -0
  710. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb +822 -0
  711. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/has_many_associations_test.rb +1122 -0
  712. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/has_many_through_associations_test.rb +324 -0
  713. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/has_one_associations_test.rb +309 -0
  714. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/has_one_through_associations_test.rb +209 -0
  715. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/inner_join_association_test.rb +93 -0
  716. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/join_model_test.rb +712 -0
  717. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations_test.rb +262 -0
  718. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/attribute_methods_test.rb +305 -0
  719. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/autosave_association_test.rb +923 -0
  720. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/base_test.rb +2152 -0
  721. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/batches_test.rb +61 -0
  722. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/binary_test.rb +30 -0
  723. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/calculations_test.rb +348 -0
  724. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/callbacks_observers_test.rb +38 -0
  725. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/callbacks_test.rb +438 -0
  726. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/class_inheritable_attributes_test.rb +32 -0
  727. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/column_alias_test.rb +17 -0
  728. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/column_definition_test.rb +70 -0
  729. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/connection_pool_test.rb +25 -0
  730. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/connection_test_firebird.rb +8 -0
  731. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/connection_test_mysql.rb +56 -0
  732. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/copy_table_test_sqlite.rb +80 -0
  733. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/database_statements_test.rb +12 -0
  734. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/datatype_test_postgresql.rb +204 -0
  735. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/date_time_test.rb +37 -0
  736. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/default_test_firebird.rb +16 -0
  737. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/defaults_test.rb +111 -0
  738. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/deprecated_finder_test.rb +30 -0
  739. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/dirty_test.rb +316 -0
  740. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/finder_respond_to_test.rb +76 -0
  741. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/finder_test.rb +1054 -0
  742. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/fixtures_test.rb +656 -0
  743. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/helper.rb +68 -0
  744. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/i18n_test.rb +46 -0
  745. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/inheritance_test.rb +262 -0
  746. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/invalid_date_test.rb +24 -0
  747. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/json_serialization_test.rb +205 -0
  748. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/lifecycle_test.rb +193 -0
  749. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/locking_test.rb +322 -0
  750. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/method_scoping_test.rb +704 -0
  751. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/migration_test.rb +1523 -0
  752. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/migration_test_firebird.rb +124 -0
  753. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/mixin_test.rb +96 -0
  754. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/modules_test.rb +81 -0
  755. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/multiple_db_test.rb +85 -0
  756. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/named_scope_test.rb +361 -0
  757. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/nested_attributes_test.rb +509 -0
  758. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/pk_test.rb +119 -0
  759. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/pooled_connections_test.rb +103 -0
  760. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/query_cache_test.rb +123 -0
  761. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/readonly_test.rb +107 -0
  762. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/reflection_test.rb +194 -0
  763. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/reload_models_test.rb +22 -0
  764. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/repair_helper.rb +50 -0
  765. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/reserved_word_test_mysql.rb +176 -0
  766. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/sanitize_test.rb +25 -0
  767. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/schema_authorization_test_postgresql.rb +75 -0
  768. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/schema_dumper_test.rb +211 -0
  769. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/schema_test_postgresql.rb +178 -0
  770. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/serialization_test.rb +47 -0
  771. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/synonym_test_oracle.rb +17 -0
  772. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/timestamp_test.rb +75 -0
  773. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/transactions_test.rb +522 -0
  774. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/unconnected_test.rb +32 -0
  775. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/validations_i18n_test.rb +947 -0
  776. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/validations_test.rb +1612 -0
  777. data/spec/assets/testapp/vendor/rails/activerecord/test/cases/xml_serialization_test.rb +240 -0
  778. data/spec/assets/testapp/vendor/rails/activerecord/test/config.rb +5 -0
  779. data/spec/assets/testapp/vendor/rails/activerecord/test/connections/jdbc_jdbcderby/connection.rb +18 -0
  780. data/spec/assets/testapp/vendor/rails/activerecord/test/connections/jdbc_jdbch2/connection.rb +18 -0
  781. data/spec/assets/testapp/vendor/rails/activerecord/test/connections/jdbc_jdbchsqldb/connection.rb +18 -0
  782. data/spec/assets/testapp/vendor/rails/activerecord/test/connections/jdbc_jdbcmysql/connection.rb +26 -0
  783. data/spec/assets/testapp/vendor/rails/activerecord/test/connections/jdbc_jdbcpostgresql/connection.rb +26 -0
  784. data/spec/assets/testapp/vendor/rails/activerecord/test/connections/jdbc_jdbcsqlite3/connection.rb +25 -0
  785. data/spec/assets/testapp/vendor/rails/activerecord/test/connections/native_db2/connection.rb +25 -0
  786. data/spec/assets/testapp/vendor/rails/activerecord/test/connections/native_firebird/connection.rb +26 -0
  787. data/spec/assets/testapp/vendor/rails/activerecord/test/connections/native_frontbase/connection.rb +27 -0
  788. data/spec/assets/testapp/vendor/rails/activerecord/test/connections/native_mysql/connection.rb +25 -0
  789. data/spec/assets/testapp/vendor/rails/activerecord/test/connections/native_openbase/connection.rb +21 -0
  790. data/spec/assets/testapp/vendor/rails/activerecord/test/connections/native_oracle/connection.rb +27 -0
  791. data/spec/assets/testapp/vendor/rails/activerecord/test/connections/native_postgresql/connection.rb +21 -0
  792. data/spec/assets/testapp/vendor/rails/activerecord/test/connections/native_sqlite/connection.rb +25 -0
  793. data/spec/assets/testapp/vendor/rails/activerecord/test/connections/native_sqlite3/connection.rb +25 -0
  794. data/spec/assets/testapp/vendor/rails/activerecord/test/connections/native_sqlite3/in_memory_connection.rb +18 -0
  795. data/spec/assets/testapp/vendor/rails/activerecord/test/connections/native_sybase/connection.rb +23 -0
  796. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/accounts.yml +28 -0
  797. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/all/developers.yml +0 -0
  798. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/all/people.csv +0 -0
  799. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/all/tasks.yml +0 -0
  800. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/author_addresses.yml +5 -0
  801. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/author_favorites.yml +4 -0
  802. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/authors.yml +9 -0
  803. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/binaries.yml +132 -0
  804. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/books.yml +7 -0
  805. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/categories/special_categories.yml +9 -0
  806. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/categories/subsubdir/arbitrary_filename.yml +4 -0
  807. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/categories.yml +14 -0
  808. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/categories_ordered.yml +7 -0
  809. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/categories_posts.yml +23 -0
  810. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/categorizations.yml +17 -0
  811. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/clubs.yml +6 -0
  812. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/comments.yml +59 -0
  813. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/companies.yml +56 -0
  814. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/computers.yml +4 -0
  815. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/courses.yml +7 -0
  816. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/customers.yml +26 -0
  817. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/developers.yml +21 -0
  818. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/developers_projects.yml +17 -0
  819. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/edges.yml +6 -0
  820. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/entrants.yml +14 -0
  821. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/fixture_database.sqlite +0 -0
  822. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/fixture_database.sqlite3 +0 -0
  823. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/fixture_database_2.sqlite +0 -0
  824. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/fixture_database_2.sqlite3 +0 -0
  825. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/fk_test_has_fk.yml +3 -0
  826. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/fk_test_has_pk.yml +2 -0
  827. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/funny_jokes.yml +10 -0
  828. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/items.yml +4 -0
  829. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/jobs.yml +7 -0
  830. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/legacy_things.yml +3 -0
  831. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/mateys.yml +4 -0
  832. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/member_types.yml +6 -0
  833. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/members.yml +6 -0
  834. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/memberships.yml +20 -0
  835. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/minimalistics.yml +2 -0
  836. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/mixed_case_monkeys.yml +6 -0
  837. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/mixins.yml +29 -0
  838. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/movies.yml +7 -0
  839. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/naked/csv/accounts.csv +1 -0
  840. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/naked/yml/accounts.yml +1 -0
  841. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/naked/yml/companies.yml +1 -0
  842. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/naked/yml/courses.yml +1 -0
  843. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/organizations.yml +5 -0
  844. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/owners.yml +7 -0
  845. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/parrots.yml +27 -0
  846. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/parrots_pirates.yml +7 -0
  847. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/people.yml +15 -0
  848. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/pets.yml +14 -0
  849. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/pirates.yml +9 -0
  850. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/posts.yml +52 -0
  851. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/price_estimates.yml +7 -0
  852. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/projects.yml +7 -0
  853. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/readers.yml +9 -0
  854. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/references.yml +17 -0
  855. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/reserved_words/distinct.yml +5 -0
  856. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/reserved_words/distincts_selects.yml +11 -0
  857. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/reserved_words/group.yml +14 -0
  858. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/reserved_words/select.yml +8 -0
  859. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/reserved_words/values.yml +7 -0
  860. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/ships.yml +5 -0
  861. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/sponsors.yml +9 -0
  862. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/subscribers.yml +7 -0
  863. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/subscriptions.yml +12 -0
  864. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/taggings.yml +28 -0
  865. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/tags.yml +7 -0
  866. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/tasks.yml +7 -0
  867. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/topics.yml +42 -0
  868. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/toys.yml +4 -0
  869. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/treasures.yml +10 -0
  870. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/vertices.yml +4 -0
  871. data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/warehouse-things.yml +3 -0
  872. data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/broken/100_migration_that_raises_exception.rb +10 -0
  873. data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/decimal/1_give_me_big_numbers.rb +15 -0
  874. data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/duplicate/1_people_have_last_names.rb +9 -0
  875. data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/duplicate/2_we_need_reminders.rb +12 -0
  876. data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/duplicate/3_foo.rb +7 -0
  877. data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/duplicate/3_innocent_jointable.rb +12 -0
  878. data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/duplicate_names/20080507052938_chunky.rb +7 -0
  879. data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/duplicate_names/20080507053028_chunky.rb +7 -0
  880. data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/interleaved/pass_1/3_innocent_jointable.rb +12 -0
  881. data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/interleaved/pass_2/1_people_have_last_names.rb +9 -0
  882. data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/interleaved/pass_2/3_innocent_jointable.rb +12 -0
  883. data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/interleaved/pass_3/1_people_have_last_names.rb +9 -0
  884. data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/interleaved/pass_3/2_i_raise_on_down.rb +8 -0
  885. data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/interleaved/pass_3/3_innocent_jointable.rb +12 -0
  886. data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/missing/1000_people_have_middle_names.rb +9 -0
  887. data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/missing/1_people_have_last_names.rb +9 -0
  888. data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/missing/3_we_need_reminders.rb +12 -0
  889. data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/missing/4_innocent_jointable.rb +12 -0
  890. data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/valid/1_people_have_last_names.rb +9 -0
  891. data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/valid/2_we_need_reminders.rb +12 -0
  892. data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/valid/3_innocent_jointable.rb +12 -0
  893. data/spec/assets/testapp/vendor/rails/activerecord/test/models/author.rb +146 -0
  894. data/spec/assets/testapp/vendor/rails/activerecord/test/models/auto_id.rb +4 -0
  895. data/spec/assets/testapp/vendor/rails/activerecord/test/models/binary.rb +2 -0
  896. data/spec/assets/testapp/vendor/rails/activerecord/test/models/bird.rb +3 -0
  897. data/spec/assets/testapp/vendor/rails/activerecord/test/models/book.rb +4 -0
  898. data/spec/assets/testapp/vendor/rails/activerecord/test/models/categorization.rb +5 -0
  899. data/spec/assets/testapp/vendor/rails/activerecord/test/models/category.rb +34 -0
  900. data/spec/assets/testapp/vendor/rails/activerecord/test/models/citation.rb +6 -0
  901. data/spec/assets/testapp/vendor/rails/activerecord/test/models/club.rb +13 -0
  902. data/spec/assets/testapp/vendor/rails/activerecord/test/models/column_name.rb +3 -0
  903. data/spec/assets/testapp/vendor/rails/activerecord/test/models/comment.rb +29 -0
  904. data/spec/assets/testapp/vendor/rails/activerecord/test/models/company.rb +161 -0
  905. data/spec/assets/testapp/vendor/rails/activerecord/test/models/company_in_module.rb +61 -0
  906. data/spec/assets/testapp/vendor/rails/activerecord/test/models/computer.rb +3 -0
  907. data/spec/assets/testapp/vendor/rails/activerecord/test/models/contact.rb +16 -0
  908. data/spec/assets/testapp/vendor/rails/activerecord/test/models/contract.rb +5 -0
  909. data/spec/assets/testapp/vendor/rails/activerecord/test/models/course.rb +3 -0
  910. data/spec/assets/testapp/vendor/rails/activerecord/test/models/customer.rb +73 -0
  911. data/spec/assets/testapp/vendor/rails/activerecord/test/models/default.rb +2 -0
  912. data/spec/assets/testapp/vendor/rails/activerecord/test/models/developer.rb +101 -0
  913. data/spec/assets/testapp/vendor/rails/activerecord/test/models/edge.rb +5 -0
  914. data/spec/assets/testapp/vendor/rails/activerecord/test/models/entrant.rb +3 -0
  915. data/spec/assets/testapp/vendor/rails/activerecord/test/models/essay.rb +3 -0
  916. data/spec/assets/testapp/vendor/rails/activerecord/test/models/event.rb +3 -0
  917. data/spec/assets/testapp/vendor/rails/activerecord/test/models/guid.rb +2 -0
  918. data/spec/assets/testapp/vendor/rails/activerecord/test/models/item.rb +7 -0
  919. data/spec/assets/testapp/vendor/rails/activerecord/test/models/job.rb +5 -0
  920. data/spec/assets/testapp/vendor/rails/activerecord/test/models/joke.rb +3 -0
  921. data/spec/assets/testapp/vendor/rails/activerecord/test/models/keyboard.rb +3 -0
  922. data/spec/assets/testapp/vendor/rails/activerecord/test/models/legacy_thing.rb +3 -0
  923. data/spec/assets/testapp/vendor/rails/activerecord/test/models/matey.rb +4 -0
  924. data/spec/assets/testapp/vendor/rails/activerecord/test/models/member.rb +12 -0
  925. data/spec/assets/testapp/vendor/rails/activerecord/test/models/member_detail.rb +5 -0
  926. data/spec/assets/testapp/vendor/rails/activerecord/test/models/member_type.rb +3 -0
  927. data/spec/assets/testapp/vendor/rails/activerecord/test/models/membership.rb +9 -0
  928. data/spec/assets/testapp/vendor/rails/activerecord/test/models/minimalistic.rb +2 -0
  929. data/spec/assets/testapp/vendor/rails/activerecord/test/models/mixed_case_monkey.rb +3 -0
  930. data/spec/assets/testapp/vendor/rails/activerecord/test/models/movie.rb +5 -0
  931. data/spec/assets/testapp/vendor/rails/activerecord/test/models/order.rb +4 -0
  932. data/spec/assets/testapp/vendor/rails/activerecord/test/models/organization.rb +6 -0
  933. data/spec/assets/testapp/vendor/rails/activerecord/test/models/owner.rb +5 -0
  934. data/spec/assets/testapp/vendor/rails/activerecord/test/models/parrot.rb +16 -0
  935. data/spec/assets/testapp/vendor/rails/activerecord/test/models/person.rb +16 -0
  936. data/spec/assets/testapp/vendor/rails/activerecord/test/models/pet.rb +5 -0
  937. data/spec/assets/testapp/vendor/rails/activerecord/test/models/pirate.rb +63 -0
  938. data/spec/assets/testapp/vendor/rails/activerecord/test/models/post.rb +100 -0
  939. data/spec/assets/testapp/vendor/rails/activerecord/test/models/price_estimate.rb +3 -0
  940. data/spec/assets/testapp/vendor/rails/activerecord/test/models/project.rb +30 -0
  941. data/spec/assets/testapp/vendor/rails/activerecord/test/models/reader.rb +4 -0
  942. data/spec/assets/testapp/vendor/rails/activerecord/test/models/reference.rb +4 -0
  943. data/spec/assets/testapp/vendor/rails/activerecord/test/models/reply.rb +46 -0
  944. data/spec/assets/testapp/vendor/rails/activerecord/test/models/ship.rb +10 -0
  945. data/spec/assets/testapp/vendor/rails/activerecord/test/models/ship_part.rb +5 -0
  946. data/spec/assets/testapp/vendor/rails/activerecord/test/models/sponsor.rb +4 -0
  947. data/spec/assets/testapp/vendor/rails/activerecord/test/models/subject.rb +4 -0
  948. data/spec/assets/testapp/vendor/rails/activerecord/test/models/subscriber.rb +8 -0
  949. data/spec/assets/testapp/vendor/rails/activerecord/test/models/subscription.rb +4 -0
  950. data/spec/assets/testapp/vendor/rails/activerecord/test/models/tag.rb +7 -0
  951. data/spec/assets/testapp/vendor/rails/activerecord/test/models/tagging.rb +10 -0
  952. data/spec/assets/testapp/vendor/rails/activerecord/test/models/task.rb +3 -0
  953. data/spec/assets/testapp/vendor/rails/activerecord/test/models/topic.rb +80 -0
  954. data/spec/assets/testapp/vendor/rails/activerecord/test/models/toy.rb +6 -0
  955. data/spec/assets/testapp/vendor/rails/activerecord/test/models/treasure.rb +6 -0
  956. data/spec/assets/testapp/vendor/rails/activerecord/test/models/vertex.rb +9 -0
  957. data/spec/assets/testapp/vendor/rails/activerecord/test/models/warehouse_thing.rb +5 -0
  958. data/spec/assets/testapp/vendor/rails/activerecord/test/schema/mysql_specific_schema.rb +12 -0
  959. data/spec/assets/testapp/vendor/rails/activerecord/test/schema/postgresql_specific_schema.rb +114 -0
  960. data/spec/assets/testapp/vendor/rails/activerecord/test/schema/schema.rb +492 -0
  961. data/spec/assets/testapp/vendor/rails/activerecord/test/schema/schema2.rb +6 -0
  962. data/spec/assets/testapp/vendor/rails/activerecord/test/schema/sqlite_specific_schema.rb +25 -0
  963. data/spec/assets/testapp/vendor/rails/activeresource/CHANGELOG +283 -0
  964. data/spec/assets/testapp/vendor/rails/activeresource/README +165 -0
  965. data/spec/assets/testapp/vendor/rails/activeresource/Rakefile +139 -0
  966. data/spec/assets/testapp/vendor/rails/activeresource/lib/active_resource/base.rb +1157 -0
  967. data/spec/assets/testapp/vendor/rails/activeresource/lib/active_resource/connection.rb +283 -0
  968. data/spec/assets/testapp/vendor/rails/activeresource/lib/active_resource/custom_methods.rb +120 -0
  969. data/spec/assets/testapp/vendor/rails/activeresource/lib/active_resource/exceptions.rb +66 -0
  970. data/spec/assets/testapp/vendor/rails/activeresource/lib/active_resource/formats/json_format.rb +23 -0
  971. data/spec/assets/testapp/vendor/rails/activeresource/lib/active_resource/formats/xml_format.rb +34 -0
  972. data/spec/assets/testapp/vendor/rails/activeresource/lib/active_resource/formats.rb +14 -0
  973. data/spec/assets/testapp/vendor/rails/activeresource/lib/active_resource/http_mock.rb +207 -0
  974. data/spec/assets/testapp/vendor/rails/activeresource/lib/active_resource/validations.rb +290 -0
  975. data/spec/assets/testapp/vendor/rails/activeresource/lib/active_resource/version.rb +9 -0
  976. data/spec/assets/testapp/vendor/rails/activeresource/lib/active_resource.rb +44 -0
  977. data/spec/assets/testapp/vendor/rails/activeresource/lib/activeresource.rb +1 -0
  978. data/spec/assets/testapp/vendor/rails/activeresource/test/abstract_unit.rb +21 -0
  979. data/spec/assets/testapp/vendor/rails/activeresource/test/authorization_test.rb +122 -0
  980. data/spec/assets/testapp/vendor/rails/activeresource/test/base/custom_methods_test.rb +100 -0
  981. data/spec/assets/testapp/vendor/rails/activeresource/test/base/equality_test.rb +52 -0
  982. data/spec/assets/testapp/vendor/rails/activeresource/test/base/load_test.rb +161 -0
  983. data/spec/assets/testapp/vendor/rails/activeresource/test/base_errors_test.rb +85 -0
  984. data/spec/assets/testapp/vendor/rails/activeresource/test/base_test.rb +1038 -0
  985. data/spec/assets/testapp/vendor/rails/activeresource/test/connection_test.rb +238 -0
  986. data/spec/assets/testapp/vendor/rails/activeresource/test/debug.log +7974 -0
  987. data/spec/assets/testapp/vendor/rails/activeresource/test/fixtures/beast.rb +14 -0
  988. data/spec/assets/testapp/vendor/rails/activeresource/test/fixtures/customer.rb +3 -0
  989. data/spec/assets/testapp/vendor/rails/activeresource/test/fixtures/person.rb +3 -0
  990. data/spec/assets/testapp/vendor/rails/activeresource/test/fixtures/proxy.rb +4 -0
  991. data/spec/assets/testapp/vendor/rails/activeresource/test/fixtures/street_address.rb +4 -0
  992. data/spec/assets/testapp/vendor/rails/activeresource/test/format_test.rb +112 -0
  993. data/spec/assets/testapp/vendor/rails/activeresource/test/setter_trap.rb +26 -0
  994. data/spec/assets/testapp/vendor/rails/activesupport/CHANGELOG +1322 -0
  995. data/spec/assets/testapp/vendor/rails/activesupport/README +43 -0
  996. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/all.rb +8 -0
  997. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/backtrace_cleaner.rb +72 -0
  998. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/base64.rb +33 -0
  999. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/basic_object.rb +24 -0
  1000. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/buffered_logger.rb +127 -0
  1001. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/cache/compressed_mem_cache_store.rb +20 -0
  1002. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/cache/drb_store.rb +14 -0
  1003. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/cache/file_store.rb +72 -0
  1004. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/cache/mem_cache_store.rb +138 -0
  1005. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/cache/memory_store.rb +52 -0
  1006. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb +104 -0
  1007. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/cache/synchronized_memory_store.rb +47 -0
  1008. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/cache.rb +241 -0
  1009. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/callbacks.rb +279 -0
  1010. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/array/access.rb +53 -0
  1011. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/array/conversions.rb +197 -0
  1012. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/array/extract_options.rb +20 -0
  1013. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/array/grouping.rb +106 -0
  1014. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/array/random_access.rb +12 -0
  1015. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/array/wrapper.rb +24 -0
  1016. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/array.rb +15 -0
  1017. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/base64/encoding.rb +16 -0
  1018. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/base64.rb +4 -0
  1019. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb +19 -0
  1020. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/bigdecimal/conversions.rb +37 -0
  1021. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/bigdecimal.rb +6 -0
  1022. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/blank.rb +58 -0
  1023. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb +23 -0
  1024. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/cgi.rb +5 -0
  1025. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/class/attribute_accessors.rb +54 -0
  1026. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/class/delegating_attributes.rb +47 -0
  1027. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb +140 -0
  1028. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/class/removal.rb +50 -0
  1029. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/class.rb +4 -0
  1030. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/date/behavior.rb +42 -0
  1031. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/date/calculations.rb +231 -0
  1032. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/date/conversions.rb +107 -0
  1033. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/date.rb +10 -0
  1034. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/date_time/calculations.rb +126 -0
  1035. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/date_time/conversions.rb +96 -0
  1036. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/date_time.rb +12 -0
  1037. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/duplicable.rb +43 -0
  1038. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/enumerable.rb +114 -0
  1039. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/exception.rb +45 -0
  1040. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/file/atomic.rb +46 -0
  1041. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/file.rb +5 -0
  1042. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/float/rounding.rb +24 -0
  1043. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/float/time.rb +27 -0
  1044. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/float.rb +7 -0
  1045. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/hash/conversions.rb +247 -0
  1046. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/hash/deep_merge.rb +23 -0
  1047. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/hash/diff.rb +19 -0
  1048. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/hash/except.rb +25 -0
  1049. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb +143 -0
  1050. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/hash/keys.rb +52 -0
  1051. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/hash/reverse_merge.rb +35 -0
  1052. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/hash/slice.rb +40 -0
  1053. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/hash.rb +14 -0
  1054. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/integer/even_odd.rb +29 -0
  1055. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/integer/inflections.rb +20 -0
  1056. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/integer/time.rb +45 -0
  1057. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/integer.rb +9 -0
  1058. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/kernel/agnostics.rb +11 -0
  1059. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/kernel/daemonizing.rb +7 -0
  1060. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/kernel/debugger.rb +15 -0
  1061. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/kernel/reporting.rb +59 -0
  1062. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/kernel/requires.rb +24 -0
  1063. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/kernel.rb +5 -0
  1064. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/load_error.rb +38 -0
  1065. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/logger.rb +145 -0
  1066. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/module/aliasing.rb +74 -0
  1067. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/module/attr_accessor_with_default.rb +31 -0
  1068. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/module/attr_internal.rb +32 -0
  1069. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb +60 -0
  1070. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/module/delegation.rb +135 -0
  1071. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/module/inclusion.rb +30 -0
  1072. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/module/introspection.rb +90 -0
  1073. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/module/loading.rb +23 -0
  1074. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/module/model_naming.rb +25 -0
  1075. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/module/synchronization.rb +39 -0
  1076. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/module.rb +23 -0
  1077. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/name_error.rb +17 -0
  1078. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/numeric/bytes.rb +50 -0
  1079. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/numeric/conversions.rb +19 -0
  1080. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/numeric/time.rb +81 -0
  1081. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/numeric.rb +9 -0
  1082. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/object/conversions.rb +15 -0
  1083. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/object/extending.rb +80 -0
  1084. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/object/instance_variables.rb +74 -0
  1085. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/object/metaclass.rb +13 -0
  1086. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/object/misc.rb +90 -0
  1087. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/object.rb +5 -0
  1088. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/pathname/clean_within.rb +14 -0
  1089. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/pathname.rb +7 -0
  1090. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/proc.rb +12 -0
  1091. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/process/daemon.rb +25 -0
  1092. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/process.rb +1 -0
  1093. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/range/blockless_step.rb +32 -0
  1094. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/range/conversions.rb +27 -0
  1095. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/range/include_range.rb +30 -0
  1096. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/range/overlaps.rb +15 -0
  1097. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/range.rb +11 -0
  1098. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/rexml.rb +41 -0
  1099. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/string/access.rb +106 -0
  1100. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/string/behavior.rb +13 -0
  1101. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/string/bytesize.rb +5 -0
  1102. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/string/conversions.rb +28 -0
  1103. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/string/filters.rb +26 -0
  1104. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb +167 -0
  1105. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/string/iterators.rb +23 -0
  1106. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/string/multibyte.rb +81 -0
  1107. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/string/starts_ends_with.rb +35 -0
  1108. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/string/xchar.rb +11 -0
  1109. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/string.rb +23 -0
  1110. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/symbol.rb +14 -0
  1111. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/time/behavior.rb +13 -0
  1112. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/time/calculations.rb +303 -0
  1113. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb +90 -0
  1114. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/time/zones.rb +86 -0
  1115. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/time.rb +42 -0
  1116. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/try.rb +36 -0
  1117. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/uri.rb +16 -0
  1118. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext.rb +4 -0
  1119. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/dependencies.rb +625 -0
  1120. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/deprecation.rb +196 -0
  1121. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/duration.rb +100 -0
  1122. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/gzip.rb +25 -0
  1123. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/inflections.rb +56 -0
  1124. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/inflector.rb +406 -0
  1125. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/backends/jsongem.rb +38 -0
  1126. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/backends/yaml.rb +88 -0
  1127. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/decoding.rb +33 -0
  1128. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/encoders/date.rb +22 -0
  1129. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/encoders/date_time.rb +22 -0
  1130. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/encoders/enumerable.rb +17 -0
  1131. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/encoders/false_class.rb +7 -0
  1132. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/encoders/hash.rb +56 -0
  1133. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/encoders/nil_class.rb +7 -0
  1134. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/encoders/numeric.rb +21 -0
  1135. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/encoders/object.rb +10 -0
  1136. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/encoders/regexp.rb +9 -0
  1137. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/encoders/string.rb +9 -0
  1138. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/encoders/symbol.rb +5 -0
  1139. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/encoders/time.rb +22 -0
  1140. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/encoders/true_class.rb +7 -0
  1141. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/encoding.rb +102 -0
  1142. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/variable.rb +10 -0
  1143. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json.rb +2 -0
  1144. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/locale/en.yml +33 -0
  1145. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/memoizable.rb +100 -0
  1146. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/message_encryptor.rb +70 -0
  1147. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/message_verifier.rb +59 -0
  1148. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/multibyte/chars.rb +707 -0
  1149. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/multibyte/exceptions.rb +8 -0
  1150. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/multibyte/unicode_database.rb +71 -0
  1151. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/multibyte/utils.rb +61 -0
  1152. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/multibyte.rb +57 -0
  1153. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/option_merger.rb +23 -0
  1154. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/ordered_hash.rb +134 -0
  1155. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/ordered_options.rb +19 -0
  1156. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/rescuable.rb +108 -0
  1157. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/secure_random.rb +199 -0
  1158. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/string_inquirer.rb +21 -0
  1159. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/test_case.rb +40 -0
  1160. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/testing/assertions.rb +65 -0
  1161. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/testing/declarative.rb +21 -0
  1162. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/testing/default.rb +9 -0
  1163. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/testing/deprecation.rb +57 -0
  1164. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/testing/performance.rb +452 -0
  1165. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/testing/setup_and_teardown.rb +91 -0
  1166. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/time_with_zone.rb +335 -0
  1167. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/values/time_zone.rb +404 -0
  1168. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/values/unicode_tables.dat +0 -0
  1169. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/blankslate.rb +113 -0
  1170. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/blankslate.rb +20 -0
  1171. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/css.rb +250 -0
  1172. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xchar.rb +115 -0
  1173. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlbase.rb +139 -0
  1174. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlevents.rb +63 -0
  1175. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlmarkup.rb +328 -0
  1176. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder.rb +13 -0
  1177. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/MIT-LICENSE +20 -0
  1178. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/README.textile +20 -0
  1179. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/Rakefile +5 -0
  1180. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/i18n.gemspec +27 -0
  1181. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/lib/i18n/backend/simple.rb +214 -0
  1182. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/lib/i18n/exceptions.rb +53 -0
  1183. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/lib/i18n.rb +199 -0
  1184. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/all.rb +5 -0
  1185. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/i18n_exceptions_test.rb +99 -0
  1186. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/i18n_test.rb +124 -0
  1187. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/locale/en.rb +1 -0
  1188. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/locale/en.yml +3 -0
  1189. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/simple_backend_test.rb +567 -0
  1190. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/memcache-client-1.7.4/memcache.rb +1107 -0
  1191. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/data_timezone.rb +47 -0
  1192. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/data_timezone_info.rb +228 -0
  1193. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Algiers.rb +55 -0
  1194. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Cairo.rb +219 -0
  1195. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Casablanca.rb +40 -0
  1196. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Harare.rb +18 -0
  1197. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Johannesburg.rb +25 -0
  1198. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Monrovia.rb +22 -0
  1199. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Nairobi.rb +23 -0
  1200. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/Buenos_Aires.rb +166 -0
  1201. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/San_Juan.rb +86 -0
  1202. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Bogota.rb +23 -0
  1203. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Caracas.rb +23 -0
  1204. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Chicago.rb +283 -0
  1205. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Chihuahua.rb +136 -0
  1206. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Denver.rb +204 -0
  1207. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Godthab.rb +161 -0
  1208. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Guatemala.rb +27 -0
  1209. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Halifax.rb +274 -0
  1210. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Indiana/Indianapolis.rb +149 -0
  1211. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Juneau.rb +194 -0
  1212. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/La_Paz.rb +22 -0
  1213. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Lima.rb +35 -0
  1214. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Los_Angeles.rb +232 -0
  1215. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Mazatlan.rb +139 -0
  1216. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Mexico_City.rb +144 -0
  1217. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Monterrey.rb +131 -0
  1218. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/New_York.rb +282 -0
  1219. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Phoenix.rb +30 -0
  1220. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Regina.rb +74 -0
  1221. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Santiago.rb +205 -0
  1222. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Sao_Paulo.rb +171 -0
  1223. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/St_Johns.rb +288 -0
  1224. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Tijuana.rb +196 -0
  1225. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Almaty.rb +67 -0
  1226. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Baghdad.rb +73 -0
  1227. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Baku.rb +161 -0
  1228. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Bangkok.rb +20 -0
  1229. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Chongqing.rb +33 -0
  1230. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Colombo.rb +30 -0
  1231. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Dhaka.rb +27 -0
  1232. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Hong_Kong.rb +87 -0
  1233. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Irkutsk.rb +165 -0
  1234. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Jakarta.rb +30 -0
  1235. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Jerusalem.rb +163 -0
  1236. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kabul.rb +20 -0
  1237. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kamchatka.rb +163 -0
  1238. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Karachi.rb +30 -0
  1239. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Katmandu.rb +20 -0
  1240. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kolkata.rb +25 -0
  1241. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Krasnoyarsk.rb +163 -0
  1242. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kuala_Lumpur.rb +31 -0
  1243. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kuwait.rb +18 -0
  1244. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Magadan.rb +163 -0
  1245. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Muscat.rb +18 -0
  1246. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Novosibirsk.rb +164 -0
  1247. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Rangoon.rb +24 -0
  1248. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Riyadh.rb +18 -0
  1249. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Seoul.rb +34 -0
  1250. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Shanghai.rb +35 -0
  1251. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Singapore.rb +33 -0
  1252. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Taipei.rb +59 -0
  1253. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tashkent.rb +47 -0
  1254. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tbilisi.rb +78 -0
  1255. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tehran.rb +121 -0
  1256. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tokyo.rb +30 -0
  1257. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Ulaanbaatar.rb +65 -0
  1258. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Urumqi.rb +33 -0
  1259. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Vladivostok.rb +164 -0
  1260. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yakutsk.rb +163 -0
  1261. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yekaterinburg.rb +165 -0
  1262. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yerevan.rb +165 -0
  1263. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/Azores.rb +270 -0
  1264. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/Cape_Verde.rb +23 -0
  1265. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/South_Georgia.rb +18 -0
  1266. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Adelaide.rb +187 -0
  1267. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Brisbane.rb +35 -0
  1268. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Darwin.rb +29 -0
  1269. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Hobart.rb +193 -0
  1270. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Melbourne.rb +185 -0
  1271. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Perth.rb +37 -0
  1272. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Sydney.rb +185 -0
  1273. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Etc/UTC.rb +16 -0
  1274. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Amsterdam.rb +228 -0
  1275. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Athens.rb +185 -0
  1276. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Belgrade.rb +163 -0
  1277. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Berlin.rb +188 -0
  1278. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Bratislava.rb +13 -0
  1279. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Brussels.rb +232 -0
  1280. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Bucharest.rb +181 -0
  1281. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Budapest.rb +197 -0
  1282. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Copenhagen.rb +179 -0
  1283. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Dublin.rb +276 -0
  1284. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Helsinki.rb +163 -0
  1285. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Istanbul.rb +218 -0
  1286. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Kiev.rb +168 -0
  1287. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Lisbon.rb +268 -0
  1288. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Ljubljana.rb +13 -0
  1289. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/London.rb +288 -0
  1290. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Madrid.rb +211 -0
  1291. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Minsk.rb +170 -0
  1292. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Moscow.rb +181 -0
  1293. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Paris.rb +232 -0
  1294. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Prague.rb +187 -0
  1295. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Riga.rb +176 -0
  1296. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Rome.rb +215 -0
  1297. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Sarajevo.rb +13 -0
  1298. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Skopje.rb +13 -0
  1299. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Sofia.rb +173 -0
  1300. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Stockholm.rb +165 -0
  1301. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Tallinn.rb +172 -0
  1302. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Vienna.rb +183 -0
  1303. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Vilnius.rb +170 -0
  1304. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Warsaw.rb +212 -0
  1305. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Zagreb.rb +13 -0
  1306. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Auckland.rb +202 -0
  1307. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Fiji.rb +23 -0
  1308. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Guam.rb +22 -0
  1309. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Honolulu.rb +28 -0
  1310. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Majuro.rb +20 -0
  1311. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Midway.rb +25 -0
  1312. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Noumea.rb +25 -0
  1313. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Pago_Pago.rb +26 -0
  1314. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Port_Moresby.rb +20 -0
  1315. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Tongatapu.rb +27 -0
  1316. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/info_timezone.rb +52 -0
  1317. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/linked_timezone.rb +51 -0
  1318. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/linked_timezone_info.rb +44 -0
  1319. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/offset_rationals.rb +98 -0
  1320. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/ruby_core_support.rb +56 -0
  1321. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/time_or_datetime.rb +292 -0
  1322. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone.rb +508 -0
  1323. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_definition.rb +56 -0
  1324. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_info.rb +40 -0
  1325. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_offset_info.rb +94 -0
  1326. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_period.rb +198 -0
  1327. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_transition_info.rb +129 -0
  1328. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo.rb +33 -0
  1329. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor.rb +28 -0
  1330. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/version.rb +9 -0
  1331. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/whiny_nil.rb +58 -0
  1332. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/xml_mini/jdom.rb +162 -0
  1333. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/xml_mini/libxml.rb +133 -0
  1334. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/xml_mini/nokogiri.rb +77 -0
  1335. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/xml_mini/rexml.rb +108 -0
  1336. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/xml_mini.rb +31 -0
  1337. data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support.rb +59 -0
  1338. data/spec/assets/testapp/vendor/rails/activesupport/lib/activesupport.rb +1 -0
  1339. data/spec/assets/testapp/vendor/rails/railties/CHANGELOG +2166 -0
  1340. data/spec/assets/testapp/vendor/rails/railties/MIT-LICENSE +20 -0
  1341. data/spec/assets/testapp/vendor/rails/railties/README +243 -0
  1342. data/spec/assets/testapp/vendor/rails/railties/Rakefile +368 -0
  1343. data/spec/assets/testapp/vendor/rails/railties/bin/about +4 -0
  1344. data/spec/assets/testapp/vendor/rails/railties/bin/console +3 -0
  1345. data/spec/assets/testapp/vendor/rails/railties/bin/dbconsole +3 -0
  1346. data/spec/assets/testapp/vendor/rails/railties/bin/destroy +3 -0
  1347. data/spec/assets/testapp/vendor/rails/railties/bin/generate +3 -0
  1348. data/spec/assets/testapp/vendor/rails/railties/bin/performance/benchmarker +3 -0
  1349. data/spec/assets/testapp/vendor/rails/railties/bin/performance/profiler +3 -0
  1350. data/spec/assets/testapp/vendor/rails/railties/bin/plugin +3 -0
  1351. data/spec/assets/testapp/vendor/rails/railties/bin/rails +20 -0
  1352. data/spec/assets/testapp/vendor/rails/railties/bin/runner +3 -0
  1353. data/spec/assets/testapp/vendor/rails/railties/bin/server +3 -0
  1354. data/spec/assets/testapp/vendor/rails/railties/builtin/rails_info/rails/info.rb +131 -0
  1355. data/spec/assets/testapp/vendor/rails/railties/builtin/rails_info/rails/info_controller.rb +9 -0
  1356. data/spec/assets/testapp/vendor/rails/railties/builtin/rails_info/rails/info_helper.rb +2 -0
  1357. data/spec/assets/testapp/vendor/rails/railties/builtin/rails_info/rails_info_controller.rb +2 -0
  1358. data/spec/assets/testapp/vendor/rails/railties/configs/databases/frontbase.yml +28 -0
  1359. data/spec/assets/testapp/vendor/rails/railties/configs/databases/ibm_db.yml +62 -0
  1360. data/spec/assets/testapp/vendor/rails/railties/configs/databases/mysql.yml +60 -0
  1361. data/spec/assets/testapp/vendor/rails/railties/configs/databases/oracle.yml +39 -0
  1362. data/spec/assets/testapp/vendor/rails/railties/configs/databases/postgresql.yml +51 -0
  1363. data/spec/assets/testapp/vendor/rails/railties/configs/databases/sqlite2.yml +19 -0
  1364. data/spec/assets/testapp/vendor/rails/railties/configs/databases/sqlite3.yml +22 -0
  1365. data/spec/assets/testapp/vendor/rails/railties/configs/empty.log +0 -0
  1366. data/spec/assets/testapp/vendor/rails/railties/configs/initializers/backtrace_silencers.rb +7 -0
  1367. data/spec/assets/testapp/vendor/rails/railties/configs/initializers/inflections.rb +10 -0
  1368. data/spec/assets/testapp/vendor/rails/railties/configs/initializers/mime_types.rb +5 -0
  1369. data/spec/assets/testapp/vendor/rails/railties/configs/initializers/new_rails_defaults.rb +21 -0
  1370. data/spec/assets/testapp/vendor/rails/railties/configs/initializers/session_store.rb +15 -0
  1371. data/spec/assets/testapp/vendor/rails/railties/configs/locales/en.yml +5 -0
  1372. data/spec/assets/testapp/vendor/rails/railties/configs/routes.rb +43 -0
  1373. data/spec/assets/testapp/vendor/rails/railties/configs/seeds.rb +7 -0
  1374. data/spec/assets/testapp/vendor/rails/railties/dispatches/config.ru +7 -0
  1375. data/spec/assets/testapp/vendor/rails/railties/dispatches/dispatch.fcgi +24 -0
  1376. data/spec/assets/testapp/vendor/rails/railties/dispatches/dispatch.rb +10 -0
  1377. data/spec/assets/testapp/vendor/rails/railties/dispatches/gateway.cgi +97 -0
  1378. data/spec/assets/testapp/vendor/rails/railties/doc/README_FOR_APP +2 -0
  1379. data/spec/assets/testapp/vendor/rails/railties/environments/boot.rb +110 -0
  1380. data/spec/assets/testapp/vendor/rails/railties/environments/development.rb +17 -0
  1381. data/spec/assets/testapp/vendor/rails/railties/environments/environment.rb +41 -0
  1382. data/spec/assets/testapp/vendor/rails/railties/environments/production.rb +28 -0
  1383. data/spec/assets/testapp/vendor/rails/railties/environments/test.rb +28 -0
  1384. data/spec/assets/testapp/vendor/rails/railties/fresh_rakefile +10 -0
  1385. data/spec/assets/testapp/vendor/rails/railties/guides/files/javascripts/code_highlighter.js +188 -0
  1386. data/spec/assets/testapp/vendor/rails/railties/guides/files/javascripts/guides.js +8 -0
  1387. data/spec/assets/testapp/vendor/rails/railties/guides/files/javascripts/highlighters.js +90 -0
  1388. data/spec/assets/testapp/vendor/rails/railties/guides/files/stylesheets/main.css +441 -0
  1389. data/spec/assets/testapp/vendor/rails/railties/guides/files/stylesheets/print.css +52 -0
  1390. data/spec/assets/testapp/vendor/rails/railties/guides/files/stylesheets/reset.css +43 -0
  1391. data/spec/assets/testapp/vendor/rails/railties/guides/files/stylesheets/style.css +13 -0
  1392. data/spec/assets/testapp/vendor/rails/railties/guides/files/stylesheets/syntax.css +31 -0
  1393. data/spec/assets/testapp/vendor/rails/railties/guides/images/belongs_to.png +0 -0
  1394. data/spec/assets/testapp/vendor/rails/railties/guides/images/book_icon.gif +0 -0
  1395. data/spec/assets/testapp/vendor/rails/railties/guides/images/bullet.gif +0 -0
  1396. data/spec/assets/testapp/vendor/rails/railties/guides/images/chapters_icon.gif +0 -0
  1397. data/spec/assets/testapp/vendor/rails/railties/guides/images/check_bullet.gif +0 -0
  1398. data/spec/assets/testapp/vendor/rails/railties/guides/images/credits_pic_blank.gif +0 -0
  1399. data/spec/assets/testapp/vendor/rails/railties/guides/images/csrf.png +0 -0
  1400. data/spec/assets/testapp/vendor/rails/railties/guides/images/customized_error_messages.png +0 -0
  1401. data/spec/assets/testapp/vendor/rails/railties/guides/images/error_messages.png +0 -0
  1402. data/spec/assets/testapp/vendor/rails/railties/guides/images/feature_tile.gif +0 -0
  1403. data/spec/assets/testapp/vendor/rails/railties/guides/images/footer_tile.gif +0 -0
  1404. data/spec/assets/testapp/vendor/rails/railties/guides/images/fxn.jpg +0 -0
  1405. data/spec/assets/testapp/vendor/rails/railties/guides/images/grey_bullet.gif +0 -0
  1406. data/spec/assets/testapp/vendor/rails/railties/guides/images/habtm.png +0 -0
  1407. data/spec/assets/testapp/vendor/rails/railties/guides/images/has_many.png +0 -0
  1408. data/spec/assets/testapp/vendor/rails/railties/guides/images/has_many_through.png +0 -0
  1409. data/spec/assets/testapp/vendor/rails/railties/guides/images/has_one.png +0 -0
  1410. data/spec/assets/testapp/vendor/rails/railties/guides/images/has_one_through.png +0 -0
  1411. data/spec/assets/testapp/vendor/rails/railties/guides/images/header_backdrop.png +0 -0
  1412. data/spec/assets/testapp/vendor/rails/railties/guides/images/header_tile.gif +0 -0
  1413. data/spec/assets/testapp/vendor/rails/railties/guides/images/i18n/demo_localized_pirate.png +0 -0
  1414. data/spec/assets/testapp/vendor/rails/railties/guides/images/i18n/demo_translated_en.png +0 -0
  1415. data/spec/assets/testapp/vendor/rails/railties/guides/images/i18n/demo_translated_pirate.png +0 -0
  1416. data/spec/assets/testapp/vendor/rails/railties/guides/images/i18n/demo_translation_missing.png +0 -0
  1417. data/spec/assets/testapp/vendor/rails/railties/guides/images/i18n/demo_untranslated.png +0 -0
  1418. data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/README +5 -0
  1419. data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/callouts/1.png +0 -0
  1420. data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/callouts/10.png +0 -0
  1421. data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/callouts/11.png +0 -0
  1422. data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/callouts/12.png +0 -0
  1423. data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/callouts/13.png +0 -0
  1424. data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/callouts/14.png +0 -0
  1425. data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/callouts/15.png +0 -0
  1426. data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/callouts/2.png +0 -0
  1427. data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/callouts/3.png +0 -0
  1428. data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/callouts/4.png +0 -0
  1429. data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/callouts/5.png +0 -0
  1430. data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/callouts/6.png +0 -0
  1431. data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/callouts/7.png +0 -0
  1432. data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/callouts/8.png +0 -0
  1433. data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/callouts/9.png +0 -0
  1434. data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/caution.png +0 -0
  1435. data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/example.png +0 -0
  1436. data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/home.png +0 -0
  1437. data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/important.png +0 -0
  1438. data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/next.png +0 -0
  1439. data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/note.png +0 -0
  1440. data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/prev.png +0 -0
  1441. data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/tip.png +0 -0
  1442. data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/up.png +0 -0
  1443. data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/warning.png +0 -0
  1444. data/spec/assets/testapp/vendor/rails/railties/guides/images/nav_arrow.gif +0 -0
  1445. data/spec/assets/testapp/vendor/rails/railties/guides/images/polymorphic.png +0 -0
  1446. data/spec/assets/testapp/vendor/rails/railties/guides/images/posts_index.png +0 -0
  1447. data/spec/assets/testapp/vendor/rails/railties/guides/images/rails_guides_logo.gif +0 -0
  1448. data/spec/assets/testapp/vendor/rails/railties/guides/images/rails_logo_remix.gif +0 -0
  1449. data/spec/assets/testapp/vendor/rails/railties/guides/images/rails_welcome.png +0 -0
  1450. data/spec/assets/testapp/vendor/rails/railties/guides/images/session_fixation.png +0 -0
  1451. data/spec/assets/testapp/vendor/rails/railties/guides/images/tab_grey.gif +0 -0
  1452. data/spec/assets/testapp/vendor/rails/railties/guides/images/tab_info.gif +0 -0
  1453. data/spec/assets/testapp/vendor/rails/railties/guides/images/tab_note.gif +0 -0
  1454. data/spec/assets/testapp/vendor/rails/railties/guides/images/tab_red.gif +0 -0
  1455. data/spec/assets/testapp/vendor/rails/railties/guides/images/tab_yellow.gif +0 -0
  1456. data/spec/assets/testapp/vendor/rails/railties/guides/images/tab_yellow.png +0 -0
  1457. data/spec/assets/testapp/vendor/rails/railties/guides/images/validation_error_messages.png +0 -0
  1458. data/spec/assets/testapp/vendor/rails/railties/guides/rails_guides/generator.rb +138 -0
  1459. data/spec/assets/testapp/vendor/rails/railties/guides/rails_guides/helpers.rb +34 -0
  1460. data/spec/assets/testapp/vendor/rails/railties/guides/rails_guides/indexer.rb +55 -0
  1461. data/spec/assets/testapp/vendor/rails/railties/guides/rails_guides/textile_extensions.rb +41 -0
  1462. data/spec/assets/testapp/vendor/rails/railties/guides/rails_guides.rb +42 -0
  1463. data/spec/assets/testapp/vendor/rails/railties/guides/source/2_2_release_notes.textile +422 -0
  1464. data/spec/assets/testapp/vendor/rails/railties/guides/source/2_3_release_notes.textile +610 -0
  1465. data/spec/assets/testapp/vendor/rails/railties/guides/source/action_controller_overview.textile +776 -0
  1466. data/spec/assets/testapp/vendor/rails/railties/guides/source/action_mailer_basics.textile +424 -0
  1467. data/spec/assets/testapp/vendor/rails/railties/guides/source/active_record_basics.textile +135 -0
  1468. data/spec/assets/testapp/vendor/rails/railties/guides/source/active_record_querying.textile +969 -0
  1469. data/spec/assets/testapp/vendor/rails/railties/guides/source/activerecord_validations_callbacks.textile +1086 -0
  1470. data/spec/assets/testapp/vendor/rails/railties/guides/source/association_basics.textile +1781 -0
  1471. data/spec/assets/testapp/vendor/rails/railties/guides/source/caching_with_rails.textile +524 -0
  1472. data/spec/assets/testapp/vendor/rails/railties/guides/source/command_line.textile +589 -0
  1473. data/spec/assets/testapp/vendor/rails/railties/guides/source/configuring.textile +234 -0
  1474. data/spec/assets/testapp/vendor/rails/railties/guides/source/contribute.textile +71 -0
  1475. data/spec/assets/testapp/vendor/rails/railties/guides/source/contributing_to_rails.textile +239 -0
  1476. data/spec/assets/testapp/vendor/rails/railties/guides/source/credits.erb.textile +52 -0
  1477. data/spec/assets/testapp/vendor/rails/railties/guides/source/debugging_rails_applications.textile +709 -0
  1478. data/spec/assets/testapp/vendor/rails/railties/guides/source/form_helpers.textile +766 -0
  1479. data/spec/assets/testapp/vendor/rails/railties/guides/source/getting_started.textile +1297 -0
  1480. data/spec/assets/testapp/vendor/rails/railties/guides/source/i18n.textile +912 -0
  1481. data/spec/assets/testapp/vendor/rails/railties/guides/source/index.erb.textile +124 -0
  1482. data/spec/assets/testapp/vendor/rails/railties/guides/source/layout.html.erb +103 -0
  1483. data/spec/assets/testapp/vendor/rails/railties/guides/source/layouts_and_rendering.textile +979 -0
  1484. data/spec/assets/testapp/vendor/rails/railties/guides/source/migrations.textile +591 -0
  1485. data/spec/assets/testapp/vendor/rails/railties/guides/source/nested_model_forms.textile +222 -0
  1486. data/spec/assets/testapp/vendor/rails/railties/guides/source/performance_testing.textile +531 -0
  1487. data/spec/assets/testapp/vendor/rails/railties/guides/source/plugins.textile +1512 -0
  1488. data/spec/assets/testapp/vendor/rails/railties/guides/source/rails_on_rack.textile +309 -0
  1489. data/spec/assets/testapp/vendor/rails/railties/guides/source/routing.textile +903 -0
  1490. data/spec/assets/testapp/vendor/rails/railties/guides/source/security.textile +986 -0
  1491. data/spec/assets/testapp/vendor/rails/railties/guides/source/testing.textile +951 -0
  1492. data/spec/assets/testapp/vendor/rails/railties/helpers/application_controller.rb +10 -0
  1493. data/spec/assets/testapp/vendor/rails/railties/helpers/application_helper.rb +3 -0
  1494. data/spec/assets/testapp/vendor/rails/railties/helpers/performance_test.rb +9 -0
  1495. data/spec/assets/testapp/vendor/rails/railties/helpers/test_helper.rb +38 -0
  1496. data/spec/assets/testapp/vendor/rails/railties/html/404.html +30 -0
  1497. data/spec/assets/testapp/vendor/rails/railties/html/422.html +30 -0
  1498. data/spec/assets/testapp/vendor/rails/railties/html/500.html +30 -0
  1499. data/spec/assets/testapp/vendor/rails/railties/html/favicon.ico +0 -0
  1500. data/spec/assets/testapp/vendor/rails/railties/html/images/rails.png +0 -0
  1501. data/spec/assets/testapp/vendor/rails/railties/html/index.html +275 -0
  1502. data/spec/assets/testapp/vendor/rails/railties/html/javascripts/application.js +2 -0
  1503. data/spec/assets/testapp/vendor/rails/railties/html/javascripts/controls.js +963 -0
  1504. data/spec/assets/testapp/vendor/rails/railties/html/javascripts/dragdrop.js +973 -0
  1505. data/spec/assets/testapp/vendor/rails/railties/html/javascripts/effects.js +1128 -0
  1506. data/spec/assets/testapp/vendor/rails/railties/html/javascripts/prototype.js +4320 -0
  1507. data/spec/assets/testapp/vendor/rails/railties/html/robots.txt +5 -0
  1508. data/spec/assets/testapp/vendor/rails/railties/lib/code_statistics.rb +107 -0
  1509. data/spec/assets/testapp/vendor/rails/railties/lib/commands/about.rb +3 -0
  1510. data/spec/assets/testapp/vendor/rails/railties/lib/commands/console.rb +45 -0
  1511. data/spec/assets/testapp/vendor/rails/railties/lib/commands/dbconsole.rb +87 -0
  1512. data/spec/assets/testapp/vendor/rails/railties/lib/commands/destroy.rb +6 -0
  1513. data/spec/assets/testapp/vendor/rails/railties/lib/commands/generate.rb +6 -0
  1514. data/spec/assets/testapp/vendor/rails/railties/lib/commands/ncgi/listener +86 -0
  1515. data/spec/assets/testapp/vendor/rails/railties/lib/commands/ncgi/tracker +69 -0
  1516. data/spec/assets/testapp/vendor/rails/railties/lib/commands/performance/benchmarker.rb +24 -0
  1517. data/spec/assets/testapp/vendor/rails/railties/lib/commands/performance/profiler.rb +50 -0
  1518. data/spec/assets/testapp/vendor/rails/railties/lib/commands/plugin.rb +968 -0
  1519. data/spec/assets/testapp/vendor/rails/railties/lib/commands/runner.rb +54 -0
  1520. data/spec/assets/testapp/vendor/rails/railties/lib/commands/server.rb +114 -0
  1521. data/spec/assets/testapp/vendor/rails/railties/lib/commands/update.rb +4 -0
  1522. data/spec/assets/testapp/vendor/rails/railties/lib/commands.rb +17 -0
  1523. data/spec/assets/testapp/vendor/rails/railties/lib/console_app.rb +30 -0
  1524. data/spec/assets/testapp/vendor/rails/railties/lib/console_sandbox.rb +6 -0
  1525. data/spec/assets/testapp/vendor/rails/railties/lib/console_with_helpers.rb +5 -0
  1526. data/spec/assets/testapp/vendor/rails/railties/lib/dispatcher.rb +24 -0
  1527. data/spec/assets/testapp/vendor/rails/railties/lib/fcgi_handler.rb +239 -0
  1528. data/spec/assets/testapp/vendor/rails/railties/lib/initializer.rb +1128 -0
  1529. data/spec/assets/testapp/vendor/rails/railties/lib/performance_test_help.rb +5 -0
  1530. data/spec/assets/testapp/vendor/rails/railties/lib/rails/backtrace_cleaner.rb +54 -0
  1531. data/spec/assets/testapp/vendor/rails/railties/lib/rails/gem_builder.rb +21 -0
  1532. data/spec/assets/testapp/vendor/rails/railties/lib/rails/gem_dependency.rb +311 -0
  1533. data/spec/assets/testapp/vendor/rails/railties/lib/rails/plugin/loader.rb +198 -0
  1534. data/spec/assets/testapp/vendor/rails/railties/lib/rails/plugin/locator.rb +100 -0
  1535. data/spec/assets/testapp/vendor/rails/railties/lib/rails/plugin.rb +179 -0
  1536. data/spec/assets/testapp/vendor/rails/railties/lib/rails/rack/debugger.rb +21 -0
  1537. data/spec/assets/testapp/vendor/rails/railties/lib/rails/rack/log_tailer.rb +35 -0
  1538. data/spec/assets/testapp/vendor/rails/railties/lib/rails/rack/metal.rb +51 -0
  1539. data/spec/assets/testapp/vendor/rails/railties/lib/rails/rack/static.rb +46 -0
  1540. data/spec/assets/testapp/vendor/rails/railties/lib/rails/rack.rb +8 -0
  1541. data/spec/assets/testapp/vendor/rails/railties/lib/rails/vendor_gem_source_index.rb +140 -0
  1542. data/spec/assets/testapp/vendor/rails/railties/lib/rails/version.rb +9 -0
  1543. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/base.rb +266 -0
  1544. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/commands.rb +621 -0
  1545. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generated_attribute.rb +46 -0
  1546. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/applications/app/USAGE +9 -0
  1547. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/applications/app/app_generator.rb +263 -0
  1548. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/applications/app/scm/git.rb +18 -0
  1549. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/applications/app/scm/scm.rb +8 -0
  1550. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/applications/app/scm/svn.rb +7 -0
  1551. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/applications/app/template_runner.rb +401 -0
  1552. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/controller/USAGE +30 -0
  1553. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/controller/controller_generator.rb +43 -0
  1554. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/controller.rb +7 -0
  1555. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/functional_test.rb +8 -0
  1556. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/helper.rb +2 -0
  1557. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/helper_test.rb +4 -0
  1558. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/view.html.erb +2 -0
  1559. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/helper/USAGE +24 -0
  1560. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/helper/helper_generator.rb +25 -0
  1561. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/helper/templates/helper.rb +2 -0
  1562. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/helper/templates/helper_test.rb +4 -0
  1563. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/USAGE +8 -0
  1564. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/integration_test_generator.rb +16 -0
  1565. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/templates/integration_test.rb +10 -0
  1566. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/mailer/USAGE +16 -0
  1567. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/mailer/mailer_generator.rb +30 -0
  1568. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/fixture.erb +3 -0
  1569. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/fixture.rhtml +0 -0
  1570. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/mailer.rb +15 -0
  1571. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/unit_test.rb +20 -0
  1572. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/view.erb +3 -0
  1573. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/view.rhtml +0 -0
  1574. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/metal/USAGE +8 -0
  1575. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/metal/metal_generator.rb +8 -0
  1576. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/metal/templates/metal.rb +12 -0
  1577. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/migration/USAGE +29 -0
  1578. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/migration/migration_generator.rb +20 -0
  1579. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/migration/templates/migration.rb +11 -0
  1580. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/model/USAGE +27 -0
  1581. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/model/model_generator.rb +52 -0
  1582. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/fixtures.yml +19 -0
  1583. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/migration.rb +16 -0
  1584. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/model.rb +5 -0
  1585. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/unit_test.rb +8 -0
  1586. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/observer/USAGE +13 -0
  1587. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/observer/observer_generator.rb +16 -0
  1588. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/observer/templates/observer.rb +2 -0
  1589. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/observer/templates/unit_test.rb +8 -0
  1590. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/performance_test/USAGE +8 -0
  1591. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/performance_test/performance_test_generator.rb +16 -0
  1592. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/performance_test/templates/performance_test.rb +9 -0
  1593. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/plugin/USAGE +25 -0
  1594. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/plugin/plugin_generator.rb +39 -0
  1595. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/MIT-LICENSE +20 -0
  1596. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/README +13 -0
  1597. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/Rakefile +23 -0
  1598. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/USAGE +8 -0
  1599. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/generator.rb +8 -0
  1600. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/init.rb +1 -0
  1601. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/install.rb +1 -0
  1602. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/plugin.rb +1 -0
  1603. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/tasks.rake +4 -0
  1604. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/test_helper.rb +3 -0
  1605. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/uninstall.rb +1 -0
  1606. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/unit_test.rb +8 -0
  1607. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/resource/USAGE +23 -0
  1608. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/resource/resource_generator.rb +76 -0
  1609. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/controller.rb +2 -0
  1610. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/functional_test.rb +8 -0
  1611. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/helper.rb +2 -0
  1612. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/helper_test.rb +4 -0
  1613. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/USAGE +29 -0
  1614. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/scaffold_generator.rb +103 -0
  1615. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/controller.rb +85 -0
  1616. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/functional_test.rb +45 -0
  1617. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/helper.rb +2 -0
  1618. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/helper_test.rb +4 -0
  1619. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/layout.html.erb +17 -0
  1620. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/style.css +54 -0
  1621. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_edit.html.erb +18 -0
  1622. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_index.html.erb +24 -0
  1623. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_new.html.erb +17 -0
  1624. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_show.html.erb +10 -0
  1625. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/USAGE +10 -0
  1626. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/session_migration_generator.rb +18 -0
  1627. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/templates/migration.rb +16 -0
  1628. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/lookup.rb +249 -0
  1629. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/manifest.rb +53 -0
  1630. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/options.rb +150 -0
  1631. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/scripts/destroy.rb +29 -0
  1632. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/scripts/generate.rb +7 -0
  1633. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/scripts/update.rb +12 -0
  1634. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/scripts.rb +89 -0
  1635. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/secret_key_generator.rb +24 -0
  1636. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/simple_logger.rb +46 -0
  1637. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/spec.rb +44 -0
  1638. data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator.rb +43 -0
  1639. data/spec/assets/testapp/vendor/rails/railties/lib/railties_path.rb +1 -0
  1640. data/spec/assets/testapp/vendor/rails/railties/lib/ruby_version_check.rb +17 -0
  1641. data/spec/assets/testapp/vendor/rails/railties/lib/rubyprof_ext.rb +35 -0
  1642. data/spec/assets/testapp/vendor/rails/railties/lib/source_annotation_extractor.rb +102 -0
  1643. data/spec/assets/testapp/vendor/rails/railties/lib/tasks/annotations.rake +20 -0
  1644. data/spec/assets/testapp/vendor/rails/railties/lib/tasks/databases.rake +436 -0
  1645. data/spec/assets/testapp/vendor/rails/railties/lib/tasks/documentation.rake +88 -0
  1646. data/spec/assets/testapp/vendor/rails/railties/lib/tasks/framework.rake +143 -0
  1647. data/spec/assets/testapp/vendor/rails/railties/lib/tasks/gems.rake +78 -0
  1648. data/spec/assets/testapp/vendor/rails/railties/lib/tasks/log.rake +9 -0
  1649. data/spec/assets/testapp/vendor/rails/railties/lib/tasks/middleware.rake +7 -0
  1650. data/spec/assets/testapp/vendor/rails/railties/lib/tasks/misc.rake +63 -0
  1651. data/spec/assets/testapp/vendor/rails/railties/lib/tasks/rails.rb +8 -0
  1652. data/spec/assets/testapp/vendor/rails/railties/lib/tasks/routes.rake +18 -0
  1653. data/spec/assets/testapp/vendor/rails/railties/lib/tasks/statistics.rake +17 -0
  1654. data/spec/assets/testapp/vendor/rails/railties/lib/tasks/testing.rake +139 -0
  1655. data/spec/assets/testapp/vendor/rails/railties/lib/tasks/tmp.rake +37 -0
  1656. data/spec/assets/testapp/vendor/rails/railties/lib/test_help.rb +38 -0
  1657. data/spec/assets/testapp/vendor/rails/railties/lib/webrick_server.rb +156 -0
  1658. data/spec/dependencies_spec.rb +8 -0
  1659. data/spec/gemstreamer_spec.rb +7 -0
  1660. data/spec/publisher_spec.rb +10 -0
  1661. data/spec/spec_helper.rb +6 -0
  1662. metadata +2817 -0
@@ -0,0 +1,682 @@
1
+ module ActionController
2
+ # == Overview
3
+ #
4
+ # ActionController::Resources are a way of defining RESTful \resources. A RESTful \resource, in basic terms,
5
+ # is something that can be pointed at and it will respond with a representation of the data requested.
6
+ # In real terms this could mean a user with a browser requests an HTML page, or that a desktop application
7
+ # requests XML data.
8
+ #
9
+ # RESTful design is based on the assumption that there are four generic verbs that a user of an
10
+ # application can request from a \resource (the noun).
11
+ #
12
+ # \Resources can be requested using four basic HTTP verbs (GET, POST, PUT, DELETE), the method used
13
+ # denotes the type of action that should take place.
14
+ #
15
+ # === The Different Methods and their Usage
16
+ #
17
+ # * GET - Requests for a \resource, no saving or editing of a \resource should occur in a GET request.
18
+ # * POST - Creation of \resources.
19
+ # * PUT - Editing of attributes on a \resource.
20
+ # * DELETE - Deletion of a \resource.
21
+ #
22
+ # === Examples
23
+ #
24
+ # # A GET request on the Posts resource is asking for all Posts
25
+ # GET /posts
26
+ #
27
+ # # A GET request on a single Post resource is asking for that particular Post
28
+ # GET /posts/1
29
+ #
30
+ # # A POST request on the Posts resource is asking for a Post to be created with the supplied details
31
+ # POST /posts # with => { :post => { :title => "My Whizzy New Post", :body => "I've got a brand new combine harvester" } }
32
+ #
33
+ # # A PUT request on a single Post resource is asking for a Post to be updated
34
+ # PUT /posts # with => { :id => 1, :post => { :title => "Changed Whizzy Title" } }
35
+ #
36
+ # # A DELETE request on a single Post resource is asking for it to be deleted
37
+ # DELETE /posts # with => { :id => 1 }
38
+ #
39
+ # By using the REST convention, users of our application can assume certain things about how the data
40
+ # is requested and how it is returned. Rails simplifies the routing part of RESTful design by
41
+ # supplying you with methods to create them in your routes.rb file.
42
+ #
43
+ # Read more about REST at http://en.wikipedia.org/wiki/Representational_State_Transfer
44
+ module Resources
45
+ INHERITABLE_OPTIONS = :namespace, :shallow
46
+
47
+ class Resource #:nodoc:
48
+ DEFAULT_ACTIONS = :index, :create, :new, :edit, :show, :update, :destroy
49
+
50
+ attr_reader :collection_methods, :member_methods, :new_methods
51
+ attr_reader :path_prefix, :name_prefix, :path_segment
52
+ attr_reader :plural, :singular
53
+ attr_reader :options
54
+
55
+ def initialize(entities, options)
56
+ @plural ||= entities
57
+ @singular ||= options[:singular] || plural.to_s.singularize
58
+ @path_segment = options.delete(:as) || @plural
59
+
60
+ @options = options
61
+
62
+ arrange_actions
63
+ add_default_actions
64
+ set_allowed_actions
65
+ set_prefixes
66
+ end
67
+
68
+ def controller
69
+ @controller ||= "#{options[:namespace]}#{(options[:controller] || plural).to_s}"
70
+ end
71
+
72
+ def requirements(with_id = false)
73
+ @requirements ||= @options[:requirements] || {}
74
+ @id_requirement ||= { :id => @requirements.delete(:id) || /[^#{Routing::SEPARATORS.join}]+/ }
75
+
76
+ with_id ? @requirements.merge(@id_requirement) : @requirements
77
+ end
78
+
79
+ def conditions
80
+ @conditions ||= @options[:conditions] || {}
81
+ end
82
+
83
+ def path
84
+ @path ||= "#{path_prefix}/#{path_segment}"
85
+ end
86
+
87
+ def new_path
88
+ new_action = self.options[:path_names][:new] if self.options[:path_names]
89
+ new_action ||= Base.resources_path_names[:new]
90
+ @new_path ||= "#{path}/#{new_action}"
91
+ end
92
+
93
+ def shallow_path_prefix
94
+ @shallow_path_prefix ||= @options[:shallow] ? @options[:namespace].try(:sub, /\/$/, '') : path_prefix
95
+ end
96
+
97
+ def member_path
98
+ @member_path ||= "#{shallow_path_prefix}/#{path_segment}/:id"
99
+ end
100
+
101
+ def nesting_path_prefix
102
+ @nesting_path_prefix ||= "#{shallow_path_prefix}/#{path_segment}/:#{singular}_id"
103
+ end
104
+
105
+ def shallow_name_prefix
106
+ @shallow_name_prefix ||= @options[:shallow] ? @options[:namespace].try(:gsub, /\//, '_') : name_prefix
107
+ end
108
+
109
+ def nesting_name_prefix
110
+ "#{shallow_name_prefix}#{singular}_"
111
+ end
112
+
113
+ def action_separator
114
+ @action_separator ||= Base.resource_action_separator
115
+ end
116
+
117
+ def uncountable?
118
+ @singular.to_s == @plural.to_s
119
+ end
120
+
121
+ def has_action?(action)
122
+ !DEFAULT_ACTIONS.include?(action) || action_allowed?(action)
123
+ end
124
+
125
+ protected
126
+ def arrange_actions
127
+ @collection_methods = arrange_actions_by_methods(options.delete(:collection))
128
+ @member_methods = arrange_actions_by_methods(options.delete(:member))
129
+ @new_methods = arrange_actions_by_methods(options.delete(:new))
130
+ end
131
+
132
+ def add_default_actions
133
+ add_default_action(member_methods, :get, :edit)
134
+ add_default_action(new_methods, :get, :new)
135
+ end
136
+
137
+ def set_allowed_actions
138
+ only, except = @options.values_at(:only, :except)
139
+ @allowed_actions ||= {}
140
+
141
+ if only == :all || except == :none
142
+ only = nil
143
+ except = []
144
+ elsif only == :none || except == :all
145
+ only = []
146
+ except = nil
147
+ end
148
+
149
+ if only
150
+ @allowed_actions[:only] = Array(only).map(&:to_sym)
151
+ elsif except
152
+ @allowed_actions[:except] = Array(except).map(&:to_sym)
153
+ end
154
+ end
155
+
156
+ def action_allowed?(action)
157
+ only, except = @allowed_actions.values_at(:only, :except)
158
+ (!only || only.include?(action)) && (!except || !except.include?(action))
159
+ end
160
+
161
+ def set_prefixes
162
+ @path_prefix = options.delete(:path_prefix)
163
+ @name_prefix = options.delete(:name_prefix)
164
+ end
165
+
166
+ def arrange_actions_by_methods(actions)
167
+ (actions || {}).inject({}) do |flipped_hash, (key, value)|
168
+ (flipped_hash[value] ||= []) << key
169
+ flipped_hash
170
+ end
171
+ end
172
+
173
+ def add_default_action(collection, method, action)
174
+ (collection[method] ||= []).unshift(action)
175
+ end
176
+ end
177
+
178
+ class SingletonResource < Resource #:nodoc:
179
+ def initialize(entity, options)
180
+ @singular = @plural = entity
181
+ options[:controller] ||= @singular.to_s.pluralize
182
+ super
183
+ end
184
+
185
+ alias_method :shallow_path_prefix, :path_prefix
186
+ alias_method :shallow_name_prefix, :name_prefix
187
+ alias_method :member_path, :path
188
+ alias_method :nesting_path_prefix, :path
189
+ end
190
+
191
+ # Creates named routes for implementing verb-oriented controllers
192
+ # for a collection \resource.
193
+ #
194
+ # For example:
195
+ #
196
+ # map.resources :messages
197
+ #
198
+ # will map the following actions in the corresponding controller:
199
+ #
200
+ # class MessagesController < ActionController::Base
201
+ # # GET messages_url
202
+ # def index
203
+ # # return all messages
204
+ # end
205
+ #
206
+ # # GET new_message_url
207
+ # def new
208
+ # # return an HTML form for describing a new message
209
+ # end
210
+ #
211
+ # # POST messages_url
212
+ # def create
213
+ # # create a new message
214
+ # end
215
+ #
216
+ # # GET message_url(:id => 1)
217
+ # def show
218
+ # # find and return a specific message
219
+ # end
220
+ #
221
+ # # GET edit_message_url(:id => 1)
222
+ # def edit
223
+ # # return an HTML form for editing a specific message
224
+ # end
225
+ #
226
+ # # PUT message_url(:id => 1)
227
+ # def update
228
+ # # find and update a specific message
229
+ # end
230
+ #
231
+ # # DELETE message_url(:id => 1)
232
+ # def destroy
233
+ # # delete a specific message
234
+ # end
235
+ # end
236
+ #
237
+ # Along with the routes themselves, +resources+ generates named routes for use in
238
+ # controllers and views. <tt>map.resources :messages</tt> produces the following named routes and helpers:
239
+ #
240
+ # Named Route Helpers
241
+ # ============ =====================================================
242
+ # messages messages_url, hash_for_messages_url,
243
+ # messages_path, hash_for_messages_path
244
+ #
245
+ # message message_url(id), hash_for_message_url(id),
246
+ # message_path(id), hash_for_message_path(id)
247
+ #
248
+ # new_message new_message_url, hash_for_new_message_url,
249
+ # new_message_path, hash_for_new_message_path
250
+ #
251
+ # edit_message edit_message_url(id), hash_for_edit_message_url(id),
252
+ # edit_message_path(id), hash_for_edit_message_path(id)
253
+ #
254
+ # You can use these helpers instead of +url_for+ or methods that take +url_for+ parameters. For example:
255
+ #
256
+ # redirect_to :controller => 'messages', :action => 'index'
257
+ # # and
258
+ # <%= link_to "edit this message", :controller => 'messages', :action => 'edit', :id => @message.id %>
259
+ #
260
+ # now become:
261
+ #
262
+ # redirect_to messages_url
263
+ # # and
264
+ # <%= link_to "edit this message", edit_message_url(@message) # calls @message.id automatically
265
+ #
266
+ # Since web browsers don't support the PUT and DELETE verbs, you will need to add a parameter '_method' to your
267
+ # form tags. The form helpers make this a little easier. For an update form with a <tt>@message</tt> object:
268
+ #
269
+ # <%= form_tag message_path(@message), :method => :put %>
270
+ #
271
+ # or
272
+ #
273
+ # <% form_for :message, @message, :url => message_path(@message), :html => {:method => :put} do |f| %>
274
+ #
275
+ # or
276
+ #
277
+ # <% form_for @message do |f| %>
278
+ #
279
+ # which takes into account whether <tt>@message</tt> is a new record or not and generates the
280
+ # path and method accordingly.
281
+ #
282
+ # The +resources+ method accepts the following options to customize the resulting routes:
283
+ # * <tt>:collection</tt> - Add named routes for other actions that operate on the collection.
284
+ # Takes a hash of <tt>#{action} => #{method}</tt>, where method is <tt>:get</tt>/<tt>:post</tt>/<tt>:put</tt>/<tt>:delete</tt>,
285
+ # an array of any of the previous, or <tt>:any</tt> if the method does not matter.
286
+ # These routes map to a URL like /messages/rss, with a route of +rss_messages_url+.
287
+ # * <tt>:member</tt> - Same as <tt>:collection</tt>, but for actions that operate on a specific member.
288
+ # * <tt>:new</tt> - Same as <tt>:collection</tt>, but for actions that operate on the new \resource action.
289
+ # * <tt>:controller</tt> - Specify the controller name for the routes.
290
+ # * <tt>:singular</tt> - Specify the singular name used in the member routes.
291
+ # * <tt>:requirements</tt> - Set custom routing parameter requirements; this is a hash of either
292
+ # regular expressions (which must match for the route to match) or extra parameters. For example:
293
+ #
294
+ # map.resource :profile, :path_prefix => ':name', :requirements => { :name => /[a-zA-Z]+/, :extra => 'value' }
295
+ #
296
+ # will only match if the first part is alphabetic, and will pass the parameter :extra to the controller.
297
+ # * <tt>:conditions</tt> - Specify custom routing recognition conditions. \Resources sets the <tt>:method</tt> value for the method-specific routes.
298
+ # * <tt>:as</tt> - Specify a different \resource name to use in the URL path. For example:
299
+ # # products_path == '/productos'
300
+ # map.resources :products, :as => 'productos' do |product|
301
+ # # product_reviews_path(product) == '/productos/1234/comentarios'
302
+ # product.resources :product_reviews, :as => 'comentarios'
303
+ # end
304
+ #
305
+ # * <tt>:has_one</tt> - Specify nested \resources, this is a shorthand for mapping singleton \resources beneath the current.
306
+ # * <tt>:has_many</tt> - Same has <tt>:has_one</tt>, but for plural \resources.
307
+ #
308
+ # You may directly specify the routing association with +has_one+ and +has_many+ like:
309
+ #
310
+ # map.resources :notes, :has_one => :author, :has_many => [:comments, :attachments]
311
+ #
312
+ # This is the same as:
313
+ #
314
+ # map.resources :notes do |notes|
315
+ # notes.resource :author
316
+ # notes.resources :comments
317
+ # notes.resources :attachments
318
+ # end
319
+ #
320
+ # * <tt>:path_names</tt> - Specify different path names for the actions. For example:
321
+ # # new_products_path == '/productos/nuevo'
322
+ # # bids_product_path(1) == '/productos/1/licitacoes'
323
+ # map.resources :products, :as => 'productos', :member => { :bids => :get }, :path_names => { :new => 'nuevo', :bids => 'licitacoes' }
324
+ #
325
+ # You can also set default action names from an environment, like this:
326
+ # config.action_controller.resources_path_names = { :new => 'nuevo', :edit => 'editar' }
327
+ #
328
+ # * <tt>:path_prefix</tt> - Set a prefix to the routes with required route variables.
329
+ #
330
+ # Weblog comments usually belong to a post, so you might use +resources+ like:
331
+ #
332
+ # map.resources :articles
333
+ # map.resources :comments, :path_prefix => '/articles/:article_id'
334
+ #
335
+ # You can nest +resources+ calls to set this automatically:
336
+ #
337
+ # map.resources :articles do |article|
338
+ # article.resources :comments
339
+ # end
340
+ #
341
+ # The comment \resources work the same, but must now include a value for <tt>:article_id</tt>.
342
+ #
343
+ # article_comments_url(@article)
344
+ # article_comment_url(@article, @comment)
345
+ #
346
+ # article_comments_url(:article_id => @article)
347
+ # article_comment_url(:article_id => @article, :id => @comment)
348
+ #
349
+ # If you don't want to load all objects from the database you might want to use the <tt>article_id</tt> directly:
350
+ #
351
+ # articles_comments_url(@comment.article_id, @comment)
352
+ #
353
+ # * <tt>:name_prefix</tt> - Define a prefix for all generated routes, usually ending in an underscore.
354
+ # Use this if you have named routes that may clash.
355
+ #
356
+ # map.resources :tags, :path_prefix => '/books/:book_id', :name_prefix => 'book_'
357
+ # map.resources :tags, :path_prefix => '/toys/:toy_id', :name_prefix => 'toy_'
358
+ #
359
+ # You may also use <tt>:name_prefix</tt> to override the generic named routes in a nested \resource:
360
+ #
361
+ # map.resources :articles do |article|
362
+ # article.resources :comments, :name_prefix => nil
363
+ # end
364
+ #
365
+ # This will yield named \resources like so:
366
+ #
367
+ # comments_url(@article)
368
+ # comment_url(@article, @comment)
369
+ #
370
+ # * <tt>:shallow</tt> - If true, paths for nested resources which reference a specific member
371
+ # (ie. those with an :id parameter) will not use the parent path prefix or name prefix.
372
+ #
373
+ # The <tt>:shallow</tt> option is inherited by any nested resource(s).
374
+ #
375
+ # For example, 'users', 'posts' and 'comments' all use shallow paths with the following nested resources:
376
+ #
377
+ # map.resources :users, :shallow => true do |user|
378
+ # user.resources :posts do |post|
379
+ # post.resources :comments
380
+ # end
381
+ # end
382
+ # # --> GET /users/1/posts (maps to the PostsController#index action as usual)
383
+ # # also adds the usual named route called "user_posts"
384
+ # # --> GET /posts/2 (maps to the PostsController#show action as if it were not nested)
385
+ # # also adds the named route called "post"
386
+ # # --> GET /posts/2/comments (maps to the CommentsController#index action)
387
+ # # also adds the named route called "post_comments"
388
+ # # --> GET /comments/2 (maps to the CommentsController#show action as if it were not nested)
389
+ # # also adds the named route called "comment"
390
+ #
391
+ # You may also use <tt>:shallow</tt> in combination with the +has_one+ and +has_many+ shorthand notations like:
392
+ #
393
+ # map.resources :users, :has_many => { :posts => :comments }, :shallow => true
394
+ #
395
+ # * <tt>:only</tt> and <tt>:except</tt> - Specify which of the seven default actions should be routed to.
396
+ #
397
+ # <tt>:only</tt> and <tt>:except</tt> may be set to <tt>:all</tt>, <tt>:none</tt>, an action name or a
398
+ # list of action names. By default, routes are generated for all seven actions.
399
+ #
400
+ # For example:
401
+ #
402
+ # map.resources :posts, :only => [:index, :show] do |post|
403
+ # post.resources :comments, :except => [:update, :destroy]
404
+ # end
405
+ # # --> GET /posts (maps to the PostsController#index action)
406
+ # # --> POST /posts (fails)
407
+ # # --> GET /posts/1 (maps to the PostsController#show action)
408
+ # # --> DELETE /posts/1 (fails)
409
+ # # --> POST /posts/1/comments (maps to the CommentsController#create action)
410
+ # # --> PUT /posts/1/comments/1 (fails)
411
+ #
412
+ # If <tt>map.resources</tt> is called with multiple resources, they all get the same options applied.
413
+ #
414
+ # Examples:
415
+ #
416
+ # map.resources :messages, :path_prefix => "/thread/:thread_id"
417
+ # # --> GET /thread/7/messages/1
418
+ #
419
+ # map.resources :messages, :collection => { :rss => :get }
420
+ # # --> GET /messages/rss (maps to the #rss action)
421
+ # # also adds a named route called "rss_messages"
422
+ #
423
+ # map.resources :messages, :member => { :mark => :post }
424
+ # # --> POST /messages/1/mark (maps to the #mark action)
425
+ # # also adds a named route called "mark_message"
426
+ #
427
+ # map.resources :messages, :new => { :preview => :post }
428
+ # # --> POST /messages/new/preview (maps to the #preview action)
429
+ # # also adds a named route called "preview_new_message"
430
+ #
431
+ # map.resources :messages, :new => { :new => :any, :preview => :post }
432
+ # # --> POST /messages/new/preview (maps to the #preview action)
433
+ # # also adds a named route called "preview_new_message"
434
+ # # --> /messages/new can be invoked via any request method
435
+ #
436
+ # map.resources :messages, :controller => "categories",
437
+ # :path_prefix => "/category/:category_id",
438
+ # :name_prefix => "category_"
439
+ # # --> GET /categories/7/messages/1
440
+ # # has named route "category_message"
441
+ #
442
+ # The +resources+ method sets HTTP method restrictions on the routes it generates. For example, making an
443
+ # HTTP POST on <tt>new_message_url</tt> will raise a RoutingError exception. The default route in
444
+ # <tt>config/routes.rb</tt> overrides this and allows invalid HTTP methods for \resource routes.
445
+ def resources(*entities, &block)
446
+ options = entities.extract_options!
447
+ entities.each { |entity| map_resource(entity, options.dup, &block) }
448
+ end
449
+
450
+ # Creates named routes for implementing verb-oriented controllers for a singleton \resource.
451
+ # A singleton \resource is global to its current context. For unnested singleton \resources,
452
+ # the \resource is global to the current user visiting the application, such as a user's
453
+ # <tt>/account</tt> profile. For nested singleton \resources, the \resource is global to its parent
454
+ # \resource, such as a <tt>projects</tt> \resource that <tt>has_one :project_manager</tt>.
455
+ # The <tt>project_manager</tt> should be mapped as a singleton \resource under <tt>projects</tt>:
456
+ #
457
+ # map.resources :projects do |project|
458
+ # project.resource :project_manager
459
+ # end
460
+ #
461
+ # See +resources+ for general conventions. These are the main differences:
462
+ # * A singular name is given to <tt>map.resource</tt>. The default controller name is still taken from the plural name.
463
+ # * To specify a custom plural name, use the <tt>:plural</tt> option. There is no <tt>:singular</tt> option.
464
+ # * No default index route is created for the singleton \resource controller.
465
+ # * When nesting singleton \resources, only the singular name is used as the path prefix (example: 'account/messages/1')
466
+ #
467
+ # For example:
468
+ #
469
+ # map.resource :account
470
+ #
471
+ # maps these actions in the Accounts controller:
472
+ #
473
+ # class AccountsController < ActionController::Base
474
+ # # GET new_account_url
475
+ # def new
476
+ # # return an HTML form for describing the new account
477
+ # end
478
+ #
479
+ # # POST account_url
480
+ # def create
481
+ # # create an account
482
+ # end
483
+ #
484
+ # # GET account_url
485
+ # def show
486
+ # # find and return the account
487
+ # end
488
+ #
489
+ # # GET edit_account_url
490
+ # def edit
491
+ # # return an HTML form for editing the account
492
+ # end
493
+ #
494
+ # # PUT account_url
495
+ # def update
496
+ # # find and update the account
497
+ # end
498
+ #
499
+ # # DELETE account_url
500
+ # def destroy
501
+ # # delete the account
502
+ # end
503
+ # end
504
+ #
505
+ # Along with the routes themselves, +resource+ generates named routes for
506
+ # use in controllers and views. <tt>map.resource :account</tt> produces
507
+ # these named routes and helpers:
508
+ #
509
+ # Named Route Helpers
510
+ # ============ =============================================
511
+ # account account_url, hash_for_account_url,
512
+ # account_path, hash_for_account_path
513
+ #
514
+ # new_account new_account_url, hash_for_new_account_url,
515
+ # new_account_path, hash_for_new_account_path
516
+ #
517
+ # edit_account edit_account_url, hash_for_edit_account_url,
518
+ # edit_account_path, hash_for_edit_account_path
519
+ def resource(*entities, &block)
520
+ options = entities.extract_options!
521
+ entities.each { |entity| map_singleton_resource(entity, options.dup, &block) }
522
+ end
523
+
524
+ private
525
+ def map_resource(entities, options = {}, &block)
526
+ resource = Resource.new(entities, options)
527
+
528
+ with_options :controller => resource.controller do |map|
529
+ map_associations(resource, options)
530
+
531
+ if block_given?
532
+ with_options(options.slice(*INHERITABLE_OPTIONS).merge(:path_prefix => resource.nesting_path_prefix, :name_prefix => resource.nesting_name_prefix), &block)
533
+ end
534
+
535
+ map_collection_actions(map, resource)
536
+ map_default_collection_actions(map, resource)
537
+ map_new_actions(map, resource)
538
+ map_member_actions(map, resource)
539
+ end
540
+ end
541
+
542
+ def map_singleton_resource(entities, options = {}, &block)
543
+ resource = SingletonResource.new(entities, options)
544
+
545
+ with_options :controller => resource.controller do |map|
546
+ map_associations(resource, options)
547
+
548
+ if block_given?
549
+ with_options(options.slice(*INHERITABLE_OPTIONS).merge(:path_prefix => resource.nesting_path_prefix, :name_prefix => resource.nesting_name_prefix), &block)
550
+ end
551
+
552
+ map_collection_actions(map, resource)
553
+ map_new_actions(map, resource)
554
+ map_member_actions(map, resource)
555
+ map_default_singleton_actions(map, resource)
556
+ end
557
+ end
558
+
559
+ def map_associations(resource, options)
560
+ map_has_many_associations(resource, options.delete(:has_many), options) if options[:has_many]
561
+
562
+ path_prefix = "#{options.delete(:path_prefix)}#{resource.nesting_path_prefix}"
563
+ name_prefix = "#{options.delete(:name_prefix)}#{resource.nesting_name_prefix}"
564
+
565
+ Array(options[:has_one]).each do |association|
566
+ resource(association, options.slice(*INHERITABLE_OPTIONS).merge(:path_prefix => path_prefix, :name_prefix => name_prefix))
567
+ end
568
+ end
569
+
570
+ def map_has_many_associations(resource, associations, options)
571
+ case associations
572
+ when Hash
573
+ associations.each do |association,has_many|
574
+ map_has_many_associations(resource, association, options.merge(:has_many => has_many))
575
+ end
576
+ when Array
577
+ associations.each do |association|
578
+ map_has_many_associations(resource, association, options)
579
+ end
580
+ when Symbol, String
581
+ resources(associations, options.slice(*INHERITABLE_OPTIONS).merge(:path_prefix => resource.nesting_path_prefix, :name_prefix => resource.nesting_name_prefix, :has_many => options[:has_many]))
582
+ else
583
+ end
584
+ end
585
+
586
+ def map_collection_actions(map, resource)
587
+ resource.collection_methods.each do |method, actions|
588
+ actions.each do |action|
589
+ [method].flatten.each do |m|
590
+ action_path = resource.options[:path_names][action] if resource.options[:path_names].is_a?(Hash)
591
+ action_path ||= action
592
+
593
+ map_resource_routes(map, resource, action, "#{resource.path}#{resource.action_separator}#{action_path}", "#{action}_#{resource.name_prefix}#{resource.plural}", m)
594
+ end
595
+ end
596
+ end
597
+ end
598
+
599
+ def map_default_collection_actions(map, resource)
600
+ index_route_name = "#{resource.name_prefix}#{resource.plural}"
601
+
602
+ if resource.uncountable?
603
+ index_route_name << "_index"
604
+ end
605
+
606
+ map_resource_routes(map, resource, :index, resource.path, index_route_name)
607
+ map_resource_routes(map, resource, :create, resource.path, index_route_name)
608
+ end
609
+
610
+ def map_default_singleton_actions(map, resource)
611
+ map_resource_routes(map, resource, :create, resource.path, "#{resource.shallow_name_prefix}#{resource.singular}")
612
+ end
613
+
614
+ def map_new_actions(map, resource)
615
+ resource.new_methods.each do |method, actions|
616
+ actions.each do |action|
617
+ route_path = resource.new_path
618
+ route_name = "new_#{resource.name_prefix}#{resource.singular}"
619
+
620
+ unless action == :new
621
+ route_path = "#{route_path}#{resource.action_separator}#{action}"
622
+ route_name = "#{action}_#{route_name}"
623
+ end
624
+
625
+ map_resource_routes(map, resource, action, route_path, route_name, method)
626
+ end
627
+ end
628
+ end
629
+
630
+ def map_member_actions(map, resource)
631
+ resource.member_methods.each do |method, actions|
632
+ actions.each do |action|
633
+ [method].flatten.each do |m|
634
+ action_path = resource.options[:path_names][action] if resource.options[:path_names].is_a?(Hash)
635
+ action_path ||= Base.resources_path_names[action] || action
636
+
637
+ map_resource_routes(map, resource, action, "#{resource.member_path}#{resource.action_separator}#{action_path}", "#{action}_#{resource.shallow_name_prefix}#{resource.singular}", m, { :force_id => true })
638
+ end
639
+ end
640
+ end
641
+
642
+ route_path = "#{resource.shallow_name_prefix}#{resource.singular}"
643
+ map_resource_routes(map, resource, :show, resource.member_path, route_path)
644
+ map_resource_routes(map, resource, :update, resource.member_path, route_path)
645
+ map_resource_routes(map, resource, :destroy, resource.member_path, route_path)
646
+ end
647
+
648
+ def map_resource_routes(map, resource, action, route_path, route_name = nil, method = nil, resource_options = {} )
649
+ if resource.has_action?(action)
650
+ action_options = action_options_for(action, resource, method, resource_options)
651
+ formatted_route_path = "#{route_path}.:format"
652
+
653
+ if route_name && @set.named_routes[route_name.to_sym].nil?
654
+ map.named_route(route_name, formatted_route_path, action_options)
655
+ else
656
+ map.connect(formatted_route_path, action_options)
657
+ end
658
+ end
659
+ end
660
+
661
+ def add_conditions_for(conditions, method)
662
+ returning({:conditions => conditions.dup}) do |options|
663
+ options[:conditions][:method] = method unless method == :any
664
+ end
665
+ end
666
+
667
+ def action_options_for(action, resource, method = nil, resource_options = {})
668
+ default_options = { :action => action.to_s }
669
+ require_id = !resource.kind_of?(SingletonResource)
670
+ force_id = resource_options[:force_id] && !resource.kind_of?(SingletonResource)
671
+
672
+ case default_options[:action]
673
+ when "index", "new"; default_options.merge(add_conditions_for(resource.conditions, method || :get)).merge(resource.requirements)
674
+ when "create"; default_options.merge(add_conditions_for(resource.conditions, method || :post)).merge(resource.requirements)
675
+ when "show", "edit"; default_options.merge(add_conditions_for(resource.conditions, method || :get)).merge(resource.requirements(require_id))
676
+ when "update"; default_options.merge(add_conditions_for(resource.conditions, method || :put)).merge(resource.requirements(require_id))
677
+ when "destroy"; default_options.merge(add_conditions_for(resource.conditions, method || :delete)).merge(resource.requirements(require_id))
678
+ else default_options.merge(add_conditions_for(resource.conditions, method)).merge(resource.requirements(force_id))
679
+ end
680
+ end
681
+ end
682
+ end