gemstreamer 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (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,3158 @@
1
+ require 'yaml'
2
+ require 'set'
3
+
4
+ module ActiveRecord #:nodoc:
5
+ # Generic Active Record exception class.
6
+ class ActiveRecordError < StandardError
7
+ end
8
+
9
+ # Raised when the single-table inheritance mechanism fails to locate the subclass
10
+ # (for example due to improper usage of column that +inheritance_column+ points to).
11
+ class SubclassNotFound < ActiveRecordError #:nodoc:
12
+ end
13
+
14
+ # Raised when an object assigned to an association has an incorrect type.
15
+ #
16
+ # class Ticket < ActiveRecord::Base
17
+ # has_many :patches
18
+ # end
19
+ #
20
+ # class Patch < ActiveRecord::Base
21
+ # belongs_to :ticket
22
+ # end
23
+ #
24
+ # # Comments are not patches, this assignment raises AssociationTypeMismatch.
25
+ # @ticket.patches << Comment.new(:content => "Please attach tests to your patch.")
26
+ class AssociationTypeMismatch < ActiveRecordError
27
+ end
28
+
29
+ # Raised when unserialized object's type mismatches one specified for serializable field.
30
+ class SerializationTypeMismatch < ActiveRecordError
31
+ end
32
+
33
+ # Raised when adapter not specified on connection (or configuration file <tt>config/database.yml</tt> misses adapter field).
34
+ class AdapterNotSpecified < ActiveRecordError
35
+ end
36
+
37
+ # Raised when Active Record cannot find database adapter specified in <tt>config/database.yml</tt> or programmatically.
38
+ class AdapterNotFound < ActiveRecordError
39
+ end
40
+
41
+ # Raised when connection to the database could not been established (for example when <tt>connection=</tt> is given a nil object).
42
+ class ConnectionNotEstablished < ActiveRecordError
43
+ end
44
+
45
+ # Raised when Active Record cannot find record by given id or set of ids.
46
+ class RecordNotFound < ActiveRecordError
47
+ end
48
+
49
+ # Raised by ActiveRecord::Base.save! and ActiveRecord::Base.create! methods when record cannot be
50
+ # saved because record is invalid.
51
+ class RecordNotSaved < ActiveRecordError
52
+ end
53
+
54
+ # Raised when SQL statement cannot be executed by the database (for example, it's often the case for MySQL when Ruby driver used is too old).
55
+ class StatementInvalid < ActiveRecordError
56
+ end
57
+
58
+ # Raised when number of bind variables in statement given to <tt>:condition</tt> key (for example, when using +find+ method)
59
+ # does not match number of expected variables.
60
+ #
61
+ # For example, in
62
+ #
63
+ # Location.find :all, :conditions => ["lat = ? AND lng = ?", 53.7362]
64
+ #
65
+ # two placeholders are given but only one variable to fill them.
66
+ class PreparedStatementInvalid < ActiveRecordError
67
+ end
68
+
69
+ # Raised on attempt to save stale record. Record is stale when it's being saved in another query after
70
+ # instantiation, for example, when two users edit the same wiki page and one starts editing and saves
71
+ # the page before the other.
72
+ #
73
+ # Read more about optimistic locking in ActiveRecord::Locking module RDoc.
74
+ class StaleObjectError < ActiveRecordError
75
+ end
76
+
77
+ # Raised when association is being configured improperly or
78
+ # user tries to use offset and limit together with has_many or has_and_belongs_to_many associations.
79
+ class ConfigurationError < ActiveRecordError
80
+ end
81
+
82
+ # Raised on attempt to update record that is instantiated as read only.
83
+ class ReadOnlyRecord < ActiveRecordError
84
+ end
85
+
86
+ # ActiveRecord::Transactions::ClassMethods.transaction uses this exception
87
+ # to distinguish a deliberate rollback from other exceptional situations.
88
+ # Normally, raising an exception will cause the +transaction+ method to rollback
89
+ # the database transaction *and* pass on the exception. But if you raise an
90
+ # ActiveRecord::Rollback exception, then the database transaction will be rolled back,
91
+ # without passing on the exception.
92
+ #
93
+ # For example, you could do this in your controller to rollback a transaction:
94
+ #
95
+ # class BooksController < ActionController::Base
96
+ # def create
97
+ # Book.transaction do
98
+ # book = Book.new(params[:book])
99
+ # book.save!
100
+ # if today_is_friday?
101
+ # # The system must fail on Friday so that our support department
102
+ # # won't be out of job. We silently rollback this transaction
103
+ # # without telling the user.
104
+ # raise ActiveRecord::Rollback, "Call tech support!"
105
+ # end
106
+ # end
107
+ # # ActiveRecord::Rollback is the only exception that won't be passed on
108
+ # # by ActiveRecord::Base.transaction, so this line will still be reached
109
+ # # even on Friday.
110
+ # redirect_to root_url
111
+ # end
112
+ # end
113
+ class Rollback < ActiveRecordError
114
+ end
115
+
116
+ # Raised when attribute has a name reserved by Active Record (when attribute has name of one of Active Record instance methods).
117
+ class DangerousAttributeError < ActiveRecordError
118
+ end
119
+
120
+ # Raised when you've tried to access a column which wasn't loaded by your finder.
121
+ # Typically this is because <tt>:select</tt> has been specified.
122
+ class MissingAttributeError < NoMethodError
123
+ end
124
+
125
+ # Raised when unknown attributes are supplied via mass assignment.
126
+ class UnknownAttributeError < NoMethodError
127
+ end
128
+
129
+ # Raised when an error occurred while doing a mass assignment to an attribute through the
130
+ # <tt>attributes=</tt> method. The exception has an +attribute+ property that is the name of the
131
+ # offending attribute.
132
+ class AttributeAssignmentError < ActiveRecordError
133
+ attr_reader :exception, :attribute
134
+ def initialize(message, exception, attribute)
135
+ @exception = exception
136
+ @attribute = attribute
137
+ @message = message
138
+ end
139
+ end
140
+
141
+ # Raised when there are multiple errors while doing a mass assignment through the +attributes+
142
+ # method. The exception has an +errors+ property that contains an array of AttributeAssignmentError
143
+ # objects, each corresponding to the error while assigning to an attribute.
144
+ class MultiparameterAssignmentErrors < ActiveRecordError
145
+ attr_reader :errors
146
+ def initialize(errors)
147
+ @errors = errors
148
+ end
149
+ end
150
+
151
+ # Active Record objects don't specify their attributes directly, but rather infer them from the table definition with
152
+ # which they're linked. Adding, removing, and changing attributes and their type is done directly in the database. Any change
153
+ # is instantly reflected in the Active Record objects. The mapping that binds a given Active Record class to a certain
154
+ # database table will happen automatically in most common cases, but can be overwritten for the uncommon ones.
155
+ #
156
+ # See the mapping rules in table_name and the full example in link:files/README.html for more insight.
157
+ #
158
+ # == Creation
159
+ #
160
+ # Active Records accept constructor parameters either in a hash or as a block. The hash method is especially useful when
161
+ # you're receiving the data from somewhere else, like an HTTP request. It works like this:
162
+ #
163
+ # user = User.new(:name => "David", :occupation => "Code Artist")
164
+ # user.name # => "David"
165
+ #
166
+ # You can also use block initialization:
167
+ #
168
+ # user = User.new do |u|
169
+ # u.name = "David"
170
+ # u.occupation = "Code Artist"
171
+ # end
172
+ #
173
+ # And of course you can just create a bare object and specify the attributes after the fact:
174
+ #
175
+ # user = User.new
176
+ # user.name = "David"
177
+ # user.occupation = "Code Artist"
178
+ #
179
+ # == Conditions
180
+ #
181
+ # Conditions can either be specified as a string, array, or hash representing the WHERE-part of an SQL statement.
182
+ # The array form is to be used when the condition input is tainted and requires sanitization. The string form can
183
+ # be used for statements that don't involve tainted data. The hash form works much like the array form, except
184
+ # only equality and range is possible. Examples:
185
+ #
186
+ # class User < ActiveRecord::Base
187
+ # def self.authenticate_unsafely(user_name, password)
188
+ # find(:first, :conditions => "user_name = '#{user_name}' AND password = '#{password}'")
189
+ # end
190
+ #
191
+ # def self.authenticate_safely(user_name, password)
192
+ # find(:first, :conditions => [ "user_name = ? AND password = ?", user_name, password ])
193
+ # end
194
+ #
195
+ # def self.authenticate_safely_simply(user_name, password)
196
+ # find(:first, :conditions => { :user_name => user_name, :password => password })
197
+ # end
198
+ # end
199
+ #
200
+ # The <tt>authenticate_unsafely</tt> method inserts the parameters directly into the query and is thus susceptible to SQL-injection
201
+ # attacks if the <tt>user_name</tt> and +password+ parameters come directly from an HTTP request. The <tt>authenticate_safely</tt> and
202
+ # <tt>authenticate_safely_simply</tt> both will sanitize the <tt>user_name</tt> and +password+ before inserting them in the query,
203
+ # which will ensure that an attacker can't escape the query and fake the login (or worse).
204
+ #
205
+ # When using multiple parameters in the conditions, it can easily become hard to read exactly what the fourth or fifth
206
+ # question mark is supposed to represent. In those cases, you can resort to named bind variables instead. That's done by replacing
207
+ # the question marks with symbols and supplying a hash with values for the matching symbol keys:
208
+ #
209
+ # Company.find(:first, :conditions => [
210
+ # "id = :id AND name = :name AND division = :division AND created_at > :accounting_date",
211
+ # { :id => 3, :name => "37signals", :division => "First", :accounting_date => '2005-01-01' }
212
+ # ])
213
+ #
214
+ # Similarly, a simple hash without a statement will generate conditions based on equality with the SQL AND
215
+ # operator. For instance:
216
+ #
217
+ # Student.find(:all, :conditions => { :first_name => "Harvey", :status => 1 })
218
+ # Student.find(:all, :conditions => params[:student])
219
+ #
220
+ # A range may be used in the hash to use the SQL BETWEEN operator:
221
+ #
222
+ # Student.find(:all, :conditions => { :grade => 9..12 })
223
+ #
224
+ # An array may be used in the hash to use the SQL IN operator:
225
+ #
226
+ # Student.find(:all, :conditions => { :grade => [9,11,12] })
227
+ #
228
+ # == Overwriting default accessors
229
+ #
230
+ # All column values are automatically available through basic accessors on the Active Record object, but sometimes you
231
+ # want to specialize this behavior. This can be done by overwriting the default accessors (using the same
232
+ # name as the attribute) and calling <tt>read_attribute(attr_name)</tt> and <tt>write_attribute(attr_name, value)</tt> to actually change things.
233
+ # Example:
234
+ #
235
+ # class Song < ActiveRecord::Base
236
+ # # Uses an integer of seconds to hold the length of the song
237
+ #
238
+ # def length=(minutes)
239
+ # write_attribute(:length, minutes.to_i * 60)
240
+ # end
241
+ #
242
+ # def length
243
+ # read_attribute(:length) / 60
244
+ # end
245
+ # end
246
+ #
247
+ # You can alternatively use <tt>self[:attribute]=(value)</tt> and <tt>self[:attribute]</tt> instead of <tt>write_attribute(:attribute, value)</tt> and
248
+ # <tt>read_attribute(:attribute)</tt> as a shorter form.
249
+ #
250
+ # == Attribute query methods
251
+ #
252
+ # In addition to the basic accessors, query methods are also automatically available on the Active Record object.
253
+ # Query methods allow you to test whether an attribute value is present.
254
+ #
255
+ # For example, an Active Record User with the <tt>name</tt> attribute has a <tt>name?</tt> method that you can call
256
+ # to determine whether the user has a name:
257
+ #
258
+ # user = User.new(:name => "David")
259
+ # user.name? # => true
260
+ #
261
+ # anonymous = User.new(:name => "")
262
+ # anonymous.name? # => false
263
+ #
264
+ # == Accessing attributes before they have been typecasted
265
+ #
266
+ # Sometimes you want to be able to read the raw attribute data without having the column-determined typecast run its course first.
267
+ # That can be done by using the <tt><attribute>_before_type_cast</tt> accessors that all attributes have. For example, if your Account model
268
+ # has a <tt>balance</tt> attribute, you can call <tt>account.balance_before_type_cast</tt> or <tt>account.id_before_type_cast</tt>.
269
+ #
270
+ # This is especially useful in validation situations where the user might supply a string for an integer field and you want to display
271
+ # the original string back in an error message. Accessing the attribute normally would typecast the string to 0, which isn't what you
272
+ # want.
273
+ #
274
+ # == Dynamic attribute-based finders
275
+ #
276
+ # Dynamic attribute-based finders are a cleaner way of getting (and/or creating) objects by simple queries without turning to SQL. They work by
277
+ # appending the name of an attribute to <tt>find_by_</tt>, <tt>find_last_by_</tt>, or <tt>find_all_by_</tt>, so you get finders like <tt>Person.find_by_user_name</tt>,
278
+ # <tt>Person.find_all_by_last_name</tt>, and <tt>Payment.find_by_transaction_id</tt>. So instead of writing
279
+ # <tt>Person.find(:first, :conditions => ["user_name = ?", user_name])</tt>, you just do <tt>Person.find_by_user_name(user_name)</tt>.
280
+ # And instead of writing <tt>Person.find(:all, :conditions => ["last_name = ?", last_name])</tt>, you just do <tt>Person.find_all_by_last_name(last_name)</tt>.
281
+ #
282
+ # It's also possible to use multiple attributes in the same find by separating them with "_and_", so you get finders like
283
+ # <tt>Person.find_by_user_name_and_password</tt> or even <tt>Payment.find_by_purchaser_and_state_and_country</tt>. So instead of writing
284
+ # <tt>Person.find(:first, :conditions => ["user_name = ? AND password = ?", user_name, password])</tt>, you just do
285
+ # <tt>Person.find_by_user_name_and_password(user_name, password)</tt>.
286
+ #
287
+ # It's even possible to use all the additional parameters to find. For example, the full interface for <tt>Payment.find_all_by_amount</tt>
288
+ # is actually <tt>Payment.find_all_by_amount(amount, options)</tt>. And the full interface to <tt>Person.find_by_user_name</tt> is
289
+ # actually <tt>Person.find_by_user_name(user_name, options)</tt>. So you could call <tt>Payment.find_all_by_amount(50, :order => "created_on")</tt>.
290
+ # Also you may call <tt>Payment.find_last_by_amount(amount, options)</tt> returning the last record matching that amount and options.
291
+ #
292
+ # The same dynamic finder style can be used to create the object if it doesn't already exist. This dynamic finder is called with
293
+ # <tt>find_or_create_by_</tt> and will return the object if it already exists and otherwise creates it, then returns it. Protected attributes won't be set unless they are given in a block. For example:
294
+ #
295
+ # # No 'Summer' tag exists
296
+ # Tag.find_or_create_by_name("Summer") # equal to Tag.create(:name => "Summer")
297
+ #
298
+ # # Now the 'Summer' tag does exist
299
+ # Tag.find_or_create_by_name("Summer") # equal to Tag.find_by_name("Summer")
300
+ #
301
+ # # Now 'Bob' exist and is an 'admin'
302
+ # User.find_or_create_by_name('Bob', :age => 40) { |u| u.admin = true }
303
+ #
304
+ # Use the <tt>find_or_initialize_by_</tt> finder if you want to return a new record without saving it first. Protected attributes won't be set unless they are given in a block. For example:
305
+ #
306
+ # # No 'Winter' tag exists
307
+ # winter = Tag.find_or_initialize_by_name("Winter")
308
+ # winter.new_record? # true
309
+ #
310
+ # To find by a subset of the attributes to be used for instantiating a new object, pass a hash instead of
311
+ # a list of parameters. For example:
312
+ #
313
+ # Tag.find_or_create_by_name(:name => "rails", :creator => current_user)
314
+ #
315
+ # That will either find an existing tag named "rails", or create a new one while setting the user that created it.
316
+ #
317
+ # == Saving arrays, hashes, and other non-mappable objects in text columns
318
+ #
319
+ # Active Record can serialize any object in text columns using YAML. To do so, you must specify this with a call to the class method +serialize+.
320
+ # This makes it possible to store arrays, hashes, and other non-mappable objects without doing any additional work. Example:
321
+ #
322
+ # class User < ActiveRecord::Base
323
+ # serialize :preferences
324
+ # end
325
+ #
326
+ # user = User.create(:preferences => { "background" => "black", "display" => large })
327
+ # User.find(user.id).preferences # => { "background" => "black", "display" => large }
328
+ #
329
+ # You can also specify a class option as the second parameter that'll raise an exception if a serialized object is retrieved as a
330
+ # descendant of a class not in the hierarchy. Example:
331
+ #
332
+ # class User < ActiveRecord::Base
333
+ # serialize :preferences, Hash
334
+ # end
335
+ #
336
+ # user = User.create(:preferences => %w( one two three ))
337
+ # User.find(user.id).preferences # raises SerializationTypeMismatch
338
+ #
339
+ # == Single table inheritance
340
+ #
341
+ # Active Record allows inheritance by storing the name of the class in a column that by default is named "type" (can be changed
342
+ # by overwriting <tt>Base.inheritance_column</tt>). This means that an inheritance looking like this:
343
+ #
344
+ # class Company < ActiveRecord::Base; end
345
+ # class Firm < Company; end
346
+ # class Client < Company; end
347
+ # class PriorityClient < Client; end
348
+ #
349
+ # When you do <tt>Firm.create(:name => "37signals")</tt>, this record will be saved in the companies table with type = "Firm". You can then
350
+ # fetch this row again using <tt>Company.find(:first, "name = '37signals'")</tt> and it will return a Firm object.
351
+ #
352
+ # If you don't have a type column defined in your table, single-table inheritance won't be triggered. In that case, it'll work just
353
+ # like normal subclasses with no special magic for differentiating between them or reloading the right type with find.
354
+ #
355
+ # Note, all the attributes for all the cases are kept in the same table. Read more:
356
+ # http://www.martinfowler.com/eaaCatalog/singleTableInheritance.html
357
+ #
358
+ # == Connection to multiple databases in different models
359
+ #
360
+ # Connections are usually created through ActiveRecord::Base.establish_connection and retrieved by ActiveRecord::Base.connection.
361
+ # All classes inheriting from ActiveRecord::Base will use this connection. But you can also set a class-specific connection.
362
+ # For example, if Course is an ActiveRecord::Base, but resides in a different database, you can just say <tt>Course.establish_connection</tt>
363
+ # and Course and all of its subclasses will use this connection instead.
364
+ #
365
+ # This feature is implemented by keeping a connection pool in ActiveRecord::Base that is a Hash indexed by the class. If a connection is
366
+ # requested, the retrieve_connection method will go up the class-hierarchy until a connection is found in the connection pool.
367
+ #
368
+ # == Exceptions
369
+ #
370
+ # * ActiveRecordError - Generic error class and superclass of all other errors raised by Active Record.
371
+ # * AdapterNotSpecified - The configuration hash used in <tt>establish_connection</tt> didn't include an
372
+ # <tt>:adapter</tt> key.
373
+ # * AdapterNotFound - The <tt>:adapter</tt> key used in <tt>establish_connection</tt> specified a non-existent adapter
374
+ # (or a bad spelling of an existing one).
375
+ # * AssociationTypeMismatch - The object assigned to the association wasn't of the type specified in the association definition.
376
+ # * SerializationTypeMismatch - The serialized object wasn't of the class specified as the second parameter.
377
+ # * ConnectionNotEstablished+ - No connection has been established. Use <tt>establish_connection</tt> before querying.
378
+ # * RecordNotFound - No record responded to the +find+ method. Either the row with the given ID doesn't exist
379
+ # or the row didn't meet the additional restrictions. Some +find+ calls do not raise this exception to signal
380
+ # nothing was found, please check its documentation for further details.
381
+ # * StatementInvalid - The database server rejected the SQL statement. The precise error is added in the message.
382
+ # * MultiparameterAssignmentErrors - Collection of errors that occurred during a mass assignment using the
383
+ # <tt>attributes=</tt> method. The +errors+ property of this exception contains an array of AttributeAssignmentError
384
+ # objects that should be inspected to determine which attributes triggered the errors.
385
+ # * AttributeAssignmentError - An error occurred while doing a mass assignment through the <tt>attributes=</tt> method.
386
+ # You can inspect the +attribute+ property of the exception object to determine which attribute triggered the error.
387
+ #
388
+ # *Note*: The attributes listed are class-level attributes (accessible from both the class and instance level).
389
+ # So it's possible to assign a logger to the class through <tt>Base.logger=</tt> which will then be used by all
390
+ # instances in the current object space.
391
+ class Base
392
+ ##
393
+ # :singleton-method:
394
+ # Accepts a logger conforming to the interface of Log4r or the default Ruby 1.8+ Logger class, which is then passed
395
+ # on to any new database connections made and which can be retrieved on both a class and instance level by calling +logger+.
396
+ cattr_accessor :logger, :instance_writer => false
397
+
398
+ def self.inherited(child) #:nodoc:
399
+ @@subclasses[self] ||= []
400
+ @@subclasses[self] << child
401
+ super
402
+ end
403
+
404
+ def self.reset_subclasses #:nodoc:
405
+ nonreloadables = []
406
+ subclasses.each do |klass|
407
+ unless ActiveSupport::Dependencies.autoloaded? klass
408
+ nonreloadables << klass
409
+ next
410
+ end
411
+ klass.instance_variables.each { |var| klass.send(:remove_instance_variable, var) }
412
+ klass.instance_methods(false).each { |m| klass.send :undef_method, m }
413
+ end
414
+ @@subclasses = {}
415
+ nonreloadables.each { |klass| (@@subclasses[klass.superclass] ||= []) << klass }
416
+ end
417
+
418
+ @@subclasses = {}
419
+
420
+ ##
421
+ # :singleton-method:
422
+ # Contains the database configuration - as is typically stored in config/database.yml -
423
+ # as a Hash.
424
+ #
425
+ # For example, the following database.yml...
426
+ #
427
+ # development:
428
+ # adapter: sqlite3
429
+ # database: db/development.sqlite3
430
+ #
431
+ # production:
432
+ # adapter: sqlite3
433
+ # database: db/production.sqlite3
434
+ #
435
+ # ...would result in ActiveRecord::Base.configurations to look like this:
436
+ #
437
+ # {
438
+ # 'development' => {
439
+ # 'adapter' => 'sqlite3',
440
+ # 'database' => 'db/development.sqlite3'
441
+ # },
442
+ # 'production' => {
443
+ # 'adapter' => 'sqlite3',
444
+ # 'database' => 'db/production.sqlite3'
445
+ # }
446
+ # }
447
+ cattr_accessor :configurations, :instance_writer => false
448
+ @@configurations = {}
449
+
450
+ ##
451
+ # :singleton-method:
452
+ # Accessor for the prefix type that will be prepended to every primary key column name. The options are :table_name and
453
+ # :table_name_with_underscore. If the first is specified, the Product class will look for "productid" instead of "id" as
454
+ # the primary column. If the latter is specified, the Product class will look for "product_id" instead of "id". Remember
455
+ # that this is a global setting for all Active Records.
456
+ cattr_accessor :primary_key_prefix_type, :instance_writer => false
457
+ @@primary_key_prefix_type = nil
458
+
459
+ ##
460
+ # :singleton-method:
461
+ # Accessor for the name of the prefix string to prepend to every table name. So if set to "basecamp_", all
462
+ # table names will be named like "basecamp_projects", "basecamp_people", etc. This is a convenient way of creating a namespace
463
+ # for tables in a shared database. By default, the prefix is the empty string.
464
+ cattr_accessor :table_name_prefix, :instance_writer => false
465
+ @@table_name_prefix = ""
466
+
467
+ ##
468
+ # :singleton-method:
469
+ # Works like +table_name_prefix+, but appends instead of prepends (set to "_basecamp" gives "projects_basecamp",
470
+ # "people_basecamp"). By default, the suffix is the empty string.
471
+ cattr_accessor :table_name_suffix, :instance_writer => false
472
+ @@table_name_suffix = ""
473
+
474
+ ##
475
+ # :singleton-method:
476
+ # Indicates whether table names should be the pluralized versions of the corresponding class names.
477
+ # If true, the default table name for a Product class will be +products+. If false, it would just be +product+.
478
+ # See table_name for the full rules on table/class naming. This is true, by default.
479
+ cattr_accessor :pluralize_table_names, :instance_writer => false
480
+ @@pluralize_table_names = true
481
+
482
+ ##
483
+ # :singleton-method:
484
+ # Determines whether to use ANSI codes to colorize the logging statements committed by the connection adapter. These colors
485
+ # make it much easier to overview things during debugging (when used through a reader like +tail+ and on a black background), but
486
+ # may complicate matters if you use software like syslog. This is true, by default.
487
+ cattr_accessor :colorize_logging, :instance_writer => false
488
+ @@colorize_logging = true
489
+
490
+ ##
491
+ # :singleton-method:
492
+ # Determines whether to use Time.local (using :local) or Time.utc (using :utc) when pulling dates and times from the database.
493
+ # This is set to :local by default.
494
+ cattr_accessor :default_timezone, :instance_writer => false
495
+ @@default_timezone = :local
496
+
497
+ ##
498
+ # :singleton-method:
499
+ # Specifies the format to use when dumping the database schema with Rails'
500
+ # Rakefile. If :sql, the schema is dumped as (potentially database-
501
+ # specific) SQL statements. If :ruby, the schema is dumped as an
502
+ # ActiveRecord::Schema file which can be loaded into any database that
503
+ # supports migrations. Use :ruby if you want to have different database
504
+ # adapters for, e.g., your development and test environments.
505
+ cattr_accessor :schema_format , :instance_writer => false
506
+ @@schema_format = :ruby
507
+
508
+ ##
509
+ # :singleton-method:
510
+ # Specify whether or not to use timestamps for migration numbers
511
+ cattr_accessor :timestamped_migrations , :instance_writer => false
512
+ @@timestamped_migrations = true
513
+
514
+ # Determine whether to store the full constant name including namespace when using STI
515
+ superclass_delegating_accessor :store_full_sti_class
516
+ self.store_full_sti_class = false
517
+
518
+ # Stores the default scope for the class
519
+ class_inheritable_accessor :default_scoping, :instance_writer => false
520
+ self.default_scoping = []
521
+
522
+ class << self # Class methods
523
+ # Find operates with four different retrieval approaches:
524
+ #
525
+ # * Find by id - This can either be a specific id (1), a list of ids (1, 5, 6), or an array of ids ([5, 6, 10]).
526
+ # If no record can be found for all of the listed ids, then RecordNotFound will be raised.
527
+ # * Find first - This will return the first record matched by the options used. These options can either be specific
528
+ # conditions or merely an order. If no record can be matched, +nil+ is returned. Use
529
+ # <tt>Model.find(:first, *args)</tt> or its shortcut <tt>Model.first(*args)</tt>.
530
+ # * Find last - This will return the last record matched by the options used. These options can either be specific
531
+ # conditions or merely an order. If no record can be matched, +nil+ is returned. Use
532
+ # <tt>Model.find(:last, *args)</tt> or its shortcut <tt>Model.last(*args)</tt>.
533
+ # * Find all - This will return all the records matched by the options used.
534
+ # If no records are found, an empty array is returned. Use
535
+ # <tt>Model.find(:all, *args)</tt> or its shortcut <tt>Model.all(*args)</tt>.
536
+ #
537
+ # All approaches accept an options hash as their last parameter.
538
+ #
539
+ # ==== Parameters
540
+ #
541
+ # * <tt>:conditions</tt> - An SQL fragment like "administrator = 1", <tt>[ "user_name = ?", username ]</tt>, or <tt>["user_name = :user_name", { :user_name => user_name }]</tt>. See conditions in the intro.
542
+ # * <tt>:order</tt> - An SQL fragment like "created_at DESC, name".
543
+ # * <tt>:group</tt> - An attribute name by which the result should be grouped. Uses the <tt>GROUP BY</tt> SQL-clause.
544
+ # * <tt>:having</tt> - Combined with +:group+ this can be used to filter the records that a <tt>GROUP BY</tt> returns. Uses the <tt>HAVING</tt> SQL-clause.
545
+ # * <tt>:limit</tt> - An integer determining the limit on the number of rows that should be returned.
546
+ # * <tt>:offset</tt> - An integer determining the offset from where the rows should be fetched. So at 5, it would skip rows 0 through 4.
547
+ # * <tt>:joins</tt> - Either an SQL fragment for additional joins like "LEFT JOIN comments ON comments.post_id = id" (rarely needed),
548
+ # named associations in the same form used for the <tt>:include</tt> option, which will perform an <tt>INNER JOIN</tt> on the associated table(s),
549
+ # or an array containing a mixture of both strings and named associations.
550
+ # If the value is a string, then the records will be returned read-only since they will have attributes that do not correspond to the table's columns.
551
+ # Pass <tt>:readonly => false</tt> to override.
552
+ # * <tt>:include</tt> - Names associations that should be loaded alongside. The symbols named refer
553
+ # to already defined associations. See eager loading under Associations.
554
+ # * <tt>:select</tt> - By default, this is "*" as in "SELECT * FROM", but can be changed if you, for example, want to do a join but not
555
+ # include the joined columns. Takes a string with the SELECT SQL fragment (e.g. "id, name").
556
+ # * <tt>:from</tt> - By default, this is the table name of the class, but can be changed to an alternate table name (or even the name
557
+ # of a database view).
558
+ # * <tt>:readonly</tt> - Mark the returned records read-only so they cannot be saved or updated.
559
+ # * <tt>:lock</tt> - An SQL fragment like "FOR UPDATE" or "LOCK IN SHARE MODE".
560
+ # <tt>:lock => true</tt> gives connection's default exclusive lock, usually "FOR UPDATE".
561
+ #
562
+ # ==== Examples
563
+ #
564
+ # # find by id
565
+ # Person.find(1) # returns the object for ID = 1
566
+ # Person.find(1, 2, 6) # returns an array for objects with IDs in (1, 2, 6)
567
+ # Person.find([7, 17]) # returns an array for objects with IDs in (7, 17)
568
+ # Person.find([1]) # returns an array for the object with ID = 1
569
+ # Person.find(1, :conditions => "administrator = 1", :order => "created_on DESC")
570
+ #
571
+ # Note that returned records may not be in the same order as the ids you
572
+ # provide since database rows are unordered. Give an explicit <tt>:order</tt>
573
+ # to ensure the results are sorted.
574
+ #
575
+ # ==== Examples
576
+ #
577
+ # # find first
578
+ # Person.find(:first) # returns the first object fetched by SELECT * FROM people
579
+ # Person.find(:first, :conditions => [ "user_name = ?", user_name])
580
+ # Person.find(:first, :conditions => [ "user_name = :u", { :u => user_name }])
581
+ # Person.find(:first, :order => "created_on DESC", :offset => 5)
582
+ #
583
+ # # find last
584
+ # Person.find(:last) # returns the last object fetched by SELECT * FROM people
585
+ # Person.find(:last, :conditions => [ "user_name = ?", user_name])
586
+ # Person.find(:last, :order => "created_on DESC", :offset => 5)
587
+ #
588
+ # # find all
589
+ # Person.find(:all) # returns an array of objects for all the rows fetched by SELECT * FROM people
590
+ # Person.find(:all, :conditions => [ "category IN (?)", categories], :limit => 50)
591
+ # Person.find(:all, :conditions => { :friends => ["Bob", "Steve", "Fred"] }
592
+ # Person.find(:all, :offset => 10, :limit => 10)
593
+ # Person.find(:all, :include => [ :account, :friends ])
594
+ # Person.find(:all, :group => "category")
595
+ #
596
+ # Example for find with a lock: Imagine two concurrent transactions:
597
+ # each will read <tt>person.visits == 2</tt>, add 1 to it, and save, resulting
598
+ # in two saves of <tt>person.visits = 3</tt>. By locking the row, the second
599
+ # transaction has to wait until the first is finished; we get the
600
+ # expected <tt>person.visits == 4</tt>.
601
+ #
602
+ # Person.transaction do
603
+ # person = Person.find(1, :lock => true)
604
+ # person.visits += 1
605
+ # person.save!
606
+ # end
607
+ def find(*args)
608
+ options = args.extract_options!
609
+ validate_find_options(options)
610
+ set_readonly_option!(options)
611
+
612
+ case args.first
613
+ when :first then find_initial(options)
614
+ when :last then find_last(options)
615
+ when :all then find_every(options)
616
+ else find_from_ids(args, options)
617
+ end
618
+ end
619
+
620
+ # A convenience wrapper for <tt>find(:first, *args)</tt>. You can pass in all the
621
+ # same arguments to this method as you can to <tt>find(:first)</tt>.
622
+ def first(*args)
623
+ find(:first, *args)
624
+ end
625
+
626
+ # A convenience wrapper for <tt>find(:last, *args)</tt>. You can pass in all the
627
+ # same arguments to this method as you can to <tt>find(:last)</tt>.
628
+ def last(*args)
629
+ find(:last, *args)
630
+ end
631
+
632
+ # This is an alias for find(:all). You can pass in all the same arguments to this method as you can
633
+ # to find(:all)
634
+ def all(*args)
635
+ find(:all, *args)
636
+ end
637
+
638
+ # Executes a custom SQL query against your database and returns all the results. The results will
639
+ # be returned as an array with columns requested encapsulated as attributes of the model you call
640
+ # this method from. If you call <tt>Product.find_by_sql</tt> then the results will be returned in
641
+ # a Product object with the attributes you specified in the SQL query.
642
+ #
643
+ # If you call a complicated SQL query which spans multiple tables the columns specified by the
644
+ # SELECT will be attributes of the model, whether or not they are columns of the corresponding
645
+ # table.
646
+ #
647
+ # The +sql+ parameter is a full SQL query as a string. It will be called as is, there will be
648
+ # no database agnostic conversions performed. This should be a last resort because using, for example,
649
+ # MySQL specific terms will lock you to using that particular database engine or require you to
650
+ # change your call if you switch engines.
651
+ #
652
+ # ==== Examples
653
+ # # A simple SQL query spanning multiple tables
654
+ # Post.find_by_sql "SELECT p.title, c.author FROM posts p, comments c WHERE p.id = c.post_id"
655
+ # > [#<Post:0x36bff9c @attributes={"title"=>"Ruby Meetup", "first_name"=>"Quentin"}>, ...]
656
+ #
657
+ # # You can use the same string replacement techniques as you can with ActiveRecord#find
658
+ # Post.find_by_sql ["SELECT title FROM posts WHERE author = ? AND created > ?", author_id, start_date]
659
+ # > [#<Post:0x36bff9c @attributes={"first_name"=>"The Cheap Man Buys Twice"}>, ...]
660
+ def find_by_sql(sql)
661
+ connection.select_all(sanitize_sql(sql), "#{name} Load").collect! { |record| instantiate(record) }
662
+ end
663
+
664
+ # Returns true if a record exists in the table that matches the +id+ or
665
+ # conditions given, or false otherwise. The argument can take five forms:
666
+ #
667
+ # * Integer - Finds the record with this primary key.
668
+ # * String - Finds the record with a primary key corresponding to this
669
+ # string (such as <tt>'5'</tt>).
670
+ # * Array - Finds the record that matches these +find+-style conditions
671
+ # (such as <tt>['color = ?', 'red']</tt>).
672
+ # * Hash - Finds the record that matches these +find+-style conditions
673
+ # (such as <tt>{:color => 'red'}</tt>).
674
+ # * No args - Returns false if the table is empty, true otherwise.
675
+ #
676
+ # For more information about specifying conditions as a Hash or Array,
677
+ # see the Conditions section in the introduction to ActiveRecord::Base.
678
+ #
679
+ # Note: You can't pass in a condition as a string (like <tt>name =
680
+ # 'Jamie'</tt>), since it would be sanitized and then queried against
681
+ # the primary key column, like <tt>id = 'name = \'Jamie\''</tt>.
682
+ #
683
+ # ==== Examples
684
+ # Person.exists?(5)
685
+ # Person.exists?('5')
686
+ # Person.exists?(:name => "David")
687
+ # Person.exists?(['name LIKE ?', "%#{query}%"])
688
+ # Person.exists?
689
+ def exists?(id_or_conditions = {})
690
+ find_initial(
691
+ :select => "#{quoted_table_name}.#{primary_key}",
692
+ :conditions => expand_id_conditions(id_or_conditions)) ? true : false
693
+ end
694
+
695
+ # Creates an object (or multiple objects) and saves it to the database, if validations pass.
696
+ # The resulting object is returned whether the object was saved successfully to the database or not.
697
+ #
698
+ # The +attributes+ parameter can be either be a Hash or an Array of Hashes. These Hashes describe the
699
+ # attributes on the objects that are to be created.
700
+ #
701
+ # ==== Examples
702
+ # # Create a single new object
703
+ # User.create(:first_name => 'Jamie')
704
+ #
705
+ # # Create an Array of new objects
706
+ # User.create([{ :first_name => 'Jamie' }, { :first_name => 'Jeremy' }])
707
+ #
708
+ # # Create a single object and pass it into a block to set other attributes.
709
+ # User.create(:first_name => 'Jamie') do |u|
710
+ # u.is_admin = false
711
+ # end
712
+ #
713
+ # # Creating an Array of new objects using a block, where the block is executed for each object:
714
+ # User.create([{ :first_name => 'Jamie' }, { :first_name => 'Jeremy' }]) do |u|
715
+ # u.is_admin = false
716
+ # end
717
+ def create(attributes = nil, &block)
718
+ if attributes.is_a?(Array)
719
+ attributes.collect { |attr| create(attr, &block) }
720
+ else
721
+ object = new(attributes)
722
+ yield(object) if block_given?
723
+ object.save
724
+ object
725
+ end
726
+ end
727
+
728
+ # Updates an object (or multiple objects) and saves it to the database, if validations pass.
729
+ # The resulting object is returned whether the object was saved successfully to the database or not.
730
+ #
731
+ # ==== Parameters
732
+ #
733
+ # * +id+ - This should be the id or an array of ids to be updated.
734
+ # * +attributes+ - This should be a hash of attributes to be set on the object, or an array of hashes.
735
+ #
736
+ # ==== Examples
737
+ #
738
+ # # Updating one record:
739
+ # Person.update(15, :user_name => 'Samuel', :group => 'expert')
740
+ #
741
+ # # Updating multiple records:
742
+ # people = { 1 => { "first_name" => "David" }, 2 => { "first_name" => "Jeremy" } }
743
+ # Person.update(people.keys, people.values)
744
+ def update(id, attributes)
745
+ if id.is_a?(Array)
746
+ idx = -1
747
+ id.collect { |one_id| idx += 1; update(one_id, attributes[idx]) }
748
+ else
749
+ object = find(id)
750
+ object.update_attributes(attributes)
751
+ object
752
+ end
753
+ end
754
+
755
+ # Deletes the row with a primary key matching the +id+ argument, using a
756
+ # SQL +DELETE+ statement, and returns the number of rows deleted. Active
757
+ # Record objects are not instantiated, so the object's callbacks are not
758
+ # executed, including any <tt>:dependent</tt> association options or
759
+ # Observer methods.
760
+ #
761
+ # You can delete multiple rows at once by passing an Array of <tt>id</tt>s.
762
+ #
763
+ # Note: Although it is often much faster than the alternative,
764
+ # <tt>#destroy</tt>, skipping callbacks might bypass business logic in
765
+ # your application that ensures referential integrity or performs other
766
+ # essential jobs.
767
+ #
768
+ # ==== Examples
769
+ #
770
+ # # Delete a single row
771
+ # Todo.delete(1)
772
+ #
773
+ # # Delete multiple rows
774
+ # Todo.delete([2,3,4])
775
+ def delete(id)
776
+ delete_all([ "#{connection.quote_column_name(primary_key)} IN (?)", id ])
777
+ end
778
+
779
+ # Destroy an object (or multiple objects) that has the given id, the object is instantiated first,
780
+ # therefore all callbacks and filters are fired off before the object is deleted. This method is
781
+ # less efficient than ActiveRecord#delete but allows cleanup methods and other actions to be run.
782
+ #
783
+ # This essentially finds the object (or multiple objects) with the given id, creates a new object
784
+ # from the attributes, and then calls destroy on it.
785
+ #
786
+ # ==== Parameters
787
+ #
788
+ # * +id+ - Can be either an Integer or an Array of Integers.
789
+ #
790
+ # ==== Examples
791
+ #
792
+ # # Destroy a single object
793
+ # Todo.destroy(1)
794
+ #
795
+ # # Destroy multiple objects
796
+ # todos = [1,2,3]
797
+ # Todo.destroy(todos)
798
+ def destroy(id)
799
+ if id.is_a?(Array)
800
+ id.map { |one_id| destroy(one_id) }
801
+ else
802
+ find(id).destroy
803
+ end
804
+ end
805
+
806
+ # Updates all records with details given if they match a set of conditions supplied, limits and order can
807
+ # also be supplied. This method constructs a single SQL UPDATE statement and sends it straight to the
808
+ # database. It does not instantiate the involved models and it does not trigger Active Record callbacks.
809
+ #
810
+ # ==== Parameters
811
+ #
812
+ # * +updates+ - A string of column and value pairs that will be set on any records that match conditions. This creates the SET clause of the generated SQL.
813
+ # * +conditions+ - An SQL fragment like "administrator = 1" or [ "user_name = ?", username ]. See conditions in the intro for more info.
814
+ # * +options+ - Additional options are <tt>:limit</tt> and <tt>:order</tt>, see the examples for usage.
815
+ #
816
+ # ==== Examples
817
+ #
818
+ # # Update all billing objects with the 3 different attributes given
819
+ # Billing.update_all( "category = 'authorized', approved = 1, author = 'David'" )
820
+ #
821
+ # # Update records that match our conditions
822
+ # Billing.update_all( "author = 'David'", "title LIKE '%Rails%'" )
823
+ #
824
+ # # Update records that match our conditions but limit it to 5 ordered by date
825
+ # Billing.update_all( "author = 'David'", "title LIKE '%Rails%'",
826
+ # :order => 'created_at', :limit => 5 )
827
+ def update_all(updates, conditions = nil, options = {})
828
+ sql = "UPDATE #{quoted_table_name} SET #{sanitize_sql_for_assignment(updates)} "
829
+
830
+ scope = scope(:find)
831
+
832
+ select_sql = ""
833
+ add_conditions!(select_sql, conditions, scope)
834
+
835
+ if options.has_key?(:limit) || (scope && scope[:limit])
836
+ # Only take order from scope if limit is also provided by scope, this
837
+ # is useful for updating a has_many association with a limit.
838
+ add_order!(select_sql, options[:order], scope)
839
+
840
+ add_limit!(select_sql, options, scope)
841
+ sql.concat(connection.limited_update_conditions(select_sql, quoted_table_name, connection.quote_column_name(primary_key)))
842
+ else
843
+ add_order!(select_sql, options[:order], nil)
844
+ sql.concat(select_sql)
845
+ end
846
+
847
+ connection.update(sql, "#{name} Update")
848
+ end
849
+
850
+ # Destroys the records matching +conditions+ by instantiating each
851
+ # record and calling its +destroy+ method. Each object's callbacks are
852
+ # executed (including <tt>:dependent</tt> association options and
853
+ # +before_destroy+/+after_destroy+ Observer methods). Returns the
854
+ # collection of objects that were destroyed; each will be frozen, to
855
+ # reflect that no changes should be made (since they can't be
856
+ # persisted).
857
+ #
858
+ # Note: Instantiation, callback execution, and deletion of each
859
+ # record can be time consuming when you're removing many records at
860
+ # once. It generates at least one SQL +DELETE+ query per record (or
861
+ # possibly more, to enforce your callbacks). If you want to delete many
862
+ # rows quickly, without concern for their associations or callbacks, use
863
+ # +delete_all+ instead.
864
+ #
865
+ # ==== Parameters
866
+ #
867
+ # * +conditions+ - A string, array, or hash that specifies which records
868
+ # to destroy. If omitted, all records are destroyed. See the
869
+ # Conditions section in the introduction to ActiveRecord::Base for
870
+ # more information.
871
+ #
872
+ # ==== Examples
873
+ #
874
+ # Person.destroy_all("last_login < '2004-04-04'")
875
+ # Person.destroy_all(:status => "inactive")
876
+ def destroy_all(conditions = nil)
877
+ find(:all, :conditions => conditions).each { |object| object.destroy }
878
+ end
879
+
880
+ # Deletes the records matching +conditions+ without instantiating the records first, and hence not
881
+ # calling the +destroy+ method nor invoking callbacks. This is a single SQL DELETE statement that
882
+ # goes straight to the database, much more efficient than +destroy_all+. Be careful with relations
883
+ # though, in particular <tt>:dependent</tt> rules defined on associations are not honored. Returns
884
+ # the number of rows affected.
885
+ #
886
+ # ==== Parameters
887
+ #
888
+ # * +conditions+ - Conditions are specified the same way as with +find+ method.
889
+ #
890
+ # ==== Example
891
+ #
892
+ # Post.delete_all("person_id = 5 AND (category = 'Something' OR category = 'Else')")
893
+ # Post.delete_all(["person_id = ? AND (category = ? OR category = ?)", 5, 'Something', 'Else'])
894
+ #
895
+ # Both calls delete the affected posts all at once with a single DELETE statement. If you need to destroy dependent
896
+ # associations or call your <tt>before_*</tt> or +after_destroy+ callbacks, use the +destroy_all+ method instead.
897
+ def delete_all(conditions = nil)
898
+ sql = "DELETE FROM #{quoted_table_name} "
899
+ add_conditions!(sql, conditions, scope(:find))
900
+ connection.delete(sql, "#{name} Delete all")
901
+ end
902
+
903
+ # Returns the result of an SQL statement that should only include a COUNT(*) in the SELECT part.
904
+ # The use of this method should be restricted to complicated SQL queries that can't be executed
905
+ # using the ActiveRecord::Calculations class methods. Look into those before using this.
906
+ #
907
+ # ==== Parameters
908
+ #
909
+ # * +sql+ - An SQL statement which should return a count query from the database, see the example below.
910
+ #
911
+ # ==== Examples
912
+ #
913
+ # Product.count_by_sql "SELECT COUNT(*) FROM sales s, customers c WHERE s.customer_id = c.id"
914
+ def count_by_sql(sql)
915
+ sql = sanitize_conditions(sql)
916
+ connection.select_value(sql, "#{name} Count").to_i
917
+ end
918
+
919
+ # A generic "counter updater" implementation, intended primarily to be
920
+ # used by increment_counter and decrement_counter, but which may also
921
+ # be useful on its own. It simply does a direct SQL update for the record
922
+ # with the given ID, altering the given hash of counters by the amount
923
+ # given by the corresponding value:
924
+ #
925
+ # ==== Parameters
926
+ #
927
+ # * +id+ - The id of the object you wish to update a counter on or an Array of ids.
928
+ # * +counters+ - An Array of Hashes containing the names of the fields
929
+ # to update as keys and the amount to update the field by as values.
930
+ #
931
+ # ==== Examples
932
+ #
933
+ # # For the Post with id of 5, decrement the comment_count by 1, and
934
+ # # increment the action_count by 1
935
+ # Post.update_counters 5, :comment_count => -1, :action_count => 1
936
+ # # Executes the following SQL:
937
+ # # UPDATE posts
938
+ # # SET comment_count = comment_count - 1,
939
+ # # action_count = action_count + 1
940
+ # # WHERE id = 5
941
+ #
942
+ # # For the Posts with id of 10 and 15, increment the comment_count by 1
943
+ # Post.update_counters [10, 15], :comment_count => 1
944
+ # # Executes the following SQL:
945
+ # # UPDATE posts
946
+ # # SET comment_count = comment_count + 1,
947
+ # # WHERE id IN (10, 15)
948
+ def update_counters(id, counters)
949
+ updates = counters.inject([]) { |list, (counter_name, increment)|
950
+ sign = increment < 0 ? "-" : "+"
951
+ list << "#{connection.quote_column_name(counter_name)} = COALESCE(#{connection.quote_column_name(counter_name)}, 0) #{sign} #{increment.abs}"
952
+ }.join(", ")
953
+
954
+ if id.is_a?(Array)
955
+ ids_list = id.map {|i| quote_value(i)}.join(', ')
956
+ condition = "IN (#{ids_list})"
957
+ else
958
+ condition = "= #{quote_value(id)}"
959
+ end
960
+
961
+ update_all(updates, "#{connection.quote_column_name(primary_key)} #{condition}")
962
+ end
963
+
964
+ # Increment a number field by one, usually representing a count.
965
+ #
966
+ # This is used for caching aggregate values, so that they don't need to be computed every time.
967
+ # For example, a DiscussionBoard may cache post_count and comment_count otherwise every time the board is
968
+ # shown it would have to run an SQL query to find how many posts and comments there are.
969
+ #
970
+ # ==== Parameters
971
+ #
972
+ # * +counter_name+ - The name of the field that should be incremented.
973
+ # * +id+ - The id of the object that should be incremented.
974
+ #
975
+ # ==== Examples
976
+ #
977
+ # # Increment the post_count column for the record with an id of 5
978
+ # DiscussionBoard.increment_counter(:post_count, 5)
979
+ def increment_counter(counter_name, id)
980
+ update_counters(id, counter_name => 1)
981
+ end
982
+
983
+ # Decrement a number field by one, usually representing a count.
984
+ #
985
+ # This works the same as increment_counter but reduces the column value by 1 instead of increasing it.
986
+ #
987
+ # ==== Parameters
988
+ #
989
+ # * +counter_name+ - The name of the field that should be decremented.
990
+ # * +id+ - The id of the object that should be decremented.
991
+ #
992
+ # ==== Examples
993
+ #
994
+ # # Decrement the post_count column for the record with an id of 5
995
+ # DiscussionBoard.decrement_counter(:post_count, 5)
996
+ def decrement_counter(counter_name, id)
997
+ update_counters(id, counter_name => -1)
998
+ end
999
+
1000
+ # Attributes named in this macro are protected from mass-assignment,
1001
+ # such as <tt>new(attributes)</tt>,
1002
+ # <tt>update_attributes(attributes)</tt>, or
1003
+ # <tt>attributes=(attributes)</tt>.
1004
+ #
1005
+ # Mass-assignment to these attributes will simply be ignored, to assign
1006
+ # to them you can use direct writer methods. This is meant to protect
1007
+ # sensitive attributes from being overwritten by malicious users
1008
+ # tampering with URLs or forms.
1009
+ #
1010
+ # class Customer < ActiveRecord::Base
1011
+ # attr_protected :credit_rating
1012
+ # end
1013
+ #
1014
+ # customer = Customer.new("name" => David, "credit_rating" => "Excellent")
1015
+ # customer.credit_rating # => nil
1016
+ # customer.attributes = { "description" => "Jolly fellow", "credit_rating" => "Superb" }
1017
+ # customer.credit_rating # => nil
1018
+ #
1019
+ # customer.credit_rating = "Average"
1020
+ # customer.credit_rating # => "Average"
1021
+ #
1022
+ # To start from an all-closed default and enable attributes as needed,
1023
+ # have a look at +attr_accessible+.
1024
+ def attr_protected(*attributes)
1025
+ write_inheritable_attribute(:attr_protected, Set.new(attributes.map(&:to_s)) + (protected_attributes || []))
1026
+ end
1027
+
1028
+ # Returns an array of all the attributes that have been protected from mass-assignment.
1029
+ def protected_attributes # :nodoc:
1030
+ read_inheritable_attribute(:attr_protected)
1031
+ end
1032
+
1033
+ # Specifies a white list of model attributes that can be set via
1034
+ # mass-assignment, such as <tt>new(attributes)</tt>,
1035
+ # <tt>update_attributes(attributes)</tt>, or
1036
+ # <tt>attributes=(attributes)</tt>
1037
+ #
1038
+ # This is the opposite of the +attr_protected+ macro: Mass-assignment
1039
+ # will only set attributes in this list, to assign to the rest of
1040
+ # attributes you can use direct writer methods. This is meant to protect
1041
+ # sensitive attributes from being overwritten by malicious users
1042
+ # tampering with URLs or forms. If you'd rather start from an all-open
1043
+ # default and restrict attributes as needed, have a look at
1044
+ # +attr_protected+.
1045
+ #
1046
+ # class Customer < ActiveRecord::Base
1047
+ # attr_accessible :name, :nickname
1048
+ # end
1049
+ #
1050
+ # customer = Customer.new(:name => "David", :nickname => "Dave", :credit_rating => "Excellent")
1051
+ # customer.credit_rating # => nil
1052
+ # customer.attributes = { :name => "Jolly fellow", :credit_rating => "Superb" }
1053
+ # customer.credit_rating # => nil
1054
+ #
1055
+ # customer.credit_rating = "Average"
1056
+ # customer.credit_rating # => "Average"
1057
+ def attr_accessible(*attributes)
1058
+ write_inheritable_attribute(:attr_accessible, Set.new(attributes.map(&:to_s)) + (accessible_attributes || []))
1059
+ end
1060
+
1061
+ # Returns an array of all the attributes that have been made accessible to mass-assignment.
1062
+ def accessible_attributes # :nodoc:
1063
+ read_inheritable_attribute(:attr_accessible)
1064
+ end
1065
+
1066
+ # Attributes listed as readonly can be set for a new record, but will be ignored in database updates afterwards.
1067
+ def attr_readonly(*attributes)
1068
+ write_inheritable_attribute(:attr_readonly, Set.new(attributes.map(&:to_s)) + (readonly_attributes || []))
1069
+ end
1070
+
1071
+ # Returns an array of all the attributes that have been specified as readonly.
1072
+ def readonly_attributes
1073
+ read_inheritable_attribute(:attr_readonly)
1074
+ end
1075
+
1076
+ # If you have an attribute that needs to be saved to the database as an object, and retrieved as the same object,
1077
+ # then specify the name of that attribute using this method and it will be handled automatically.
1078
+ # The serialization is done through YAML. If +class_name+ is specified, the serialized object must be of that
1079
+ # class on retrieval or SerializationTypeMismatch will be raised.
1080
+ #
1081
+ # ==== Parameters
1082
+ #
1083
+ # * +attr_name+ - The field name that should be serialized.
1084
+ # * +class_name+ - Optional, class name that the object type should be equal to.
1085
+ #
1086
+ # ==== Example
1087
+ # # Serialize a preferences attribute
1088
+ # class User
1089
+ # serialize :preferences
1090
+ # end
1091
+ def serialize(attr_name, class_name = Object)
1092
+ serialized_attributes[attr_name.to_s] = class_name
1093
+ end
1094
+
1095
+ # Returns a hash of all the attributes that have been specified for serialization as keys and their class restriction as values.
1096
+ def serialized_attributes
1097
+ read_inheritable_attribute(:attr_serialized) or write_inheritable_attribute(:attr_serialized, {})
1098
+ end
1099
+
1100
+ # Guesses the table name (in forced lower-case) based on the name of the class in the inheritance hierarchy descending
1101
+ # directly from ActiveRecord::Base. So if the hierarchy looks like: Reply < Message < ActiveRecord::Base, then Message is used
1102
+ # to guess the table name even when called on Reply. The rules used to do the guess are handled by the Inflector class
1103
+ # in Active Support, which knows almost all common English inflections. You can add new inflections in config/initializers/inflections.rb.
1104
+ #
1105
+ # Nested classes are given table names prefixed by the singular form of
1106
+ # the parent's table name. Enclosing modules are not considered.
1107
+ #
1108
+ # ==== Examples
1109
+ #
1110
+ # class Invoice < ActiveRecord::Base; end;
1111
+ # file class table_name
1112
+ # invoice.rb Invoice invoices
1113
+ #
1114
+ # class Invoice < ActiveRecord::Base; class Lineitem < ActiveRecord::Base; end; end;
1115
+ # file class table_name
1116
+ # invoice.rb Invoice::Lineitem invoice_lineitems
1117
+ #
1118
+ # module Invoice; class Lineitem < ActiveRecord::Base; end; end;
1119
+ # file class table_name
1120
+ # invoice/lineitem.rb Invoice::Lineitem lineitems
1121
+ #
1122
+ # Additionally, the class-level +table_name_prefix+ is prepended and the
1123
+ # +table_name_suffix+ is appended. So if you have "myapp_" as a prefix,
1124
+ # the table name guess for an Invoice class becomes "myapp_invoices".
1125
+ # Invoice::Lineitem becomes "myapp_invoice_lineitems".
1126
+ #
1127
+ # You can also overwrite this class method to allow for unguessable
1128
+ # links, such as a Mouse class with a link to a "mice" table. Example:
1129
+ #
1130
+ # class Mouse < ActiveRecord::Base
1131
+ # set_table_name "mice"
1132
+ # end
1133
+ def table_name
1134
+ reset_table_name
1135
+ end
1136
+
1137
+ def reset_table_name #:nodoc:
1138
+ base = base_class
1139
+
1140
+ name =
1141
+ # STI subclasses always use their superclass' table.
1142
+ unless self == base
1143
+ base.table_name
1144
+ else
1145
+ # Nested classes are prefixed with singular parent table name.
1146
+ if parent < ActiveRecord::Base && !parent.abstract_class?
1147
+ contained = parent.table_name
1148
+ contained = contained.singularize if parent.pluralize_table_names
1149
+ contained << '_'
1150
+ end
1151
+ name = "#{table_name_prefix}#{contained}#{undecorated_table_name(base.name)}#{table_name_suffix}"
1152
+ end
1153
+
1154
+ set_table_name(name)
1155
+ name
1156
+ end
1157
+
1158
+ # Defines the primary key field -- can be overridden in subclasses. Overwriting will negate any effect of the
1159
+ # primary_key_prefix_type setting, though.
1160
+ def primary_key
1161
+ reset_primary_key
1162
+ end
1163
+
1164
+ def reset_primary_key #:nodoc:
1165
+ key = get_primary_key(base_class.name)
1166
+ set_primary_key(key)
1167
+ key
1168
+ end
1169
+
1170
+ def get_primary_key(base_name) #:nodoc:
1171
+ key = 'id'
1172
+ case primary_key_prefix_type
1173
+ when :table_name
1174
+ key = base_name.to_s.foreign_key(false)
1175
+ when :table_name_with_underscore
1176
+ key = base_name.to_s.foreign_key
1177
+ end
1178
+ key
1179
+ end
1180
+
1181
+ # Defines the column name for use with single table inheritance
1182
+ # -- can be set in subclasses like so: self.inheritance_column = "type_id"
1183
+ def inheritance_column
1184
+ @inheritance_column ||= "type".freeze
1185
+ end
1186
+
1187
+ # Lazy-set the sequence name to the connection's default. This method
1188
+ # is only ever called once since set_sequence_name overrides it.
1189
+ def sequence_name #:nodoc:
1190
+ reset_sequence_name
1191
+ end
1192
+
1193
+ def reset_sequence_name #:nodoc:
1194
+ default = connection.default_sequence_name(table_name, primary_key)
1195
+ set_sequence_name(default)
1196
+ default
1197
+ end
1198
+
1199
+ # Sets the table name to use to the given value, or (if the value
1200
+ # is nil or false) to the value returned by the given block.
1201
+ #
1202
+ # class Project < ActiveRecord::Base
1203
+ # set_table_name "project"
1204
+ # end
1205
+ def set_table_name(value = nil, &block)
1206
+ define_attr_method :table_name, value, &block
1207
+ end
1208
+ alias :table_name= :set_table_name
1209
+
1210
+ # Sets the name of the primary key column to use to the given value,
1211
+ # or (if the value is nil or false) to the value returned by the given
1212
+ # block.
1213
+ #
1214
+ # class Project < ActiveRecord::Base
1215
+ # set_primary_key "sysid"
1216
+ # end
1217
+ def set_primary_key(value = nil, &block)
1218
+ define_attr_method :primary_key, value, &block
1219
+ end
1220
+ alias :primary_key= :set_primary_key
1221
+
1222
+ # Sets the name of the inheritance column to use to the given value,
1223
+ # or (if the value # is nil or false) to the value returned by the
1224
+ # given block.
1225
+ #
1226
+ # class Project < ActiveRecord::Base
1227
+ # set_inheritance_column do
1228
+ # original_inheritance_column + "_id"
1229
+ # end
1230
+ # end
1231
+ def set_inheritance_column(value = nil, &block)
1232
+ define_attr_method :inheritance_column, value, &block
1233
+ end
1234
+ alias :inheritance_column= :set_inheritance_column
1235
+
1236
+ # Sets the name of the sequence to use when generating ids to the given
1237
+ # value, or (if the value is nil or false) to the value returned by the
1238
+ # given block. This is required for Oracle and is useful for any
1239
+ # database which relies on sequences for primary key generation.
1240
+ #
1241
+ # If a sequence name is not explicitly set when using Oracle or Firebird,
1242
+ # it will default to the commonly used pattern of: #{table_name}_seq
1243
+ #
1244
+ # If a sequence name is not explicitly set when using PostgreSQL, it
1245
+ # will discover the sequence corresponding to your primary key for you.
1246
+ #
1247
+ # class Project < ActiveRecord::Base
1248
+ # set_sequence_name "projectseq" # default would have been "project_seq"
1249
+ # end
1250
+ def set_sequence_name(value = nil, &block)
1251
+ define_attr_method :sequence_name, value, &block
1252
+ end
1253
+ alias :sequence_name= :set_sequence_name
1254
+
1255
+ # Turns the +table_name+ back into a class name following the reverse rules of +table_name+.
1256
+ def class_name(table_name = table_name) # :nodoc:
1257
+ # remove any prefix and/or suffix from the table name
1258
+ class_name = table_name[table_name_prefix.length..-(table_name_suffix.length + 1)].camelize
1259
+ class_name = class_name.singularize if pluralize_table_names
1260
+ class_name
1261
+ end
1262
+
1263
+ # Indicates whether the table associated with this class exists
1264
+ def table_exists?
1265
+ connection.table_exists?(table_name)
1266
+ end
1267
+
1268
+ # Returns an array of column objects for the table associated with this class.
1269
+ def columns
1270
+ unless defined?(@columns) && @columns
1271
+ @columns = connection.columns(table_name, "#{name} Columns")
1272
+ @columns.each { |column| column.primary = column.name == primary_key }
1273
+ end
1274
+ @columns
1275
+ end
1276
+
1277
+ # Returns a hash of column objects for the table associated with this class.
1278
+ def columns_hash
1279
+ @columns_hash ||= columns.inject({}) { |hash, column| hash[column.name] = column; hash }
1280
+ end
1281
+
1282
+ # Returns an array of column names as strings.
1283
+ def column_names
1284
+ @column_names ||= columns.map { |column| column.name }
1285
+ end
1286
+
1287
+ # Returns an array of column objects where the primary id, all columns ending in "_id" or "_count",
1288
+ # and columns used for single table inheritance have been removed.
1289
+ def content_columns
1290
+ @content_columns ||= columns.reject { |c| c.primary || c.name =~ /(_id|_count)$/ || c.name == inheritance_column }
1291
+ end
1292
+
1293
+ # Returns a hash of all the methods added to query each of the columns in the table with the name of the method as the key
1294
+ # and true as the value. This makes it possible to do O(1) lookups in respond_to? to check if a given method for attribute
1295
+ # is available.
1296
+ def column_methods_hash #:nodoc:
1297
+ @dynamic_methods_hash ||= column_names.inject(Hash.new(false)) do |methods, attr|
1298
+ attr_name = attr.to_s
1299
+ methods[attr.to_sym] = attr_name
1300
+ methods["#{attr}=".to_sym] = attr_name
1301
+ methods["#{attr}?".to_sym] = attr_name
1302
+ methods["#{attr}_before_type_cast".to_sym] = attr_name
1303
+ methods
1304
+ end
1305
+ end
1306
+
1307
+ # Resets all the cached information about columns, which will cause them
1308
+ # to be reloaded on the next request.
1309
+ #
1310
+ # The most common usage pattern for this method is probably in a migration,
1311
+ # when just after creating a table you want to populate it with some default
1312
+ # values, eg:
1313
+ #
1314
+ # class CreateJobLevels < ActiveRecord::Migration
1315
+ # def self.up
1316
+ # create_table :job_levels do |t|
1317
+ # t.integer :id
1318
+ # t.string :name
1319
+ #
1320
+ # t.timestamps
1321
+ # end
1322
+ #
1323
+ # JobLevel.reset_column_information
1324
+ # %w{assistant executive manager director}.each do |type|
1325
+ # JobLevel.create(:name => type)
1326
+ # end
1327
+ # end
1328
+ #
1329
+ # def self.down
1330
+ # drop_table :job_levels
1331
+ # end
1332
+ # end
1333
+ def reset_column_information
1334
+ generated_methods.each { |name| undef_method(name) }
1335
+ @column_names = @columns = @columns_hash = @content_columns = @dynamic_methods_hash = @generated_methods = @inheritance_column = nil
1336
+ end
1337
+
1338
+ def reset_column_information_and_inheritable_attributes_for_all_subclasses#:nodoc:
1339
+ subclasses.each { |klass| klass.reset_inheritable_attributes; klass.reset_column_information }
1340
+ end
1341
+
1342
+ def self_and_descendants_from_active_record#nodoc:
1343
+ klass = self
1344
+ classes = [klass]
1345
+ while klass != klass.base_class
1346
+ classes << klass = klass.superclass
1347
+ end
1348
+ classes
1349
+ rescue
1350
+ # OPTIMIZE this rescue is to fix this test: ./test/cases/reflection_test.rb:56:in `test_human_name_for_column'
1351
+ # Appearantly the method base_class causes some trouble.
1352
+ # It now works for sure.
1353
+ [self]
1354
+ end
1355
+
1356
+ # Transforms attribute key names into a more humane format, such as "First name" instead of "first_name". Example:
1357
+ # Person.human_attribute_name("first_name") # => "First name"
1358
+ # This used to be depricated in favor of humanize, but is now preferred, because it automatically uses the I18n
1359
+ # module now.
1360
+ # Specify +options+ with additional translating options.
1361
+ def human_attribute_name(attribute_key_name, options = {})
1362
+ defaults = self_and_descendants_from_active_record.map do |klass|
1363
+ :"#{klass.name.underscore}.#{attribute_key_name}"
1364
+ end
1365
+ defaults << options[:default] if options[:default]
1366
+ defaults.flatten!
1367
+ defaults << attribute_key_name.to_s.humanize
1368
+ options[:count] ||= 1
1369
+ I18n.translate(defaults.shift, options.merge(:default => defaults, :scope => [:activerecord, :attributes]))
1370
+ end
1371
+
1372
+ # Transform the modelname into a more humane format, using I18n.
1373
+ # Defaults to the basic humanize method.
1374
+ # Default scope of the translation is activerecord.models
1375
+ # Specify +options+ with additional translating options.
1376
+ def human_name(options = {})
1377
+ defaults = self_and_descendants_from_active_record.map do |klass|
1378
+ :"#{klass.name.underscore}"
1379
+ end
1380
+ defaults << self.name.humanize
1381
+ I18n.translate(defaults.shift, {:scope => [:activerecord, :models], :count => 1, :default => defaults}.merge(options))
1382
+ end
1383
+
1384
+ # True if this isn't a concrete subclass needing a STI type condition.
1385
+ def descends_from_active_record?
1386
+ if superclass.abstract_class?
1387
+ superclass.descends_from_active_record?
1388
+ else
1389
+ superclass == Base || !columns_hash.include?(inheritance_column)
1390
+ end
1391
+ end
1392
+
1393
+ def finder_needs_type_condition? #:nodoc:
1394
+ # This is like this because benchmarking justifies the strange :false stuff
1395
+ :true == (@finder_needs_type_condition ||= descends_from_active_record? ? :false : :true)
1396
+ end
1397
+
1398
+ # Returns a string like 'Post id:integer, title:string, body:text'
1399
+ def inspect
1400
+ if self == Base
1401
+ super
1402
+ elsif abstract_class?
1403
+ "#{super}(abstract)"
1404
+ elsif table_exists?
1405
+ attr_list = columns.map { |c| "#{c.name}: #{c.type}" } * ', '
1406
+ "#{super}(#{attr_list})"
1407
+ else
1408
+ "#{super}(Table doesn't exist)"
1409
+ end
1410
+ end
1411
+
1412
+ def quote_value(value, column = nil) #:nodoc:
1413
+ connection.quote(value,column)
1414
+ end
1415
+
1416
+ # Used to sanitize objects before they're used in an SQL SELECT statement. Delegates to <tt>connection.quote</tt>.
1417
+ def sanitize(object) #:nodoc:
1418
+ connection.quote(object)
1419
+ end
1420
+
1421
+ # Log and benchmark multiple statements in a single block. Example:
1422
+ #
1423
+ # Project.benchmark("Creating project") do
1424
+ # project = Project.create("name" => "stuff")
1425
+ # project.create_manager("name" => "David")
1426
+ # project.milestones << Milestone.find(:all)
1427
+ # end
1428
+ #
1429
+ # The benchmark is only recorded if the current level of the logger is less than or equal to the <tt>log_level</tt>,
1430
+ # which makes it easy to include benchmarking statements in production software that will remain inexpensive because
1431
+ # the benchmark will only be conducted if the log level is low enough.
1432
+ #
1433
+ # The logging of the multiple statements is turned off unless <tt>use_silence</tt> is set to false.
1434
+ def benchmark(title, log_level = Logger::DEBUG, use_silence = true)
1435
+ if logger && logger.level <= log_level
1436
+ result = nil
1437
+ ms = Benchmark.ms { result = use_silence ? silence { yield } : yield }
1438
+ logger.add(log_level, '%s (%.1fms)' % [title, ms])
1439
+ result
1440
+ else
1441
+ yield
1442
+ end
1443
+ end
1444
+
1445
+ # Silences the logger for the duration of the block.
1446
+ def silence
1447
+ old_logger_level, logger.level = logger.level, Logger::ERROR if logger
1448
+ yield
1449
+ ensure
1450
+ logger.level = old_logger_level if logger
1451
+ end
1452
+
1453
+ # Overwrite the default class equality method to provide support for association proxies.
1454
+ def ===(object)
1455
+ object.is_a?(self)
1456
+ end
1457
+
1458
+ # Returns the base AR subclass that this class descends from. If A
1459
+ # extends AR::Base, A.base_class will return A. If B descends from A
1460
+ # through some arbitrarily deep hierarchy, B.base_class will return A.
1461
+ def base_class
1462
+ class_of_active_record_descendant(self)
1463
+ end
1464
+
1465
+ # Set this to true if this is an abstract class (see <tt>abstract_class?</tt>).
1466
+ attr_accessor :abstract_class
1467
+
1468
+ # Returns whether this class is a base AR class. If A is a base class and
1469
+ # B descends from A, then B.base_class will return B.
1470
+ def abstract_class?
1471
+ defined?(@abstract_class) && @abstract_class == true
1472
+ end
1473
+
1474
+ def respond_to?(method_id, include_private = false)
1475
+ if match = DynamicFinderMatch.match(method_id)
1476
+ return true if all_attributes_exists?(match.attribute_names)
1477
+ elsif match = DynamicScopeMatch.match(method_id)
1478
+ return true if all_attributes_exists?(match.attribute_names)
1479
+ end
1480
+
1481
+ super
1482
+ end
1483
+
1484
+ def sti_name
1485
+ store_full_sti_class ? name : name.demodulize
1486
+ end
1487
+
1488
+ # Merges conditions so that the result is a valid +condition+
1489
+ def merge_conditions(*conditions)
1490
+ segments = []
1491
+
1492
+ conditions.each do |condition|
1493
+ unless condition.blank?
1494
+ sql = sanitize_sql(condition)
1495
+ segments << sql unless sql.blank?
1496
+ end
1497
+ end
1498
+
1499
+ "(#{segments.join(') AND (')})" unless segments.empty?
1500
+ end
1501
+
1502
+ private
1503
+ def find_initial(options)
1504
+ options.update(:limit => 1)
1505
+ find_every(options).first
1506
+ end
1507
+
1508
+ def find_last(options)
1509
+ order = options[:order]
1510
+
1511
+ if order
1512
+ order = reverse_sql_order(order)
1513
+ elsif !scoped?(:find, :order)
1514
+ order = "#{table_name}.#{primary_key} DESC"
1515
+ end
1516
+
1517
+ if scoped?(:find, :order)
1518
+ scope = scope(:find)
1519
+ original_scoped_order = scope[:order]
1520
+ scope[:order] = reverse_sql_order(original_scoped_order)
1521
+ end
1522
+
1523
+ begin
1524
+ find_initial(options.merge({ :order => order }))
1525
+ ensure
1526
+ scope[:order] = original_scoped_order if original_scoped_order
1527
+ end
1528
+ end
1529
+
1530
+ def reverse_sql_order(order_query)
1531
+ reversed_query = order_query.to_s.split(/,/).each { |s|
1532
+ if s.match(/\s(asc|ASC)$/)
1533
+ s.gsub!(/\s(asc|ASC)$/, ' DESC')
1534
+ elsif s.match(/\s(desc|DESC)$/)
1535
+ s.gsub!(/\s(desc|DESC)$/, ' ASC')
1536
+ elsif !s.match(/\s(asc|ASC|desc|DESC)$/)
1537
+ s.concat(' DESC')
1538
+ end
1539
+ }.join(',')
1540
+ end
1541
+
1542
+ def find_every(options)
1543
+ include_associations = merge_includes(scope(:find, :include), options[:include])
1544
+
1545
+ if include_associations.any? && references_eager_loaded_tables?(options)
1546
+ records = find_with_associations(options)
1547
+ else
1548
+ records = find_by_sql(construct_finder_sql(options))
1549
+ if include_associations.any?
1550
+ preload_associations(records, include_associations)
1551
+ end
1552
+ end
1553
+
1554
+ records.each { |record| record.readonly! } if options[:readonly]
1555
+
1556
+ records
1557
+ end
1558
+
1559
+ def find_from_ids(ids, options)
1560
+ expects_array = ids.first.kind_of?(Array)
1561
+ return ids.first if expects_array && ids.first.empty?
1562
+
1563
+ ids = ids.flatten.compact.uniq
1564
+
1565
+ case ids.size
1566
+ when 0
1567
+ raise RecordNotFound, "Couldn't find #{name} without an ID"
1568
+ when 1
1569
+ result = find_one(ids.first, options)
1570
+ expects_array ? [ result ] : result
1571
+ else
1572
+ find_some(ids, options)
1573
+ end
1574
+ end
1575
+
1576
+ def find_one(id, options)
1577
+ conditions = " AND (#{sanitize_sql(options[:conditions])})" if options[:conditions]
1578
+ options.update :conditions => "#{quoted_table_name}.#{connection.quote_column_name(primary_key)} = #{quote_value(id,columns_hash[primary_key])}#{conditions}"
1579
+
1580
+ # Use find_every(options).first since the primary key condition
1581
+ # already ensures we have a single record. Using find_initial adds
1582
+ # a superfluous :limit => 1.
1583
+ if result = find_every(options).first
1584
+ result
1585
+ else
1586
+ raise RecordNotFound, "Couldn't find #{name} with ID=#{id}#{conditions}"
1587
+ end
1588
+ end
1589
+
1590
+ def find_some(ids, options)
1591
+ conditions = " AND (#{sanitize_sql(options[:conditions])})" if options[:conditions]
1592
+ ids_list = ids.map { |id| quote_value(id,columns_hash[primary_key]) }.join(',')
1593
+ options.update :conditions => "#{quoted_table_name}.#{connection.quote_column_name(primary_key)} IN (#{ids_list})#{conditions}"
1594
+
1595
+ result = find_every(options)
1596
+
1597
+ # Determine expected size from limit and offset, not just ids.size.
1598
+ expected_size =
1599
+ if options[:limit] && ids.size > options[:limit]
1600
+ options[:limit]
1601
+ else
1602
+ ids.size
1603
+ end
1604
+
1605
+ # 11 ids with limit 3, offset 9 should give 2 results.
1606
+ if options[:offset] && (ids.size - options[:offset] < expected_size)
1607
+ expected_size = ids.size - options[:offset]
1608
+ end
1609
+
1610
+ if result.size == expected_size
1611
+ result
1612
+ else
1613
+ raise RecordNotFound, "Couldn't find all #{name.pluralize} with IDs (#{ids_list})#{conditions} (found #{result.size} results, but was looking for #{expected_size})"
1614
+ end
1615
+ end
1616
+
1617
+ # Finder methods must instantiate through this method to work with the
1618
+ # single-table inheritance model that makes it possible to create
1619
+ # objects of different types from the same table.
1620
+ def instantiate(record)
1621
+ object =
1622
+ if subclass_name = record[inheritance_column]
1623
+ # No type given.
1624
+ if subclass_name.empty?
1625
+ allocate
1626
+
1627
+ else
1628
+ # Ignore type if no column is present since it was probably
1629
+ # pulled in from a sloppy join.
1630
+ unless columns_hash.include?(inheritance_column)
1631
+ allocate
1632
+
1633
+ else
1634
+ begin
1635
+ compute_type(subclass_name).allocate
1636
+ rescue NameError
1637
+ raise SubclassNotFound,
1638
+ "The single-table inheritance mechanism failed to locate the subclass: '#{record[inheritance_column]}'. " +
1639
+ "This error is raised because the column '#{inheritance_column}' is reserved for storing the class in case of inheritance. " +
1640
+ "Please rename this column if you didn't intend it to be used for storing the inheritance class " +
1641
+ "or overwrite #{self.to_s}.inheritance_column to use another column for that information."
1642
+ end
1643
+ end
1644
+ end
1645
+ else
1646
+ allocate
1647
+ end
1648
+
1649
+ object.instance_variable_set("@attributes", record)
1650
+ object.instance_variable_set("@attributes_cache", Hash.new)
1651
+
1652
+ if object.respond_to_without_attributes?(:after_find)
1653
+ object.send(:callback, :after_find)
1654
+ end
1655
+
1656
+ if object.respond_to_without_attributes?(:after_initialize)
1657
+ object.send(:callback, :after_initialize)
1658
+ end
1659
+
1660
+ object
1661
+ end
1662
+
1663
+ # Nest the type name in the same module as this class.
1664
+ # Bar is "MyApp::Business::Bar" relative to MyApp::Business::Foo
1665
+ def type_name_with_module(type_name)
1666
+ if store_full_sti_class
1667
+ type_name
1668
+ else
1669
+ (/^::/ =~ type_name) ? type_name : "#{parent.name}::#{type_name}"
1670
+ end
1671
+ end
1672
+
1673
+ def default_select(qualified)
1674
+ if qualified
1675
+ quoted_table_name + '.*'
1676
+ else
1677
+ '*'
1678
+ end
1679
+ end
1680
+
1681
+ def construct_finder_sql(options)
1682
+ scope = scope(:find)
1683
+ sql = "SELECT #{options[:select] || (scope && scope[:select]) || default_select(options[:joins] || (scope && scope[:joins]))} "
1684
+ sql << "FROM #{options[:from] || (scope && scope[:from]) || quoted_table_name} "
1685
+
1686
+ add_joins!(sql, options[:joins], scope)
1687
+ add_conditions!(sql, options[:conditions], scope)
1688
+
1689
+ add_group!(sql, options[:group], options[:having], scope)
1690
+ add_order!(sql, options[:order], scope)
1691
+ add_limit!(sql, options, scope)
1692
+ add_lock!(sql, options, scope)
1693
+
1694
+ sql
1695
+ end
1696
+
1697
+ # Merges includes so that the result is a valid +include+
1698
+ def merge_includes(first, second)
1699
+ (safe_to_array(first) + safe_to_array(second)).uniq
1700
+ end
1701
+
1702
+ def merge_joins(*joins)
1703
+ if joins.any?{|j| j.is_a?(String) || array_of_strings?(j) }
1704
+ joins = joins.collect do |join|
1705
+ join = [join] if join.is_a?(String)
1706
+ unless array_of_strings?(join)
1707
+ join_dependency = ActiveRecord::Associations::ClassMethods::InnerJoinDependency.new(self, join, nil)
1708
+ join = join_dependency.join_associations.collect { |assoc| assoc.association_join }
1709
+ end
1710
+ join
1711
+ end
1712
+ joins.flatten.map{|j| j.strip}.uniq
1713
+ else
1714
+ joins.collect{|j| safe_to_array(j)}.flatten.uniq
1715
+ end
1716
+ end
1717
+
1718
+ # Object#to_a is deprecated, though it does have the desired behavior
1719
+ def safe_to_array(o)
1720
+ case o
1721
+ when NilClass
1722
+ []
1723
+ when Array
1724
+ o
1725
+ else
1726
+ [o]
1727
+ end
1728
+ end
1729
+
1730
+ def array_of_strings?(o)
1731
+ o.is_a?(Array) && o.all?{|obj| obj.is_a?(String)}
1732
+ end
1733
+
1734
+ def add_order!(sql, order, scope = :auto)
1735
+ scope = scope(:find) if :auto == scope
1736
+ scoped_order = scope[:order] if scope
1737
+ if order
1738
+ sql << " ORDER BY #{order}"
1739
+ if scoped_order && scoped_order != order
1740
+ sql << ", #{scoped_order}"
1741
+ end
1742
+ else
1743
+ sql << " ORDER BY #{scoped_order}" if scoped_order
1744
+ end
1745
+ end
1746
+
1747
+ def add_group!(sql, group, having, scope = :auto)
1748
+ if group
1749
+ sql << " GROUP BY #{group}"
1750
+ sql << " HAVING #{sanitize_sql_for_conditions(having)}" if having
1751
+ else
1752
+ scope = scope(:find) if :auto == scope
1753
+ if scope && (scoped_group = scope[:group])
1754
+ sql << " GROUP BY #{scoped_group}"
1755
+ sql << " HAVING #{sanitize_sql_for_conditions(scope[:having])}" if scope[:having]
1756
+ end
1757
+ end
1758
+ end
1759
+
1760
+ # The optional scope argument is for the current <tt>:find</tt> scope.
1761
+ def add_limit!(sql, options, scope = :auto)
1762
+ scope = scope(:find) if :auto == scope
1763
+
1764
+ if scope
1765
+ options[:limit] ||= scope[:limit]
1766
+ options[:offset] ||= scope[:offset]
1767
+ end
1768
+
1769
+ connection.add_limit_offset!(sql, options)
1770
+ end
1771
+
1772
+ # The optional scope argument is for the current <tt>:find</tt> scope.
1773
+ # The <tt>:lock</tt> option has precedence over a scoped <tt>:lock</tt>.
1774
+ def add_lock!(sql, options, scope = :auto)
1775
+ scope = scope(:find) if :auto == scope
1776
+ options = options.reverse_merge(:lock => scope[:lock]) if scope
1777
+ connection.add_lock!(sql, options)
1778
+ end
1779
+
1780
+ # The optional scope argument is for the current <tt>:find</tt> scope.
1781
+ def add_joins!(sql, joins, scope = :auto)
1782
+ scope = scope(:find) if :auto == scope
1783
+ merged_joins = scope && scope[:joins] && joins ? merge_joins(scope[:joins], joins) : (joins || scope && scope[:joins])
1784
+ case merged_joins
1785
+ when Symbol, Hash, Array
1786
+ if array_of_strings?(merged_joins)
1787
+ sql << merged_joins.join(' ') + " "
1788
+ else
1789
+ join_dependency = ActiveRecord::Associations::ClassMethods::InnerJoinDependency.new(self, merged_joins, nil)
1790
+ sql << " #{join_dependency.join_associations.collect { |assoc| assoc.association_join }.join} "
1791
+ end
1792
+ when String
1793
+ sql << " #{merged_joins} "
1794
+ end
1795
+ end
1796
+
1797
+ # Adds a sanitized version of +conditions+ to the +sql+ string. Note that the passed-in +sql+ string is changed.
1798
+ # The optional scope argument is for the current <tt>:find</tt> scope.
1799
+ def add_conditions!(sql, conditions, scope = :auto)
1800
+ scope = scope(:find) if :auto == scope
1801
+ conditions = [conditions]
1802
+ conditions << scope[:conditions] if scope
1803
+ conditions << type_condition if finder_needs_type_condition?
1804
+ merged_conditions = merge_conditions(*conditions)
1805
+ sql << "WHERE #{merged_conditions} " unless merged_conditions.blank?
1806
+ end
1807
+
1808
+ def type_condition(table_alias=nil)
1809
+ quoted_table_alias = self.connection.quote_table_name(table_alias || table_name)
1810
+ quoted_inheritance_column = connection.quote_column_name(inheritance_column)
1811
+ type_condition = subclasses.inject("#{quoted_table_alias}.#{quoted_inheritance_column} = '#{sti_name}' ") do |condition, subclass|
1812
+ condition << "OR #{quoted_table_alias}.#{quoted_inheritance_column} = '#{subclass.sti_name}' "
1813
+ end
1814
+
1815
+ " (#{type_condition}) "
1816
+ end
1817
+
1818
+ # Guesses the table name, but does not decorate it with prefix and suffix information.
1819
+ def undecorated_table_name(class_name = base_class.name)
1820
+ table_name = class_name.to_s.demodulize.underscore
1821
+ table_name = table_name.pluralize if pluralize_table_names
1822
+ table_name
1823
+ end
1824
+
1825
+ # Enables dynamic finders like <tt>find_by_user_name(user_name)</tt> and <tt>find_by_user_name_and_password(user_name, password)</tt>
1826
+ # that are turned into <tt>find(:first, :conditions => ["user_name = ?", user_name])</tt> and
1827
+ # <tt>find(:first, :conditions => ["user_name = ? AND password = ?", user_name, password])</tt> respectively. Also works for
1828
+ # <tt>find(:all)</tt> by using <tt>find_all_by_amount(50)</tt> that is turned into <tt>find(:all, :conditions => ["amount = ?", 50])</tt>.
1829
+ #
1830
+ # It's even possible to use all the additional parameters to +find+. For example, the full interface for +find_all_by_amount+
1831
+ # is actually <tt>find_all_by_amount(amount, options)</tt>.
1832
+ #
1833
+ # Also enables dynamic scopes like scoped_by_user_name(user_name) and scoped_by_user_name_and_password(user_name, password) that
1834
+ # are turned into scoped(:conditions => ["user_name = ?", user_name]) and scoped(:conditions => ["user_name = ? AND password = ?", user_name, password])
1835
+ # respectively.
1836
+ #
1837
+ # Each dynamic finder, scope or initializer/creator is also defined in the class after it is first invoked, so that future
1838
+ # attempts to use it do not run through method_missing.
1839
+ def method_missing(method_id, *arguments, &block)
1840
+ if match = DynamicFinderMatch.match(method_id)
1841
+ attribute_names = match.attribute_names
1842
+ super unless all_attributes_exists?(attribute_names)
1843
+ if match.finder?
1844
+ finder = match.finder
1845
+ bang = match.bang?
1846
+ # def self.find_by_login_and_activated(*args)
1847
+ # options = args.extract_options!
1848
+ # attributes = construct_attributes_from_arguments(
1849
+ # [:login,:activated],
1850
+ # args
1851
+ # )
1852
+ # finder_options = { :conditions => attributes }
1853
+ # validate_find_options(options)
1854
+ # set_readonly_option!(options)
1855
+ #
1856
+ # if options[:conditions]
1857
+ # with_scope(:find => finder_options) do
1858
+ # find(:first, options)
1859
+ # end
1860
+ # else
1861
+ # find(:first, options.merge(finder_options))
1862
+ # end
1863
+ # end
1864
+ self.class_eval %{
1865
+ def self.#{method_id}(*args)
1866
+ options = args.extract_options!
1867
+ attributes = construct_attributes_from_arguments(
1868
+ [:#{attribute_names.join(',:')}],
1869
+ args
1870
+ )
1871
+ finder_options = { :conditions => attributes }
1872
+ validate_find_options(options)
1873
+ set_readonly_option!(options)
1874
+
1875
+ #{'result = ' if bang}if options[:conditions]
1876
+ with_scope(:find => finder_options) do
1877
+ find(:#{finder}, options)
1878
+ end
1879
+ else
1880
+ find(:#{finder}, options.merge(finder_options))
1881
+ end
1882
+ #{'result || raise(RecordNotFound, "Couldn\'t find #{name} with #{attributes.to_a.collect {|pair| "#{pair.first} = #{pair.second}"}.join(\', \')}")' if bang}
1883
+ end
1884
+ }, __FILE__, __LINE__
1885
+ send(method_id, *arguments)
1886
+ elsif match.instantiator?
1887
+ instantiator = match.instantiator
1888
+ # def self.find_or_create_by_user_id(*args)
1889
+ # guard_protected_attributes = false
1890
+ #
1891
+ # if args[0].is_a?(Hash)
1892
+ # guard_protected_attributes = true
1893
+ # attributes = args[0].with_indifferent_access
1894
+ # find_attributes = attributes.slice(*[:user_id])
1895
+ # else
1896
+ # find_attributes = attributes = construct_attributes_from_arguments([:user_id], args)
1897
+ # end
1898
+ #
1899
+ # options = { :conditions => find_attributes }
1900
+ # set_readonly_option!(options)
1901
+ #
1902
+ # record = find(:first, options)
1903
+ #
1904
+ # if record.nil?
1905
+ # record = self.new { |r| r.send(:attributes=, attributes, guard_protected_attributes) }
1906
+ # yield(record) if block_given?
1907
+ # record.save
1908
+ # record
1909
+ # else
1910
+ # record
1911
+ # end
1912
+ # end
1913
+ self.class_eval %{
1914
+ def self.#{method_id}(*args)
1915
+ guard_protected_attributes = false
1916
+
1917
+ if args[0].is_a?(Hash)
1918
+ guard_protected_attributes = true
1919
+ attributes = args[0].with_indifferent_access
1920
+ find_attributes = attributes.slice(*[:#{attribute_names.join(',:')}])
1921
+ else
1922
+ find_attributes = attributes = construct_attributes_from_arguments([:#{attribute_names.join(',:')}], args)
1923
+ end
1924
+
1925
+ options = { :conditions => find_attributes }
1926
+ set_readonly_option!(options)
1927
+
1928
+ record = find(:first, options)
1929
+
1930
+ if record.nil?
1931
+ record = self.new { |r| r.send(:attributes=, attributes, guard_protected_attributes) }
1932
+ #{'yield(record) if block_given?'}
1933
+ #{'record.save' if instantiator == :create}
1934
+ record
1935
+ else
1936
+ record
1937
+ end
1938
+ end
1939
+ }, __FILE__, __LINE__
1940
+ send(method_id, *arguments, &block)
1941
+ end
1942
+ elsif match = DynamicScopeMatch.match(method_id)
1943
+ attribute_names = match.attribute_names
1944
+ super unless all_attributes_exists?(attribute_names)
1945
+ if match.scope?
1946
+ self.class_eval %{
1947
+ def self.#{method_id}(*args) # def self.scoped_by_user_name_and_password(*args)
1948
+ options = args.extract_options! # options = args.extract_options!
1949
+ attributes = construct_attributes_from_arguments( # attributes = construct_attributes_from_arguments(
1950
+ [:#{attribute_names.join(',:')}], args # [:user_name, :password], args
1951
+ ) # )
1952
+ #
1953
+ scoped(:conditions => attributes) # scoped(:conditions => attributes)
1954
+ end # end
1955
+ }, __FILE__, __LINE__
1956
+ send(method_id, *arguments)
1957
+ end
1958
+ else
1959
+ super
1960
+ end
1961
+ end
1962
+
1963
+ def construct_attributes_from_arguments(attribute_names, arguments)
1964
+ attributes = {}
1965
+ attribute_names.each_with_index { |name, idx| attributes[name] = arguments[idx] }
1966
+ attributes
1967
+ end
1968
+
1969
+ # Similar in purpose to +expand_hash_conditions_for_aggregates+.
1970
+ def expand_attribute_names_for_aggregates(attribute_names)
1971
+ expanded_attribute_names = []
1972
+ attribute_names.each do |attribute_name|
1973
+ unless (aggregation = reflect_on_aggregation(attribute_name.to_sym)).nil?
1974
+ aggregate_mapping(aggregation).each do |field_attr, aggregate_attr|
1975
+ expanded_attribute_names << field_attr
1976
+ end
1977
+ else
1978
+ expanded_attribute_names << attribute_name
1979
+ end
1980
+ end
1981
+ expanded_attribute_names
1982
+ end
1983
+
1984
+ def all_attributes_exists?(attribute_names)
1985
+ attribute_names = expand_attribute_names_for_aggregates(attribute_names)
1986
+ attribute_names.all? { |name| column_methods_hash.include?(name.to_sym) }
1987
+ end
1988
+
1989
+ def attribute_condition(quoted_column_name, argument)
1990
+ case argument
1991
+ when nil then "#{quoted_column_name} IS ?"
1992
+ when Array, ActiveRecord::Associations::AssociationCollection, ActiveRecord::NamedScope::Scope then "#{quoted_column_name} IN (?)"
1993
+ when Range then if argument.exclude_end?
1994
+ "#{quoted_column_name} >= ? AND #{quoted_column_name} < ?"
1995
+ else
1996
+ "#{quoted_column_name} BETWEEN ? AND ?"
1997
+ end
1998
+ else "#{quoted_column_name} = ?"
1999
+ end
2000
+ end
2001
+
2002
+ # Interpret Array and Hash as conditions and anything else as an id.
2003
+ def expand_id_conditions(id_or_conditions)
2004
+ case id_or_conditions
2005
+ when Array, Hash then id_or_conditions
2006
+ else sanitize_sql(primary_key => id_or_conditions)
2007
+ end
2008
+ end
2009
+
2010
+ # Defines an "attribute" method (like +inheritance_column+ or
2011
+ # +table_name+). A new (class) method will be created with the
2012
+ # given name. If a value is specified, the new method will
2013
+ # return that value (as a string). Otherwise, the given block
2014
+ # will be used to compute the value of the method.
2015
+ #
2016
+ # The original method will be aliased, with the new name being
2017
+ # prefixed with "original_". This allows the new method to
2018
+ # access the original value.
2019
+ #
2020
+ # Example:
2021
+ #
2022
+ # class A < ActiveRecord::Base
2023
+ # define_attr_method :primary_key, "sysid"
2024
+ # define_attr_method( :inheritance_column ) do
2025
+ # original_inheritance_column + "_id"
2026
+ # end
2027
+ # end
2028
+ def define_attr_method(name, value=nil, &block)
2029
+ sing = class << self; self; end
2030
+ sing.send :alias_method, "original_#{name}", name
2031
+ if block_given?
2032
+ sing.send :define_method, name, &block
2033
+ else
2034
+ # use eval instead of a block to work around a memory leak in dev
2035
+ # mode in fcgi
2036
+ sing.class_eval "def #{name}; #{value.to_s.inspect}; end"
2037
+ end
2038
+ end
2039
+
2040
+ protected
2041
+ # Scope parameters to method calls within the block. Takes a hash of method_name => parameters hash.
2042
+ # method_name may be <tt>:find</tt> or <tt>:create</tt>. <tt>:find</tt> parameters may include the <tt>:conditions</tt>, <tt>:joins</tt>,
2043
+ # <tt>:include</tt>, <tt>:offset</tt>, <tt>:limit</tt>, and <tt>:readonly</tt> options. <tt>:create</tt> parameters are an attributes hash.
2044
+ #
2045
+ # class Article < ActiveRecord::Base
2046
+ # def self.create_with_scope
2047
+ # with_scope(:find => { :conditions => "blog_id = 1" }, :create => { :blog_id => 1 }) do
2048
+ # find(1) # => SELECT * from articles WHERE blog_id = 1 AND id = 1
2049
+ # a = create(1)
2050
+ # a.blog_id # => 1
2051
+ # end
2052
+ # end
2053
+ # end
2054
+ #
2055
+ # In nested scopings, all previous parameters are overwritten by the innermost rule, with the exception of
2056
+ # <tt>:conditions</tt>, <tt>:include</tt>, and <tt>:joins</tt> options in <tt>:find</tt>, which are merged.
2057
+ #
2058
+ # <tt>:joins</tt> options are uniqued so multiple scopes can join in the same table without table aliasing
2059
+ # problems. If you need to join multiple tables, but still want one of the tables to be uniqued, use the
2060
+ # array of strings format for your joins.
2061
+ #
2062
+ # class Article < ActiveRecord::Base
2063
+ # def self.find_with_scope
2064
+ # with_scope(:find => { :conditions => "blog_id = 1", :limit => 1 }, :create => { :blog_id => 1 }) do
2065
+ # with_scope(:find => { :limit => 10 })
2066
+ # find(:all) # => SELECT * from articles WHERE blog_id = 1 LIMIT 10
2067
+ # end
2068
+ # with_scope(:find => { :conditions => "author_id = 3" })
2069
+ # find(:all) # => SELECT * from articles WHERE blog_id = 1 AND author_id = 3 LIMIT 1
2070
+ # end
2071
+ # end
2072
+ # end
2073
+ # end
2074
+ #
2075
+ # You can ignore any previous scopings by using the <tt>with_exclusive_scope</tt> method.
2076
+ #
2077
+ # class Article < ActiveRecord::Base
2078
+ # def self.find_with_exclusive_scope
2079
+ # with_scope(:find => { :conditions => "blog_id = 1", :limit => 1 }) do
2080
+ # with_exclusive_scope(:find => { :limit => 10 })
2081
+ # find(:all) # => SELECT * from articles LIMIT 10
2082
+ # end
2083
+ # end
2084
+ # end
2085
+ # end
2086
+ #
2087
+ # *Note*: the +:find+ scope also has effect on update and deletion methods,
2088
+ # like +update_all+ and +delete_all+.
2089
+ def with_scope(method_scoping = {}, action = :merge, &block)
2090
+ method_scoping = method_scoping.method_scoping if method_scoping.respond_to?(:method_scoping)
2091
+
2092
+ # Dup first and second level of hash (method and params).
2093
+ method_scoping = method_scoping.inject({}) do |hash, (method, params)|
2094
+ hash[method] = (params == true) ? params : params.dup
2095
+ hash
2096
+ end
2097
+
2098
+ method_scoping.assert_valid_keys([ :find, :create ])
2099
+
2100
+ if f = method_scoping[:find]
2101
+ f.assert_valid_keys(VALID_FIND_OPTIONS)
2102
+ set_readonly_option! f
2103
+ end
2104
+
2105
+ # Merge scopings
2106
+ if [:merge, :reverse_merge].include?(action) && current_scoped_methods
2107
+ method_scoping = current_scoped_methods.inject(method_scoping) do |hash, (method, params)|
2108
+ case hash[method]
2109
+ when Hash
2110
+ if method == :find
2111
+ (hash[method].keys + params.keys).uniq.each do |key|
2112
+ merge = hash[method][key] && params[key] # merge if both scopes have the same key
2113
+ if key == :conditions && merge
2114
+ if params[key].is_a?(Hash) && hash[method][key].is_a?(Hash)
2115
+ hash[method][key] = merge_conditions(hash[method][key].deep_merge(params[key]))
2116
+ else
2117
+ hash[method][key] = merge_conditions(params[key], hash[method][key])
2118
+ end
2119
+ elsif key == :include && merge
2120
+ hash[method][key] = merge_includes(hash[method][key], params[key]).uniq
2121
+ elsif key == :joins && merge
2122
+ hash[method][key] = merge_joins(params[key], hash[method][key])
2123
+ else
2124
+ hash[method][key] = hash[method][key] || params[key]
2125
+ end
2126
+ end
2127
+ else
2128
+ if action == :reverse_merge
2129
+ hash[method] = hash[method].merge(params)
2130
+ else
2131
+ hash[method] = params.merge(hash[method])
2132
+ end
2133
+ end
2134
+ else
2135
+ hash[method] = params
2136
+ end
2137
+ hash
2138
+ end
2139
+ end
2140
+
2141
+ self.scoped_methods << method_scoping
2142
+ begin
2143
+ yield
2144
+ ensure
2145
+ self.scoped_methods.pop
2146
+ end
2147
+ end
2148
+
2149
+ # Works like with_scope, but discards any nested properties.
2150
+ def with_exclusive_scope(method_scoping = {}, &block)
2151
+ with_scope(method_scoping, :overwrite, &block)
2152
+ end
2153
+
2154
+ def subclasses #:nodoc:
2155
+ @@subclasses[self] ||= []
2156
+ @@subclasses[self] + extra = @@subclasses[self].inject([]) {|list, subclass| list + subclass.subclasses }
2157
+ end
2158
+
2159
+ # Sets the default options for the model. The format of the
2160
+ # <tt>options</tt> argument is the same as in find.
2161
+ #
2162
+ # class Person < ActiveRecord::Base
2163
+ # default_scope :order => 'last_name, first_name'
2164
+ # end
2165
+ def default_scope(options = {})
2166
+ self.default_scoping << { :find => options, :create => options[:conditions].is_a?(Hash) ? options[:conditions] : {} }
2167
+ end
2168
+
2169
+ # Test whether the given method and optional key are scoped.
2170
+ def scoped?(method, key = nil) #:nodoc:
2171
+ if current_scoped_methods && (scope = current_scoped_methods[method])
2172
+ !key || !scope[key].nil?
2173
+ end
2174
+ end
2175
+
2176
+ # Retrieve the scope for the given method and optional key.
2177
+ def scope(method, key = nil) #:nodoc:
2178
+ if current_scoped_methods && (scope = current_scoped_methods[method])
2179
+ key ? scope[key] : scope
2180
+ end
2181
+ end
2182
+
2183
+ def scoped_methods #:nodoc:
2184
+ Thread.current[:"#{self}_scoped_methods"] ||= self.default_scoping.dup
2185
+ end
2186
+
2187
+ def current_scoped_methods #:nodoc:
2188
+ scoped_methods.last
2189
+ end
2190
+
2191
+ # Returns the class type of the record using the current module as a prefix. So descendants of
2192
+ # MyApp::Business::Account would appear as MyApp::Business::AccountSubclass.
2193
+ def compute_type(type_name)
2194
+ modularized_name = type_name_with_module(type_name)
2195
+ silence_warnings do
2196
+ begin
2197
+ class_eval(modularized_name, __FILE__, __LINE__)
2198
+ rescue NameError
2199
+ class_eval(type_name, __FILE__, __LINE__)
2200
+ end
2201
+ end
2202
+ end
2203
+
2204
+ # Returns the class descending directly from ActiveRecord::Base or an
2205
+ # abstract class, if any, in the inheritance hierarchy.
2206
+ def class_of_active_record_descendant(klass)
2207
+ if klass.superclass == Base || klass.superclass.abstract_class?
2208
+ klass
2209
+ elsif klass.superclass.nil?
2210
+ raise ActiveRecordError, "#{name} doesn't belong in a hierarchy descending from ActiveRecord"
2211
+ else
2212
+ class_of_active_record_descendant(klass.superclass)
2213
+ end
2214
+ end
2215
+
2216
+ # Returns the name of the class descending directly from Active Record in the inheritance hierarchy.
2217
+ def class_name_of_active_record_descendant(klass) #:nodoc:
2218
+ klass.base_class.name
2219
+ end
2220
+
2221
+ # Accepts an array, hash, or string of SQL conditions and sanitizes
2222
+ # them into a valid SQL fragment for a WHERE clause.
2223
+ # ["name='%s' and group_id='%s'", "foo'bar", 4] returns "name='foo''bar' and group_id='4'"
2224
+ # { :name => "foo'bar", :group_id => 4 } returns "name='foo''bar' and group_id='4'"
2225
+ # "name='foo''bar' and group_id='4'" returns "name='foo''bar' and group_id='4'"
2226
+ def sanitize_sql_for_conditions(condition, table_name = quoted_table_name)
2227
+ return nil if condition.blank?
2228
+
2229
+ case condition
2230
+ when Array; sanitize_sql_array(condition)
2231
+ when Hash; sanitize_sql_hash_for_conditions(condition, table_name)
2232
+ else condition
2233
+ end
2234
+ end
2235
+ alias_method :sanitize_sql, :sanitize_sql_for_conditions
2236
+
2237
+ # Accepts an array, hash, or string of SQL conditions and sanitizes
2238
+ # them into a valid SQL fragment for a SET clause.
2239
+ # { :name => nil, :group_id => 4 } returns "name = NULL , group_id='4'"
2240
+ def sanitize_sql_for_assignment(assignments)
2241
+ case assignments
2242
+ when Array; sanitize_sql_array(assignments)
2243
+ when Hash; sanitize_sql_hash_for_assignment(assignments)
2244
+ else assignments
2245
+ end
2246
+ end
2247
+
2248
+ def aggregate_mapping(reflection)
2249
+ mapping = reflection.options[:mapping] || [reflection.name, reflection.name]
2250
+ mapping.first.is_a?(Array) ? mapping : [mapping]
2251
+ end
2252
+
2253
+ # Accepts a hash of SQL conditions and replaces those attributes
2254
+ # that correspond to a +composed_of+ relationship with their expanded
2255
+ # aggregate attribute values.
2256
+ # Given:
2257
+ # class Person < ActiveRecord::Base
2258
+ # composed_of :address, :class_name => "Address",
2259
+ # :mapping => [%w(address_street street), %w(address_city city)]
2260
+ # end
2261
+ # Then:
2262
+ # { :address => Address.new("813 abc st.", "chicago") }
2263
+ # # => { :address_street => "813 abc st.", :address_city => "chicago" }
2264
+ def expand_hash_conditions_for_aggregates(attrs)
2265
+ expanded_attrs = {}
2266
+ attrs.each do |attr, value|
2267
+ unless (aggregation = reflect_on_aggregation(attr.to_sym)).nil?
2268
+ mapping = aggregate_mapping(aggregation)
2269
+ mapping.each do |field_attr, aggregate_attr|
2270
+ if mapping.size == 1 && !value.respond_to?(aggregate_attr)
2271
+ expanded_attrs[field_attr] = value
2272
+ else
2273
+ expanded_attrs[field_attr] = value.send(aggregate_attr)
2274
+ end
2275
+ end
2276
+ else
2277
+ expanded_attrs[attr] = value
2278
+ end
2279
+ end
2280
+ expanded_attrs
2281
+ end
2282
+
2283
+ # Sanitizes a hash of attribute/value pairs into SQL conditions for a WHERE clause.
2284
+ # { :name => "foo'bar", :group_id => 4 }
2285
+ # # => "name='foo''bar' and group_id= 4"
2286
+ # { :status => nil, :group_id => [1,2,3] }
2287
+ # # => "status IS NULL and group_id IN (1,2,3)"
2288
+ # { :age => 13..18 }
2289
+ # # => "age BETWEEN 13 AND 18"
2290
+ # { 'other_records.id' => 7 }
2291
+ # # => "`other_records`.`id` = 7"
2292
+ # { :other_records => { :id => 7 } }
2293
+ # # => "`other_records`.`id` = 7"
2294
+ # And for value objects on a composed_of relationship:
2295
+ # { :address => Address.new("123 abc st.", "chicago") }
2296
+ # # => "address_street='123 abc st.' and address_city='chicago'"
2297
+ def sanitize_sql_hash_for_conditions(attrs, default_table_name = quoted_table_name)
2298
+ attrs = expand_hash_conditions_for_aggregates(attrs)
2299
+
2300
+ conditions = attrs.map do |attr, value|
2301
+ table_name = default_table_name
2302
+
2303
+ unless value.is_a?(Hash)
2304
+ attr = attr.to_s
2305
+
2306
+ # Extract table name from qualified attribute names.
2307
+ if attr.include?('.')
2308
+ attr_table_name, attr = attr.split('.', 2)
2309
+ attr_table_name = connection.quote_table_name(attr_table_name)
2310
+ else
2311
+ attr_table_name = table_name
2312
+ end
2313
+
2314
+ attribute_condition("#{attr_table_name}.#{connection.quote_column_name(attr)}", value)
2315
+ else
2316
+ sanitize_sql_hash_for_conditions(value, connection.quote_table_name(attr.to_s))
2317
+ end
2318
+ end.join(' AND ')
2319
+
2320
+ replace_bind_variables(conditions, expand_range_bind_variables(attrs.values))
2321
+ end
2322
+ alias_method :sanitize_sql_hash, :sanitize_sql_hash_for_conditions
2323
+
2324
+ # Sanitizes a hash of attribute/value pairs into SQL conditions for a SET clause.
2325
+ # { :status => nil, :group_id => 1 }
2326
+ # # => "status = NULL , group_id = 1"
2327
+ def sanitize_sql_hash_for_assignment(attrs)
2328
+ attrs.map do |attr, value|
2329
+ "#{connection.quote_column_name(attr)} = #{quote_bound_value(value)}"
2330
+ end.join(', ')
2331
+ end
2332
+
2333
+ # Accepts an array of conditions. The array has each value
2334
+ # sanitized and interpolated into the SQL statement.
2335
+ # ["name='%s' and group_id='%s'", "foo'bar", 4] returns "name='foo''bar' and group_id='4'"
2336
+ def sanitize_sql_array(ary)
2337
+ statement, *values = ary
2338
+ if values.first.is_a?(Hash) and statement =~ /:\w+/
2339
+ replace_named_bind_variables(statement, values.first)
2340
+ elsif statement.include?('?')
2341
+ replace_bind_variables(statement, values)
2342
+ else
2343
+ statement % values.collect { |value| connection.quote_string(value.to_s) }
2344
+ end
2345
+ end
2346
+
2347
+ alias_method :sanitize_conditions, :sanitize_sql
2348
+
2349
+ def replace_bind_variables(statement, values) #:nodoc:
2350
+ raise_if_bind_arity_mismatch(statement, statement.count('?'), values.size)
2351
+ bound = values.dup
2352
+ statement.gsub('?') { quote_bound_value(bound.shift) }
2353
+ end
2354
+
2355
+ def replace_named_bind_variables(statement, bind_vars) #:nodoc:
2356
+ statement.gsub(/(:?):([a-zA-Z]\w*)/) do
2357
+ if $1 == ':' # skip postgresql casts
2358
+ $& # return the whole match
2359
+ elsif bind_vars.include?(match = $2.to_sym)
2360
+ quote_bound_value(bind_vars[match])
2361
+ else
2362
+ raise PreparedStatementInvalid, "missing value for :#{match} in #{statement}"
2363
+ end
2364
+ end
2365
+ end
2366
+
2367
+ def expand_range_bind_variables(bind_vars) #:nodoc:
2368
+ expanded = []
2369
+
2370
+ bind_vars.each do |var|
2371
+ next if var.is_a?(Hash)
2372
+
2373
+ if var.is_a?(Range)
2374
+ expanded << var.first
2375
+ expanded << var.last
2376
+ else
2377
+ expanded << var
2378
+ end
2379
+ end
2380
+
2381
+ expanded
2382
+ end
2383
+
2384
+ def quote_bound_value(value) #:nodoc:
2385
+ if value.respond_to?(:map) && !value.acts_like?(:string)
2386
+ if value.respond_to?(:empty?) && value.empty?
2387
+ connection.quote(nil)
2388
+ else
2389
+ value.map { |v| connection.quote(v) }.join(',')
2390
+ end
2391
+ else
2392
+ connection.quote(value)
2393
+ end
2394
+ end
2395
+
2396
+ def raise_if_bind_arity_mismatch(statement, expected, provided) #:nodoc:
2397
+ unless expected == provided
2398
+ raise PreparedStatementInvalid, "wrong number of bind variables (#{provided} for #{expected}) in: #{statement}"
2399
+ end
2400
+ end
2401
+
2402
+ VALID_FIND_OPTIONS = [ :conditions, :include, :joins, :limit, :offset,
2403
+ :order, :select, :readonly, :group, :having, :from, :lock ]
2404
+
2405
+ def validate_find_options(options) #:nodoc:
2406
+ options.assert_valid_keys(VALID_FIND_OPTIONS)
2407
+ end
2408
+
2409
+ def set_readonly_option!(options) #:nodoc:
2410
+ # Inherit :readonly from finder scope if set. Otherwise,
2411
+ # if :joins is not blank then :readonly defaults to true.
2412
+ unless options.has_key?(:readonly)
2413
+ if scoped_readonly = scope(:find, :readonly)
2414
+ options[:readonly] = scoped_readonly
2415
+ elsif !options[:joins].blank? && !options[:select]
2416
+ options[:readonly] = true
2417
+ end
2418
+ end
2419
+ end
2420
+
2421
+ def encode_quoted_value(value) #:nodoc:
2422
+ quoted_value = connection.quote(value)
2423
+ quoted_value = "'#{quoted_value[1..-2].gsub(/\'/, "\\\\'")}'" if quoted_value.include?("\\\'") # (for ruby mode) "
2424
+ quoted_value
2425
+ end
2426
+ end
2427
+
2428
+ public
2429
+ # New objects can be instantiated as either empty (pass no construction parameter) or pre-set with
2430
+ # attributes but not yet saved (pass a hash with key names matching the associated table column names).
2431
+ # In both instances, valid attribute keys are determined by the column names of the associated table --
2432
+ # hence you can't have attributes that aren't part of the table columns.
2433
+ def initialize(attributes = nil)
2434
+ @attributes = attributes_from_column_definition
2435
+ @attributes_cache = {}
2436
+ @new_record = true
2437
+ ensure_proper_type
2438
+ self.attributes = attributes unless attributes.nil?
2439
+ self.class.send(:scope, :create).each { |att,value| self.send("#{att}=", value) } if self.class.send(:scoped?, :create)
2440
+ result = yield self if block_given?
2441
+ callback(:after_initialize) if respond_to_without_attributes?(:after_initialize)
2442
+ result
2443
+ end
2444
+
2445
+ # A model instance's primary key is always available as model.id
2446
+ # whether you name it the default 'id' or set it to something else.
2447
+ def id
2448
+ attr_name = self.class.primary_key
2449
+ column = column_for_attribute(attr_name)
2450
+
2451
+ self.class.send(:define_read_method, :id, attr_name, column)
2452
+ # now that the method exists, call it
2453
+ self.send attr_name.to_sym
2454
+
2455
+ end
2456
+
2457
+ # Returns a String, which Action Pack uses for constructing an URL to this
2458
+ # object. The default implementation returns this record's id as a String,
2459
+ # or nil if this record's unsaved.
2460
+ #
2461
+ # For example, suppose that you have a User model, and that you have a
2462
+ # <tt>map.resources :users</tt> route. Normally, +user_path+ will
2463
+ # construct a path with the user object's 'id' in it:
2464
+ #
2465
+ # user = User.find_by_name('Phusion')
2466
+ # user_path(user) # => "/users/1"
2467
+ #
2468
+ # You can override +to_param+ in your model to make +user_path+ construct
2469
+ # a path using the user's name instead of the user's id:
2470
+ #
2471
+ # class User < ActiveRecord::Base
2472
+ # def to_param # overridden
2473
+ # name
2474
+ # end
2475
+ # end
2476
+ #
2477
+ # user = User.find_by_name('Phusion')
2478
+ # user_path(user) # => "/users/Phusion"
2479
+ def to_param
2480
+ # We can't use alias_method here, because method 'id' optimizes itself on the fly.
2481
+ (id = self.id) ? id.to_s : nil # Be sure to stringify the id for routes
2482
+ end
2483
+
2484
+ # Returns a cache key that can be used to identify this record.
2485
+ #
2486
+ # ==== Examples
2487
+ #
2488
+ # Product.new.cache_key # => "products/new"
2489
+ # Product.find(5).cache_key # => "products/5" (updated_at not available)
2490
+ # Person.find(5).cache_key # => "people/5-20071224150000" (updated_at available)
2491
+ def cache_key
2492
+ case
2493
+ when new_record?
2494
+ "#{self.class.model_name.cache_key}/new"
2495
+ when timestamp = self[:updated_at]
2496
+ "#{self.class.model_name.cache_key}/#{id}-#{timestamp.to_s(:number)}"
2497
+ else
2498
+ "#{self.class.model_name.cache_key}/#{id}"
2499
+ end
2500
+ end
2501
+
2502
+ def id_before_type_cast #:nodoc:
2503
+ read_attribute_before_type_cast(self.class.primary_key)
2504
+ end
2505
+
2506
+ def quoted_id #:nodoc:
2507
+ quote_value(id, column_for_attribute(self.class.primary_key))
2508
+ end
2509
+
2510
+ # Sets the primary ID.
2511
+ def id=(value)
2512
+ write_attribute(self.class.primary_key, value)
2513
+ end
2514
+
2515
+ # Returns true if this object hasn't been saved yet -- that is, a record for the object doesn't exist yet; otherwise, returns false.
2516
+ def new_record?
2517
+ @new_record || false
2518
+ end
2519
+
2520
+ # :call-seq:
2521
+ # save(perform_validation = true)
2522
+ #
2523
+ # Saves the model.
2524
+ #
2525
+ # If the model is new a record gets created in the database, otherwise
2526
+ # the existing record gets updated.
2527
+ #
2528
+ # If +perform_validation+ is true validations run. If any of them fail
2529
+ # the action is cancelled and +save+ returns +false+. If the flag is
2530
+ # false validations are bypassed altogether. See
2531
+ # ActiveRecord::Validations for more information.
2532
+ #
2533
+ # There's a series of callbacks associated with +save+. If any of the
2534
+ # <tt>before_*</tt> callbacks return +false+ the action is cancelled and
2535
+ # +save+ returns +false+. See ActiveRecord::Callbacks for further
2536
+ # details.
2537
+ def save
2538
+ create_or_update
2539
+ end
2540
+
2541
+ # Saves the model.
2542
+ #
2543
+ # If the model is new a record gets created in the database, otherwise
2544
+ # the existing record gets updated.
2545
+ #
2546
+ # With <tt>save!</tt> validations always run. If any of them fail
2547
+ # ActiveRecord::RecordInvalid gets raised. See ActiveRecord::Validations
2548
+ # for more information.
2549
+ #
2550
+ # There's a series of callbacks associated with <tt>save!</tt>. If any of
2551
+ # the <tt>before_*</tt> callbacks return +false+ the action is cancelled
2552
+ # and <tt>save!</tt> raises ActiveRecord::RecordNotSaved. See
2553
+ # ActiveRecord::Callbacks for further details.
2554
+ def save!
2555
+ create_or_update || raise(RecordNotSaved)
2556
+ end
2557
+
2558
+ # Deletes the record in the database and freezes this instance to
2559
+ # reflect that no changes should be made (since they can't be
2560
+ # persisted). Returns the frozen instance.
2561
+ #
2562
+ # The row is simply removed with a SQL +DELETE+ statement on the
2563
+ # record's primary key, and no callbacks are executed.
2564
+ #
2565
+ # To enforce the object's +before_destroy+ and +after_destroy+
2566
+ # callbacks, Observer methods, or any <tt>:dependent</tt> association
2567
+ # options, use <tt>#destroy</tt>.
2568
+ def delete
2569
+ self.class.delete(id) unless new_record?
2570
+ freeze
2571
+ end
2572
+
2573
+ # Deletes the record in the database and freezes this instance to reflect that no changes should
2574
+ # be made (since they can't be persisted).
2575
+ def destroy
2576
+ unless new_record?
2577
+ connection.delete(
2578
+ "DELETE FROM #{self.class.quoted_table_name} " +
2579
+ "WHERE #{connection.quote_column_name(self.class.primary_key)} = #{quoted_id}",
2580
+ "#{self.class.name} Destroy"
2581
+ )
2582
+ end
2583
+
2584
+ freeze
2585
+ end
2586
+
2587
+ # Returns a clone of the record that hasn't been assigned an id yet and
2588
+ # is treated as a new record. Note that this is a "shallow" clone:
2589
+ # it copies the object's attributes only, not its associations.
2590
+ # The extent of a "deep" clone is application-specific and is therefore
2591
+ # left to the application to implement according to its need.
2592
+ def clone
2593
+ attrs = clone_attributes(:read_attribute_before_type_cast)
2594
+ attrs.delete(self.class.primary_key)
2595
+ record = self.class.new
2596
+ record.send :instance_variable_set, '@attributes', attrs
2597
+ record
2598
+ end
2599
+
2600
+ # Returns an instance of the specified +klass+ with the attributes of the current record. This is mostly useful in relation to
2601
+ # single-table inheritance structures where you want a subclass to appear as the superclass. This can be used along with record
2602
+ # identification in Action Pack to allow, say, <tt>Client < Company</tt> to do something like render <tt>:partial => @client.becomes(Company)</tt>
2603
+ # to render that instance using the companies/company partial instead of clients/client.
2604
+ #
2605
+ # Note: The new instance will share a link to the same attributes as the original class. So any change to the attributes in either
2606
+ # instance will affect the other.
2607
+ def becomes(klass)
2608
+ returning klass.new do |became|
2609
+ became.instance_variable_set("@attributes", @attributes)
2610
+ became.instance_variable_set("@attributes_cache", @attributes_cache)
2611
+ became.instance_variable_set("@new_record", new_record?)
2612
+ end
2613
+ end
2614
+
2615
+ # Updates a single attribute and saves the record without going through the normal validation procedure.
2616
+ # This is especially useful for boolean flags on existing records. The regular +update_attribute+ method
2617
+ # in Base is replaced with this when the validations module is mixed in, which it is by default.
2618
+ def update_attribute(name, value)
2619
+ send(name.to_s + '=', value)
2620
+ save(false)
2621
+ end
2622
+
2623
+ # Updates all the attributes from the passed-in Hash and saves the record. If the object is invalid, the saving will
2624
+ # fail and false will be returned.
2625
+ def update_attributes(attributes)
2626
+ self.attributes = attributes
2627
+ save
2628
+ end
2629
+
2630
+ # Updates an object just like Base.update_attributes but calls save! instead of save so an exception is raised if the record is invalid.
2631
+ def update_attributes!(attributes)
2632
+ self.attributes = attributes
2633
+ save!
2634
+ end
2635
+
2636
+ # Initializes +attribute+ to zero if +nil+ and adds the value passed as +by+ (default is 1).
2637
+ # The increment is performed directly on the underlying attribute, no setter is invoked.
2638
+ # Only makes sense for number-based attributes. Returns +self+.
2639
+ def increment(attribute, by = 1)
2640
+ self[attribute] ||= 0
2641
+ self[attribute] += by
2642
+ self
2643
+ end
2644
+
2645
+ # Wrapper around +increment+ that saves the record. This method differs from
2646
+ # its non-bang version in that it passes through the attribute setter.
2647
+ # Saving is not subjected to validation checks. Returns +true+ if the
2648
+ # record could be saved.
2649
+ def increment!(attribute, by = 1)
2650
+ increment(attribute, by).update_attribute(attribute, self[attribute])
2651
+ end
2652
+
2653
+ # Initializes +attribute+ to zero if +nil+ and subtracts the value passed as +by+ (default is 1).
2654
+ # The decrement is performed directly on the underlying attribute, no setter is invoked.
2655
+ # Only makes sense for number-based attributes. Returns +self+.
2656
+ def decrement(attribute, by = 1)
2657
+ self[attribute] ||= 0
2658
+ self[attribute] -= by
2659
+ self
2660
+ end
2661
+
2662
+ # Wrapper around +decrement+ that saves the record. This method differs from
2663
+ # its non-bang version in that it passes through the attribute setter.
2664
+ # Saving is not subjected to validation checks. Returns +true+ if the
2665
+ # record could be saved.
2666
+ def decrement!(attribute, by = 1)
2667
+ decrement(attribute, by).update_attribute(attribute, self[attribute])
2668
+ end
2669
+
2670
+ # Assigns to +attribute+ the boolean opposite of <tt>attribute?</tt>. So
2671
+ # if the predicate returns +true+ the attribute will become +false+. This
2672
+ # method toggles directly the underlying value without calling any setter.
2673
+ # Returns +self+.
2674
+ def toggle(attribute)
2675
+ self[attribute] = !send("#{attribute}?")
2676
+ self
2677
+ end
2678
+
2679
+ # Wrapper around +toggle+ that saves the record. This method differs from
2680
+ # its non-bang version in that it passes through the attribute setter.
2681
+ # Saving is not subjected to validation checks. Returns +true+ if the
2682
+ # record could be saved.
2683
+ def toggle!(attribute)
2684
+ toggle(attribute).update_attribute(attribute, self[attribute])
2685
+ end
2686
+
2687
+ # Reloads the attributes of this object from the database.
2688
+ # The optional options argument is passed to find when reloading so you
2689
+ # may do e.g. record.reload(:lock => true) to reload the same record with
2690
+ # an exclusive row lock.
2691
+ def reload(options = nil)
2692
+ clear_aggregation_cache
2693
+ clear_association_cache
2694
+ @attributes.update(self.class.find(self.id, options).instance_variable_get('@attributes'))
2695
+ @attributes_cache = {}
2696
+ self
2697
+ end
2698
+
2699
+ # Returns the value of the attribute identified by <tt>attr_name</tt> after it has been typecast (for example,
2700
+ # "2004-12-12" in a data column is cast to a date object, like Date.new(2004, 12, 12)).
2701
+ # (Alias for the protected read_attribute method).
2702
+ def [](attr_name)
2703
+ read_attribute(attr_name)
2704
+ end
2705
+
2706
+ # Updates the attribute identified by <tt>attr_name</tt> with the specified +value+.
2707
+ # (Alias for the protected write_attribute method).
2708
+ def []=(attr_name, value)
2709
+ write_attribute(attr_name, value)
2710
+ end
2711
+
2712
+ # Allows you to set all the attributes at once by passing in a hash with keys
2713
+ # matching the attribute names (which again matches the column names).
2714
+ #
2715
+ # If +guard_protected_attributes+ is true (the default), then sensitive
2716
+ # attributes can be protected from this form of mass-assignment by using
2717
+ # the +attr_protected+ macro. Or you can alternatively specify which
2718
+ # attributes *can* be accessed with the +attr_accessible+ macro. Then all the
2719
+ # attributes not included in that won't be allowed to be mass-assigned.
2720
+ #
2721
+ # class User < ActiveRecord::Base
2722
+ # attr_protected :is_admin
2723
+ # end
2724
+ #
2725
+ # user = User.new
2726
+ # user.attributes = { :username => 'Phusion', :is_admin => true }
2727
+ # user.username # => "Phusion"
2728
+ # user.is_admin? # => false
2729
+ #
2730
+ # user.send(:attributes=, { :username => 'Phusion', :is_admin => true }, false)
2731
+ # user.is_admin? # => true
2732
+ def attributes=(new_attributes, guard_protected_attributes = true)
2733
+ return if new_attributes.nil?
2734
+ attributes = new_attributes.dup
2735
+ attributes.stringify_keys!
2736
+
2737
+ multi_parameter_attributes = []
2738
+ attributes = remove_attributes_protected_from_mass_assignment(attributes) if guard_protected_attributes
2739
+
2740
+ attributes.each do |k, v|
2741
+ if k.include?("(")
2742
+ multi_parameter_attributes << [ k, v ]
2743
+ else
2744
+ respond_to?(:"#{k}=") ? send(:"#{k}=", v) : raise(UnknownAttributeError, "unknown attribute: #{k}")
2745
+ end
2746
+ end
2747
+
2748
+ assign_multiparameter_attributes(multi_parameter_attributes)
2749
+ end
2750
+
2751
+ # Returns a hash of all the attributes with their names as keys and the values of the attributes as values.
2752
+ def attributes
2753
+ self.attribute_names.inject({}) do |attrs, name|
2754
+ attrs[name] = read_attribute(name)
2755
+ attrs
2756
+ end
2757
+ end
2758
+
2759
+ # Returns a hash of attributes before typecasting and deserialization.
2760
+ def attributes_before_type_cast
2761
+ self.attribute_names.inject({}) do |attrs, name|
2762
+ attrs[name] = read_attribute_before_type_cast(name)
2763
+ attrs
2764
+ end
2765
+ end
2766
+
2767
+ # Returns an <tt>#inspect</tt>-like string for the value of the
2768
+ # attribute +attr_name+. String attributes are elided after 50
2769
+ # characters, and Date and Time attributes are returned in the
2770
+ # <tt>:db</tt> format. Other attributes return the value of
2771
+ # <tt>#inspect</tt> without modification.
2772
+ #
2773
+ # person = Person.create!(:name => "David Heinemeier Hansson " * 3)
2774
+ #
2775
+ # person.attribute_for_inspect(:name)
2776
+ # # => '"David Heinemeier Hansson David Heinemeier Hansson D..."'
2777
+ #
2778
+ # person.attribute_for_inspect(:created_at)
2779
+ # # => '"2009-01-12 04:48:57"'
2780
+ def attribute_for_inspect(attr_name)
2781
+ value = read_attribute(attr_name)
2782
+
2783
+ if value.is_a?(String) && value.length > 50
2784
+ "#{value[0..50]}...".inspect
2785
+ elsif value.is_a?(Date) || value.is_a?(Time)
2786
+ %("#{value.to_s(:db)}")
2787
+ else
2788
+ value.inspect
2789
+ end
2790
+ end
2791
+
2792
+ # Returns true if the specified +attribute+ has been set by the user or by a database load and is neither
2793
+ # nil nor empty? (the latter only applies to objects that respond to empty?, most notably Strings).
2794
+ def attribute_present?(attribute)
2795
+ value = read_attribute(attribute)
2796
+ !value.blank?
2797
+ end
2798
+
2799
+ # Returns true if the given attribute is in the attributes hash
2800
+ def has_attribute?(attr_name)
2801
+ @attributes.has_key?(attr_name.to_s)
2802
+ end
2803
+
2804
+ # Returns an array of names for the attributes available on this object sorted alphabetically.
2805
+ def attribute_names
2806
+ @attributes.keys.sort
2807
+ end
2808
+
2809
+ # Returns the column object for the named attribute.
2810
+ def column_for_attribute(name)
2811
+ self.class.columns_hash[name.to_s]
2812
+ end
2813
+
2814
+ # Returns true if the +comparison_object+ is the same object, or is of the same type and has the same id.
2815
+ def ==(comparison_object)
2816
+ comparison_object.equal?(self) ||
2817
+ (comparison_object.instance_of?(self.class) &&
2818
+ comparison_object.id == id &&
2819
+ !comparison_object.new_record?)
2820
+ end
2821
+
2822
+ # Delegates to ==
2823
+ def eql?(comparison_object)
2824
+ self == (comparison_object)
2825
+ end
2826
+
2827
+ # Delegates to id in order to allow two records of the same type and id to work with something like:
2828
+ # [ Person.find(1), Person.find(2), Person.find(3) ] & [ Person.find(1), Person.find(4) ] # => [ Person.find(1) ]
2829
+ def hash
2830
+ id.hash
2831
+ end
2832
+
2833
+ # Freeze the attributes hash such that associations are still accessible, even on destroyed records.
2834
+ def freeze
2835
+ @attributes.freeze; self
2836
+ end
2837
+
2838
+ # Returns +true+ if the attributes hash has been frozen.
2839
+ def frozen?
2840
+ @attributes.frozen?
2841
+ end
2842
+
2843
+ # Returns +true+ if the record is read only. Records loaded through joins with piggy-back
2844
+ # attributes will be marked as read only since they cannot be saved.
2845
+ def readonly?
2846
+ defined?(@readonly) && @readonly == true
2847
+ end
2848
+
2849
+ # Marks this record as read only.
2850
+ def readonly!
2851
+ @readonly = true
2852
+ end
2853
+
2854
+ # Returns the contents of the record as a nicely formatted string.
2855
+ def inspect
2856
+ attributes_as_nice_string = self.class.column_names.collect { |name|
2857
+ if has_attribute?(name) || new_record?
2858
+ "#{name}: #{attribute_for_inspect(name)}"
2859
+ end
2860
+ }.compact.join(", ")
2861
+ "#<#{self.class} #{attributes_as_nice_string}>"
2862
+ end
2863
+
2864
+ private
2865
+ def create_or_update
2866
+ raise ReadOnlyRecord if readonly?
2867
+ result = new_record? ? create : update
2868
+ result != false
2869
+ end
2870
+
2871
+ # Updates the associated record with values matching those of the instance attributes.
2872
+ # Returns the number of affected rows.
2873
+ def update(attribute_names = @attributes.keys)
2874
+ quoted_attributes = attributes_with_quotes(false, false, attribute_names)
2875
+ return 0 if quoted_attributes.empty?
2876
+ connection.update(
2877
+ "UPDATE #{self.class.quoted_table_name} " +
2878
+ "SET #{quoted_comma_pair_list(connection, quoted_attributes)} " +
2879
+ "WHERE #{connection.quote_column_name(self.class.primary_key)} = #{quote_value(id)}",
2880
+ "#{self.class.name} Update"
2881
+ )
2882
+ end
2883
+
2884
+ # Creates a record with values matching those of the instance attributes
2885
+ # and returns its id.
2886
+ def create
2887
+ if self.id.nil? && connection.prefetch_primary_key?(self.class.table_name)
2888
+ self.id = connection.next_sequence_value(self.class.sequence_name)
2889
+ end
2890
+
2891
+ quoted_attributes = attributes_with_quotes
2892
+
2893
+ statement = if quoted_attributes.empty?
2894
+ connection.empty_insert_statement(self.class.table_name)
2895
+ else
2896
+ "INSERT INTO #{self.class.quoted_table_name} " +
2897
+ "(#{quoted_column_names.join(', ')}) " +
2898
+ "VALUES(#{quoted_attributes.values.join(', ')})"
2899
+ end
2900
+
2901
+ self.id = connection.insert(statement, "#{self.class.name} Create",
2902
+ self.class.primary_key, self.id, self.class.sequence_name)
2903
+
2904
+ @new_record = false
2905
+ id
2906
+ end
2907
+
2908
+ # Sets the attribute used for single table inheritance to this class name if this is not the ActiveRecord::Base descendant.
2909
+ # Considering the hierarchy Reply < Message < ActiveRecord::Base, this makes it possible to do Reply.new without having to
2910
+ # set <tt>Reply[Reply.inheritance_column] = "Reply"</tt> yourself. No such attribute would be set for objects of the
2911
+ # Message class in that example.
2912
+ def ensure_proper_type
2913
+ unless self.class.descends_from_active_record?
2914
+ write_attribute(self.class.inheritance_column, self.class.sti_name)
2915
+ end
2916
+ end
2917
+
2918
+ def convert_number_column_value(value)
2919
+ if value == false
2920
+ 0
2921
+ elsif value == true
2922
+ 1
2923
+ elsif value.is_a?(String) && value.blank?
2924
+ nil
2925
+ else
2926
+ value
2927
+ end
2928
+ end
2929
+
2930
+ def remove_attributes_protected_from_mass_assignment(attributes)
2931
+ safe_attributes =
2932
+ if self.class.accessible_attributes.nil? && self.class.protected_attributes.nil?
2933
+ attributes.reject { |key, value| attributes_protected_by_default.include?(key.gsub(/\(.+/, "")) }
2934
+ elsif self.class.protected_attributes.nil?
2935
+ attributes.reject { |key, value| !self.class.accessible_attributes.include?(key.gsub(/\(.+/, "")) || attributes_protected_by_default.include?(key.gsub(/\(.+/, "")) }
2936
+ elsif self.class.accessible_attributes.nil?
2937
+ attributes.reject { |key, value| self.class.protected_attributes.include?(key.gsub(/\(.+/,"")) || attributes_protected_by_default.include?(key.gsub(/\(.+/, "")) }
2938
+ else
2939
+ raise "Declare either attr_protected or attr_accessible for #{self.class}, but not both."
2940
+ end
2941
+
2942
+ removed_attributes = attributes.keys - safe_attributes.keys
2943
+
2944
+ if removed_attributes.any?
2945
+ log_protected_attribute_removal(removed_attributes)
2946
+ end
2947
+
2948
+ safe_attributes
2949
+ end
2950
+
2951
+ # Removes attributes which have been marked as readonly.
2952
+ def remove_readonly_attributes(attributes)
2953
+ unless self.class.readonly_attributes.nil?
2954
+ attributes.delete_if { |key, value| self.class.readonly_attributes.include?(key.gsub(/\(.+/,"")) }
2955
+ else
2956
+ attributes
2957
+ end
2958
+ end
2959
+
2960
+ def log_protected_attribute_removal(*attributes)
2961
+ logger.debug "WARNING: Can't mass-assign these protected attributes: #{attributes.join(', ')}"
2962
+ end
2963
+
2964
+ # The primary key and inheritance column can never be set by mass-assignment for security reasons.
2965
+ def attributes_protected_by_default
2966
+ default = [ self.class.primary_key, self.class.inheritance_column ]
2967
+ default << 'id' unless self.class.primary_key.eql? 'id'
2968
+ default
2969
+ end
2970
+
2971
+ # Returns a copy of the attributes hash where all the values have been safely quoted for use in
2972
+ # an SQL statement.
2973
+ def attributes_with_quotes(include_primary_key = true, include_readonly_attributes = true, attribute_names = @attributes.keys)
2974
+ quoted = {}
2975
+ connection = self.class.connection
2976
+ attribute_names.each do |name|
2977
+ if (column = column_for_attribute(name)) && (include_primary_key || !column.primary)
2978
+ value = read_attribute(name)
2979
+
2980
+ # We need explicit to_yaml because quote() does not properly convert Time/Date fields to YAML.
2981
+ if value && self.class.serialized_attributes.has_key?(name) && (value.acts_like?(:date) || value.acts_like?(:time))
2982
+ value = value.to_yaml
2983
+ end
2984
+
2985
+ quoted[name] = connection.quote(value, column)
2986
+ end
2987
+ end
2988
+ include_readonly_attributes ? quoted : remove_readonly_attributes(quoted)
2989
+ end
2990
+
2991
+ # Quote strings appropriately for SQL statements.
2992
+ def quote_value(value, column = nil)
2993
+ self.class.connection.quote(value, column)
2994
+ end
2995
+
2996
+ # Interpolate custom SQL string in instance context.
2997
+ # Optional record argument is meant for custom insert_sql.
2998
+ def interpolate_sql(sql, record = nil)
2999
+ instance_eval("%@#{sql.gsub('@', '\@')}@")
3000
+ end
3001
+
3002
+ # Initializes the attributes array with keys matching the columns from the linked table and
3003
+ # the values matching the corresponding default value of that column, so
3004
+ # that a new instance, or one populated from a passed-in Hash, still has all the attributes
3005
+ # that instances loaded from the database would.
3006
+ def attributes_from_column_definition
3007
+ self.class.columns.inject({}) do |attributes, column|
3008
+ attributes[column.name] = column.default unless column.name == self.class.primary_key
3009
+ attributes
3010
+ end
3011
+ end
3012
+
3013
+ # Instantiates objects for all attribute classes that needs more than one constructor parameter. This is done
3014
+ # by calling new on the column type or aggregation type (through composed_of) object with these parameters.
3015
+ # So having the pairs written_on(1) = "2004", written_on(2) = "6", written_on(3) = "24", will instantiate
3016
+ # written_on (a date type) with Date.new("2004", "6", "24"). You can also specify a typecast character in the
3017
+ # parentheses to have the parameters typecasted before they're used in the constructor. Use i for Fixnum, f for Float,
3018
+ # s for String, and a for Array. If all the values for a given attribute are empty, the attribute will be set to nil.
3019
+ def assign_multiparameter_attributes(pairs)
3020
+ execute_callstack_for_multiparameter_attributes(
3021
+ extract_callstack_for_multiparameter_attributes(pairs)
3022
+ )
3023
+ end
3024
+
3025
+ def instantiate_time_object(name, values)
3026
+ if self.class.send(:create_time_zone_conversion_attribute?, name, column_for_attribute(name))
3027
+ Time.zone.local(*values)
3028
+ else
3029
+ Time.time_with_datetime_fallback(@@default_timezone, *values)
3030
+ end
3031
+ end
3032
+
3033
+ def execute_callstack_for_multiparameter_attributes(callstack)
3034
+ errors = []
3035
+ callstack.each do |name, values_with_empty_parameters|
3036
+ begin
3037
+ klass = (self.class.reflect_on_aggregation(name.to_sym) || column_for_attribute(name)).klass
3038
+ # in order to allow a date to be set without a year, we must keep the empty values.
3039
+ # Otherwise, we wouldn't be able to distinguish it from a date with an empty day.
3040
+ values = values_with_empty_parameters.reject(&:nil?)
3041
+
3042
+ if values.empty?
3043
+ send(name + "=", nil)
3044
+ else
3045
+
3046
+ value = if Time == klass
3047
+ instantiate_time_object(name, values)
3048
+ elsif Date == klass
3049
+ begin
3050
+ values = values_with_empty_parameters.collect do |v| v.nil? ? 1 : v end
3051
+ Date.new(*values)
3052
+ rescue ArgumentError => ex # if Date.new raises an exception on an invalid date
3053
+ instantiate_time_object(name, values).to_date # we instantiate Time object and convert it back to a date thus using Time's logic in handling invalid dates
3054
+ end
3055
+ else
3056
+ klass.new(*values)
3057
+ end
3058
+
3059
+ send(name + "=", value)
3060
+ end
3061
+ rescue => ex
3062
+ errors << AttributeAssignmentError.new("error on assignment #{values.inspect} to #{name}", ex, name)
3063
+ end
3064
+ end
3065
+ unless errors.empty?
3066
+ raise MultiparameterAssignmentErrors.new(errors), "#{errors.size} error(s) on assignment of multiparameter attributes"
3067
+ end
3068
+ end
3069
+
3070
+ def extract_callstack_for_multiparameter_attributes(pairs)
3071
+ attributes = { }
3072
+
3073
+ for pair in pairs
3074
+ multiparameter_name, value = pair
3075
+ attribute_name = multiparameter_name.split("(").first
3076
+ attributes[attribute_name] = [] unless attributes.include?(attribute_name)
3077
+
3078
+ parameter_value = value.empty? ? nil : type_cast_attribute_value(multiparameter_name, value)
3079
+ attributes[attribute_name] << [ find_parameter_position(multiparameter_name), parameter_value ]
3080
+ end
3081
+
3082
+ attributes.each { |name, values| attributes[name] = values.sort_by{ |v| v.first }.collect { |v| v.last } }
3083
+ end
3084
+
3085
+ def type_cast_attribute_value(multiparameter_name, value)
3086
+ multiparameter_name =~ /\([0-9]*([if])\)/ ? value.send("to_" + $1) : value
3087
+ end
3088
+
3089
+ def find_parameter_position(multiparameter_name)
3090
+ multiparameter_name.scan(/\(([0-9]*).*\)/).first.first
3091
+ end
3092
+
3093
+ # Returns a comma-separated pair list, like "key1 = val1, key2 = val2".
3094
+ def comma_pair_list(hash)
3095
+ hash.inject([]) { |list, pair| list << "#{pair.first} = #{pair.last}" }.join(", ")
3096
+ end
3097
+
3098
+ def quoted_column_names(attributes = attributes_with_quotes)
3099
+ connection = self.class.connection
3100
+ attributes.keys.collect do |column_name|
3101
+ connection.quote_column_name(column_name)
3102
+ end
3103
+ end
3104
+
3105
+ def self.quoted_table_name
3106
+ self.connection.quote_table_name(self.table_name)
3107
+ end
3108
+
3109
+ def quote_columns(quoter, hash)
3110
+ hash.inject({}) do |quoted, (name, value)|
3111
+ quoted[quoter.quote_column_name(name)] = value
3112
+ quoted
3113
+ end
3114
+ end
3115
+
3116
+ def quoted_comma_pair_list(quoter, hash)
3117
+ comma_pair_list(quote_columns(quoter, hash))
3118
+ end
3119
+
3120
+ def object_from_yaml(string)
3121
+ return string unless string.is_a?(String) && string =~ /^---/
3122
+ YAML::load(string) rescue string
3123
+ end
3124
+
3125
+ def clone_attributes(reader_method = :read_attribute, attributes = {})
3126
+ self.attribute_names.inject(attributes) do |attrs, name|
3127
+ attrs[name] = clone_attribute_value(reader_method, name)
3128
+ attrs
3129
+ end
3130
+ end
3131
+
3132
+ def clone_attribute_value(reader_method, attribute_name)
3133
+ value = send(reader_method, attribute_name)
3134
+ value.duplicable? ? value.clone : value
3135
+ rescue TypeError, NoMethodError
3136
+ value
3137
+ end
3138
+ end
3139
+
3140
+ Base.class_eval do
3141
+ extend QueryCache::ClassMethods
3142
+ include Validations
3143
+ include Locking::Optimistic, Locking::Pessimistic
3144
+ include AttributeMethods
3145
+ include Dirty
3146
+ include Callbacks, Observing, Timestamp
3147
+ include Associations, AssociationPreload, NamedScope
3148
+
3149
+ # AutosaveAssociation needs to be included before Transactions, because we want
3150
+ # #save_with_autosave_associations to be wrapped inside a transaction.
3151
+ include AutosaveAssociation, NestedAttributes
3152
+
3153
+ include Aggregations, Transactions, Reflection, Batches, Calculations, Serialization
3154
+ end
3155
+ end
3156
+
3157
+ # TODO: Remove this and make it work with LAZY flag
3158
+ require 'active_record/connection_adapters/abstract_adapter'