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,976 @@
1
+ require "date"
2
+ require 'action_view/helpers/tag_helper'
3
+
4
+ module ActionView
5
+ module Helpers
6
+ # The Date Helper primarily creates select/option tags for different kinds of dates and date elements. All of the
7
+ # select-type methods share a number of common options that are as follows:
8
+ #
9
+ # * <tt>:prefix</tt> - overwrites the default prefix of "date" used for the select names. So specifying "birthday"
10
+ # would give birthday[month] instead of date[month] if passed to the select_month method.
11
+ # * <tt>:include_blank</tt> - set to true if it should be possible to set an empty date.
12
+ # * <tt>:discard_type</tt> - set to true if you want to discard the type part of the select name. If set to true,
13
+ # the select_month method would use simply "date" (which can be overwritten using <tt>:prefix</tt>) instead of
14
+ # "date[month]".
15
+ module DateHelper
16
+ # Reports the approximate distance in time between two Time or Date objects or integers as seconds.
17
+ # Set <tt>include_seconds</tt> to true if you want more detailed approximations when distance < 1 min, 29 secs
18
+ # Distances are reported based on the following table:
19
+ #
20
+ # 0 <-> 29 secs # => less than a minute
21
+ # 30 secs <-> 1 min, 29 secs # => 1 minute
22
+ # 1 min, 30 secs <-> 44 mins, 29 secs # => [2..44] minutes
23
+ # 44 mins, 30 secs <-> 89 mins, 29 secs # => about 1 hour
24
+ # 89 mins, 29 secs <-> 23 hrs, 59 mins, 29 secs # => about [2..24] hours
25
+ # 23 hrs, 59 mins, 29 secs <-> 47 hrs, 59 mins, 29 secs # => 1 day
26
+ # 47 hrs, 59 mins, 29 secs <-> 29 days, 23 hrs, 59 mins, 29 secs # => [2..29] days
27
+ # 29 days, 23 hrs, 59 mins, 30 secs <-> 59 days, 23 hrs, 59 mins, 29 secs # => about 1 month
28
+ # 59 days, 23 hrs, 59 mins, 30 secs <-> 1 yr minus 1 sec # => [2..12] months
29
+ # 1 yr <-> 2 yrs minus 1 secs # => about 1 year
30
+ # 2 yrs <-> max time or date # => over [2..X] years
31
+ #
32
+ # With <tt>include_seconds</tt> = true and the difference < 1 minute 29 seconds:
33
+ # 0-4 secs # => less than 5 seconds
34
+ # 5-9 secs # => less than 10 seconds
35
+ # 10-19 secs # => less than 20 seconds
36
+ # 20-39 secs # => half a minute
37
+ # 40-59 secs # => less than a minute
38
+ # 60-89 secs # => 1 minute
39
+ #
40
+ # ==== Examples
41
+ # from_time = Time.now
42
+ # distance_of_time_in_words(from_time, from_time + 50.minutes) # => about 1 hour
43
+ # distance_of_time_in_words(from_time, 50.minutes.from_now) # => about 1 hour
44
+ # distance_of_time_in_words(from_time, from_time + 15.seconds) # => less than a minute
45
+ # distance_of_time_in_words(from_time, from_time + 15.seconds, true) # => less than 20 seconds
46
+ # distance_of_time_in_words(from_time, 3.years.from_now) # => over 3 years
47
+ # distance_of_time_in_words(from_time, from_time + 60.hours) # => about 3 days
48
+ # distance_of_time_in_words(from_time, from_time + 45.seconds, true) # => less than a minute
49
+ # distance_of_time_in_words(from_time, from_time - 45.seconds, true) # => less than a minute
50
+ # distance_of_time_in_words(from_time, 76.seconds.from_now) # => 1 minute
51
+ # distance_of_time_in_words(from_time, from_time + 1.year + 3.days) # => about 1 year
52
+ # distance_of_time_in_words(from_time, from_time + 4.years + 9.days + 30.minutes + 5.seconds) # => over 4 years
53
+ #
54
+ # to_time = Time.now + 6.years + 19.days
55
+ # distance_of_time_in_words(from_time, to_time, true) # => over 6 years
56
+ # distance_of_time_in_words(to_time, from_time, true) # => over 6 years
57
+ # distance_of_time_in_words(Time.now, Time.now) # => less than a minute
58
+ #
59
+ def distance_of_time_in_words(from_time, to_time = 0, include_seconds = false, options = {})
60
+ from_time = from_time.to_time if from_time.respond_to?(:to_time)
61
+ to_time = to_time.to_time if to_time.respond_to?(:to_time)
62
+ distance_in_minutes = (((to_time - from_time).abs)/60).round
63
+ distance_in_seconds = ((to_time - from_time).abs).round
64
+
65
+ I18n.with_options :locale => options[:locale], :scope => :'datetime.distance_in_words' do |locale|
66
+ case distance_in_minutes
67
+ when 0..1
68
+ return distance_in_minutes == 0 ?
69
+ locale.t(:less_than_x_minutes, :count => 1) :
70
+ locale.t(:x_minutes, :count => distance_in_minutes) unless include_seconds
71
+
72
+ case distance_in_seconds
73
+ when 0..4 then locale.t :less_than_x_seconds, :count => 5
74
+ when 5..9 then locale.t :less_than_x_seconds, :count => 10
75
+ when 10..19 then locale.t :less_than_x_seconds, :count => 20
76
+ when 20..39 then locale.t :half_a_minute
77
+ when 40..59 then locale.t :less_than_x_minutes, :count => 1
78
+ else locale.t :x_minutes, :count => 1
79
+ end
80
+
81
+ when 2..44 then locale.t :x_minutes, :count => distance_in_minutes
82
+ when 45..89 then locale.t :about_x_hours, :count => 1
83
+ when 90..1439 then locale.t :about_x_hours, :count => (distance_in_minutes.to_f / 60.0).round
84
+ when 1440..2879 then locale.t :x_days, :count => 1
85
+ when 2880..43199 then locale.t :x_days, :count => (distance_in_minutes / 1440).round
86
+ when 43200..86399 then locale.t :about_x_months, :count => 1
87
+ when 86400..525599 then locale.t :x_months, :count => (distance_in_minutes / 43200).round
88
+ when 525600..1051199 then locale.t :about_x_years, :count => 1
89
+ else locale.t :over_x_years, :count => (distance_in_minutes / 525600).round
90
+ end
91
+ end
92
+ end
93
+
94
+ # Like distance_of_time_in_words, but where <tt>to_time</tt> is fixed to <tt>Time.now</tt>.
95
+ #
96
+ # ==== Examples
97
+ # time_ago_in_words(3.minutes.from_now) # => 3 minutes
98
+ # time_ago_in_words(Time.now - 15.hours) # => 15 hours
99
+ # time_ago_in_words(Time.now) # => less than a minute
100
+ #
101
+ # from_time = Time.now - 3.days - 14.minutes - 25.seconds # => 3 days
102
+ def time_ago_in_words(from_time, include_seconds = false)
103
+ distance_of_time_in_words(from_time, Time.now, include_seconds)
104
+ end
105
+
106
+ alias_method :distance_of_time_in_words_to_now, :time_ago_in_words
107
+
108
+ # Returns a set of select tags (one for year, month, and day) pre-selected for accessing a specified date-based
109
+ # attribute (identified by +method+) on an object assigned to the template (identified by +object+). You can
110
+ # the output in the +options+ hash.
111
+ #
112
+ # ==== Options
113
+ # * <tt>:use_month_numbers</tt> - Set to true if you want to use month numbers rather than month names (e.g.
114
+ # "2" instead of "February").
115
+ # * <tt>:use_short_month</tt> - Set to true if you want to use the abbreviated month name instead of the full
116
+ # name (e.g. "Feb" instead of "February").
117
+ # * <tt>:add_month_number</tt> - Set to true if you want to show both, the month's number and name (e.g.
118
+ # "2 - February" instead of "February").
119
+ # * <tt>:use_month_names</tt> - Set to an array with 12 month names if you want to customize month names.
120
+ # Note: You can also use Rails' new i18n functionality for this.
121
+ # * <tt>:date_separator</tt> - Specifies a string to separate the date fields. Default is "" (i.e. nothing).
122
+ # * <tt>:start_year</tt> - Set the start year for the year select. Default is <tt>Time.now.year - 5</tt>.
123
+ # * <tt>:end_year</tt> - Set the end year for the year select. Default is <tt>Time.now.year + 5</tt>.
124
+ # * <tt>:discard_day</tt> - Set to true if you don't want to show a day select. This includes the day
125
+ # as a hidden field instead of showing a select field. Also note that this implicitly sets the day to be the
126
+ # first of the given month in order to not create invalid dates like 31 February.
127
+ # * <tt>:discard_month</tt> - Set to true if you don't want to show a month select. This includes the month
128
+ # as a hidden field instead of showing a select field. Also note that this implicitly sets :discard_day to true.
129
+ # * <tt>:discard_year</tt> - Set to true if you don't want to show a year select. This includes the year
130
+ # as a hidden field instead of showing a select field.
131
+ # * <tt>:order</tt> - Set to an array containing <tt>:day</tt>, <tt>:month</tt> and <tt>:year</tt> do
132
+ # customize the order in which the select fields are shown. If you leave out any of the symbols, the respective
133
+ # select will not be shown (like when you set <tt>:discard_xxx => true</tt>. Defaults to the order defined in
134
+ # the respective locale (e.g. [:year, :month, :day] in the en locale that ships with Rails).
135
+ # * <tt>:include_blank</tt> - Include a blank option in every select field so it's possible to set empty
136
+ # dates.
137
+ # * <tt>:default</tt> - Set a default date if the affected date isn't set or is nil.
138
+ # * <tt>:disabled</tt> - Set to true if you want show the select fields as disabled.
139
+ # * <tt>:prompt</tt> - Set to true (for a generic prompt), a prompt string or a hash of prompt strings
140
+ # for <tt>:year</tt>, <tt>:month</tt>, <tt>:day</tt>, <tt>:hour</tt>, <tt>:minute</tt> and <tt>:second</tt>.
141
+ # Setting this option prepends a select option with a generic prompt (Day, Month, Year, Hour, Minute, Seconds)
142
+ # or the given prompt string.
143
+ #
144
+ # If anything is passed in the +html_options+ hash it will be applied to every select tag in the set.
145
+ #
146
+ # NOTE: Discarded selects will default to 1. So if no month select is available, January will be assumed.
147
+ #
148
+ # ==== Examples
149
+ # # Generates a date select that when POSTed is stored in the post variable, in the written_on attribute
150
+ # date_select("post", "written_on")
151
+ #
152
+ # # Generates a date select that when POSTed is stored in the post variable, in the written_on attribute,
153
+ # # with the year in the year drop down box starting at 1995.
154
+ # date_select("post", "written_on", :start_year => 1995)
155
+ #
156
+ # # Generates a date select that when POSTed is stored in the post variable, in the written_on attribute,
157
+ # # with the year in the year drop down box starting at 1995, numbers used for months instead of words,
158
+ # # and without a day select box.
159
+ # date_select("post", "written_on", :start_year => 1995, :use_month_numbers => true,
160
+ # :discard_day => true, :include_blank => true)
161
+ #
162
+ # # Generates a date select that when POSTed is stored in the post variable, in the written_on attribute
163
+ # # with the fields ordered as day, month, year rather than month, day, year.
164
+ # date_select("post", "written_on", :order => [:day, :month, :year])
165
+ #
166
+ # # Generates a date select that when POSTed is stored in the user variable, in the birthday attribute
167
+ # # lacking a year field.
168
+ # date_select("user", "birthday", :order => [:month, :day])
169
+ #
170
+ # # Generates a date select that when POSTed is stored in the user variable, in the birthday attribute
171
+ # # which is initially set to the date 3 days from the current date
172
+ # date_select("post", "written_on", :default => 3.days.from_now)
173
+ #
174
+ # # Generates a date select that when POSTed is stored in the credit_card variable, in the bill_due attribute
175
+ # # that will have a default day of 20.
176
+ # date_select("credit_card", "bill_due", :default => { :day => 20 })
177
+ #
178
+ # # Generates a date select with custom prompts
179
+ # date_select("post", "written_on", :prompt => { :day => 'Select day', :month => 'Select month', :year => 'Select year' })
180
+ #
181
+ # The selects are prepared for multi-parameter assignment to an Active Record object.
182
+ #
183
+ # Note: If the day is not included as an option but the month is, the day will be set to the 1st to ensure that
184
+ # all month choices are valid.
185
+ def date_select(object_name, method, options = {}, html_options = {})
186
+ InstanceTag.new(object_name, method, self, options.delete(:object)).to_date_select_tag(options, html_options)
187
+ end
188
+
189
+ # Returns a set of select tags (one for hour, minute and optionally second) pre-selected for accessing a
190
+ # specified time-based attribute (identified by +method+) on an object assigned to the template (identified by
191
+ # +object+). You can include the seconds with <tt>:include_seconds</tt>.
192
+ #
193
+ # This method will also generate 3 input hidden tags, for the actual year, month and day unless the option
194
+ # <tt>:ignore_date</tt> is set to +true+.
195
+ #
196
+ # If anything is passed in the html_options hash it will be applied to every select tag in the set.
197
+ #
198
+ # ==== Examples
199
+ # # Creates a time select tag that, when POSTed, will be stored in the post variable in the sunrise attribute
200
+ # time_select("post", "sunrise")
201
+ #
202
+ # # Creates a time select tag that, when POSTed, will be stored in the order variable in the submitted
203
+ # # attribute
204
+ # time_select("order", "submitted")
205
+ #
206
+ # # Creates a time select tag that, when POSTed, will be stored in the mail variable in the sent_at attribute
207
+ # time_select("mail", "sent_at")
208
+ #
209
+ # # Creates a time select tag with a seconds field that, when POSTed, will be stored in the post variables in
210
+ # # the sunrise attribute.
211
+ # time_select("post", "start_time", :include_seconds => true)
212
+ #
213
+ # # Creates a time select tag with a seconds field that, when POSTed, will be stored in the entry variables in
214
+ # # the submission_time attribute.
215
+ # time_select("entry", "submission_time", :include_seconds => true)
216
+ #
217
+ # # You can set the :minute_step to 15 which will give you: 00, 15, 30 and 45.
218
+ # time_select 'game', 'game_time', {:minute_step => 15}
219
+ #
220
+ # # Creates a time select tag with a custom prompt. Use :prompt => true for generic prompts.
221
+ # time_select("post", "written_on", :prompt => {:hour => 'Choose hour', :minute => 'Choose minute', :second => 'Choose seconds'})
222
+ # time_select("post", "written_on", :prompt => {:hour => true}) # generic prompt for hours
223
+ # time_select("post", "written_on", :prompt => true) # generic prompts for all
224
+ #
225
+ # The selects are prepared for multi-parameter assignment to an Active Record object.
226
+ #
227
+ # Note: If the day is not included as an option but the month is, the day will be set to the 1st to ensure that
228
+ # all month choices are valid.
229
+ def time_select(object_name, method, options = {}, html_options = {})
230
+ InstanceTag.new(object_name, method, self, options.delete(:object)).to_time_select_tag(options, html_options)
231
+ end
232
+
233
+ # Returns a set of select tags (one for year, month, day, hour, and minute) pre-selected for accessing a
234
+ # specified datetime-based attribute (identified by +method+) on an object assigned to the template (identified
235
+ # by +object+). Examples:
236
+ #
237
+ # If anything is passed in the html_options hash it will be applied to every select tag in the set.
238
+ #
239
+ # ==== Examples
240
+ # # Generates a datetime select that, when POSTed, will be stored in the post variable in the written_on
241
+ # # attribute
242
+ # datetime_select("post", "written_on")
243
+ #
244
+ # # Generates a datetime select with a year select that starts at 1995 that, when POSTed, will be stored in the
245
+ # # post variable in the written_on attribute.
246
+ # datetime_select("post", "written_on", :start_year => 1995)
247
+ #
248
+ # # Generates a datetime select with a default value of 3 days from the current time that, when POSTed, will
249
+ # # be stored in the trip variable in the departing attribute.
250
+ # datetime_select("trip", "departing", :default => 3.days.from_now)
251
+ #
252
+ # # Generates a datetime select that discards the type that, when POSTed, will be stored in the post variable
253
+ # # as the written_on attribute.
254
+ # datetime_select("post", "written_on", :discard_type => true)
255
+ #
256
+ # # Generates a datetime select with a custom prompt. Use :prompt=>true for generic prompts.
257
+ # datetime_select("post", "written_on", :prompt => {:day => 'Choose day', :month => 'Choose month', :year => 'Choose year'})
258
+ # datetime_select("post", "written_on", :prompt => {:hour => true}) # generic prompt for hours
259
+ # datetime_select("post", "written_on", :prompt => true) # generic prompts for all
260
+ #
261
+ # The selects are prepared for multi-parameter assignment to an Active Record object.
262
+ def datetime_select(object_name, method, options = {}, html_options = {})
263
+ InstanceTag.new(object_name, method, self, options.delete(:object)).to_datetime_select_tag(options, html_options)
264
+ end
265
+
266
+ # Returns a set of html select-tags (one for year, month, day, hour, and minute) pre-selected with the
267
+ # +datetime+. It's also possible to explicitly set the order of the tags using the <tt>:order</tt> option with
268
+ # an array of symbols <tt>:year</tt>, <tt>:month</tt> and <tt>:day</tt> in the desired order. If you do not
269
+ # supply a Symbol, it will be appended onto the <tt>:order</tt> passed in. You can also add
270
+ # <tt>:date_separator</tt>, <tt>:datetime_separator</tt> and <tt>:time_separator</tt> keys to the +options+ to
271
+ # control visual display of the elements.
272
+ #
273
+ # If anything is passed in the html_options hash it will be applied to every select tag in the set.
274
+ #
275
+ # ==== Examples
276
+ # my_date_time = Time.now + 4.days
277
+ #
278
+ # # Generates a datetime select that defaults to the datetime in my_date_time (four days after today)
279
+ # select_datetime(my_date_time)
280
+ #
281
+ # # Generates a datetime select that defaults to today (no specified datetime)
282
+ # select_datetime()
283
+ #
284
+ # # Generates a datetime select that defaults to the datetime in my_date_time (four days after today)
285
+ # # with the fields ordered year, month, day rather than month, day, year.
286
+ # select_datetime(my_date_time, :order => [:year, :month, :day])
287
+ #
288
+ # # Generates a datetime select that defaults to the datetime in my_date_time (four days after today)
289
+ # # with a '/' between each date field.
290
+ # select_datetime(my_date_time, :date_separator => '/')
291
+ #
292
+ # # Generates a datetime select that defaults to the datetime in my_date_time (four days after today)
293
+ # # with a date fields separated by '/', time fields separated by '' and the date and time fields
294
+ # # separated by a comma (',').
295
+ # select_datetime(my_date_time, :date_separator => '/', :time_separator => '', :datetime_separator => ',')
296
+ #
297
+ # # Generates a datetime select that discards the type of the field and defaults to the datetime in
298
+ # # my_date_time (four days after today)
299
+ # select_datetime(my_date_time, :discard_type => true)
300
+ #
301
+ # # Generates a datetime select that defaults to the datetime in my_date_time (four days after today)
302
+ # # prefixed with 'payday' rather than 'date'
303
+ # select_datetime(my_date_time, :prefix => 'payday')
304
+ #
305
+ # # Generates a datetime select with a custom prompt. Use :prompt=>true for generic prompts.
306
+ # select_datetime(my_date_time, :prompt => {:day => 'Choose day', :month => 'Choose month', :year => 'Choose year'})
307
+ # select_datetime(my_date_time, :prompt => {:hour => true}) # generic prompt for hours
308
+ # select_datetime(my_date_time, :prompt => true) # generic prompts for all
309
+ #
310
+ def select_datetime(datetime = Time.current, options = {}, html_options = {})
311
+ DateTimeSelector.new(datetime, options, html_options).select_datetime
312
+ end
313
+
314
+ # Returns a set of html select-tags (one for year, month, and day) pre-selected with the +date+.
315
+ # It's possible to explicitly set the order of the tags using the <tt>:order</tt> option with an array of
316
+ # symbols <tt>:year</tt>, <tt>:month</tt> and <tt>:day</tt> in the desired order. If you do not supply a Symbol,
317
+ # it will be appended onto the <tt>:order</tt> passed in.
318
+ #
319
+ # If anything is passed in the html_options hash it will be applied to every select tag in the set.
320
+ #
321
+ # ==== Examples
322
+ # my_date = Time.today + 6.days
323
+ #
324
+ # # Generates a date select that defaults to the date in my_date (six days after today)
325
+ # select_date(my_date)
326
+ #
327
+ # # Generates a date select that defaults to today (no specified date)
328
+ # select_date()
329
+ #
330
+ # # Generates a date select that defaults to the date in my_date (six days after today)
331
+ # # with the fields ordered year, month, day rather than month, day, year.
332
+ # select_date(my_date, :order => [:year, :month, :day])
333
+ #
334
+ # # Generates a date select that discards the type of the field and defaults to the date in
335
+ # # my_date (six days after today)
336
+ # select_date(my_date, :discard_type => true)
337
+ #
338
+ # # Generates a date select that defaults to the date in my_date,
339
+ # # which has fields separated by '/'
340
+ # select_date(my_date, :date_separator => '/')
341
+ #
342
+ # # Generates a date select that defaults to the datetime in my_date (six days after today)
343
+ # # prefixed with 'payday' rather than 'date'
344
+ # select_date(my_date, :prefix => 'payday')
345
+ #
346
+ # # Generates a date select with a custom prompt. Use :prompt=>true for generic prompts.
347
+ # select_date(my_date, :prompt => {:day => 'Choose day', :month => 'Choose month', :year => 'Choose year'})
348
+ # select_date(my_date, :prompt => {:hour => true}) # generic prompt for hours
349
+ # select_date(my_date, :prompt => true) # generic prompts for all
350
+ #
351
+ def select_date(date = Date.current, options = {}, html_options = {})
352
+ DateTimeSelector.new(date, options, html_options).select_date
353
+ end
354
+
355
+ # Returns a set of html select-tags (one for hour and minute)
356
+ # You can set <tt>:time_separator</tt> key to format the output, and
357
+ # the <tt>:include_seconds</tt> option to include an input for seconds.
358
+ #
359
+ # If anything is passed in the html_options hash it will be applied to every select tag in the set.
360
+ #
361
+ # ==== Examples
362
+ # my_time = Time.now + 5.days + 7.hours + 3.minutes + 14.seconds
363
+ #
364
+ # # Generates a time select that defaults to the time in my_time
365
+ # select_time(my_time)
366
+ #
367
+ # # Generates a time select that defaults to the current time (no specified time)
368
+ # select_time()
369
+ #
370
+ # # Generates a time select that defaults to the time in my_time,
371
+ # # which has fields separated by ':'
372
+ # select_time(my_time, :time_separator => ':')
373
+ #
374
+ # # Generates a time select that defaults to the time in my_time,
375
+ # # that also includes an input for seconds
376
+ # select_time(my_time, :include_seconds => true)
377
+ #
378
+ # # Generates a time select that defaults to the time in my_time, that has fields
379
+ # # separated by ':' and includes an input for seconds
380
+ # select_time(my_time, :time_separator => ':', :include_seconds => true)
381
+ #
382
+ # # Generates a time select with a custom prompt. Use :prompt=>true for generic prompts.
383
+ # select_time(my_time, :prompt => {:day => 'Choose day', :month => 'Choose month', :year => 'Choose year'})
384
+ # select_time(my_time, :prompt => {:hour => true}) # generic prompt for hours
385
+ # select_time(my_time, :prompt => true) # generic prompts for all
386
+ #
387
+ def select_time(datetime = Time.current, options = {}, html_options = {})
388
+ DateTimeSelector.new(datetime, options, html_options).select_time
389
+ end
390
+
391
+ # Returns a select tag with options for each of the seconds 0 through 59 with the current second selected.
392
+ # The <tt>second</tt> can also be substituted for a second number.
393
+ # Override the field name using the <tt>:field_name</tt> option, 'second' by default.
394
+ #
395
+ # ==== Examples
396
+ # my_time = Time.now + 16.minutes
397
+ #
398
+ # # Generates a select field for seconds that defaults to the seconds for the time in my_time
399
+ # select_second(my_time)
400
+ #
401
+ # # Generates a select field for seconds that defaults to the number given
402
+ # select_second(33)
403
+ #
404
+ # # Generates a select field for seconds that defaults to the seconds for the time in my_time
405
+ # # that is named 'interval' rather than 'second'
406
+ # select_second(my_time, :field_name => 'interval')
407
+ #
408
+ # # Generates a select field for seconds with a custom prompt. Use :prompt=>true for a
409
+ # # generic prompt.
410
+ # select_minute(14, :prompt => 'Choose seconds')
411
+ #
412
+ def select_second(datetime, options = {}, html_options = {})
413
+ DateTimeSelector.new(datetime, options, html_options).select_second
414
+ end
415
+
416
+ # Returns a select tag with options for each of the minutes 0 through 59 with the current minute selected.
417
+ # Also can return a select tag with options by <tt>minute_step</tt> from 0 through 59 with the 00 minute
418
+ # selected. The <tt>minute</tt> can also be substituted for a minute number.
419
+ # Override the field name using the <tt>:field_name</tt> option, 'minute' by default.
420
+ #
421
+ # ==== Examples
422
+ # my_time = Time.now + 6.hours
423
+ #
424
+ # # Generates a select field for minutes that defaults to the minutes for the time in my_time
425
+ # select_minute(my_time)
426
+ #
427
+ # # Generates a select field for minutes that defaults to the number given
428
+ # select_minute(14)
429
+ #
430
+ # # Generates a select field for minutes that defaults to the minutes for the time in my_time
431
+ # # that is named 'stride' rather than 'second'
432
+ # select_minute(my_time, :field_name => 'stride')
433
+ #
434
+ # # Generates a select field for minutes with a custom prompt. Use :prompt=>true for a
435
+ # # generic prompt.
436
+ # select_minute(14, :prompt => 'Choose minutes')
437
+ #
438
+ def select_minute(datetime, options = {}, html_options = {})
439
+ DateTimeSelector.new(datetime, options, html_options).select_minute
440
+ end
441
+
442
+ # Returns a select tag with options for each of the hours 0 through 23 with the current hour selected.
443
+ # The <tt>hour</tt> can also be substituted for a hour number.
444
+ # Override the field name using the <tt>:field_name</tt> option, 'hour' by default.
445
+ #
446
+ # ==== Examples
447
+ # my_time = Time.now + 6.hours
448
+ #
449
+ # # Generates a select field for hours that defaults to the hour for the time in my_time
450
+ # select_hour(my_time)
451
+ #
452
+ # # Generates a select field for hours that defaults to the number given
453
+ # select_hour(13)
454
+ #
455
+ # # Generates a select field for hours that defaults to the minutes for the time in my_time
456
+ # # that is named 'stride' rather than 'second'
457
+ # select_hour(my_time, :field_name => 'stride')
458
+ #
459
+ # # Generates a select field for hours with a custom prompt. Use :prompt => true for a
460
+ # # generic prompt.
461
+ # select_hour(13, :prompt =>'Choose hour')
462
+ #
463
+ def select_hour(datetime, options = {}, html_options = {})
464
+ DateTimeSelector.new(datetime, options, html_options).select_hour
465
+ end
466
+
467
+ # Returns a select tag with options for each of the days 1 through 31 with the current day selected.
468
+ # The <tt>date</tt> can also be substituted for a hour number.
469
+ # Override the field name using the <tt>:field_name</tt> option, 'day' by default.
470
+ #
471
+ # ==== Examples
472
+ # my_date = Time.today + 2.days
473
+ #
474
+ # # Generates a select field for days that defaults to the day for the date in my_date
475
+ # select_day(my_time)
476
+ #
477
+ # # Generates a select field for days that defaults to the number given
478
+ # select_day(5)
479
+ #
480
+ # # Generates a select field for days that defaults to the day for the date in my_date
481
+ # # that is named 'due' rather than 'day'
482
+ # select_day(my_time, :field_name => 'due')
483
+ #
484
+ # # Generates a select field for days with a custom prompt. Use :prompt => true for a
485
+ # # generic prompt.
486
+ # select_day(5, :prompt => 'Choose day')
487
+ #
488
+ def select_day(date, options = {}, html_options = {})
489
+ DateTimeSelector.new(date, options, html_options).select_day
490
+ end
491
+
492
+ # Returns a select tag with options for each of the months January through December with the current month
493
+ # selected. The month names are presented as keys (what's shown to the user) and the month numbers (1-12) are
494
+ # used as values (what's submitted to the server). It's also possible to use month numbers for the presentation
495
+ # instead of names -- set the <tt>:use_month_numbers</tt> key in +options+ to true for this to happen. If you
496
+ # want both numbers and names, set the <tt>:add_month_numbers</tt> key in +options+ to true. If you would prefer
497
+ # to show month names as abbreviations, set the <tt>:use_short_month</tt> key in +options+ to true. If you want
498
+ # to use your own month names, set the <tt>:use_month_names</tt> key in +options+ to an array of 12 month names.
499
+ # Override the field name using the <tt>:field_name</tt> option, 'month' by default.
500
+ #
501
+ # ==== Examples
502
+ # # Generates a select field for months that defaults to the current month that
503
+ # # will use keys like "January", "March".
504
+ # select_month(Date.today)
505
+ #
506
+ # # Generates a select field for months that defaults to the current month that
507
+ # # is named "start" rather than "month"
508
+ # select_month(Date.today, :field_name => 'start')
509
+ #
510
+ # # Generates a select field for months that defaults to the current month that
511
+ # # will use keys like "1", "3".
512
+ # select_month(Date.today, :use_month_numbers => true)
513
+ #
514
+ # # Generates a select field for months that defaults to the current month that
515
+ # # will use keys like "1 - January", "3 - March".
516
+ # select_month(Date.today, :add_month_numbers => true)
517
+ #
518
+ # # Generates a select field for months that defaults to the current month that
519
+ # # will use keys like "Jan", "Mar".
520
+ # select_month(Date.today, :use_short_month => true)
521
+ #
522
+ # # Generates a select field for months that defaults to the current month that
523
+ # # will use keys like "Januar", "Marts."
524
+ # select_month(Date.today, :use_month_names => %w(Januar Februar Marts ...))
525
+ #
526
+ # # Generates a select field for months with a custom prompt. Use :prompt => true for a
527
+ # # generic prompt.
528
+ # select_month(14, :prompt => 'Choose month')
529
+ #
530
+ def select_month(date, options = {}, html_options = {})
531
+ DateTimeSelector.new(date, options, html_options).select_month
532
+ end
533
+
534
+ # Returns a select tag with options for each of the five years on each side of the current, which is selected.
535
+ # The five year radius can be changed using the <tt>:start_year</tt> and <tt>:end_year</tt> keys in the
536
+ # +options+. Both ascending and descending year lists are supported by making <tt>:start_year</tt> less than or
537
+ # greater than <tt>:end_year</tt>. The <tt>date</tt> can also be substituted for a year given as a number.
538
+ # Override the field name using the <tt>:field_name</tt> option, 'year' by default.
539
+ #
540
+ # ==== Examples
541
+ # # Generates a select field for years that defaults to the current year that
542
+ # # has ascending year values
543
+ # select_year(Date.today, :start_year => 1992, :end_year => 2007)
544
+ #
545
+ # # Generates a select field for years that defaults to the current year that
546
+ # # is named 'birth' rather than 'year'
547
+ # select_year(Date.today, :field_name => 'birth')
548
+ #
549
+ # # Generates a select field for years that defaults to the current year that
550
+ # # has descending year values
551
+ # select_year(Date.today, :start_year => 2005, :end_year => 1900)
552
+ #
553
+ # # Generates a select field for years that defaults to the year 2006 that
554
+ # # has ascending year values
555
+ # select_year(2006, :start_year => 2000, :end_year => 2010)
556
+ #
557
+ # # Generates a select field for years with a custom prompt. Use :prompt => true for a
558
+ # # generic prompt.
559
+ # select_year(14, :prompt => 'Choose year')
560
+ #
561
+ def select_year(date, options = {}, html_options = {})
562
+ DateTimeSelector.new(date, options, html_options).select_year
563
+ end
564
+ end
565
+
566
+ class DateTimeSelector #:nodoc:
567
+ extend ActiveSupport::Memoizable
568
+ include ActionView::Helpers::TagHelper
569
+
570
+ DEFAULT_PREFIX = 'date'.freeze unless const_defined?('DEFAULT_PREFIX')
571
+ POSITION = {
572
+ :year => 1, :month => 2, :day => 3, :hour => 4, :minute => 5, :second => 6
573
+ }.freeze unless const_defined?('POSITION')
574
+
575
+ def initialize(datetime, options = {}, html_options = {})
576
+ @options = options.dup
577
+ @html_options = html_options.dup
578
+ @datetime = datetime
579
+ end
580
+
581
+ def select_datetime
582
+ # TODO: Remove tag conditional
583
+ # Ideally we could just join select_date and select_date for the tag case
584
+ if @options[:tag] && @options[:ignore_date]
585
+ select_time
586
+ elsif @options[:tag]
587
+ order = date_order.dup
588
+ order -= [:hour, :minute, :second]
589
+
590
+ @options[:discard_year] ||= true unless order.include?(:year)
591
+ @options[:discard_month] ||= true unless order.include?(:month)
592
+ @options[:discard_day] ||= true if @options[:discard_month] || !order.include?(:day)
593
+ @options[:discard_minute] ||= true if @options[:discard_hour]
594
+ @options[:discard_second] ||= true unless @options[:include_seconds] && !@options[:discard_minute]
595
+
596
+ # If the day is hidden and the month is visible, the day should be set to the 1st so all month choices are
597
+ # valid (otherwise it could be 31 and february wouldn't be a valid date)
598
+ if @datetime && @options[:discard_day] && !@options[:discard_month]
599
+ @datetime = @datetime.change(:day => 1)
600
+ end
601
+
602
+ [:day, :month, :year].each { |o| order.unshift(o) unless order.include?(o) }
603
+ order += [:hour, :minute, :second] unless @options[:discard_hour]
604
+
605
+ build_selects_from_types(order)
606
+ else
607
+ "#{select_date}#{@options[:datetime_separator]}#{select_time}"
608
+ end
609
+ end
610
+
611
+ def select_date
612
+ order = date_order.dup
613
+
614
+ # TODO: Remove tag conditional
615
+ if @options[:tag]
616
+ @options[:discard_hour] = true
617
+ @options[:discard_minute] = true
618
+ @options[:discard_second] = true
619
+
620
+ @options[:discard_year] ||= true unless order.include?(:year)
621
+ @options[:discard_month] ||= true unless order.include?(:month)
622
+ @options[:discard_day] ||= true if @options[:discard_month] || !order.include?(:day)
623
+
624
+ # If the day is hidden and the month is visible, the day should be set to the 1st so all month choices are
625
+ # valid (otherwise it could be 31 and february wouldn't be a valid date)
626
+ if @datetime && @options[:discard_day] && !@options[:discard_month]
627
+ @datetime = @datetime.change(:day => 1)
628
+ end
629
+ end
630
+
631
+ [:day, :month, :year].each { |o| order.unshift(o) unless order.include?(o) }
632
+
633
+ build_selects_from_types(order)
634
+ end
635
+
636
+ def select_time
637
+ order = []
638
+
639
+ # TODO: Remove tag conditional
640
+ if @options[:tag]
641
+ @options[:discard_month] = true
642
+ @options[:discard_year] = true
643
+ @options[:discard_day] = true
644
+ @options[:discard_second] ||= true unless @options[:include_seconds]
645
+
646
+ order += [:year, :month, :day] unless @options[:ignore_date]
647
+ end
648
+
649
+ order += [:hour, :minute]
650
+ order << :second if @options[:include_seconds]
651
+
652
+ build_selects_from_types(order)
653
+ end
654
+
655
+ def select_second
656
+ if @options[:use_hidden] || @options[:discard_second]
657
+ build_hidden(:second, sec) if @options[:include_seconds]
658
+ else
659
+ build_options_and_select(:second, sec)
660
+ end
661
+ end
662
+
663
+ def select_minute
664
+ if @options[:use_hidden] || @options[:discard_minute]
665
+ build_hidden(:minute, min)
666
+ else
667
+ build_options_and_select(:minute, min, :step => @options[:minute_step])
668
+ end
669
+ end
670
+
671
+ def select_hour
672
+ if @options[:use_hidden] || @options[:discard_hour]
673
+ build_hidden(:hour, hour)
674
+ else
675
+ build_options_and_select(:hour, hour, :end => 23)
676
+ end
677
+ end
678
+
679
+ def select_day
680
+ if @options[:use_hidden] || @options[:discard_day]
681
+ build_hidden(:day, day)
682
+ else
683
+ build_options_and_select(:day, day, :start => 1, :end => 31, :leading_zeros => false)
684
+ end
685
+ end
686
+
687
+ def select_month
688
+ if @options[:use_hidden] || @options[:discard_month]
689
+ build_hidden(:month, month)
690
+ else
691
+ month_options = []
692
+ 1.upto(12) do |month_number|
693
+ options = { :value => month_number }
694
+ options[:selected] = "selected" if month == month_number
695
+ month_options << content_tag(:option, month_name(month_number), options) + "\n"
696
+ end
697
+ build_select(:month, month_options.join)
698
+ end
699
+ end
700
+
701
+ def select_year
702
+ if !@datetime || @datetime == 0
703
+ val = ''
704
+ middle_year = Date.today.year
705
+ else
706
+ val = middle_year = year
707
+ end
708
+
709
+ if @options[:use_hidden] || @options[:discard_year]
710
+ build_hidden(:year, val)
711
+ else
712
+ options = {}
713
+ options[:start] = @options[:start_year] || middle_year - 5
714
+ options[:end] = @options[:end_year] || middle_year + 5
715
+ options[:step] = options[:start] < options[:end] ? 1 : -1
716
+ options[:leading_zeros] = false
717
+
718
+ build_options_and_select(:year, val, options)
719
+ end
720
+ end
721
+
722
+ private
723
+ %w( sec min hour day month year ).each do |method|
724
+ define_method(method) do
725
+ @datetime.kind_of?(Fixnum) ? @datetime : @datetime.send(method) if @datetime
726
+ end
727
+ end
728
+
729
+ # Returns translated month names, but also ensures that a custom month
730
+ # name array has a leading nil element
731
+ def month_names
732
+ month_names = @options[:use_month_names] || translated_month_names
733
+ month_names.unshift(nil) if month_names.size < 13
734
+ month_names
735
+ end
736
+ memoize :month_names
737
+
738
+ # Returns translated month names
739
+ # => [nil, "January", "February", "March",
740
+ # "April", "May", "June", "July",
741
+ # "August", "September", "October",
742
+ # "November", "December"]
743
+ #
744
+ # If :use_short_month option is set
745
+ # => [nil, "Jan", "Feb", "Mar", "Apr", "May", "Jun",
746
+ # "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
747
+ def translated_month_names
748
+ begin
749
+ key = @options[:use_short_month] ? :'date.abbr_month_names' : :'date.month_names'
750
+ I18n.translate(key, :locale => @options[:locale])
751
+ end
752
+ end
753
+
754
+ # Lookup month name for number
755
+ # month_name(1) => "January"
756
+ #
757
+ # If :use_month_numbers option is passed
758
+ # month_name(1) => 1
759
+ #
760
+ # If :add_month_numbers option is passed
761
+ # month_name(1) => "1 - January"
762
+ def month_name(number)
763
+ if @options[:use_month_numbers]
764
+ number
765
+ elsif @options[:add_month_numbers]
766
+ "#{number} - #{month_names[number]}"
767
+ else
768
+ month_names[number]
769
+ end
770
+ end
771
+
772
+ def date_order
773
+ @options[:order] || translated_date_order
774
+ end
775
+ memoize :date_order
776
+
777
+ def translated_date_order
778
+ begin
779
+ I18n.translate(:'date.order', :locale => @options[:locale]) || []
780
+ end
781
+ end
782
+
783
+ # Build full select tag from date type and options
784
+ def build_options_and_select(type, selected, options = {})
785
+ build_select(type, build_options(selected, options))
786
+ end
787
+
788
+ # Build select option html from date value and options
789
+ # build_options(15, :start => 1, :end => 31)
790
+ # => "<option value="1">1</option>
791
+ # <option value=\"2\">2</option>
792
+ # <option value=\"3\">3</option>..."
793
+ def build_options(selected, options = {})
794
+ start = options.delete(:start) || 0
795
+ stop = options.delete(:end) || 59
796
+ step = options.delete(:step) || 1
797
+ leading_zeros = options.delete(:leading_zeros).nil? ? true : false
798
+
799
+ select_options = []
800
+ start.step(stop, step) do |i|
801
+ value = leading_zeros ? sprintf("%02d", i) : i
802
+ tag_options = { :value => value }
803
+ tag_options[:selected] = "selected" if selected == i
804
+ select_options << content_tag(:option, value, tag_options)
805
+ end
806
+ select_options.join("\n") + "\n"
807
+ end
808
+
809
+ # Builds select tag from date type and html select options
810
+ # build_select(:month, "<option value="1">January</option>...")
811
+ # => "<select id="post_written_on_2i" name="post[written_on(2i)]">
812
+ # <option value="1">January</option>...
813
+ # </select>"
814
+ def build_select(type, select_options_as_html)
815
+ select_options = {
816
+ :id => input_id_from_type(type),
817
+ :name => input_name_from_type(type)
818
+ }.merge(@html_options)
819
+ select_options.merge!(:disabled => 'disabled') if @options[:disabled]
820
+
821
+ select_html = "\n"
822
+ select_html << content_tag(:option, '', :value => '') + "\n" if @options[:include_blank]
823
+ select_html << prompt_option_tag(type, @options[:prompt]) + "\n" if @options[:prompt]
824
+ select_html << select_options_as_html.to_s
825
+
826
+ content_tag(:select, select_html, select_options) + "\n"
827
+ end
828
+
829
+ # Builds a prompt option tag with supplied options or from default options
830
+ # prompt_option_tag(:month, :prompt => 'Select month')
831
+ # => "<option value="">Select month</option>"
832
+ def prompt_option_tag(type, options)
833
+ default_options = {:year => false, :month => false, :day => false, :hour => false, :minute => false, :second => false}
834
+
835
+ case options
836
+ when Hash
837
+ prompt = default_options.merge(options)[type.to_sym]
838
+ when String
839
+ prompt = options
840
+ else
841
+ prompt = I18n.translate(('datetime.prompts.' + type.to_s).to_sym, :locale => @options[:locale])
842
+ end
843
+
844
+ prompt ? content_tag(:option, prompt, :value => '') : ''
845
+ end
846
+
847
+ # Builds hidden input tag for date part and value
848
+ # build_hidden(:year, 2008)
849
+ # => "<input id="post_written_on_1i" name="post[written_on(1i)]" type="hidden" value="2008" />"
850
+ def build_hidden(type, value)
851
+ tag(:input, {
852
+ :type => "hidden",
853
+ :id => input_id_from_type(type),
854
+ :name => input_name_from_type(type),
855
+ :value => value
856
+ }) + "\n"
857
+ end
858
+
859
+ # Returns the name attribute for the input tag
860
+ # => post[written_on(1i)]
861
+ def input_name_from_type(type)
862
+ prefix = @options[:prefix] || ActionView::Helpers::DateTimeSelector::DEFAULT_PREFIX
863
+ prefix += "[#{@options[:index]}]" if @options.has_key?(:index)
864
+
865
+ field_name = @options[:field_name] || type
866
+ if @options[:include_position]
867
+ field_name += "(#{ActionView::Helpers::DateTimeSelector::POSITION[type]}i)"
868
+ end
869
+
870
+ @options[:discard_type] ? prefix : "#{prefix}[#{field_name}]"
871
+ end
872
+
873
+ # Returns the id attribute for the input tag
874
+ # => "post_written_on_1i"
875
+ def input_id_from_type(type)
876
+ input_name_from_type(type).gsub(/([\[\(])|(\]\[)/, '_').gsub(/[\]\)]/, '')
877
+ end
878
+
879
+ # Given an ordering of datetime components, create the selection HTML
880
+ # and join them with their appropriate separators.
881
+ def build_selects_from_types(order)
882
+ select = ''
883
+ order.reverse.each do |type|
884
+ separator = separator(type) unless type == order.first # don't add on last field
885
+ select.insert(0, separator.to_s + send("select_#{type}").to_s)
886
+ end
887
+ select
888
+ end
889
+
890
+ # Returns the separator for a given datetime component
891
+ def separator(type)
892
+ case type
893
+ when :month, :day
894
+ @options[:date_separator]
895
+ when :hour
896
+ (@options[:discard_year] && @options[:discard_day]) ? "" : @options[:datetime_separator]
897
+ when :minute
898
+ @options[:time_separator]
899
+ when :second
900
+ @options[:include_seconds] ? @options[:time_separator] : ""
901
+ end
902
+ end
903
+ end
904
+
905
+ class InstanceTag #:nodoc:
906
+ def to_date_select_tag(options = {}, html_options = {})
907
+ datetime_selector(options, html_options).select_date
908
+ end
909
+
910
+ def to_time_select_tag(options = {}, html_options = {})
911
+ datetime_selector(options, html_options).select_time
912
+ end
913
+
914
+ def to_datetime_select_tag(options = {}, html_options = {})
915
+ datetime_selector(options, html_options).select_datetime
916
+ end
917
+
918
+ private
919
+ def datetime_selector(options, html_options)
920
+ datetime = value(object) || default_datetime(options)
921
+
922
+ options = options.dup
923
+ options[:field_name] = @method_name
924
+ options[:include_position] = true
925
+ options[:prefix] ||= @object_name
926
+ options[:index] = @auto_index if @auto_index && !options.has_key?(:index)
927
+ options[:datetime_separator] ||= ' &mdash; '
928
+ options[:time_separator] ||= ' : '
929
+
930
+ DateTimeSelector.new(datetime, options.merge(:tag => true), html_options)
931
+ end
932
+
933
+ def default_datetime(options)
934
+ return if options[:include_blank] || options[:prompt]
935
+
936
+ case options[:default]
937
+ when nil
938
+ Time.current
939
+ when Date, Time
940
+ options[:default]
941
+ else
942
+ default = options[:default].dup
943
+
944
+ # Rename :minute and :second to :min and :sec
945
+ default[:min] ||= default[:minute]
946
+ default[:sec] ||= default[:second]
947
+
948
+ time = Time.current
949
+
950
+ [:year, :month, :day, :hour, :min, :sec].each do |key|
951
+ default[key] ||= time.send(key)
952
+ end
953
+
954
+ Time.utc_time(
955
+ default[:year], default[:month], default[:day],
956
+ default[:hour], default[:min], default[:sec]
957
+ )
958
+ end
959
+ end
960
+ end
961
+
962
+ class FormBuilder
963
+ def date_select(method, options = {}, html_options = {})
964
+ @template.date_select(@object_name, method, objectify_options(options), html_options)
965
+ end
966
+
967
+ def time_select(method, options = {}, html_options = {})
968
+ @template.time_select(@object_name, method, objectify_options(options), html_options)
969
+ end
970
+
971
+ def datetime_select(method, options = {}, html_options = {})
972
+ @template.datetime_select(@object_name, method, objectify_options(options), html_options)
973
+ end
974
+ end
975
+ end
976
+ end