ginst 0.2.2 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4253) hide show
  1. data/.document +5 -0
  2. data/.gitignore +21 -0
  3. data/LICENSE +20 -0
  4. data/README.rdoc +18 -0
  5. data/Rakefile +61 -19
  6. data/VERSION +1 -0
  7. data/app/controllers/application_controller.rb +70 -0
  8. data/app/controllers/commits_controller.rb +38 -0
  9. data/app/controllers/plugin_controller.rb +6 -0
  10. data/app/controllers/projects_controller.rb +41 -0
  11. data/app/controllers/status_controller.rb +8 -0
  12. data/app/controllers/tasks_controller.rb +38 -0
  13. data/app/controllers/user_sessions_controller.rb +24 -0
  14. data/app/controllers/users_controller.rb +36 -0
  15. data/app/helpers/application_helper.rb +3 -0
  16. data/app/helpers/commits_helper.rb +2 -0
  17. data/app/helpers/projects_helper.rb +42 -0
  18. data/app/helpers/status_helper.rb +2 -0
  19. data/app/helpers/tasks_helper.rb +12 -0
  20. data/app/helpers/user_sessions_helper.rb +2 -0
  21. data/app/helpers/users_helper.rb +2 -0
  22. data/app/models/command.rb +31 -0
  23. data/app/models/project.rb +196 -0
  24. data/app/models/task.rb +174 -0
  25. data/app/models/user.rb +3 -0
  26. data/app/models/user_session.rb +2 -0
  27. data/app/views/commits/index.html.erb +6 -0
  28. data/app/views/commits/show.html.erb +4 -0
  29. data/app/views/grit/commits/_commit.html.erb +29 -0
  30. data/app/views/layouts/application.html.erb +50 -0
  31. data/app/views/layouts/projects.html.erb +55 -0
  32. data/app/views/projects/_project.html.erb +2 -0
  33. data/app/views/projects/edit.html.erb +78 -0
  34. data/app/views/projects/index.html.erb +4 -0
  35. data/app/views/projects/new.html.erb +15 -0
  36. data/app/views/projects/show.html.erb +0 -0
  37. data/app/views/status/show.html.erb +12 -0
  38. data/app/views/tasks/_task.html.erb +29 -0
  39. data/app/views/tasks/_task_command.html.erb +7 -0
  40. data/app/views/tasks/building.html.erb +5 -0
  41. data/app/views/tasks/index.html.erb +10 -0
  42. data/app/views/tasks/show.html.erb +58 -0
  43. data/app/views/tasks/show.js.erb +24 -0
  44. data/app/views/user_sessions/new.html.erb +14 -0
  45. data/app/views/users/_form.html.erb +8 -0
  46. data/app/views/users/edit.html.erb +9 -0
  47. data/app/views/users/new.html.erb +7 -0
  48. data/app/views/users/show.html.erb +37 -0
  49. data/bin/ginst +2 -17
  50. data/config/boot.rb +110 -0
  51. data/config/database.yml +29 -0
  52. data/config/environment.rb +45 -0
  53. data/config/environments/development.rb +18 -0
  54. data/config/environments/production.rb +24 -0
  55. data/config/environments/test.rb +22 -0
  56. data/config/initializers/builder.rb +16 -0
  57. data/config/initializers/grit.rb +7 -0
  58. data/config/initializers/inflections.rb +10 -0
  59. data/config/initializers/mime_types.rb +5 -0
  60. data/config/initializers/new_rails_defaults.rb +17 -0
  61. data/config/locales/en.yml +5 -0
  62. data/config/routes.rb +60 -0
  63. data/db/migrate/20091025155610_create_users.rb +29 -0
  64. data/db/migrate/20091025163717_create_projects.rb +20 -0
  65. data/db/migrate/20091025165305_create_tasks.rb +29 -0
  66. data/db/migrate/20091025165330_create_commands.rb +21 -0
  67. data/db/schema.rb +79 -0
  68. data/features/ginst.feature +9 -0
  69. data/features/step_definitions/ginst_steps.rb +0 -0
  70. data/features/support/env.rb +2 -27
  71. data/ginst.gemspec +4229 -28
  72. data/lib/ginst.rb +36 -10
  73. data/lib/ginst/builder.rb +76 -0
  74. data/lib/ginst/cli.rb +168 -0
  75. data/lib/ginst/configuration.rb +12 -0
  76. data/lib/ginst/console_to_html.rb +58 -0
  77. data/lib/ginst/ginst_template/database.ymlt +20 -0
  78. data/lib/ginst/ginst_template/plugins/simple_build/app/controllers/simple_builds_controller.rb +17 -0
  79. data/lib/ginst/ginst_template/plugins/simple_build/app/models/simple_build.rb +29 -0
  80. data/lib/ginst/ginst_template/plugins/simple_build/app/models/simple_build_conf.rb +41 -0
  81. data/lib/ginst/ginst_template/plugins/simple_build/app/models/simple_build_plugin.rb +12 -0
  82. data/lib/ginst/ginst_template/plugins/simple_build/app/views/simple_builds/_commit.html.erb +35 -0
  83. data/lib/ginst/ginst_template/plugins/simple_build/app/views/simple_builds/_config.html.erb +4 -0
  84. data/lib/ginst/ginst_template/plugins/simple_build/app/views/simple_builds/_simple_build.html.erb +1 -0
  85. data/lib/ginst/ginst_template/plugins/simple_build/app/views/simple_builds/index.html.erb +7 -0
  86. data/lib/ginst/ginst_template/plugins/simple_build/config/build.yml +5 -0
  87. data/lib/ginst/ginst_template/plugins/simple_build/config/routes.rb +9 -0
  88. data/lib/ginst/ginst_template/plugins/simple_build/init.rb +3 -0
  89. data/lib/ginst/plugin.rb +10 -0
  90. data/lib/ginst/ssh.rb +19 -0
  91. data/lib/ginst/template.rb +40 -0
  92. data/lib/ginst/web_server.rb +61 -39
  93. data/lib/tasks/ginst.rake +13 -0
  94. data/log/.gittouch +0 -0
  95. data/public/404.html +30 -0
  96. data/public/422.html +30 -0
  97. data/public/500.html +33 -0
  98. data/public/dispatch.cgi +10 -0
  99. data/public/dispatch.fcgi +24 -0
  100. data/public/dispatch.rb +10 -0
  101. data/public/favicon.ico +0 -0
  102. data/public/html_demos/archives.html +285 -0
  103. data/public/html_demos/blog.html +502 -0
  104. data/public/html_demos/index.html +393 -0
  105. data/public/html_demos/style.html +392 -0
  106. data/public/images/ajax-loader.gif +0 -0
  107. data/public/images/build.png +0 -0
  108. data/public/images/building.gif +0 -0
  109. data/public/images/task_fail.gif +0 -0
  110. data/public/images/task_fail_small.png +0 -0
  111. data/public/images/task_prepared.png +0 -0
  112. data/public/images/task_prepared_small.png +0 -0
  113. data/public/images/task_win.png +0 -0
  114. data/public/images/task_win_small.png +0 -0
  115. data/public/javascripts/jquery-1.3.2.min.js +19 -0
  116. data/public/plugin_assets/README +5 -0
  117. data/public/robots.txt +5 -0
  118. data/public/stylesheets/lib/forms.css +41 -0
  119. data/public/stylesheets/lib/ie.css +19 -0
  120. data/public/stylesheets/lib/plugins/tabs.css +8 -0
  121. data/public/stylesheets/lib/reset.css +24 -0
  122. data/public/stylesheets/lib/typography.css +83 -0
  123. data/public/stylesheets/print.css +26 -0
  124. data/public/stylesheets/screen.css +449 -0
  125. data/script/about +4 -0
  126. data/script/builder.rb +15 -0
  127. data/script/console +3 -0
  128. data/script/dbconsole +3 -0
  129. data/script/destroy +3 -0
  130. data/script/generate +3 -0
  131. data/script/performance/benchmarker +3 -0
  132. data/script/performance/profiler +3 -0
  133. data/script/performance/request +3 -0
  134. data/script/plugin +3 -0
  135. data/script/process/inspector +3 -0
  136. data/script/process/reaper +3 -0
  137. data/script/process/spawner +3 -0
  138. data/script/runner +3 -0
  139. data/script/server +3 -0
  140. data/spec/ginst_spec.rb +7 -0
  141. data/spec/spec.opts +1 -0
  142. data/spec/spec_helper.rb +8 -7
  143. data/vendor/gems/daemons-1.0.10/.specification +97 -0
  144. data/vendor/gems/daemons-1.0.10/LICENSE +29 -0
  145. data/vendor/gems/daemons-1.0.10/README +223 -0
  146. data/vendor/gems/daemons-1.0.10/Rakefile +84 -0
  147. data/vendor/gems/daemons-1.0.10/Releases +126 -0
  148. data/vendor/gems/daemons-1.0.10/TODO +6 -0
  149. data/vendor/gems/daemons-1.0.10/examples/call/call.rb +56 -0
  150. data/vendor/gems/daemons-1.0.10/examples/call/call_monitor.rb +55 -0
  151. data/vendor/gems/daemons-1.0.10/examples/daemonize/daemonize.rb +20 -0
  152. data/vendor/gems/daemons-1.0.10/examples/run/ctrl_crash.rb +17 -0
  153. data/vendor/gems/daemons-1.0.10/examples/run/ctrl_exec.rb +16 -0
  154. data/vendor/gems/daemons-1.0.10/examples/run/ctrl_exit.rb +15 -0
  155. data/vendor/gems/daemons-1.0.10/examples/run/ctrl_keep_pid_files.rb +17 -0
  156. data/vendor/gems/daemons-1.0.10/examples/run/ctrl_monitor.rb +16 -0
  157. data/vendor/gems/daemons-1.0.10/examples/run/ctrl_multiple.rb +16 -0
  158. data/vendor/gems/daemons-1.0.10/examples/run/ctrl_normal.rb +12 -0
  159. data/vendor/gems/daemons-1.0.10/examples/run/ctrl_ontop.rb +16 -0
  160. data/vendor/gems/daemons-1.0.10/examples/run/ctrl_optionparser.rb +43 -0
  161. data/vendor/gems/daemons-1.0.10/examples/run/ctrl_proc.rb +25 -0
  162. data/vendor/gems/daemons-1.0.10/examples/run/ctrl_proc.rb.output +101 -0
  163. data/vendor/gems/daemons-1.0.10/examples/run/ctrl_proc_multiple.rb +22 -0
  164. data/vendor/gems/daemons-1.0.10/examples/run/ctrl_proc_multiple.rb.output +2 -0
  165. data/vendor/gems/daemons-1.0.10/examples/run/ctrl_proc_simple.rb +17 -0
  166. data/vendor/gems/daemons-1.0.10/examples/run/myserver.rb +12 -0
  167. data/vendor/gems/daemons-1.0.10/examples/run/myserver_crashing.rb +14 -0
  168. data/vendor/gems/daemons-1.0.10/examples/run/myserver_crashing.rb.output +30 -0
  169. data/vendor/gems/daemons-1.0.10/examples/run/myserver_exiting.rb +8 -0
  170. data/vendor/gems/daemons-1.0.10/lib/Ginst WebServer.output +30 -0
  171. data/vendor/gems/daemons-1.0.10/lib/daemons.rb +283 -0
  172. data/vendor/gems/daemons-1.0.10/lib/daemons/application.rb +372 -0
  173. data/vendor/gems/daemons-1.0.10/lib/daemons/application_group.rb +152 -0
  174. data/vendor/gems/daemons-1.0.10/lib/daemons/cmdline.rb +117 -0
  175. data/vendor/gems/daemons-1.0.10/lib/daemons/controller.rb +134 -0
  176. data/vendor/gems/daemons-1.0.10/lib/daemons/daemonize.rb +263 -0
  177. data/vendor/gems/daemons-1.0.10/lib/daemons/exceptions.rb +28 -0
  178. data/vendor/gems/daemons-1.0.10/lib/daemons/monitor.rb +127 -0
  179. data/vendor/gems/daemons-1.0.10/lib/daemons/pid.rb +101 -0
  180. data/vendor/gems/daemons-1.0.10/lib/daemons/pidfile.rb +111 -0
  181. data/vendor/gems/daemons-1.0.10/lib/daemons/pidmem.rb +10 -0
  182. data/vendor/gems/daemons-1.0.10/setup.rb +1360 -0
  183. data/vendor/gems/diff-lcs-1.1.2/.specification +80 -0
  184. data/vendor/gems/diff-lcs-1.1.2/ChangeLog +46 -0
  185. data/vendor/gems/diff-lcs-1.1.2/Install +6 -0
  186. data/vendor/gems/diff-lcs-1.1.2/README +76 -0
  187. data/vendor/gems/diff-lcs-1.1.2/Rakefile +116 -0
  188. data/vendor/gems/diff-lcs-1.1.2/bin/htmldiff +112 -0
  189. data/vendor/gems/diff-lcs-1.1.2/bin/ldiff +45 -0
  190. data/vendor/gems/diff-lcs-1.1.2/lib/diff/lcs.rb +1105 -0
  191. data/vendor/gems/diff-lcs-1.1.2/lib/diff/lcs/array.rb +21 -0
  192. data/vendor/gems/diff-lcs-1.1.2/lib/diff/lcs/block.rb +51 -0
  193. data/vendor/gems/diff-lcs-1.1.2/lib/diff/lcs/callbacks.rb +322 -0
  194. data/vendor/gems/diff-lcs-1.1.2/lib/diff/lcs/change.rb +169 -0
  195. data/vendor/gems/diff-lcs-1.1.2/lib/diff/lcs/hunk.rb +257 -0
  196. data/vendor/gems/diff-lcs-1.1.2/lib/diff/lcs/ldiff.rb +226 -0
  197. data/vendor/gems/diff-lcs-1.1.2/lib/diff/lcs/string.rb +19 -0
  198. data/vendor/gems/diff-lcs-1.1.2/tests/00test.rb +626 -0
  199. data/vendor/gems/extlib-0.9.13/.specification +119 -0
  200. data/vendor/gems/extlib-0.9.13/History.txt +77 -0
  201. data/vendor/gems/extlib-0.9.13/LICENSE +47 -0
  202. data/vendor/gems/extlib-0.9.13/README +0 -0
  203. data/vendor/gems/extlib-0.9.13/Rakefile +180 -0
  204. data/vendor/gems/extlib-0.9.13/lib/extlib.rb +50 -0
  205. data/vendor/gems/extlib-0.9.13/lib/extlib/array.rb +36 -0
  206. data/vendor/gems/extlib-0.9.13/lib/extlib/assertions.rb +8 -0
  207. data/vendor/gems/extlib-0.9.13/lib/extlib/blank.rb +89 -0
  208. data/vendor/gems/extlib-0.9.13/lib/extlib/boolean.rb +11 -0
  209. data/vendor/gems/extlib-0.9.13/lib/extlib/byte_array.rb +6 -0
  210. data/vendor/gems/extlib-0.9.13/lib/extlib/class.rb +177 -0
  211. data/vendor/gems/extlib-0.9.13/lib/extlib/datetime.rb +29 -0
  212. data/vendor/gems/extlib-0.9.13/lib/extlib/dictionary.rb +433 -0
  213. data/vendor/gems/extlib-0.9.13/lib/extlib/hash.rb +442 -0
  214. data/vendor/gems/extlib-0.9.13/lib/extlib/hook.rb +401 -0
  215. data/vendor/gems/extlib-0.9.13/lib/extlib/inflection.rb +434 -0
  216. data/vendor/gems/extlib-0.9.13/lib/extlib/lazy_array.rb +457 -0
  217. data/vendor/gems/extlib-0.9.13/lib/extlib/lazy_module.rb +18 -0
  218. data/vendor/gems/extlib-0.9.13/lib/extlib/logger.rb +198 -0
  219. data/vendor/gems/extlib-0.9.13/lib/extlib/mash.rb +155 -0
  220. data/vendor/gems/extlib-0.9.13/lib/extlib/module.rb +47 -0
  221. data/vendor/gems/extlib-0.9.13/lib/extlib/nil.rb +5 -0
  222. data/vendor/gems/extlib-0.9.13/lib/extlib/numeric.rb +5 -0
  223. data/vendor/gems/extlib-0.9.13/lib/extlib/object.rb +175 -0
  224. data/vendor/gems/extlib-0.9.13/lib/extlib/object_space.rb +13 -0
  225. data/vendor/gems/extlib-0.9.13/lib/extlib/pathname.rb +20 -0
  226. data/vendor/gems/extlib-0.9.13/lib/extlib/pooling.rb +235 -0
  227. data/vendor/gems/extlib-0.9.13/lib/extlib/rubygems.rb +38 -0
  228. data/vendor/gems/extlib-0.9.13/lib/extlib/simple_set.rb +66 -0
  229. data/vendor/gems/extlib-0.9.13/lib/extlib/string.rb +175 -0
  230. data/vendor/gems/extlib-0.9.13/lib/extlib/struct.rb +17 -0
  231. data/vendor/gems/extlib-0.9.13/lib/extlib/symbol.rb +21 -0
  232. data/vendor/gems/extlib-0.9.13/lib/extlib/tasks/release.rb +15 -0
  233. data/vendor/gems/extlib-0.9.13/lib/extlib/time.rb +43 -0
  234. data/vendor/gems/extlib-0.9.13/lib/extlib/version.rb +3 -0
  235. data/vendor/gems/extlib-0.9.13/lib/extlib/virtual_file.rb +10 -0
  236. data/vendor/gems/extlib-0.9.13/spec/array_spec.rb +39 -0
  237. data/vendor/gems/extlib-0.9.13/spec/blank_spec.rb +85 -0
  238. data/vendor/gems/extlib-0.9.13/spec/byte_array_spec.rb +7 -0
  239. data/vendor/gems/extlib-0.9.13/spec/class_spec.rb +157 -0
  240. data/vendor/gems/extlib-0.9.13/spec/datetime_spec.rb +22 -0
  241. data/vendor/gems/extlib-0.9.13/spec/hash_spec.rb +537 -0
  242. data/vendor/gems/extlib-0.9.13/spec/hook_spec.rb +1234 -0
  243. data/vendor/gems/extlib-0.9.13/spec/inflection/plural_spec.rb +564 -0
  244. data/vendor/gems/extlib-0.9.13/spec/inflection/singular_spec.rb +497 -0
  245. data/vendor/gems/extlib-0.9.13/spec/inflection_extras_spec.rb +93 -0
  246. data/vendor/gems/extlib-0.9.13/spec/lazy_array_spec.rb +1932 -0
  247. data/vendor/gems/extlib-0.9.13/spec/lazy_module_spec.rb +38 -0
  248. data/vendor/gems/extlib-0.9.13/spec/mash_spec.rb +311 -0
  249. data/vendor/gems/extlib-0.9.13/spec/module_spec.rb +70 -0
  250. data/vendor/gems/extlib-0.9.13/spec/object_space_spec.rb +9 -0
  251. data/vendor/gems/extlib-0.9.13/spec/object_spec.rb +114 -0
  252. data/vendor/gems/extlib-0.9.13/spec/pooling_spec.rb +511 -0
  253. data/vendor/gems/extlib-0.9.13/spec/simple_set_spec.rb +57 -0
  254. data/vendor/gems/extlib-0.9.13/spec/spec.opts +3 -0
  255. data/vendor/gems/extlib-0.9.13/spec/spec_helper.rb +10 -0
  256. data/vendor/gems/extlib-0.9.13/spec/string_spec.rb +220 -0
  257. data/vendor/gems/extlib-0.9.13/spec/struct_spec.rb +12 -0
  258. data/vendor/gems/extlib-0.9.13/spec/symbol_spec.rb +8 -0
  259. data/vendor/gems/extlib-0.9.13/spec/time_spec.rb +29 -0
  260. data/vendor/gems/extlib-0.9.13/spec/try_call_spec.rb +73 -0
  261. data/vendor/gems/extlib-0.9.13/spec/try_dup_spec.rb +45 -0
  262. data/vendor/gems/extlib-0.9.13/spec/virtual_file_spec.rb +21 -0
  263. data/vendor/gems/grit-1.1.1/.specification +115 -0
  264. data/vendor/gems/grit-1.1.1/API.txt +101 -0
  265. data/vendor/gems/grit-1.1.1/History.txt +53 -0
  266. data/vendor/gems/grit-1.1.1/LICENSE +22 -0
  267. data/vendor/gems/grit-1.1.1/README.md +210 -0
  268. data/vendor/gems/grit-1.1.1/VERSION.yml +4 -0
  269. data/vendor/gems/grit-1.1.1/lib/grit.rb +68 -0
  270. data/vendor/gems/grit-1.1.1/lib/grit/actor.rb +36 -0
  271. data/vendor/gems/grit-1.1.1/lib/grit/blame.rb +61 -0
  272. data/vendor/gems/grit-1.1.1/lib/grit/blob.rb +126 -0
  273. data/vendor/gems/grit-1.1.1/lib/grit/commit.rb +242 -0
  274. data/vendor/gems/grit-1.1.1/lib/grit/commit_stats.rb +128 -0
  275. data/vendor/gems/grit-1.1.1/lib/grit/config.rb +44 -0
  276. data/vendor/gems/grit-1.1.1/lib/grit/diff.rb +70 -0
  277. data/vendor/gems/grit-1.1.1/lib/grit/errors.rb +7 -0
  278. data/vendor/gems/grit-1.1.1/lib/grit/git-ruby.rb +186 -0
  279. data/vendor/gems/grit-1.1.1/lib/grit/git-ruby/commit_db.rb +52 -0
  280. data/vendor/gems/grit-1.1.1/lib/grit/git-ruby/file_index.rb +193 -0
  281. data/vendor/gems/grit-1.1.1/lib/grit/git-ruby/git_object.rb +350 -0
  282. data/vendor/gems/grit-1.1.1/lib/grit/git-ruby/internal/file_window.rb +58 -0
  283. data/vendor/gems/grit-1.1.1/lib/grit/git-ruby/internal/loose.rb +137 -0
  284. data/vendor/gems/grit-1.1.1/lib/grit/git-ruby/internal/pack.rb +382 -0
  285. data/vendor/gems/grit-1.1.1/lib/grit/git-ruby/internal/raw_object.rb +37 -0
  286. data/vendor/gems/grit-1.1.1/lib/grit/git-ruby/object.rb +325 -0
  287. data/vendor/gems/grit-1.1.1/lib/grit/git-ruby/repository.rb +736 -0
  288. data/vendor/gems/grit-1.1.1/lib/grit/git.rb +140 -0
  289. data/vendor/gems/grit-1.1.1/lib/grit/index.rb +122 -0
  290. data/vendor/gems/grit-1.1.1/lib/grit/lazy.rb +33 -0
  291. data/vendor/gems/grit-1.1.1/lib/grit/merge.rb +45 -0
  292. data/vendor/gems/grit-1.1.1/lib/grit/ref.rb +99 -0
  293. data/vendor/gems/grit-1.1.1/lib/grit/repo.rb +437 -0
  294. data/vendor/gems/grit-1.1.1/lib/grit/ruby1.9.rb +7 -0
  295. data/vendor/gems/grit-1.1.1/lib/grit/status.rb +151 -0
  296. data/vendor/gems/grit-1.1.1/lib/grit/submodule.rb +88 -0
  297. data/vendor/gems/grit-1.1.1/lib/grit/tag.rb +66 -0
  298. data/vendor/gems/grit-1.1.1/lib/grit/tree.rb +123 -0
  299. data/vendor/gems/grit-1.1.1/lib/open3_detach.rb +46 -0
  300. data/vendor/gems/highline-1.5.0/.specification +89 -0
  301. data/vendor/gems/highline-1.5.0/CHANGELOG +211 -0
  302. data/vendor/gems/highline-1.5.0/INSTALL +35 -0
  303. data/vendor/gems/highline-1.5.0/LICENSE +7 -0
  304. data/vendor/gems/highline-1.5.0/README +63 -0
  305. data/vendor/gems/highline-1.5.0/Rakefile +82 -0
  306. data/vendor/gems/highline-1.5.0/TODO +6 -0
  307. data/vendor/gems/highline-1.5.0/examples/ansi_colors.rb +38 -0
  308. data/vendor/gems/highline-1.5.0/examples/asking_for_arrays.rb +18 -0
  309. data/vendor/gems/highline-1.5.0/examples/basic_usage.rb +75 -0
  310. data/vendor/gems/highline-1.5.0/examples/color_scheme.rb +32 -0
  311. data/vendor/gems/highline-1.5.0/examples/menus.rb +65 -0
  312. data/vendor/gems/highline-1.5.0/examples/overwrite.rb +19 -0
  313. data/vendor/gems/highline-1.5.0/examples/page_and_wrap.rb +322 -0
  314. data/vendor/gems/highline-1.5.0/examples/password.rb +7 -0
  315. data/vendor/gems/highline-1.5.0/examples/trapping_eof.rb +22 -0
  316. data/vendor/gems/highline-1.5.0/examples/using_readline.rb +17 -0
  317. data/vendor/gems/highline-1.5.0/lib/highline.rb +748 -0
  318. data/vendor/gems/highline-1.5.0/lib/highline/color_scheme.rb +120 -0
  319. data/vendor/gems/highline-1.5.0/lib/highline/import.rb +43 -0
  320. data/vendor/gems/highline-1.5.0/lib/highline/menu.rb +395 -0
  321. data/vendor/gems/highline-1.5.0/lib/highline/question.rb +462 -0
  322. data/vendor/gems/highline-1.5.0/lib/highline/system_extensions.rb +130 -0
  323. data/vendor/gems/highline-1.5.0/setup.rb +1360 -0
  324. data/vendor/gems/highline-1.5.0/test/tc_color_scheme.rb +56 -0
  325. data/vendor/gems/highline-1.5.0/test/tc_highline.rb +823 -0
  326. data/vendor/gems/highline-1.5.0/test/tc_import.rb +54 -0
  327. data/vendor/gems/highline-1.5.0/test/tc_menu.rb +429 -0
  328. data/vendor/gems/highline-1.5.0/test/ts_all.rb +15 -0
  329. data/vendor/gems/open4-1.0.1/.specification +67 -0
  330. data/vendor/gems/open4-1.0.1/README +365 -0
  331. data/vendor/gems/open4-1.0.1/README.erb +365 -0
  332. data/vendor/gems/open4-1.0.1/Rakefile +225 -0
  333. data/vendor/gems/open4-1.0.1/lib/open4.rb +401 -0
  334. data/vendor/gems/open4-1.0.1/open4.gemspec +28 -0
  335. data/vendor/gems/open4-1.0.1/samples/bg.rb +21 -0
  336. data/vendor/gems/open4-1.0.1/samples/block.rb +19 -0
  337. data/vendor/gems/open4-1.0.1/samples/exception.rb +3 -0
  338. data/vendor/gems/open4-1.0.1/samples/simple.rb +15 -0
  339. data/vendor/gems/open4-1.0.1/samples/spawn.rb +16 -0
  340. data/vendor/gems/open4-1.0.1/samples/stdin_timeout.rb +9 -0
  341. data/vendor/gems/open4-1.0.1/samples/timeout.rb +37 -0
  342. data/vendor/gems/open4-1.0.1/white_box/leak.rb +17 -0
  343. data/vendor/gems/ryanb-acts-as-list-0.1.2/.specification +67 -0
  344. data/vendor/gems/ryanb-acts-as-list-0.1.2/Manifest +6 -0
  345. data/vendor/gems/ryanb-acts-as-list-0.1.2/README +34 -0
  346. data/vendor/gems/ryanb-acts-as-list-0.1.2/acts-as-list.gemspec +58 -0
  347. data/vendor/gems/ryanb-acts-as-list-0.1.2/lib/acts_as_list.rb +254 -0
  348. data/vendor/gems/ryanb-acts-as-list-0.1.2/tasks/deployment.rake +2 -0
  349. data/vendor/gems/ryanb-acts-as-list-0.1.2/test/list_test.rb +369 -0
  350. data/vendor/gems/templater-1.0.0/.specification +180 -0
  351. data/vendor/gems/templater-1.0.0/History.txt +3 -0
  352. data/vendor/gems/templater-1.0.0/Manifest.txt +64 -0
  353. data/vendor/gems/templater-1.0.0/README.rdoc +266 -0
  354. data/vendor/gems/templater-1.0.0/Rakefile +23 -0
  355. data/vendor/gems/templater-1.0.0/lib/templater.rb +49 -0
  356. data/vendor/gems/templater-1.0.0/lib/templater/actions/action.rb +43 -0
  357. data/vendor/gems/templater-1.0.0/lib/templater/actions/directory.rb +22 -0
  358. data/vendor/gems/templater-1.0.0/lib/templater/actions/empty_directory.rb +57 -0
  359. data/vendor/gems/templater-1.0.0/lib/templater/actions/file.rb +60 -0
  360. data/vendor/gems/templater-1.0.0/lib/templater/actions/template.rb +61 -0
  361. data/vendor/gems/templater-1.0.0/lib/templater/capture_helpers.rb +62 -0
  362. data/vendor/gems/templater-1.0.0/lib/templater/cli/generator.rb +175 -0
  363. data/vendor/gems/templater-1.0.0/lib/templater/cli/manifold.rb +59 -0
  364. data/vendor/gems/templater-1.0.0/lib/templater/cli/parser.rb +85 -0
  365. data/vendor/gems/templater-1.0.0/lib/templater/core_ext/kernel.rb +14 -0
  366. data/vendor/gems/templater-1.0.0/lib/templater/core_ext/string.rb +17 -0
  367. data/vendor/gems/templater-1.0.0/lib/templater/description.rb +78 -0
  368. data/vendor/gems/templater-1.0.0/lib/templater/discovery.rb +86 -0
  369. data/vendor/gems/templater-1.0.0/lib/templater/generator.rb +644 -0
  370. data/vendor/gems/templater-1.0.0/lib/templater/manifold.rb +98 -0
  371. data/vendor/gems/templater-1.0.0/lib/templater/spec/helpers.rb +67 -0
  372. data/vendor/gems/templater-1.0.0/script/console +10 -0
  373. data/vendor/gems/templater-1.0.0/script/destroy +14 -0
  374. data/vendor/gems/templater-1.0.0/script/generate +14 -0
  375. data/vendor/gems/templater-1.0.0/spec/actions/directory_spec.rb +21 -0
  376. data/vendor/gems/templater-1.0.0/spec/actions/empty_directory_spec.rb +108 -0
  377. data/vendor/gems/templater-1.0.0/spec/actions/file_spec.rb +112 -0
  378. data/vendor/gems/templater-1.0.0/spec/actions/template_spec.rb +141 -0
  379. data/vendor/gems/templater-1.0.0/spec/core_ext/string_spec.rb +39 -0
  380. data/vendor/gems/templater-1.0.0/spec/generator/actions_spec.rb +111 -0
  381. data/vendor/gems/templater-1.0.0/spec/generator/arguments_spec.rb +225 -0
  382. data/vendor/gems/templater-1.0.0/spec/generator/desc_spec.rb +10 -0
  383. data/vendor/gems/templater-1.0.0/spec/generator/destination_root_spec.rb +9 -0
  384. data/vendor/gems/templater-1.0.0/spec/generator/empty_directories_spec.rb +148 -0
  385. data/vendor/gems/templater-1.0.0/spec/generator/files_spec.rb +199 -0
  386. data/vendor/gems/templater-1.0.0/spec/generator/generators_spec.rb +63 -0
  387. data/vendor/gems/templater-1.0.0/spec/generator/glob_spec.rb +94 -0
  388. data/vendor/gems/templater-1.0.0/spec/generator/invocations_spec.rb +173 -0
  389. data/vendor/gems/templater-1.0.0/spec/generator/invoke_spec.rb +21 -0
  390. data/vendor/gems/templater-1.0.0/spec/generator/options_spec.rb +46 -0
  391. data/vendor/gems/templater-1.0.0/spec/generator/render_spec.rb +21 -0
  392. data/vendor/gems/templater-1.0.0/spec/generator/source_root_spec.rb +18 -0
  393. data/vendor/gems/templater-1.0.0/spec/generator/templates_spec.rb +209 -0
  394. data/vendor/gems/templater-1.0.0/spec/manifold_spec.rb +146 -0
  395. data/vendor/gems/templater-1.0.0/spec/options_parser_spec.rb +20 -0
  396. data/vendor/gems/templater-1.0.0/spec/results/erb.rbs +1 -0
  397. data/vendor/gems/templater-1.0.0/spec/results/file.rbs +1 -0
  398. data/vendor/gems/templater-1.0.0/spec/results/random.rbs +1 -0
  399. data/vendor/gems/templater-1.0.0/spec/results/simple_erb.rbs +1 -0
  400. data/vendor/gems/templater-1.0.0/spec/spec_helper.rb +65 -0
  401. data/vendor/gems/templater-1.0.0/spec/spec_helpers_spec.rb +85 -0
  402. data/vendor/gems/templater-1.0.0/spec/templater_spec.rb +7 -0
  403. data/vendor/gems/templater-1.0.0/spec/templates/erb.rbt +1 -0
  404. data/vendor/gems/templater-1.0.0/spec/templates/glob/README +1 -0
  405. data/vendor/gems/templater-1.0.0/spec/templates/glob/arg.js +3 -0
  406. data/vendor/gems/templater-1.0.0/spec/templates/glob/hellothar.%feh% +1 -0
  407. data/vendor/gems/templater-1.0.0/spec/templates/glob/hellothar.html.%feh% +1 -0
  408. data/vendor/gems/templater-1.0.0/spec/templates/glob/subfolder/jessica_alba.jpg +1 -0
  409. data/vendor/gems/templater-1.0.0/spec/templates/glob/subfolder/monkey.rb +1 -0
  410. data/vendor/gems/templater-1.0.0/spec/templates/glob/test.rb +1 -0
  411. data/vendor/gems/templater-1.0.0/spec/templates/literals_erb.rbt +1 -0
  412. data/vendor/gems/templater-1.0.0/spec/templates/simple.rbt +1 -0
  413. data/vendor/gems/templater-1.0.0/spec/templates/simple_erb.rbt +1 -0
  414. data/vendor/gems/templater-1.0.0/templater.gemspec +54 -0
  415. data/vendor/plugins/attribute_choices/.gitignore +2 -0
  416. data/vendor/plugins/attribute_choices/MIT-LICENSE +20 -0
  417. data/vendor/plugins/attribute_choices/README.rdoc +52 -0
  418. data/vendor/plugins/attribute_choices/Rakefile +23 -0
  419. data/vendor/plugins/attribute_choices/init.rb +2 -0
  420. data/vendor/plugins/attribute_choices/install.rb +1 -0
  421. data/vendor/plugins/attribute_choices/lib/attribute_choices.rb +90 -0
  422. data/vendor/plugins/attribute_choices/tasks/attributes_with_choices_tasks.rake +4 -0
  423. data/vendor/plugins/attribute_choices/test/attribute_choices_test.rb +120 -0
  424. data/vendor/plugins/attribute_choices/test/database.yml +3 -0
  425. data/vendor/plugins/attribute_choices/test/schema.rb +22 -0
  426. data/vendor/plugins/attribute_choices/test/test_helper.rb +22 -0
  427. data/vendor/plugins/attribute_choices/uninstall.rb +1 -0
  428. data/vendor/plugins/authlogic/.gitignore +9 -0
  429. data/vendor/plugins/authlogic/CHANGELOG.rdoc +345 -0
  430. data/vendor/plugins/authlogic/LICENSE +20 -0
  431. data/vendor/plugins/authlogic/README.rdoc +246 -0
  432. data/vendor/plugins/authlogic/Rakefile +42 -0
  433. data/vendor/plugins/authlogic/VERSION.yml +4 -0
  434. data/vendor/plugins/authlogic/authlogic.gemspec +212 -0
  435. data/vendor/plugins/authlogic/generators/session/session_generator.rb +9 -0
  436. data/vendor/plugins/authlogic/generators/session/templates/session.rb +2 -0
  437. data/vendor/plugins/authlogic/init.rb +1 -0
  438. data/vendor/plugins/authlogic/lib/authlogic.rb +57 -0
  439. data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/base.rb +107 -0
  440. data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/email.rb +110 -0
  441. data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/logged_in_status.rb +60 -0
  442. data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/login.rb +141 -0
  443. data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/magic_columns.rb +24 -0
  444. data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/password.rb +344 -0
  445. data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/perishable_token.rb +105 -0
  446. data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/persistence_token.rb +68 -0
  447. data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/restful_authentication.rb +61 -0
  448. data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/session_maintenance.rb +139 -0
  449. data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/single_access_token.rb +65 -0
  450. data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/validations_scope.rb +32 -0
  451. data/vendor/plugins/authlogic/lib/authlogic/authenticates_many/association.rb +42 -0
  452. data/vendor/plugins/authlogic/lib/authlogic/authenticates_many/base.rb +55 -0
  453. data/vendor/plugins/authlogic/lib/authlogic/controller_adapters/abstract_adapter.rb +67 -0
  454. data/vendor/plugins/authlogic/lib/authlogic/controller_adapters/merb_adapter.rb +30 -0
  455. data/vendor/plugins/authlogic/lib/authlogic/controller_adapters/rails_adapter.rb +48 -0
  456. data/vendor/plugins/authlogic/lib/authlogic/controller_adapters/sinatra_adapter.rb +61 -0
  457. data/vendor/plugins/authlogic/lib/authlogic/crypto_providers/aes256.rb +43 -0
  458. data/vendor/plugins/authlogic/lib/authlogic/crypto_providers/bcrypt.rb +89 -0
  459. data/vendor/plugins/authlogic/lib/authlogic/crypto_providers/md5.rb +34 -0
  460. data/vendor/plugins/authlogic/lib/authlogic/crypto_providers/sha1.rb +35 -0
  461. data/vendor/plugins/authlogic/lib/authlogic/crypto_providers/sha256.rb +50 -0
  462. data/vendor/plugins/authlogic/lib/authlogic/crypto_providers/sha512.rb +50 -0
  463. data/vendor/plugins/authlogic/lib/authlogic/crypto_providers/wordpress.rb +43 -0
  464. data/vendor/plugins/authlogic/lib/authlogic/i18n.rb +83 -0
  465. data/vendor/plugins/authlogic/lib/authlogic/i18n/translator.rb +15 -0
  466. data/vendor/plugins/authlogic/lib/authlogic/random.rb +33 -0
  467. data/vendor/plugins/authlogic/lib/authlogic/regex.rb +25 -0
  468. data/vendor/plugins/authlogic/lib/authlogic/session/activation.rb +58 -0
  469. data/vendor/plugins/authlogic/lib/authlogic/session/active_record_trickery.rb +61 -0
  470. data/vendor/plugins/authlogic/lib/authlogic/session/base.rb +37 -0
  471. data/vendor/plugins/authlogic/lib/authlogic/session/brute_force_protection.rb +96 -0
  472. data/vendor/plugins/authlogic/lib/authlogic/session/callbacks.rb +88 -0
  473. data/vendor/plugins/authlogic/lib/authlogic/session/cookies.rb +130 -0
  474. data/vendor/plugins/authlogic/lib/authlogic/session/existence.rb +93 -0
  475. data/vendor/plugins/authlogic/lib/authlogic/session/foundation.rb +63 -0
  476. data/vendor/plugins/authlogic/lib/authlogic/session/http_auth.rb +58 -0
  477. data/vendor/plugins/authlogic/lib/authlogic/session/id.rb +41 -0
  478. data/vendor/plugins/authlogic/lib/authlogic/session/klass.rb +75 -0
  479. data/vendor/plugins/authlogic/lib/authlogic/session/magic_columns.rb +95 -0
  480. data/vendor/plugins/authlogic/lib/authlogic/session/magic_states.rb +59 -0
  481. data/vendor/plugins/authlogic/lib/authlogic/session/params.rb +101 -0
  482. data/vendor/plugins/authlogic/lib/authlogic/session/password.rb +240 -0
  483. data/vendor/plugins/authlogic/lib/authlogic/session/perishable_token.rb +18 -0
  484. data/vendor/plugins/authlogic/lib/authlogic/session/persistence.rb +70 -0
  485. data/vendor/plugins/authlogic/lib/authlogic/session/priority_record.rb +34 -0
  486. data/vendor/plugins/authlogic/lib/authlogic/session/scopes.rb +101 -0
  487. data/vendor/plugins/authlogic/lib/authlogic/session/session.rb +62 -0
  488. data/vendor/plugins/authlogic/lib/authlogic/session/timeout.rb +82 -0
  489. data/vendor/plugins/authlogic/lib/authlogic/session/unauthorized_record.rb +50 -0
  490. data/vendor/plugins/authlogic/lib/authlogic/session/validation.rb +82 -0
  491. data/vendor/plugins/authlogic/lib/authlogic/test_case.rb +114 -0
  492. data/vendor/plugins/authlogic/lib/authlogic/test_case/mock_controller.rb +45 -0
  493. data/vendor/plugins/authlogic/lib/authlogic/test_case/mock_cookie_jar.rb +14 -0
  494. data/vendor/plugins/authlogic/lib/authlogic/test_case/mock_logger.rb +10 -0
  495. data/vendor/plugins/authlogic/lib/authlogic/test_case/mock_request.rb +19 -0
  496. data/vendor/plugins/authlogic/lib/authlogic/test_case/rails_request_adapter.rb +30 -0
  497. data/vendor/plugins/authlogic/rails/init.rb +1 -0
  498. data/vendor/plugins/authlogic/shoulda_macros/authlogic.rb +69 -0
  499. data/vendor/plugins/authlogic/test/acts_as_authentic_test/base_test.rb +18 -0
  500. data/vendor/plugins/authlogic/test/acts_as_authentic_test/email_test.rb +97 -0
  501. data/vendor/plugins/authlogic/test/acts_as_authentic_test/logged_in_status_test.rb +36 -0
  502. data/vendor/plugins/authlogic/test/acts_as_authentic_test/login_test.rb +109 -0
  503. data/vendor/plugins/authlogic/test/acts_as_authentic_test/magic_columns_test.rb +27 -0
  504. data/vendor/plugins/authlogic/test/acts_as_authentic_test/password_test.rb +236 -0
  505. data/vendor/plugins/authlogic/test/acts_as_authentic_test/perishable_token_test.rb +90 -0
  506. data/vendor/plugins/authlogic/test/acts_as_authentic_test/persistence_token_test.rb +55 -0
  507. data/vendor/plugins/authlogic/test/acts_as_authentic_test/restful_authentication_test.rb +40 -0
  508. data/vendor/plugins/authlogic/test/acts_as_authentic_test/session_maintenance_test.rb +84 -0
  509. data/vendor/plugins/authlogic/test/acts_as_authentic_test/single_access_test.rb +44 -0
  510. data/vendor/plugins/authlogic/test/authenticates_many_test.rb +16 -0
  511. data/vendor/plugins/authlogic/test/crypto_provider_test/aes256_test.rb +14 -0
  512. data/vendor/plugins/authlogic/test/crypto_provider_test/bcrypt_test.rb +14 -0
  513. data/vendor/plugins/authlogic/test/crypto_provider_test/sha1_test.rb +23 -0
  514. data/vendor/plugins/authlogic/test/crypto_provider_test/sha256_test.rb +14 -0
  515. data/vendor/plugins/authlogic/test/crypto_provider_test/sha512_test.rb +14 -0
  516. data/vendor/plugins/authlogic/test/fixtures/companies.yml +5 -0
  517. data/vendor/plugins/authlogic/test/fixtures/employees.yml +17 -0
  518. data/vendor/plugins/authlogic/test/fixtures/projects.yml +3 -0
  519. data/vendor/plugins/authlogic/test/fixtures/users.yml +24 -0
  520. data/vendor/plugins/authlogic/test/i18n_test.rb +33 -0
  521. data/vendor/plugins/authlogic/test/libs/affiliate.rb +7 -0
  522. data/vendor/plugins/authlogic/test/libs/company.rb +6 -0
  523. data/vendor/plugins/authlogic/test/libs/employee.rb +7 -0
  524. data/vendor/plugins/authlogic/test/libs/employee_session.rb +2 -0
  525. data/vendor/plugins/authlogic/test/libs/ldaper.rb +3 -0
  526. data/vendor/plugins/authlogic/test/libs/ordered_hash.rb +9 -0
  527. data/vendor/plugins/authlogic/test/libs/project.rb +3 -0
  528. data/vendor/plugins/authlogic/test/libs/user.rb +5 -0
  529. data/vendor/plugins/authlogic/test/libs/user_session.rb +2 -0
  530. data/vendor/plugins/authlogic/test/random_test.rb +49 -0
  531. data/vendor/plugins/authlogic/test/session_test/activation_test.rb +43 -0
  532. data/vendor/plugins/authlogic/test/session_test/active_record_trickery_test.rb +36 -0
  533. data/vendor/plugins/authlogic/test/session_test/brute_force_protection_test.rb +101 -0
  534. data/vendor/plugins/authlogic/test/session_test/callbacks_test.rb +6 -0
  535. data/vendor/plugins/authlogic/test/session_test/cookies_test.rb +107 -0
  536. data/vendor/plugins/authlogic/test/session_test/credentials_test.rb +0 -0
  537. data/vendor/plugins/authlogic/test/session_test/existence_test.rb +64 -0
  538. data/vendor/plugins/authlogic/test/session_test/http_auth_test.rb +28 -0
  539. data/vendor/plugins/authlogic/test/session_test/id_test.rb +17 -0
  540. data/vendor/plugins/authlogic/test/session_test/klass_test.rb +35 -0
  541. data/vendor/plugins/authlogic/test/session_test/magic_columns_test.rb +62 -0
  542. data/vendor/plugins/authlogic/test/session_test/magic_states_test.rb +60 -0
  543. data/vendor/plugins/authlogic/test/session_test/params_test.rb +53 -0
  544. data/vendor/plugins/authlogic/test/session_test/password_test.rb +106 -0
  545. data/vendor/plugins/authlogic/test/session_test/perishability_test.rb +15 -0
  546. data/vendor/plugins/authlogic/test/session_test/persistence_test.rb +21 -0
  547. data/vendor/plugins/authlogic/test/session_test/scopes_test.rb +60 -0
  548. data/vendor/plugins/authlogic/test/session_test/session_test.rb +59 -0
  549. data/vendor/plugins/authlogic/test/session_test/timeout_test.rb +52 -0
  550. data/vendor/plugins/authlogic/test/session_test/unauthorized_record_test.rb +13 -0
  551. data/vendor/plugins/authlogic/test/session_test/validation_test.rb +23 -0
  552. data/vendor/plugins/authlogic/test/test_helper.rb +182 -0
  553. data/vendor/plugins/grit/API.txt +101 -0
  554. data/vendor/plugins/grit/History.txt +62 -0
  555. data/vendor/plugins/grit/LICENSE +22 -0
  556. data/vendor/plugins/grit/PURE_TODO +35 -0
  557. data/vendor/plugins/grit/README.md +236 -0
  558. data/vendor/plugins/grit/Rakefile +82 -0
  559. data/vendor/plugins/grit/VERSION.yml +4 -0
  560. data/vendor/plugins/grit/benchmarks.rb +129 -0
  561. data/vendor/plugins/grit/benchmarks.txt +21 -0
  562. data/vendor/plugins/grit/doc/classes/Difference.html +119 -0
  563. data/vendor/plugins/grit/doc/classes/Grit.html +330 -0
  564. data/vendor/plugins/grit/doc/classes/Grit.src/M000219.html +18 -0
  565. data/vendor/plugins/grit/doc/classes/Grit.src/M000220.html +19 -0
  566. data/vendor/plugins/grit/doc/classes/Grit/Actor.html +218 -0
  567. data/vendor/plugins/grit/doc/classes/Grit/Actor.src/M000373.html +19 -0
  568. data/vendor/plugins/grit/doc/classes/Grit/Actor.src/M000374.html +24 -0
  569. data/vendor/plugins/grit/doc/classes/Grit/Actor.src/M000375.html +18 -0
  570. data/vendor/plugins/grit/doc/classes/Grit/Blame.html +206 -0
  571. data/vendor/plugins/grit/doc/classes/Grit/Blame.src/M000429.html +22 -0
  572. data/vendor/plugins/grit/doc/classes/Grit/Blame.src/M000430.html +19 -0
  573. data/vendor/plugins/grit/doc/classes/Grit/Blame.src/M000431.html +38 -0
  574. data/vendor/plugins/grit/doc/classes/Grit/Blame.src/M000432.html +18 -0
  575. data/vendor/plugins/grit/doc/classes/Grit/Blame/BlameLine.html +165 -0
  576. data/vendor/plugins/grit/doc/classes/Grit/Blame/BlameLine.src/M000433.html +21 -0
  577. data/vendor/plugins/grit/doc/classes/Grit/Blob.html +348 -0
  578. data/vendor/plugins/grit/doc/classes/Grit/Blob.src/M000515.html +18 -0
  579. data/vendor/plugins/grit/doc/classes/Grit/Blob.src/M000516.html +22 -0
  580. data/vendor/plugins/grit/doc/classes/Grit/Blob.src/M000517.html +18 -0
  581. data/vendor/plugins/grit/doc/classes/Grit/Blob.src/M000518.html +18 -0
  582. data/vendor/plugins/grit/doc/classes/Grit/Blob.src/M000519.html +19 -0
  583. data/vendor/plugins/grit/doc/classes/Grit/Blob.src/M000520.html +68 -0
  584. data/vendor/plugins/grit/doc/classes/Grit/Blob.src/M000521.html +18 -0
  585. data/vendor/plugins/grit/doc/classes/Grit/Blob.src/M000522.html +18 -0
  586. data/vendor/plugins/grit/doc/classes/Grit/Blob.src/M000523.html +18 -0
  587. data/vendor/plugins/grit/doc/classes/Grit/Commit.html +548 -0
  588. data/vendor/plugins/grit/doc/classes/Grit/Commit.src/M000385.html +27 -0
  589. data/vendor/plugins/grit/doc/classes/Grit/Commit.src/M000386.html +18 -0
  590. data/vendor/plugins/grit/doc/classes/Grit/Commit.src/M000387.html +18 -0
  591. data/vendor/plugins/grit/doc/classes/Grit/Commit.src/M000388.html +22 -0
  592. data/vendor/plugins/grit/doc/classes/Grit/Commit.src/M000389.html +18 -0
  593. data/vendor/plugins/grit/doc/classes/Grit/Commit.src/M000390.html +18 -0
  594. data/vendor/plugins/grit/doc/classes/Grit/Commit.src/M000391.html +31 -0
  595. data/vendor/plugins/grit/doc/classes/Grit/Commit.src/M000392.html +45 -0
  596. data/vendor/plugins/grit/doc/classes/Grit/Commit.src/M000393.html +26 -0
  597. data/vendor/plugins/grit/doc/classes/Grit/Commit.src/M000394.html +24 -0
  598. data/vendor/plugins/grit/doc/classes/Grit/Commit.src/M000395.html +22 -0
  599. data/vendor/plugins/grit/doc/classes/Grit/Commit.src/M000396.html +18 -0
  600. data/vendor/plugins/grit/doc/classes/Grit/Commit.src/M000397.html +18 -0
  601. data/vendor/plugins/grit/doc/classes/Grit/Commit.src/M000398.html +18 -0
  602. data/vendor/plugins/grit/doc/classes/Grit/Commit.src/M000399.html +18 -0
  603. data/vendor/plugins/grit/doc/classes/Grit/Commit.src/M000400.html +18 -0
  604. data/vendor/plugins/grit/doc/classes/Grit/Commit.src/M000401.html +18 -0
  605. data/vendor/plugins/grit/doc/classes/Grit/Commit.src/M000402.html +19 -0
  606. data/vendor/plugins/grit/doc/classes/Grit/Commit.src/M000403.html +18 -0
  607. data/vendor/plugins/grit/doc/classes/Grit/Commit.src/M000404.html +33 -0
  608. data/vendor/plugins/grit/doc/classes/Grit/CommitDb.html +215 -0
  609. data/vendor/plugins/grit/doc/classes/Grit/CommitDb.src/M000540.html +25 -0
  610. data/vendor/plugins/grit/doc/classes/Grit/CommitDb.src/M000541.html +17 -0
  611. data/vendor/plugins/grit/doc/classes/Grit/CommitDb.src/M000542.html +23 -0
  612. data/vendor/plugins/grit/doc/classes/Grit/CommitDb.src/M000543.html +26 -0
  613. data/vendor/plugins/grit/doc/classes/Grit/CommitStats.html +294 -0
  614. data/vendor/plugins/grit/doc/classes/Grit/CommitStats.src/M000528.html +23 -0
  615. data/vendor/plugins/grit/doc/classes/Grit/CommitStats.src/M000529.html +29 -0
  616. data/vendor/plugins/grit/doc/classes/Grit/CommitStats.src/M000530.html +48 -0
  617. data/vendor/plugins/grit/doc/classes/Grit/CommitStats.src/M000531.html +18 -0
  618. data/vendor/plugins/grit/doc/classes/Grit/CommitStats.src/M000532.html +20 -0
  619. data/vendor/plugins/grit/doc/classes/Grit/CommitStats.src/M000533.html +24 -0
  620. data/vendor/plugins/grit/doc/classes/Grit/Config.html +246 -0
  621. data/vendor/plugins/grit/doc/classes/Grit/Config.src/M000406.html +18 -0
  622. data/vendor/plugins/grit/doc/classes/Grit/Config.src/M000407.html +19 -0
  623. data/vendor/plugins/grit/doc/classes/Grit/Config.src/M000408.html +18 -0
  624. data/vendor/plugins/grit/doc/classes/Grit/Config.src/M000409.html +18 -0
  625. data/vendor/plugins/grit/doc/classes/Grit/Config.src/M000410.html +18 -0
  626. data/vendor/plugins/grit/doc/classes/Grit/Config.src/M000411.html +18 -0
  627. data/vendor/plugins/grit/doc/classes/Grit/Config.src/M000412.html +23 -0
  628. data/vendor/plugins/grit/doc/classes/Grit/Config.src/M000413.html +18 -0
  629. data/vendor/plugins/grit/doc/classes/Grit/Diff.html +205 -0
  630. data/vendor/plugins/grit/doc/classes/Grit/Diff.src/M000513.html +27 -0
  631. data/vendor/plugins/grit/doc/classes/Grit/Diff.src/M000514.html +60 -0
  632. data/vendor/plugins/grit/doc/classes/Grit/DiffStat.html +192 -0
  633. data/vendor/plugins/grit/doc/classes/Grit/DiffStat.src/M000414.html +18 -0
  634. data/vendor/plugins/grit/doc/classes/Grit/DiffStat.src/M000415.html +18 -0
  635. data/vendor/plugins/grit/doc/classes/Grit/DiffStat.src/M000416.html +18 -0
  636. data/vendor/plugins/grit/doc/classes/Grit/Git.html +700 -0
  637. data/vendor/plugins/grit/doc/classes/Grit/Git.src/M000484.html +18 -0
  638. data/vendor/plugins/grit/doc/classes/Grit/Git.src/M000485.html +18 -0
  639. data/vendor/plugins/grit/doc/classes/Grit/Git.src/M000486.html +18 -0
  640. data/vendor/plugins/grit/doc/classes/Grit/Git.src/M000487.html +21 -0
  641. data/vendor/plugins/grit/doc/classes/Grit/Git.src/M000488.html +20 -0
  642. data/vendor/plugins/grit/doc/classes/Grit/Git.src/M000489.html +18 -0
  643. data/vendor/plugins/grit/doc/classes/Grit/Git.src/M000491.html +18 -0
  644. data/vendor/plugins/grit/doc/classes/Grit/Git.src/M000492.html +18 -0
  645. data/vendor/plugins/grit/doc/classes/Grit/Git.src/M000493.html +22 -0
  646. data/vendor/plugins/grit/doc/classes/Grit/Git.src/M000494.html +18 -0
  647. data/vendor/plugins/grit/doc/classes/Grit/Git.src/M000495.html +18 -0
  648. data/vendor/plugins/grit/doc/classes/Grit/Git.src/M000496.html +18 -0
  649. data/vendor/plugins/grit/doc/classes/Grit/Git.src/M000497.html +18 -0
  650. data/vendor/plugins/grit/doc/classes/Grit/Git.src/M000498.html +24 -0
  651. data/vendor/plugins/grit/doc/classes/Grit/Git.src/M000499.html +20 -0
  652. data/vendor/plugins/grit/doc/classes/Grit/Git.src/M000500.html +27 -0
  653. data/vendor/plugins/grit/doc/classes/Grit/Git.src/M000501.html +21 -0
  654. data/vendor/plugins/grit/doc/classes/Grit/Git.src/M000502.html +20 -0
  655. data/vendor/plugins/grit/doc/classes/Grit/Git.src/M000503.html +28 -0
  656. data/vendor/plugins/grit/doc/classes/Grit/Git.src/M000504.html +26 -0
  657. data/vendor/plugins/grit/doc/classes/Grit/Git.src/M000505.html +22 -0
  658. data/vendor/plugins/grit/doc/classes/Grit/Git.src/M000506.html +18 -0
  659. data/vendor/plugins/grit/doc/classes/Grit/Git.src/M000507.html +18 -0
  660. data/vendor/plugins/grit/doc/classes/Grit/Git.src/M000508.html +35 -0
  661. data/vendor/plugins/grit/doc/classes/Grit/Git.src/M000509.html +39 -0
  662. data/vendor/plugins/grit/doc/classes/Grit/Git.src/M000510.html +28 -0
  663. data/vendor/plugins/grit/doc/classes/Grit/Git.src/M000511.html +40 -0
  664. data/vendor/plugins/grit/doc/classes/Grit/Git/GitTimeout.html +155 -0
  665. data/vendor/plugins/grit/doc/classes/Grit/Git/GitTimeout.src/M000512.html +19 -0
  666. data/vendor/plugins/grit/doc/classes/Grit/GitRuby.html +426 -0
  667. data/vendor/plugins/grit/doc/classes/Grit/GitRuby.src/M000221.html +28 -0
  668. data/vendor/plugins/grit/doc/classes/Grit/GitRuby.src/M000222.html +28 -0
  669. data/vendor/plugins/grit/doc/classes/Grit/GitRuby.src/M000223.html +22 -0
  670. data/vendor/plugins/grit/doc/classes/Grit/GitRuby.src/M000224.html +26 -0
  671. data/vendor/plugins/grit/doc/classes/Grit/GitRuby.src/M000225.html +21 -0
  672. data/vendor/plugins/grit/doc/classes/Grit/GitRuby.src/M000226.html +18 -0
  673. data/vendor/plugins/grit/doc/classes/Grit/GitRuby.src/M000227.html +36 -0
  674. data/vendor/plugins/grit/doc/classes/Grit/GitRuby.src/M000228.html +52 -0
  675. data/vendor/plugins/grit/doc/classes/Grit/GitRuby.src/M000229.html +46 -0
  676. data/vendor/plugins/grit/doc/classes/Grit/GitRuby.src/M000230.html +63 -0
  677. data/vendor/plugins/grit/doc/classes/Grit/GitRuby.src/M000231.html +18 -0
  678. data/vendor/plugins/grit/doc/classes/Grit/GitRuby.src/M000232.html +18 -0
  679. data/vendor/plugins/grit/doc/classes/Grit/GitRuby.src/M000233.html +25 -0
  680. data/vendor/plugins/grit/doc/classes/Grit/GitRuby.src/M000234.html +18 -0
  681. data/vendor/plugins/grit/doc/classes/Grit/GitRuby.src/M000235.html +18 -0
  682. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Blob.html +268 -0
  683. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Blob.src/M000334.html +18 -0
  684. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Blob.src/M000335.html +19 -0
  685. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Blob.src/M000336.html +18 -0
  686. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Blob.src/M000337.html +18 -0
  687. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Blob.src/M000338.html +18 -0
  688. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Blob.src/M000339.html +19 -0
  689. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Blob.src/M000340.html +18 -0
  690. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Blob.src/M000341.html +18 -0
  691. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Commit.html +348 -0
  692. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Commit.src/M000306.html +41 -0
  693. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Commit.src/M000307.html +24 -0
  694. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Commit.src/M000308.html +18 -0
  695. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Commit.src/M000309.html +21 -0
  696. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Commit.src/M000310.html +20 -0
  697. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Commit.src/M000311.html +41 -0
  698. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Commit.src/M000312.html +24 -0
  699. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Commit.src/M000313.html +18 -0
  700. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Commit.src/M000314.html +21 -0
  701. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Commit.src/M000315.html +20 -0
  702. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/DirectoryEntry.html +401 -0
  703. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/DirectoryEntry.src/M000346.html +26 -0
  704. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/DirectoryEntry.src/M000347.html +29 -0
  705. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/DirectoryEntry.src/M000348.html +29 -0
  706. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/DirectoryEntry.src/M000349.html +27 -0
  707. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/DirectoryEntry.src/M000350.html +18 -0
  708. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/DirectoryEntry.src/M000351.html +18 -0
  709. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/DirectoryEntry.src/M000352.html +26 -0
  710. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/DirectoryEntry.src/M000353.html +27 -0
  711. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/DirectoryEntry.src/M000354.html +27 -0
  712. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/DirectoryEntry.src/M000355.html +25 -0
  713. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/DirectoryEntry.src/M000356.html +18 -0
  714. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/DirectoryEntry.src/M000357.html +18 -0
  715. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/FileIndex.html +297 -0
  716. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/FileIndex.src/M000298.html +23 -0
  717. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/FileIndex.src/M000299.html +18 -0
  718. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/FileIndex.src/M000300.html +18 -0
  719. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/FileIndex.src/M000301.html +36 -0
  720. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/FileIndex.src/M000302.html +18 -0
  721. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/FileIndex.src/M000303.html +18 -0
  722. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/FileIndex.src/M000304.html +18 -0
  723. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/FileIndex.src/M000305.html +39 -0
  724. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/FileIndex/IndexFileNotFound.html +111 -0
  725. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/FileIndex/UnsupportedRef.html +111 -0
  726. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/GitObject.html +220 -0
  727. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/GitObject.src/M000358.html +29 -0
  728. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/GitObject.src/M000359.html +18 -0
  729. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/GitObject.src/M000360.html +18 -0
  730. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/GitObject.src/M000361.html +18 -0
  731. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/GitObject.src/M000362.html +20 -0
  732. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal.html +166 -0
  733. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal/FileWindow.html +169 -0
  734. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal/FileWindow.src/M000236.html +24 -0
  735. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal/FileWindow.src/M000237.html +18 -0
  736. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal/FileWindow.src/M000238.html +39 -0
  737. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal/LooseObjectError.html +111 -0
  738. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal/LooseStorage.html +222 -0
  739. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal/LooseStorage.src/M000254.html +18 -0
  740. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal/LooseStorage.src/M000255.html +25 -0
  741. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal/LooseStorage.src/M000256.html +39 -0
  742. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal/LooseStorage.src/M000257.html +35 -0
  743. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal/LooseStorage.src/M000258.html +23 -0
  744. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal/LooseStorage.src/M000259.html +20 -0
  745. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal/PackFormatError.html +111 -0
  746. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal/PackStorage.html +387 -0
  747. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal/PackStorage.src/M000239.html +23 -0
  748. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal/PackStorage.src/M000240.html +41 -0
  749. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal/PackStorage.src/M000241.html +20 -0
  750. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal/PackStorage.src/M000242.html +26 -0
  751. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal/PackStorage.src/M000243.html +18 -0
  752. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal/PackStorage.src/M000244.html +18 -0
  753. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal/PackStorage.src/M000245.html +20 -0
  754. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal/PackStorage.src/M000246.html +25 -0
  755. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal/PackStorage.src/M000247.html +28 -0
  756. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal/PackStorage.src/M000248.html +33 -0
  757. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal/PackStorage.src/M000249.html +32 -0
  758. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal/PackStorage.src/M000250.html +51 -0
  759. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal/PackStorage.src/M000251.html +23 -0
  760. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal/RawObject.html +172 -0
  761. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal/RawObject.src/M000252.html +19 -0
  762. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Internal/RawObject.src/M000253.html +18 -0
  763. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Object.html +220 -0
  764. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Object.src/M000260.html +29 -0
  765. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Object.src/M000261.html +18 -0
  766. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Object.src/M000262.html +18 -0
  767. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Object.src/M000263.html +18 -0
  768. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Object.src/M000264.html +20 -0
  769. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.html +750 -0
  770. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000265.html +20 -0
  771. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000266.html +18 -0
  772. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000267.html +18 -0
  773. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000268.html +29 -0
  774. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000269.html +41 -0
  775. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000270.html +18 -0
  776. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000271.html +20 -0
  777. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000272.html +18 -0
  778. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000273.html +23 -0
  779. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000274.html +22 -0
  780. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000275.html +21 -0
  781. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000276.html +18 -0
  782. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000277.html +18 -0
  783. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000278.html +18 -0
  784. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000279.html +22 -0
  785. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000280.html +27 -0
  786. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000281.html +26 -0
  787. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000282.html +64 -0
  788. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000283.html +19 -0
  789. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000284.html +25 -0
  790. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000285.html +40 -0
  791. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000286.html +81 -0
  792. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000287.html +89 -0
  793. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000288.html +70 -0
  794. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000289.html +28 -0
  795. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000290.html +32 -0
  796. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000291.html +36 -0
  797. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000292.html +60 -0
  798. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000293.html +48 -0
  799. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000294.html +20 -0
  800. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000295.html +20 -0
  801. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000296.html +20 -0
  802. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository.src/M000297.html +18 -0
  803. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository/NoSuchPath.html +111 -0
  804. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Repository/NoSuchShaFound.html +111 -0
  805. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Tag.html +308 -0
  806. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Tag.src/M000316.html +49 -0
  807. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Tag.src/M000317.html +23 -0
  808. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Tag.src/M000318.html +19 -0
  809. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Tag.src/M000319.html +18 -0
  810. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Tag.src/M000320.html +41 -0
  811. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Tag.src/M000321.html +22 -0
  812. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Tag.src/M000322.html +19 -0
  813. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Tag.src/M000323.html +18 -0
  814. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Tree.html +298 -0
  815. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Tree.src/M000324.html +29 -0
  816. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Tree.src/M000325.html +19 -0
  817. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Tree.src/M000326.html +18 -0
  818. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Tree.src/M000327.html +20 -0
  819. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Tree.src/M000328.html +18 -0
  820. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Tree.src/M000329.html +29 -0
  821. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Tree.src/M000330.html +19 -0
  822. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Tree.src/M000331.html +18 -0
  823. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Tree.src/M000332.html +20 -0
  824. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/Tree.src/M000333.html +18 -0
  825. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/UserInfo.html +244 -0
  826. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/UserInfo.src/M000342.html +35 -0
  827. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/UserInfo.src/M000343.html +18 -0
  828. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/UserInfo.src/M000344.html +25 -0
  829. data/vendor/plugins/grit/doc/classes/Grit/GitRuby/UserInfo.src/M000345.html +18 -0
  830. data/vendor/plugins/grit/doc/classes/Grit/Head.html +164 -0
  831. data/vendor/plugins/grit/doc/classes/Grit/Head.src/M000376.html +21 -0
  832. data/vendor/plugins/grit/doc/classes/Grit/Index.html +288 -0
  833. data/vendor/plugins/grit/doc/classes/Grit/Index.src/M000534.html +20 -0
  834. data/vendor/plugins/grit/doc/classes/Grit/Index.src/M000535.html +29 -0
  835. data/vendor/plugins/grit/doc/classes/Grit/Index.src/M000536.html +18 -0
  836. data/vendor/plugins/grit/doc/classes/Grit/Index.src/M000537.html +44 -0
  837. data/vendor/plugins/grit/doc/classes/Grit/Index.src/M000538.html +45 -0
  838. data/vendor/plugins/grit/doc/classes/Grit/Index.src/M000539.html +18 -0
  839. data/vendor/plugins/grit/doc/classes/Grit/InvalidGitRepositoryError.html +111 -0
  840. data/vendor/plugins/grit/doc/classes/Grit/Merge.html +203 -0
  841. data/vendor/plugins/grit/doc/classes/Grit/Merge.src/M000377.html +42 -0
  842. data/vendor/plugins/grit/doc/classes/Grit/Merge.src/M000378.html +18 -0
  843. data/vendor/plugins/grit/doc/classes/Grit/NoSuchPathError.html +111 -0
  844. data/vendor/plugins/grit/doc/classes/Grit/Ref.html +228 -0
  845. data/vendor/plugins/grit/doc/classes/Grit/Ref.src/M000524.html +23 -0
  846. data/vendor/plugins/grit/doc/classes/Grit/Ref.src/M000525.html +18 -0
  847. data/vendor/plugins/grit/doc/classes/Grit/Ref.src/M000526.html +19 -0
  848. data/vendor/plugins/grit/doc/classes/Grit/Ref.src/M000527.html +18 -0
  849. data/vendor/plugins/grit/doc/classes/Grit/Remote.html +113 -0
  850. data/vendor/plugins/grit/doc/classes/Grit/Repo.html +1267 -0
  851. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000434.html +33 -0
  852. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000435.html +21 -0
  853. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000436.html +18 -0
  854. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000437.html +18 -0
  855. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000438.html +18 -0
  856. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000440.html +18 -0
  857. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000441.html +18 -0
  858. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000442.html +18 -0
  859. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000443.html +18 -0
  860. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000444.html +18 -0
  861. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000445.html +18 -0
  862. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000446.html +18 -0
  863. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000447.html +24 -0
  864. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000448.html +18 -0
  865. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000449.html +18 -0
  866. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000450.html +18 -0
  867. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000451.html +18 -0
  868. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000452.html +18 -0
  869. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000453.html +18 -0
  870. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000454.html +21 -0
  871. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000455.html +18 -0
  872. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000456.html +21 -0
  873. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000457.html +21 -0
  874. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000458.html +18 -0
  875. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000459.html +20 -0
  876. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000460.html +18 -0
  877. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000461.html +20 -0
  878. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000462.html +25 -0
  879. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000463.html +18 -0
  880. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000464.html +18 -0
  881. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000465.html +22 -0
  882. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000466.html +18 -0
  883. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000467.html +18 -0
  884. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000468.html +22 -0
  885. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000469.html +22 -0
  886. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000470.html +22 -0
  887. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000471.html +20 -0
  888. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000472.html +20 -0
  889. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000473.html +21 -0
  890. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000474.html +18 -0
  891. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000475.html +18 -0
  892. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000476.html +18 -0
  893. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000477.html +23 -0
  894. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000478.html +28 -0
  895. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000479.html +18 -0
  896. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000480.html +18 -0
  897. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000481.html +20 -0
  898. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000482.html +22 -0
  899. data/vendor/plugins/grit/doc/classes/Grit/Repo.src/M000483.html +18 -0
  900. data/vendor/plugins/grit/doc/classes/Grit/Status.html +260 -0
  901. data/vendor/plugins/grit/doc/classes/Grit/Status.src/M000363.html +19 -0
  902. data/vendor/plugins/grit/doc/classes/Grit/Status.src/M000364.html +18 -0
  903. data/vendor/plugins/grit/doc/classes/Grit/Status.src/M000365.html +18 -0
  904. data/vendor/plugins/grit/doc/classes/Grit/Status.src/M000366.html +18 -0
  905. data/vendor/plugins/grit/doc/classes/Grit/Status.src/M000367.html +18 -0
  906. data/vendor/plugins/grit/doc/classes/Grit/Status.src/M000368.html +29 -0
  907. data/vendor/plugins/grit/doc/classes/Grit/Status.src/M000369.html +18 -0
  908. data/vendor/plugins/grit/doc/classes/Grit/Status.src/M000370.html +20 -0
  909. data/vendor/plugins/grit/doc/classes/Grit/Status/StatusFile.html +202 -0
  910. data/vendor/plugins/grit/doc/classes/Grit/Status/StatusFile.src/M000371.html +26 -0
  911. data/vendor/plugins/grit/doc/classes/Grit/Status/StatusFile.src/M000372.html +22 -0
  912. data/vendor/plugins/grit/doc/classes/Grit/Submodule.html +285 -0
  913. data/vendor/plugins/grit/doc/classes/Grit/Submodule.src/M000379.html +18 -0
  914. data/vendor/plugins/grit/doc/classes/Grit/Submodule.src/M000380.html +22 -0
  915. data/vendor/plugins/grit/doc/classes/Grit/Submodule.src/M000381.html +26 -0
  916. data/vendor/plugins/grit/doc/classes/Grit/Submodule.src/M000382.html +40 -0
  917. data/vendor/plugins/grit/doc/classes/Grit/Submodule.src/M000383.html +18 -0
  918. data/vendor/plugins/grit/doc/classes/Grit/Submodule.src/M000384.html +18 -0
  919. data/vendor/plugins/grit/doc/classes/Grit/Tag.html +139 -0
  920. data/vendor/plugins/grit/doc/classes/Grit/Tag.src/M000405.html +25 -0
  921. data/vendor/plugins/grit/doc/classes/Grit/Tree.html +399 -0
  922. data/vendor/plugins/grit/doc/classes/Grit/Tree.src/M000417.html +19 -0
  923. data/vendor/plugins/grit/doc/classes/Grit/Tree.src/M000418.html +27 -0
  924. data/vendor/plugins/grit/doc/classes/Grit/Tree.src/M000419.html +18 -0
  925. data/vendor/plugins/grit/doc/classes/Grit/Tree.src/M000420.html +18 -0
  926. data/vendor/plugins/grit/doc/classes/Grit/Tree.src/M000421.html +23 -0
  927. data/vendor/plugins/grit/doc/classes/Grit/Tree.src/M000422.html +30 -0
  928. data/vendor/plugins/grit/doc/classes/Grit/Tree.src/M000423.html +22 -0
  929. data/vendor/plugins/grit/doc/classes/Grit/Tree.src/M000424.html +18 -0
  930. data/vendor/plugins/grit/doc/classes/Grit/Tree.src/M000425.html +18 -0
  931. data/vendor/plugins/grit/doc/classes/Grit/Tree.src/M000426.html +18 -0
  932. data/vendor/plugins/grit/doc/classes/Grit/Tree.src/M000427.html +18 -0
  933. data/vendor/plugins/grit/doc/classes/Grit/Tree.src/M000428.html +18 -0
  934. data/vendor/plugins/grit/doc/classes/Lazy.html +159 -0
  935. data/vendor/plugins/grit/doc/classes/Lazy.src/M000545.html +27 -0
  936. data/vendor/plugins/grit/doc/classes/Open3.html +131 -0
  937. data/vendor/plugins/grit/doc/classes/Open3.src/M000544.html +57 -0
  938. data/vendor/plugins/grit/doc/classes/String.html +150 -0
  939. data/vendor/plugins/grit/doc/classes/String.src/M000218.html +16 -0
  940. data/vendor/plugins/grit/doc/classes/TestActor.html +206 -0
  941. data/vendor/plugins/grit/doc/classes/TestActor.src/M000078.html +18 -0
  942. data/vendor/plugins/grit/doc/classes/TestActor.src/M000079.html +20 -0
  943. data/vendor/plugins/grit/doc/classes/TestActor.src/M000080.html +20 -0
  944. data/vendor/plugins/grit/doc/classes/TestActor.src/M000081.html +19 -0
  945. data/vendor/plugins/grit/doc/classes/TestActor.src/M000082.html +19 -0
  946. data/vendor/plugins/grit/doc/classes/TestBlame.html +167 -0
  947. data/vendor/plugins/grit/doc/classes/TestBlame.src/M000122.html +18 -0
  948. data/vendor/plugins/grit/doc/classes/TestBlame.src/M000123.html +25 -0
  949. data/vendor/plugins/grit/doc/classes/TestBlame.src/M000124.html +25 -0
  950. data/vendor/plugins/grit/doc/classes/TestBlameTree.html +182 -0
  951. data/vendor/plugins/grit/doc/classes/TestBlameTree.src/M000212.html +18 -0
  952. data/vendor/plugins/grit/doc/classes/TestBlameTree.src/M000213.html +21 -0
  953. data/vendor/plugins/grit/doc/classes/TestBlameTree.src/M000214.html +23 -0
  954. data/vendor/plugins/grit/doc/classes/TestBlameTree.src/M000215.html +21 -0
  955. data/vendor/plugins/grit/doc/classes/TestBlob.html +287 -0
  956. data/vendor/plugins/grit/doc/classes/TestBlob.src/M000179.html +19 -0
  957. data/vendor/plugins/grit/doc/classes/TestBlob.src/M000180.html +19 -0
  958. data/vendor/plugins/grit/doc/classes/TestBlob.src/M000181.html +20 -0
  959. data/vendor/plugins/grit/doc/classes/TestBlob.src/M000182.html +21 -0
  960. data/vendor/plugins/grit/doc/classes/TestBlob.src/M000183.html +20 -0
  961. data/vendor/plugins/grit/doc/classes/TestBlob.src/M000184.html +19 -0
  962. data/vendor/plugins/grit/doc/classes/TestBlob.src/M000185.html +19 -0
  963. data/vendor/plugins/grit/doc/classes/TestBlob.src/M000186.html +34 -0
  964. data/vendor/plugins/grit/doc/classes/TestBlob.src/M000187.html +19 -0
  965. data/vendor/plugins/grit/doc/classes/TestBlob.src/M000188.html +19 -0
  966. data/vendor/plugins/grit/doc/classes/TestCommit.html +389 -0
  967. data/vendor/plugins/grit/doc/classes/TestCommit.src/M000196.html +18 -0
  968. data/vendor/plugins/grit/doc/classes/TestCommit.src/M000197.html +23 -0
  969. data/vendor/plugins/grit/doc/classes/TestCommit.src/M000198.html +18 -0
  970. data/vendor/plugins/grit/doc/classes/TestCommit.src/M000199.html +18 -0
  971. data/vendor/plugins/grit/doc/classes/TestCommit.src/M000200.html +37 -0
  972. data/vendor/plugins/grit/doc/classes/TestCommit.src/M000201.html +23 -0
  973. data/vendor/plugins/grit/doc/classes/TestCommit.src/M000202.html +23 -0
  974. data/vendor/plugins/grit/doc/classes/TestCommit.src/M000203.html +23 -0
  975. data/vendor/plugins/grit/doc/classes/TestCommit.src/M000204.html +38 -0
  976. data/vendor/plugins/grit/doc/classes/TestCommit.src/M000205.html +39 -0
  977. data/vendor/plugins/grit/doc/classes/TestCommit.src/M000206.html +26 -0
  978. data/vendor/plugins/grit/doc/classes/TestCommit.src/M000207.html +24 -0
  979. data/vendor/plugins/grit/doc/classes/TestCommit.src/M000208.html +19 -0
  980. data/vendor/plugins/grit/doc/classes/TestCommit.src/M000209.html +29 -0
  981. data/vendor/plugins/grit/doc/classes/TestCommit.src/M000210.html +19 -0
  982. data/vendor/plugins/grit/doc/classes/TestCommit.src/M000211.html +34 -0
  983. data/vendor/plugins/grit/doc/classes/TestCommitStats.html +170 -0
  984. data/vendor/plugins/grit/doc/classes/TestCommitStats.src/M000053.html +22 -0
  985. data/vendor/plugins/grit/doc/classes/TestCommitStats.src/M000054.html +18 -0
  986. data/vendor/plugins/grit/doc/classes/TestCommitStats.src/M000055.html +28 -0
  987. data/vendor/plugins/grit/doc/classes/TestCommitWrite.html +167 -0
  988. data/vendor/plugins/grit/doc/classes/TestCommitWrite.src/M000050.html +18 -0
  989. data/vendor/plugins/grit/doc/classes/TestCommitWrite.src/M000051.html +20 -0
  990. data/vendor/plugins/grit/doc/classes/TestCommitWrite.src/M000052.html +20 -0
  991. data/vendor/plugins/grit/doc/classes/TestConfig.html +230 -0
  992. data/vendor/plugins/grit/doc/classes/TestConfig.src/M000189.html +18 -0
  993. data/vendor/plugins/grit/doc/classes/TestConfig.src/M000190.html +22 -0
  994. data/vendor/plugins/grit/doc/classes/TestConfig.src/M000191.html +22 -0
  995. data/vendor/plugins/grit/doc/classes/TestConfig.src/M000192.html +22 -0
  996. data/vendor/plugins/grit/doc/classes/TestConfig.src/M000193.html +22 -0
  997. data/vendor/plugins/grit/doc/classes/TestConfig.src/M000194.html +24 -0
  998. data/vendor/plugins/grit/doc/classes/TestConfig.src/M000195.html +21 -0
  999. data/vendor/plugins/grit/doc/classes/TestDiff.html +155 -0
  1000. data/vendor/plugins/grit/doc/classes/TestDiff.src/M000056.html +18 -0
  1001. data/vendor/plugins/grit/doc/classes/TestDiff.src/M000057.html +23 -0
  1002. data/vendor/plugins/grit/doc/classes/TestFileIndex.html +276 -0
  1003. data/vendor/plugins/grit/doc/classes/TestFileIndex.src/M000169.html +19 -0
  1004. data/vendor/plugins/grit/doc/classes/TestFileIndex.src/M000170.html +19 -0
  1005. data/vendor/plugins/grit/doc/classes/TestFileIndex.src/M000171.html +19 -0
  1006. data/vendor/plugins/grit/doc/classes/TestFileIndex.src/M000172.html +21 -0
  1007. data/vendor/plugins/grit/doc/classes/TestFileIndex.src/M000173.html +21 -0
  1008. data/vendor/plugins/grit/doc/classes/TestFileIndex.src/M000174.html +22 -0
  1009. data/vendor/plugins/grit/doc/classes/TestFileIndex.src/M000175.html +22 -0
  1010. data/vendor/plugins/grit/doc/classes/TestFileIndex.src/M000176.html +20 -0
  1011. data/vendor/plugins/grit/doc/classes/TestFileIndex.src/M000177.html +19 -0
  1012. data/vendor/plugins/grit/doc/classes/TestFileIndex.src/M000178.html +19 -0
  1013. data/vendor/plugins/grit/doc/classes/TestGit.html +362 -0
  1014. data/vendor/plugins/grit/doc/classes/TestGit.src/M000034.html +18 -0
  1015. data/vendor/plugins/grit/doc/classes/TestGit.src/M000035.html +18 -0
  1016. data/vendor/plugins/grit/doc/classes/TestGit.src/M000036.html +18 -0
  1017. data/vendor/plugins/grit/doc/classes/TestGit.src/M000037.html +21 -0
  1018. data/vendor/plugins/grit/doc/classes/TestGit.src/M000038.html +21 -0
  1019. data/vendor/plugins/grit/doc/classes/TestGit.src/M000039.html +25 -0
  1020. data/vendor/plugins/grit/doc/classes/TestGit.src/M000040.html +19 -0
  1021. data/vendor/plugins/grit/doc/classes/TestGit.src/M000041.html +19 -0
  1022. data/vendor/plugins/grit/doc/classes/TestGit.src/M000042.html +21 -0
  1023. data/vendor/plugins/grit/doc/classes/TestGit.src/M000043.html +22 -0
  1024. data/vendor/plugins/grit/doc/classes/TestGit.src/M000044.html +21 -0
  1025. data/vendor/plugins/grit/doc/classes/TestGit.src/M000045.html +22 -0
  1026. data/vendor/plugins/grit/doc/classes/TestGit.src/M000046.html +19 -0
  1027. data/vendor/plugins/grit/doc/classes/TestGit.src/M000047.html +21 -0
  1028. data/vendor/plugins/grit/doc/classes/TestGit.src/M000048.html +22 -0
  1029. data/vendor/plugins/grit/doc/classes/TestGit.src/M000049.html +19 -0
  1030. data/vendor/plugins/grit/doc/classes/TestGrit.html +197 -0
  1031. data/vendor/plugins/grit/doc/classes/TestGrit.src/M000026.html +20 -0
  1032. data/vendor/plugins/grit/doc/classes/TestGrit.src/M000027.html +19 -0
  1033. data/vendor/plugins/grit/doc/classes/TestGrit.src/M000028.html +18 -0
  1034. data/vendor/plugins/grit/doc/classes/TestGrit.src/M000029.html +20 -0
  1035. data/vendor/plugins/grit/doc/classes/TestGrit.src/M000030.html +21 -0
  1036. data/vendor/plugins/grit/doc/classes/TestHead.html +248 -0
  1037. data/vendor/plugins/grit/doc/classes/TestHead.src/M000114.html +18 -0
  1038. data/vendor/plugins/grit/doc/classes/TestHead.src/M000115.html +19 -0
  1039. data/vendor/plugins/grit/doc/classes/TestHead.src/M000116.html +19 -0
  1040. data/vendor/plugins/grit/doc/classes/TestHead.src/M000117.html +19 -0
  1041. data/vendor/plugins/grit/doc/classes/TestHead.src/M000118.html +19 -0
  1042. data/vendor/plugins/grit/doc/classes/TestHead.src/M000119.html +20 -0
  1043. data/vendor/plugins/grit/doc/classes/TestHead.src/M000120.html +18 -0
  1044. data/vendor/plugins/grit/doc/classes/TestHead.src/M000121.html +18 -0
  1045. data/vendor/plugins/grit/doc/classes/TestIndexStatus.html +212 -0
  1046. data/vendor/plugins/grit/doc/classes/TestIndexStatus.src/M000012.html +18 -0
  1047. data/vendor/plugins/grit/doc/classes/TestIndexStatus.src/M000013.html +19 -0
  1048. data/vendor/plugins/grit/doc/classes/TestIndexStatus.src/M000014.html +19 -0
  1049. data/vendor/plugins/grit/doc/classes/TestIndexStatus.src/M000015.html +19 -0
  1050. data/vendor/plugins/grit/doc/classes/TestIndexStatus.src/M000016.html +19 -0
  1051. data/vendor/plugins/grit/doc/classes/TestIndexStatus.src/M000017.html +25 -0
  1052. data/vendor/plugins/grit/doc/classes/TestMerge.html +152 -0
  1053. data/vendor/plugins/grit/doc/classes/TestMerge.src/M000216.html +19 -0
  1054. data/vendor/plugins/grit/doc/classes/TestMerge.src/M000217.html +20 -0
  1055. data/vendor/plugins/grit/doc/classes/TestRemote.html +155 -0
  1056. data/vendor/plugins/grit/doc/classes/TestRemote.src/M000058.html +18 -0
  1057. data/vendor/plugins/grit/doc/classes/TestRemote.src/M000059.html +19 -0
  1058. data/vendor/plugins/grit/doc/classes/TestRepo.html +746 -0
  1059. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000132.html +18 -0
  1060. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000133.html +22 -0
  1061. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000134.html +38 -0
  1062. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000135.html +20 -0
  1063. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000136.html +20 -0
  1064. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000137.html +18 -0
  1065. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000138.html +20 -0
  1066. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000139.html +22 -0
  1067. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000140.html +20 -0
  1068. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000141.html +22 -0
  1069. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000142.html +18 -0
  1070. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000143.html +40 -0
  1071. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000144.html +20 -0
  1072. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000145.html +20 -0
  1073. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000146.html +22 -0
  1074. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000147.html +20 -0
  1075. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000148.html +20 -0
  1076. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000149.html +21 -0
  1077. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000150.html +24 -0
  1078. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000151.html +24 -0
  1079. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000152.html +25 -0
  1080. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000153.html +21 -0
  1081. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000154.html +18 -0
  1082. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000155.html +18 -0
  1083. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000156.html +21 -0
  1084. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000157.html +19 -0
  1085. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000158.html +19 -0
  1086. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000159.html +21 -0
  1087. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000160.html +20 -0
  1088. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000161.html +28 -0
  1089. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000162.html +28 -0
  1090. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000163.html +19 -0
  1091. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000164.html +18 -0
  1092. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000165.html +21 -0
  1093. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000166.html +19 -0
  1094. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000167.html +23 -0
  1095. data/vendor/plugins/grit/doc/classes/TestRepo.src/M000168.html +29 -0
  1096. data/vendor/plugins/grit/doc/classes/TestRubyGit.html +527 -0
  1097. data/vendor/plugins/grit/doc/classes/TestRubyGit.src/M000083.html +21 -0
  1098. data/vendor/plugins/grit/doc/classes/TestRubyGit.src/M000084.html +24 -0
  1099. data/vendor/plugins/grit/doc/classes/TestRubyGit.src/M000085.html +22 -0
  1100. data/vendor/plugins/grit/doc/classes/TestRubyGit.src/M000086.html +19 -0
  1101. data/vendor/plugins/grit/doc/classes/TestRubyGit.src/M000087.html +21 -0
  1102. data/vendor/plugins/grit/doc/classes/TestRubyGit.src/M000088.html +20 -0
  1103. data/vendor/plugins/grit/doc/classes/TestRubyGit.src/M000089.html +21 -0
  1104. data/vendor/plugins/grit/doc/classes/TestRubyGit.src/M000090.html +23 -0
  1105. data/vendor/plugins/grit/doc/classes/TestRubyGit.src/M000091.html +23 -0
  1106. data/vendor/plugins/grit/doc/classes/TestRubyGit.src/M000092.html +19 -0
  1107. data/vendor/plugins/grit/doc/classes/TestRubyGit.src/M000093.html +19 -0
  1108. data/vendor/plugins/grit/doc/classes/TestRubyGit.src/M000094.html +19 -0
  1109. data/vendor/plugins/grit/doc/classes/TestRubyGit.src/M000095.html +19 -0
  1110. data/vendor/plugins/grit/doc/classes/TestRubyGit.src/M000096.html +19 -0
  1111. data/vendor/plugins/grit/doc/classes/TestRubyGit.src/M000097.html +19 -0
  1112. data/vendor/plugins/grit/doc/classes/TestRubyGit.src/M000098.html +19 -0
  1113. data/vendor/plugins/grit/doc/classes/TestRubyGit.src/M000099.html +20 -0
  1114. data/vendor/plugins/grit/doc/classes/TestRubyGit.src/M000100.html +20 -0
  1115. data/vendor/plugins/grit/doc/classes/TestRubyGit.src/M000101.html +19 -0
  1116. data/vendor/plugins/grit/doc/classes/TestRubyGit.src/M000102.html +19 -0
  1117. data/vendor/plugins/grit/doc/classes/TestRubyGit.src/M000103.html +20 -0
  1118. data/vendor/plugins/grit/doc/classes/TestRubyGit.src/M000104.html +19 -0
  1119. data/vendor/plugins/grit/doc/classes/TestRubyGit.src/M000105.html +20 -0
  1120. data/vendor/plugins/grit/doc/classes/TestRubyGit.src/M000106.html +20 -0
  1121. data/vendor/plugins/grit/doc/classes/TestRubyGit.src/M000107.html +20 -0
  1122. data/vendor/plugins/grit/doc/classes/TestRubyGit.src/M000108.html +20 -0
  1123. data/vendor/plugins/grit/doc/classes/TestRubyGit.src/M000109.html +23 -0
  1124. data/vendor/plugins/grit/doc/classes/TestRubyGitAlt.html +182 -0
  1125. data/vendor/plugins/grit/doc/classes/TestRubyGitAlt.src/M000110.html +23 -0
  1126. data/vendor/plugins/grit/doc/classes/TestRubyGitAlt.src/M000111.html +24 -0
  1127. data/vendor/plugins/grit/doc/classes/TestRubyGitAlt.src/M000112.html +24 -0
  1128. data/vendor/plugins/grit/doc/classes/TestRubyGitAlt.src/M000113.html +19 -0
  1129. data/vendor/plugins/grit/doc/classes/TestRubyGitIndex.html +227 -0
  1130. data/vendor/plugins/grit/doc/classes/TestRubyGitIndex.src/M000071.html +21 -0
  1131. data/vendor/plugins/grit/doc/classes/TestRubyGitIndex.src/M000072.html +18 -0
  1132. data/vendor/plugins/grit/doc/classes/TestRubyGitIndex.src/M000073.html +22 -0
  1133. data/vendor/plugins/grit/doc/classes/TestRubyGitIndex.src/M000074.html +26 -0
  1134. data/vendor/plugins/grit/doc/classes/TestRubyGitIndex.src/M000075.html +28 -0
  1135. data/vendor/plugins/grit/doc/classes/TestRubyGitIndex.src/M000076.html +28 -0
  1136. data/vendor/plugins/grit/doc/classes/TestRubyGitIndex.src/M000077.html +26 -0
  1137. data/vendor/plugins/grit/doc/classes/TestRubyGitIv2.html +167 -0
  1138. data/vendor/plugins/grit/doc/classes/TestRubyGitIv2.src/M000031.html +22 -0
  1139. data/vendor/plugins/grit/doc/classes/TestRubyGitIv2.src/M000032.html +19 -0
  1140. data/vendor/plugins/grit/doc/classes/TestRubyGitIv2.src/M000033.html +23 -0
  1141. data/vendor/plugins/grit/doc/classes/TestSubmodule.html +233 -0
  1142. data/vendor/plugins/grit/doc/classes/TestSubmodule.src/M000125.html +19 -0
  1143. data/vendor/plugins/grit/doc/classes/TestSubmodule.src/M000126.html +27 -0
  1144. data/vendor/plugins/grit/doc/classes/TestSubmodule.src/M000127.html +27 -0
  1145. data/vendor/plugins/grit/doc/classes/TestSubmodule.src/M000128.html +24 -0
  1146. data/vendor/plugins/grit/doc/classes/TestSubmodule.src/M000129.html +25 -0
  1147. data/vendor/plugins/grit/doc/classes/TestSubmodule.src/M000130.html +19 -0
  1148. data/vendor/plugins/grit/doc/classes/TestSubmodule.src/M000131.html +19 -0
  1149. data/vendor/plugins/grit/doc/classes/TestTag.html +263 -0
  1150. data/vendor/plugins/grit/doc/classes/TestTag.src/M000018.html +18 -0
  1151. data/vendor/plugins/grit/doc/classes/TestTag.src/M000019.html +18 -0
  1152. data/vendor/plugins/grit/doc/classes/TestTag.src/M000020.html +21 -0
  1153. data/vendor/plugins/grit/doc/classes/TestTag.src/M000021.html +21 -0
  1154. data/vendor/plugins/grit/doc/classes/TestTag.src/M000022.html +21 -0
  1155. data/vendor/plugins/grit/doc/classes/TestTag.src/M000023.html +21 -0
  1156. data/vendor/plugins/grit/doc/classes/TestTag.src/M000024.html +21 -0
  1157. data/vendor/plugins/grit/doc/classes/TestTag.src/M000025.html +20 -0
  1158. data/vendor/plugins/grit/doc/classes/TestTree.html +299 -0
  1159. data/vendor/plugins/grit/doc/classes/TestTree.src/M000060.html +19 -0
  1160. data/vendor/plugins/grit/doc/classes/TestTree.src/M000061.html +20 -0
  1161. data/vendor/plugins/grit/doc/classes/TestTree.src/M000062.html +27 -0
  1162. data/vendor/plugins/grit/doc/classes/TestTree.src/M000063.html +25 -0
  1163. data/vendor/plugins/grit/doc/classes/TestTree.src/M000064.html +25 -0
  1164. data/vendor/plugins/grit/doc/classes/TestTree.src/M000065.html +22 -0
  1165. data/vendor/plugins/grit/doc/classes/TestTree.src/M000066.html +20 -0
  1166. data/vendor/plugins/grit/doc/classes/TestTree.src/M000067.html +24 -0
  1167. data/vendor/plugins/grit/doc/classes/TestTree.src/M000068.html +25 -0
  1168. data/vendor/plugins/grit/doc/classes/TestTree.src/M000069.html +19 -0
  1169. data/vendor/plugins/grit/doc/classes/TestTree.src/M000070.html +19 -0
  1170. data/vendor/plugins/grit/doc/created.rid +1 -0
  1171. data/vendor/plugins/grit/doc/files/benchmarks_rb.html +185 -0
  1172. data/vendor/plugins/grit/doc/files/benchmarks_rb.src/M000001.html +97 -0
  1173. data/vendor/plugins/grit/doc/files/benchmarks_rb.src/M000002.html +26 -0
  1174. data/vendor/plugins/grit/doc/files/benchmarks_rb.src/M000003.html +20 -0
  1175. data/vendor/plugins/grit/doc/files/benchmarks_rb.src/M000004.html +26 -0
  1176. data/vendor/plugins/grit/doc/files/examples/ex_add_commit_rb.html +108 -0
  1177. data/vendor/plugins/grit/doc/files/examples/ex_index_rb.html +108 -0
  1178. data/vendor/plugins/grit/doc/files/lib/grit/actor_rb.html +101 -0
  1179. data/vendor/plugins/grit/doc/files/lib/grit/blame_rb.html +101 -0
  1180. data/vendor/plugins/grit/doc/files/lib/grit/blob_rb.html +101 -0
  1181. data/vendor/plugins/grit/doc/files/lib/grit/commit_rb.html +101 -0
  1182. data/vendor/plugins/grit/doc/files/lib/grit/commit_stats_rb.html +101 -0
  1183. data/vendor/plugins/grit/doc/files/lib/grit/config_rb.html +101 -0
  1184. data/vendor/plugins/grit/doc/files/lib/grit/diff_rb.html +101 -0
  1185. data/vendor/plugins/grit/doc/files/lib/grit/errors_rb.html +101 -0
  1186. data/vendor/plugins/grit/doc/files/lib/grit/git-ruby/commit_db_rb.html +108 -0
  1187. data/vendor/plugins/grit/doc/files/lib/grit/git-ruby/file_index_rb.html +132 -0
  1188. data/vendor/plugins/grit/doc/files/lib/grit/git-ruby/git_object_rb.html +125 -0
  1189. data/vendor/plugins/grit/doc/files/lib/grit/git-ruby/internal/file_window_rb.html +118 -0
  1190. data/vendor/plugins/grit/doc/files/lib/grit/git-ruby/internal/loose_rb.html +127 -0
  1191. data/vendor/plugins/grit/doc/files/lib/grit/git-ruby/internal/pack_rb.html +145 -0
  1192. data/vendor/plugins/grit/doc/files/lib/grit/git-ruby/internal/raw_object_rb.html +124 -0
  1193. data/vendor/plugins/grit/doc/files/lib/grit/git-ruby/object_rb.html +125 -0
  1194. data/vendor/plugins/grit/doc/files/lib/grit/git-ruby/repository_rb.html +131 -0
  1195. data/vendor/plugins/grit/doc/files/lib/grit/git-ruby_rb.html +109 -0
  1196. data/vendor/plugins/grit/doc/files/lib/grit/git_rb.html +108 -0
  1197. data/vendor/plugins/grit/doc/files/lib/grit/index_rb.html +101 -0
  1198. data/vendor/plugins/grit/doc/files/lib/grit/lazy_rb.html +128 -0
  1199. data/vendor/plugins/grit/doc/files/lib/grit/merge_rb.html +101 -0
  1200. data/vendor/plugins/grit/doc/files/lib/grit/ref_rb.html +101 -0
  1201. data/vendor/plugins/grit/doc/files/lib/grit/repo_rb.html +101 -0
  1202. data/vendor/plugins/grit/doc/files/lib/grit/ruby1_9_rb.html +101 -0
  1203. data/vendor/plugins/grit/doc/files/lib/grit/status_rb.html +101 -0
  1204. data/vendor/plugins/grit/doc/files/lib/grit/submodule_rb.html +101 -0
  1205. data/vendor/plugins/grit/doc/files/lib/grit/tag_rb.html +101 -0
  1206. data/vendor/plugins/grit/doc/files/lib/grit/tree_rb.html +101 -0
  1207. data/vendor/plugins/grit/doc/files/lib/grit_rb.html +137 -0
  1208. data/vendor/plugins/grit/doc/files/lib/open3_detach_rb.html +101 -0
  1209. data/vendor/plugins/grit/doc/files/test/bench/benchmarks_rb.html +187 -0
  1210. data/vendor/plugins/grit/doc/files/test/bench/benchmarks_rb.src/M000005.html +95 -0
  1211. data/vendor/plugins/grit/doc/files/test/bench/benchmarks_rb.src/M000006.html +26 -0
  1212. data/vendor/plugins/grit/doc/files/test/bench/benchmarks_rb.src/M000007.html +20 -0
  1213. data/vendor/plugins/grit/doc/files/test/bench/benchmarks_rb.src/M000008.html +26 -0
  1214. data/vendor/plugins/grit/doc/files/test/helper_rb.html +171 -0
  1215. data/vendor/plugins/grit/doc/files/test/helper_rb.src/M000009.html +18 -0
  1216. data/vendor/plugins/grit/doc/files/test/helper_rb.src/M000010.html +18 -0
  1217. data/vendor/plugins/grit/doc/files/test/profile_rb.html +134 -0
  1218. data/vendor/plugins/grit/doc/files/test/profile_rb.src/M000011.html +24 -0
  1219. data/vendor/plugins/grit/doc/files/test/suite_rb.html +108 -0
  1220. data/vendor/plugins/grit/doc/files/test/test_actor_rb.html +101 -0
  1221. data/vendor/plugins/grit/doc/files/test/test_blame_rb.html +108 -0
  1222. data/vendor/plugins/grit/doc/files/test/test_blame_tree_rb.html +108 -0
  1223. data/vendor/plugins/grit/doc/files/test/test_blob_rb.html +101 -0
  1224. data/vendor/plugins/grit/doc/files/test/test_commit_rb.html +101 -0
  1225. data/vendor/plugins/grit/doc/files/test/test_commit_stats_rb.html +101 -0
  1226. data/vendor/plugins/grit/doc/files/test/test_commit_write_rb.html +101 -0
  1227. data/vendor/plugins/grit/doc/files/test/test_config_rb.html +101 -0
  1228. data/vendor/plugins/grit/doc/files/test/test_diff_rb.html +101 -0
  1229. data/vendor/plugins/grit/doc/files/test/test_file_index_rb.html +101 -0
  1230. data/vendor/plugins/grit/doc/files/test/test_git_rb.html +101 -0
  1231. data/vendor/plugins/grit/doc/files/test/test_grit_rb.html +101 -0
  1232. data/vendor/plugins/grit/doc/files/test/test_head_rb.html +101 -0
  1233. data/vendor/plugins/grit/doc/files/test/test_index_status_rb.html +101 -0
  1234. data/vendor/plugins/grit/doc/files/test/test_merge_rb.html +108 -0
  1235. data/vendor/plugins/grit/doc/files/test/test_raw_rb.html +108 -0
  1236. data/vendor/plugins/grit/doc/files/test/test_real_rb.html +130 -0
  1237. data/vendor/plugins/grit/doc/files/test/test_reality_rb.html +101 -0
  1238. data/vendor/plugins/grit/doc/files/test/test_remote_rb.html +101 -0
  1239. data/vendor/plugins/grit/doc/files/test/test_repo_rb.html +101 -0
  1240. data/vendor/plugins/grit/doc/files/test/test_rubygit_alt_rb.html +108 -0
  1241. data/vendor/plugins/grit/doc/files/test/test_rubygit_index_rb.html +108 -0
  1242. data/vendor/plugins/grit/doc/files/test/test_rubygit_iv2_rb.html +108 -0
  1243. data/vendor/plugins/grit/doc/files/test/test_rubygit_rb.html +108 -0
  1244. data/vendor/plugins/grit/doc/files/test/test_submodule_rb.html +101 -0
  1245. data/vendor/plugins/grit/doc/files/test/test_tag_rb.html +101 -0
  1246. data/vendor/plugins/grit/doc/files/test/test_tree_rb.html +101 -0
  1247. data/vendor/plugins/grit/doc/fr_class_index.html +102 -0
  1248. data/vendor/plugins/grit/doc/fr_file_index.html +91 -0
  1249. data/vendor/plugins/grit/doc/fr_method_index.html +571 -0
  1250. data/vendor/plugins/grit/doc/index.html +24 -0
  1251. data/vendor/plugins/grit/doc/rdoc-style.css +208 -0
  1252. data/vendor/plugins/grit/examples/ex_add_commit.rb +13 -0
  1253. data/vendor/plugins/grit/examples/ex_index.rb +14 -0
  1254. data/vendor/plugins/grit/grit.gemspec +113 -0
  1255. data/vendor/plugins/grit/lib/grit.rb +75 -0
  1256. data/vendor/plugins/grit/lib/grit/actor.rb +36 -0
  1257. data/vendor/plugins/grit/lib/grit/blame.rb +61 -0
  1258. data/vendor/plugins/grit/lib/grit/blob.rb +126 -0
  1259. data/vendor/plugins/grit/lib/grit/commit.rb +242 -0
  1260. data/vendor/plugins/grit/lib/grit/commit_stats.rb +128 -0
  1261. data/vendor/plugins/grit/lib/grit/config.rb +44 -0
  1262. data/vendor/plugins/grit/lib/grit/diff.rb +70 -0
  1263. data/vendor/plugins/grit/lib/grit/errors.rb +7 -0
  1264. data/vendor/plugins/grit/lib/grit/git-ruby.rb +267 -0
  1265. data/vendor/plugins/grit/lib/grit/git-ruby/commit_db.rb +52 -0
  1266. data/vendor/plugins/grit/lib/grit/git-ruby/file_index.rb +193 -0
  1267. data/vendor/plugins/grit/lib/grit/git-ruby/git_object.rb +350 -0
  1268. data/vendor/plugins/grit/lib/grit/git-ruby/internal/file_window.rb +58 -0
  1269. data/vendor/plugins/grit/lib/grit/git-ruby/internal/loose.rb +137 -0
  1270. data/vendor/plugins/grit/lib/grit/git-ruby/internal/pack.rb +382 -0
  1271. data/vendor/plugins/grit/lib/grit/git-ruby/internal/raw_object.rb +37 -0
  1272. data/vendor/plugins/grit/lib/grit/git-ruby/object.rb +325 -0
  1273. data/vendor/plugins/grit/lib/grit/git-ruby/repository.rb +740 -0
  1274. data/vendor/plugins/grit/lib/grit/git.rb +317 -0
  1275. data/vendor/plugins/grit/lib/grit/index.rb +122 -0
  1276. data/vendor/plugins/grit/lib/grit/lazy.rb +33 -0
  1277. data/vendor/plugins/grit/lib/grit/merge.rb +45 -0
  1278. data/vendor/plugins/grit/lib/grit/ref.rb +74 -0
  1279. data/vendor/plugins/grit/lib/grit/repo.rb +482 -0
  1280. data/vendor/plugins/grit/lib/grit/ruby1.9.rb +7 -0
  1281. data/vendor/plugins/grit/lib/grit/status.rb +151 -0
  1282. data/vendor/plugins/grit/lib/grit/submodule.rb +88 -0
  1283. data/vendor/plugins/grit/lib/grit/tag.rb +16 -0
  1284. data/vendor/plugins/grit/lib/grit/tree.rb +123 -0
  1285. data/vendor/plugins/grit/lib/open3_detach.rb +46 -0
  1286. data/vendor/plugins/grit/test/bench/benchmarks.rb +126 -0
  1287. data/vendor/plugins/grit/test/bench/benchmarks.txt +23 -0
  1288. data/vendor/plugins/grit/test/dot_git/COMMIT_EDITMSG +22 -0
  1289. data/vendor/plugins/grit/test/dot_git/FETCH_HEAD +1 -0
  1290. data/vendor/plugins/grit/test/dot_git/HEAD +1 -0
  1291. data/vendor/plugins/grit/test/dot_git/ORIG_HEAD +1 -0
  1292. data/vendor/plugins/grit/test/dot_git/config +11 -0
  1293. data/vendor/plugins/grit/test/dot_git/description +1 -0
  1294. data/vendor/plugins/grit/test/dot_git/file-index +893 -0
  1295. data/vendor/plugins/grit/test/dot_git/hooks/applypatch-msg +15 -0
  1296. data/vendor/plugins/grit/test/dot_git/hooks/commit-msg +24 -0
  1297. data/vendor/plugins/grit/test/dot_git/hooks/post-commit +8 -0
  1298. data/vendor/plugins/grit/test/dot_git/hooks/post-receive +16 -0
  1299. data/vendor/plugins/grit/test/dot_git/hooks/post-update +8 -0
  1300. data/vendor/plugins/grit/test/dot_git/hooks/pre-applypatch +14 -0
  1301. data/vendor/plugins/grit/test/dot_git/hooks/pre-commit +70 -0
  1302. data/vendor/plugins/grit/test/dot_git/hooks/pre-rebase +150 -0
  1303. data/vendor/plugins/grit/test/dot_git/hooks/prepare-commit-msg +36 -0
  1304. data/vendor/plugins/grit/test/dot_git/hooks/update +107 -0
  1305. data/vendor/plugins/grit/test/dot_git/index +0 -0
  1306. data/vendor/plugins/grit/test/dot_git/info/exclude +6 -0
  1307. data/vendor/plugins/grit/test/dot_git/logs/HEAD +3 -0
  1308. data/vendor/plugins/grit/test/dot_git/logs/refs/heads/master +3 -0
  1309. data/vendor/plugins/grit/test/dot_git/logs/refs/remotes/origin/master +2 -0
  1310. data/vendor/plugins/grit/test/dot_git/logs/refs/remotes/tom/master +1 -0
  1311. data/vendor/plugins/grit/test/dot_git/objects/00/03f8338f3668723f26b37c8ccf544a95e29ec6 +0 -0
  1312. data/vendor/plugins/grit/test/dot_git/objects/00/1569f8fc3eb464ba486e4b22f2f06494f399e2 +0 -0
  1313. data/vendor/plugins/grit/test/dot_git/objects/00/3274c8973e2053718cfad0d36a6965d192fcab +0 -0
  1314. data/vendor/plugins/grit/test/dot_git/objects/00/b1c149e635d481ca18349082583b8151f72747 +0 -0
  1315. data/vendor/plugins/grit/test/dot_git/objects/00/b71297a9d326f1c9647dc3199759696aa0fcd3 +0 -0
  1316. data/vendor/plugins/grit/test/dot_git/objects/00/f3447967b64aba158140cd40ee8b367612ce81 +0 -0
  1317. data/vendor/plugins/grit/test/dot_git/objects/01/0ad5aba678e910d4d663b42dcc23b42beb829f +0 -0
  1318. data/vendor/plugins/grit/test/dot_git/objects/01/17826165bc3b90c75ef2caeec37f5c8d782705 +0 -0
  1319. data/vendor/plugins/grit/test/dot_git/objects/01/4488a55fe5fe9494441a9340cc8c15107a212a +0 -0
  1320. data/vendor/plugins/grit/test/dot_git/objects/01/4fc17423d6af7ac4816071dd29f0f0e2784066 +0 -0
  1321. data/vendor/plugins/grit/test/dot_git/objects/01/b74bca756428371115795ddf6ca02019c8917f +0 -0
  1322. data/vendor/plugins/grit/test/dot_git/objects/01/d78e86ee2b2d9d8d67d2d5b70610879184cfe2 +0 -0
  1323. data/vendor/plugins/grit/test/dot_git/objects/01/f8c258619443ee16bdfe857b4852df5fa3e9d2 +0 -0
  1324. data/vendor/plugins/grit/test/dot_git/objects/02/036e2cb5b44b6f4a27cea2f5bcca47ddfb24d8 +0 -0
  1325. data/vendor/plugins/grit/test/dot_git/objects/02/1e14889189cd86cff25b5677e12ac2c7234e0b +0 -0
  1326. data/vendor/plugins/grit/test/dot_git/objects/02/3d5211ccff94a988645cdeb1738ef681053928 +0 -0
  1327. data/vendor/plugins/grit/test/dot_git/objects/02/52e31caf4384d3af956ddcf99b0625ca32564f +0 -0
  1328. data/vendor/plugins/grit/test/dot_git/objects/02/776a9f673a9cd6e2dfaebdb4a20de867303091 +0 -0
  1329. data/vendor/plugins/grit/test/dot_git/objects/02/7d4de30093393c0f994ccca83ac80524850f52 +0 -0
  1330. data/vendor/plugins/grit/test/dot_git/objects/02/85f374047a4541f8a36b9195ad281220dca3be +0 -0
  1331. data/vendor/plugins/grit/test/dot_git/objects/02/88dcd891dc1c3452558a67240a2969afe5e1f2 +0 -0
  1332. data/vendor/plugins/grit/test/dot_git/objects/02/de1ef84c9b8c2c2659048269784ee8cfd1bbb5 +4 -0
  1333. data/vendor/plugins/grit/test/dot_git/objects/03/337ca011923c5ade57033d950557f8e593542f +0 -0
  1334. data/vendor/plugins/grit/test/dot_git/objects/03/37a36c245dcafeb65eb8a77322bfa353447774 +0 -0
  1335. data/vendor/plugins/grit/test/dot_git/objects/03/517194eb06a1dc1bd3cb0d605cf30a56241053 +0 -0
  1336. data/vendor/plugins/grit/test/dot_git/objects/03/6eb07bb7c6e7f3b35dd0302bf9cf6c289ea0ed +0 -0
  1337. data/vendor/plugins/grit/test/dot_git/objects/03/7f79a326dbcb10176d28f61998d72924ce77c8 +0 -0
  1338. data/vendor/plugins/grit/test/dot_git/objects/03/cf7ee8c1bf722d28e8fa93eb780e2e4dc084c9 +0 -0
  1339. data/vendor/plugins/grit/test/dot_git/objects/04/7b5ae7038ef06f45520462912f039e80c00b8c +0 -0
  1340. data/vendor/plugins/grit/test/dot_git/objects/04/c3a03b3f0d0a60b313f4be77749845a5235c08 +0 -0
  1341. data/vendor/plugins/grit/test/dot_git/objects/04/cb7a6a139313c907e0fec984da3fd4e41fdd33 +0 -0
  1342. data/vendor/plugins/grit/test/dot_git/objects/04/e515305cf9bc9598dceafffb7cb9a756544628 +0 -0
  1343. data/vendor/plugins/grit/test/dot_git/objects/04/fb83a65293a39614752633f8e6d945b80b5eb0 +0 -0
  1344. data/vendor/plugins/grit/test/dot_git/objects/05/68b92d8d9705c4ff045ffdb5e3a1f1595bd923 +0 -0
  1345. data/vendor/plugins/grit/test/dot_git/objects/05/7826b56de5733beb44b4561443d3b46a449691 +0 -0
  1346. data/vendor/plugins/grit/test/dot_git/objects/05/7926e768e8b202655a3aa26adc7f201c0edcfc +0 -0
  1347. data/vendor/plugins/grit/test/dot_git/objects/05/7929610b4988ec16e3c45b8383bd158990b4a0 +0 -0
  1348. data/vendor/plugins/grit/test/dot_git/objects/05/87c4160d02715e27c0cb305d4227cf17481225 +0 -0
  1349. data/vendor/plugins/grit/test/dot_git/objects/05/af9a86721dbfc9c26aa1e51ae2a69e3e659d4e +0 -0
  1350. data/vendor/plugins/grit/test/dot_git/objects/05/b059421d3747a7806ac17ae7fec58942f4febb +0 -0
  1351. data/vendor/plugins/grit/test/dot_git/objects/05/cc37f0a03392de8deb2ffe699be03f7dfb969f +0 -0
  1352. data/vendor/plugins/grit/test/dot_git/objects/06/05c3b4232a3ce29e9eaa37c5b87798500a6e7d +0 -0
  1353. data/vendor/plugins/grit/test/dot_git/objects/06/06fabcdde5c927345a40f121f361d2e216b074 +0 -0
  1354. data/vendor/plugins/grit/test/dot_git/objects/06/2279d5eb12f88189544abbaed53853c5ed9515 +0 -0
  1355. data/vendor/plugins/grit/test/dot_git/objects/06/aa7f9270d9750713a16c8876a80d8208d0474b +0 -0
  1356. data/vendor/plugins/grit/test/dot_git/objects/06/e218ce2718fb29fe8c3406e20a03af92b2c211 +0 -0
  1357. data/vendor/plugins/grit/test/dot_git/objects/06/f8bf7db18ed246f33840f89db357ffdb9ed685 +0 -0
  1358. data/vendor/plugins/grit/test/dot_git/objects/07/49016e612b0cc541a9157c5af5202fc13afee5 +0 -0
  1359. data/vendor/plugins/grit/test/dot_git/objects/07/7b694fe425c945e50bcf07a17273f70ea9969f +0 -0
  1360. data/vendor/plugins/grit/test/dot_git/objects/08/2abfcf77d1c6ce8288c9e51960c4dc0386e214 +0 -0
  1361. data/vendor/plugins/grit/test/dot_git/objects/08/31f152b831b72c29c402c43a4f0d5f9c08098b +0 -0
  1362. data/vendor/plugins/grit/test/dot_git/objects/08/3a20c51f91b45bd89c4e659be3004f3160eb9d +0 -0
  1363. data/vendor/plugins/grit/test/dot_git/objects/09/3df8605b97af993b943e6c8d752adb3a80414d +0 -0
  1364. data/vendor/plugins/grit/test/dot_git/objects/09/4371d805417da0d5d45f05862c04f840164700 +0 -0
  1365. data/vendor/plugins/grit/test/dot_git/objects/09/509a4195f9fb7afbf688b03c80695bf42415aa +0 -0
  1366. data/vendor/plugins/grit/test/dot_git/objects/09/722f3e93f2ac8b7576ad9875570b9fcd9c7742 +0 -0
  1367. data/vendor/plugins/grit/test/dot_git/objects/09/c0737da31a89f508274573ccca3fab84b99291 +0 -0
  1368. data/vendor/plugins/grit/test/dot_git/objects/09/c978c6ca56674793681e1f46e48d548f87b9b7 +0 -0
  1369. data/vendor/plugins/grit/test/dot_git/objects/09/d253737e9b3478116b5c28bc353bb04f6b3b15 +0 -0
  1370. data/vendor/plugins/grit/test/dot_git/objects/0a/8a50a991f45aacd9182cc9660352291102d62c +0 -0
  1371. data/vendor/plugins/grit/test/dot_git/objects/0a/d7278c1b329f53ccce178365ef46c0acf1b5cf +0 -0
  1372. data/vendor/plugins/grit/test/dot_git/objects/0b/7cad903e284fb0c67b4c5c2b7dce7bcb1ab331 +0 -0
  1373. data/vendor/plugins/grit/test/dot_git/objects/0b/982595f497472374e559c4a60bdf6f5d515747 +0 -0
  1374. data/vendor/plugins/grit/test/dot_git/objects/0b/a43a25402d95cdf77eab9daa395554b6bf0fee +0 -0
  1375. data/vendor/plugins/grit/test/dot_git/objects/0c/27bd8cee7c56836d7116224eeee572b14d9207 +0 -0
  1376. data/vendor/plugins/grit/test/dot_git/objects/0c/93fbac2cae83e0c1ae53b95b1ad1e52049f9dc +0 -0
  1377. data/vendor/plugins/grit/test/dot_git/objects/0c/f5be059c72d69cccc249f53b35c3c40907665c +0 -0
  1378. data/vendor/plugins/grit/test/dot_git/objects/0d/03c5056d874db5cf0088b70a67d943ddcb5413 +0 -0
  1379. data/vendor/plugins/grit/test/dot_git/objects/0d/520f86139b0b1fc0ab6d92a5f837533b07488b +0 -0
  1380. data/vendor/plugins/grit/test/dot_git/objects/0d/757583ecf0ce5235d41487d26bee258c317b3e +0 -0
  1381. data/vendor/plugins/grit/test/dot_git/objects/0d/b262cb85533c5004f6f1a2cb26f5ae2dd85d36 +0 -0
  1382. data/vendor/plugins/grit/test/dot_git/objects/0d/fc2a798d3c8f3190e3478644e73478bf5a2198 +0 -0
  1383. data/vendor/plugins/grit/test/dot_git/objects/0e/1d014f006f27f2857eb504c520d2ed2bdd8e73 +0 -0
  1384. data/vendor/plugins/grit/test/dot_git/objects/0f/138d68197242f4e6be55e9133fafb7dfa2ea51 +0 -0
  1385. data/vendor/plugins/grit/test/dot_git/objects/0f/341dd5b4a15b61545f8f8a22fdfcfa611b88ba +0 -0
  1386. data/vendor/plugins/grit/test/dot_git/objects/0f/41b030d38bc256c46da51ec61d8fbf78d95c71 +0 -0
  1387. data/vendor/plugins/grit/test/dot_git/objects/0f/6adc7b610f48813007fa9624308fdcd19624eb +0 -0
  1388. data/vendor/plugins/grit/test/dot_git/objects/0f/73ea263af628ee73a91fd828a090ec0c1108bd +0 -0
  1389. data/vendor/plugins/grit/test/dot_git/objects/0f/8ab2768611398a9271137b976e790158fea99b +0 -0
  1390. data/vendor/plugins/grit/test/dot_git/objects/0f/b309e304e40fd066779c842d3dfb969820ee05 +0 -0
  1391. data/vendor/plugins/grit/test/dot_git/objects/0f/f24bd854839ec2d63df82511b30a87563cf93b +0 -0
  1392. data/vendor/plugins/grit/test/dot_git/objects/10/3b19041fdc3d56c2a233faeb835250f7979025 +0 -0
  1393. data/vendor/plugins/grit/test/dot_git/objects/10/49a9f3dde7bb76587fe082462866b5d0dbd286 +0 -0
  1394. data/vendor/plugins/grit/test/dot_git/objects/10/d5041b45374ba1ca060c9273ea8239b2836377 +0 -0
  1395. data/vendor/plugins/grit/test/dot_git/objects/11/8273918e8e542d828b37fb58cb2ec0f557fb5f +0 -0
  1396. data/vendor/plugins/grit/test/dot_git/objects/11/af521eb0e6e9c112b3bb6c4ad7ec24986d3ca9 +0 -0
  1397. data/vendor/plugins/grit/test/dot_git/objects/11/c94e9b614f3f2e17f72854e8be0f181471bfcc +0 -0
  1398. data/vendor/plugins/grit/test/dot_git/objects/11/ef852d995ba4f160bd20474cfb7b21fd643524 +0 -0
  1399. data/vendor/plugins/grit/test/dot_git/objects/12/285f38fe70a726001e29108536954f64d7133a +0 -0
  1400. data/vendor/plugins/grit/test/dot_git/objects/12/36260f7be3454a989e82e28f6096e096e35a89 +0 -0
  1401. data/vendor/plugins/grit/test/dot_git/objects/12/8db38df991e126c5079bd4c36d15c21674db99 +0 -0
  1402. data/vendor/plugins/grit/test/dot_git/objects/12/a41f2de1265a2f7c56793ad6c1e9a48b10690d +0 -0
  1403. data/vendor/plugins/grit/test/dot_git/objects/12/c064d545702771fde2debf89ae5d2332897d88 +0 -0
  1404. data/vendor/plugins/grit/test/dot_git/objects/12/c33c0bcf3ac3f569850943ad62c46c9861edeb +0 -0
  1405. data/vendor/plugins/grit/test/dot_git/objects/12/c7b3bf5cdc29830afecbe20755d6f08fe735a1 +0 -0
  1406. data/vendor/plugins/grit/test/dot_git/objects/12/fca324bece56e856667502ebfed1c5172d1477 +0 -0
  1407. data/vendor/plugins/grit/test/dot_git/objects/13/2335def2380870cd3b8f40d326976aea182aa7 +0 -0
  1408. data/vendor/plugins/grit/test/dot_git/objects/13/8e53fadb078d2b3716833d8b50eb10f12c7348 +0 -0
  1409. data/vendor/plugins/grit/test/dot_git/objects/13/d306ed324d1be706c78071a72414d50c68dca5 +0 -0
  1410. data/vendor/plugins/grit/test/dot_git/objects/14/35f68d9466fbd70fc6084977ac19fd311c7c57 +0 -0
  1411. data/vendor/plugins/grit/test/dot_git/objects/14/66fcacc4070eb9a8fd88b3a825c6647f6491f1 +0 -0
  1412. data/vendor/plugins/grit/test/dot_git/objects/14/67cde22fefa7ddcab86786d5066bc6f51b250a +0 -0
  1413. data/vendor/plugins/grit/test/dot_git/objects/14/d58395b6da306a5b161fb950ac2c252a091a95 +0 -0
  1414. data/vendor/plugins/grit/test/dot_git/objects/15/2111c53821f7dd53a3cc4f6a251a7de3789414 +0 -0
  1415. data/vendor/plugins/grit/test/dot_git/objects/15/5c2ca2a4e8b1e0f2f54c0e3b413dd077633fdf +0 -0
  1416. data/vendor/plugins/grit/test/dot_git/objects/15/78a2576e89eaa4954d5277d69b2bf66e926cdf +0 -0
  1417. data/vendor/plugins/grit/test/dot_git/objects/15/7c95ee8c2989db8127c48548ed80c15a76b778 +0 -0
  1418. data/vendor/plugins/grit/test/dot_git/objects/15/979622ad6ae9c5cf1c424cd17dd2784130e8f1 +0 -0
  1419. data/vendor/plugins/grit/test/dot_git/objects/15/d022ad2ff13d0ef33424ff412676b6047ffed8 +0 -0
  1420. data/vendor/plugins/grit/test/dot_git/objects/15/e293762a035e16b6d3f5562c51e8a524c84381 +0 -0
  1421. data/vendor/plugins/grit/test/dot_git/objects/15/e93eb1c0b39f51291d1c432156f0ff43ab1ffd +0 -0
  1422. data/vendor/plugins/grit/test/dot_git/objects/15/ebfa5c7792de35a107f413b397407ac3330888 +0 -0
  1423. data/vendor/plugins/grit/test/dot_git/objects/16/3268d3698bb1626f34cd3ba59da51a7e25e03e +0 -0
  1424. data/vendor/plugins/grit/test/dot_git/objects/16/48e3b1e22ebb852ded047d0ab7eac1b05fe060 +0 -0
  1425. data/vendor/plugins/grit/test/dot_git/objects/16/81e1b6486f601c8edcaddcaba5b43cee4aea3f +0 -0
  1426. data/vendor/plugins/grit/test/dot_git/objects/16/910c6a1377054903ccb52369d3ee07b13e5d08 +0 -0
  1427. data/vendor/plugins/grit/test/dot_git/objects/16/b7edf7af22dd2bada9e936795f53943719fe65 +0 -0
  1428. data/vendor/plugins/grit/test/dot_git/objects/16/cc3f1fa6b58278c4fe216999464aaef8ae6750 +0 -0
  1429. data/vendor/plugins/grit/test/dot_git/objects/16/ef31d5b51a674634edb8b54b5706c17b62f558 +0 -0
  1430. data/vendor/plugins/grit/test/dot_git/objects/16/ff20f07ceb75dc60619c082f530ccd3379d572 +0 -0
  1431. data/vendor/plugins/grit/test/dot_git/objects/17/3f4345c58750e2eb870a65e850917f97dbed91 +0 -0
  1432. data/vendor/plugins/grit/test/dot_git/objects/17/6255627b2fac737a7f77a5591814e88dc49815 +0 -0
  1433. data/vendor/plugins/grit/test/dot_git/objects/17/96a891d45dea162f9021f8e8c472c5e2006696 +0 -0
  1434. data/vendor/plugins/grit/test/dot_git/objects/17/ac818de1cc5ab1b1e1fc5f2796b0bb816a600c +0 -0
  1435. data/vendor/plugins/grit/test/dot_git/objects/17/d488c2f71729e5d182cb944d28c837fba95ccf +0 -0
  1436. data/vendor/plugins/grit/test/dot_git/objects/17/da04256d519b3bc102ff6654388a15ede87a9e +0 -0
  1437. data/vendor/plugins/grit/test/dot_git/objects/19/3e6eef82e784e52ba86addcb5d7b1b7c733b39 +0 -0
  1438. data/vendor/plugins/grit/test/dot_git/objects/19/6583fa8a32069927196d341590917ec3a44068 +0 -0
  1439. data/vendor/plugins/grit/test/dot_git/objects/19/c05c4b965f08e0a7856864293a206e07743c37 +0 -0
  1440. data/vendor/plugins/grit/test/dot_git/objects/19/c3d5c87afaac1c69dc0473635ef8a7fe0738da +1 -0
  1441. data/vendor/plugins/grit/test/dot_git/objects/19/e8c71b6a30e8725e9c0d8e487333d102b20eec +0 -0
  1442. data/vendor/plugins/grit/test/dot_git/objects/19/f53b5d629ef910276aa4ff3da37098b84ebbe5 +0 -0
  1443. data/vendor/plugins/grit/test/dot_git/objects/1a/5458d91ca6a8303793f2b65add534398fbdecb +0 -0
  1444. data/vendor/plugins/grit/test/dot_git/objects/1a/b11cd93f687672c9cc8fa9b3fbac91a28e455f +0 -0
  1445. data/vendor/plugins/grit/test/dot_git/objects/1a/d7f5703990fffc0623027f890c8da5a84b7f69 +0 -0
  1446. data/vendor/plugins/grit/test/dot_git/objects/1b/4ac33eca9279c482cf15bfbdaeff285dd610b1 +0 -0
  1447. data/vendor/plugins/grit/test/dot_git/objects/1b/5178ad8b4a4bebf9f311a655317dcb2b8022cc +0 -0
  1448. data/vendor/plugins/grit/test/dot_git/objects/1b/6572ea59d924437ef351841ad7769189744070 +0 -0
  1449. data/vendor/plugins/grit/test/dot_git/objects/1b/7450de981e2cabd7394fd5d6eabad5d3d755cc +0 -0
  1450. data/vendor/plugins/grit/test/dot_git/objects/1b/9fe079b5b81a05c585e71d7a3f435cf740ef98 +0 -0
  1451. data/vendor/plugins/grit/test/dot_git/objects/1b/fb8784f878f9cd3cfeaca34357cf50a74f1e09 +0 -0
  1452. data/vendor/plugins/grit/test/dot_git/objects/1c/0b90070d7e30f014551321378b272fa3fa4513 +0 -0
  1453. data/vendor/plugins/grit/test/dot_git/objects/1c/13b4bce41332da238a5b3dea893831da48cd51 +0 -0
  1454. data/vendor/plugins/grit/test/dot_git/objects/1c/6ab3410ae104091c7c48eb51fafeb10ceb840a +0 -0
  1455. data/vendor/plugins/grit/test/dot_git/objects/1c/e53e58e0fce1b52e687738be9f29d2b66ad102 +0 -0
  1456. data/vendor/plugins/grit/test/dot_git/objects/1d/52507d6a4b62353f17426395176114a78c3e27 +0 -0
  1457. data/vendor/plugins/grit/test/dot_git/objects/1d/779cd342a3dceb1181617c6d78cf49dd4ea6d9 +0 -0
  1458. data/vendor/plugins/grit/test/dot_git/objects/1d/a4fc732293ade7bc64fa5bf0fe500e98d44086 +0 -0
  1459. data/vendor/plugins/grit/test/dot_git/objects/1d/ad0ebe6a69a154ae53834551aac811e2084d92 +0 -0
  1460. data/vendor/plugins/grit/test/dot_git/objects/1d/fb7c5c1bfe1d3faa4faa02588446132806a84a +0 -0
  1461. data/vendor/plugins/grit/test/dot_git/objects/1e/48c5e962aed49286c66caf359ec9c2d36c2702 +0 -0
  1462. data/vendor/plugins/grit/test/dot_git/objects/1e/602e850a67f89c395797eac185740d5f26d4d2 +0 -0
  1463. data/vendor/plugins/grit/test/dot_git/objects/1e/72f4a8d9f13be6e98e948927eea0d14a2e1058 +0 -0
  1464. data/vendor/plugins/grit/test/dot_git/objects/1e/d9b70c5aeb93e24139fa7203d9a7455476c102 +0 -0
  1465. data/vendor/plugins/grit/test/dot_git/objects/1e/eb71ddbc2be8fd6cc4fe8c8465361601d2e1a5 +0 -0
  1466. data/vendor/plugins/grit/test/dot_git/objects/1f/56023e68acd9d981833e3eb2567ed2d851dd32 +0 -0
  1467. data/vendor/plugins/grit/test/dot_git/objects/1f/cfb4f859faed6bf0384993f0fd5edf41f00ef5 +0 -0
  1468. data/vendor/plugins/grit/test/dot_git/objects/1f/f7f94c2c07e96787211d977794a01701c84c48 +0 -0
  1469. data/vendor/plugins/grit/test/dot_git/objects/20/527a9f7bff75c1fbddd9d99bb7e6da2558650a +0 -0
  1470. data/vendor/plugins/grit/test/dot_git/objects/20/58b040a09bd2a1fbaebb1e40aae595115a715e +1 -0
  1471. data/vendor/plugins/grit/test/dot_git/objects/20/7f3efe50e24e9423f55d56924c43d7ea3c5ce7 +0 -0
  1472. data/vendor/plugins/grit/test/dot_git/objects/20/92842ab2e8c0f9bdab4646a4ed7f714f66b12b +0 -0
  1473. data/vendor/plugins/grit/test/dot_git/objects/20/f3156fa79fcc5ccfd5e70a1136397c026414b6 +0 -0
  1474. data/vendor/plugins/grit/test/dot_git/objects/21/0ce1bcc38e0e98f8ec8930a930dbd7988ac4b2 +0 -0
  1475. data/vendor/plugins/grit/test/dot_git/objects/21/1cd03423ab654fb825b0bee37154330ba18e55 +0 -0
  1476. data/vendor/plugins/grit/test/dot_git/objects/21/28b4b92723c769fb9288584aa67dd7e38d3e66 +0 -0
  1477. data/vendor/plugins/grit/test/dot_git/objects/21/39d6008849105ef06dd7aa4ed24dbeab73812b +0 -0
  1478. data/vendor/plugins/grit/test/dot_git/objects/21/6092db5b7af3826eb8cab98f214b87338f2e85 +0 -0
  1479. data/vendor/plugins/grit/test/dot_git/objects/21/6df5b81cd60076fc086ac6a5cda5fb45a3f51f +0 -0
  1480. data/vendor/plugins/grit/test/dot_git/objects/21/8e0267be4449ca7fc6fa10752014533c14c546 +0 -0
  1481. data/vendor/plugins/grit/test/dot_git/objects/21/9580bb02cbd719c7e1b02d73665669a180120a +0 -0
  1482. data/vendor/plugins/grit/test/dot_git/objects/21/e7baafef8ab19c21b162aef7cb6f3c6d7d7c67 +0 -0
  1483. data/vendor/plugins/grit/test/dot_git/objects/22/0553c2c0869a33996016d0f01a16471c3cdfb4 +0 -0
  1484. data/vendor/plugins/grit/test/dot_git/objects/22/26c0f88671d695655a16bc3f40336bbc1d13e1 +0 -0
  1485. data/vendor/plugins/grit/test/dot_git/objects/22/be54ac7977e0bb45ad7e83210611dc16ce102d +0 -0
  1486. data/vendor/plugins/grit/test/dot_git/objects/22/fb8209d8655a24594398d47f339870f924804f +0 -0
  1487. data/vendor/plugins/grit/test/dot_git/objects/23/53738d894ae00535ad011781d82c135a92a269 +0 -0
  1488. data/vendor/plugins/grit/test/dot_git/objects/23/7f04e2053831498762d50fc2470cc66892d268 +0 -0
  1489. data/vendor/plugins/grit/test/dot_git/objects/23/92b105b8747c1814b9a48d2f5b546f25b78ba1 +0 -0
  1490. data/vendor/plugins/grit/test/dot_git/objects/24/02a4ccbf9f8a3d0697562dc88c3a3a7740de56 +0 -0
  1491. data/vendor/plugins/grit/test/dot_git/objects/24/21ffe1b4b0ddf0d7efbd674ee1fff714c6d7ae +0 -0
  1492. data/vendor/plugins/grit/test/dot_git/objects/24/b49076b413a71c428eb8bcdaa4f258791e6773 +0 -0
  1493. data/vendor/plugins/grit/test/dot_git/objects/24/b7e95c0acae11954a9e7018cd6748fbc9ac8da +0 -0
  1494. data/vendor/plugins/grit/test/dot_git/objects/24/bc825eb69933d3c42e1a81c92cc9ebc6cc3472 +0 -0
  1495. data/vendor/plugins/grit/test/dot_git/objects/24/c1a000ee73335664497f277a9c1fc6ec7e1518 +0 -0
  1496. data/vendor/plugins/grit/test/dot_git/objects/25/c813a868fe8f0aa7ffb09688c0d357b92deafe +0 -0
  1497. data/vendor/plugins/grit/test/dot_git/objects/26/ccf9637b785b1bc787bddb0d0d1c73f4662982 +0 -0
  1498. data/vendor/plugins/grit/test/dot_git/objects/27/06e2fda31d93c2e9d213f3406022173b10f15e +0 -0
  1499. data/vendor/plugins/grit/test/dot_git/objects/27/23ccc0bc573581a85c131ce62dd0670bc4ceb0 +3 -0
  1500. data/vendor/plugins/grit/test/dot_git/objects/27/9478dba188b07e2948b2f52ac865557065031e +0 -0
  1501. data/vendor/plugins/grit/test/dot_git/objects/27/9771d5b69e4d0342bced5345231d43976091c3 +0 -0
  1502. data/vendor/plugins/grit/test/dot_git/objects/27/b04aeb5b6042a2d90fb40d4293863841257640 +0 -0
  1503. data/vendor/plugins/grit/test/dot_git/objects/27/bcf5fe0a83910d826d1d71d78740441835bace +0 -0
  1504. data/vendor/plugins/grit/test/dot_git/objects/27/f8f0d70ce7e5c303f3c09e0ad169de7e1a7c3d +0 -0
  1505. data/vendor/plugins/grit/test/dot_git/objects/28/08c797feeb40639304a503a395e8333daa0aaf +0 -0
  1506. data/vendor/plugins/grit/test/dot_git/objects/28/0ebe908f5b3306f56b95c2e6758abeed139e26 +0 -0
  1507. data/vendor/plugins/grit/test/dot_git/objects/28/6fa3d105eadff6c94298aa3c0bb84358dbdd9a +0 -0
  1508. data/vendor/plugins/grit/test/dot_git/objects/28/e43ff74f1cbb5e666ee66ef3df5fb612af3cb0 +0 -0
  1509. data/vendor/plugins/grit/test/dot_git/objects/28/ea69ddb42462cde12ddeabd39349fbf9e47fec +0 -0
  1510. data/vendor/plugins/grit/test/dot_git/objects/28/f509a6f26bcce60274974581e63d730236cf90 +0 -0
  1511. data/vendor/plugins/grit/test/dot_git/objects/29/4764c43a2059b716a5016a7f0beb4f41ef762f +0 -0
  1512. data/vendor/plugins/grit/test/dot_git/objects/29/bb16c9ad7a921a6887d5d72c51b9312d1b6ae9 +0 -0
  1513. data/vendor/plugins/grit/test/dot_git/objects/29/bb1b3a815aa0c6c6f41aaf4bca766d0bef1cdf +0 -0
  1514. data/vendor/plugins/grit/test/dot_git/objects/2a/4ff408fd52be259cb69b058d1ac280425d3a14 +0 -0
  1515. data/vendor/plugins/grit/test/dot_git/objects/2a/525a828e4d0d02c01d14445b49c645771bb82a +0 -0
  1516. data/vendor/plugins/grit/test/dot_git/objects/2a/5c7305b52b836fbc0ec7200df58f3f9ba06ec0 +0 -0
  1517. data/vendor/plugins/grit/test/dot_git/objects/2a/6063405e5767fb4b9aa48c2eda4ab87e6cecf2 +0 -0
  1518. data/vendor/plugins/grit/test/dot_git/objects/2a/6d2a310fdaed46fb3a44901392e0bf4f05f8e7 +0 -0
  1519. data/vendor/plugins/grit/test/dot_git/objects/2a/88c76b382e2e3c3e3587e0676301f9949d646d +0 -0
  1520. data/vendor/plugins/grit/test/dot_git/objects/2a/8b7d95c7b2be929873d050f56b6eef546d3c18 +0 -0
  1521. data/vendor/plugins/grit/test/dot_git/objects/2a/9068e8f69713464cbe5ea7492476437d14e8bb +0 -0
  1522. data/vendor/plugins/grit/test/dot_git/objects/2b/79e430dc370f0810552660b495e4ecdeca6aae +1 -0
  1523. data/vendor/plugins/grit/test/dot_git/objects/2b/cec98e50e04c0d01bc097ffa372dcf55695025 +0 -0
  1524. data/vendor/plugins/grit/test/dot_git/objects/2b/f43dbc4e2088a807250eaa609234fd55e3e94b +0 -0
  1525. data/vendor/plugins/grit/test/dot_git/objects/2c/7ac7d7cac1e740e45cb90b4ab2b4f8d4dfaca1 +0 -0
  1526. data/vendor/plugins/grit/test/dot_git/objects/2c/87b72dff61f8394b3f1f32e21c1d936314ec2e +1 -0
  1527. data/vendor/plugins/grit/test/dot_git/objects/2c/8aa45018ca47fce1073b1bf3710e8df35b2dbe +0 -0
  1528. data/vendor/plugins/grit/test/dot_git/objects/2c/97dd5ed8d14496cfc71e7ab12bedfec7c14f2e +0 -0
  1529. data/vendor/plugins/grit/test/dot_git/objects/2c/da3256555de3eb182224bcf9bdcff079ccc44e +0 -0
  1530. data/vendor/plugins/grit/test/dot_git/objects/2d/4e03533d8d37a44a1f3e9315ef5164d7e07764 +0 -0
  1531. data/vendor/plugins/grit/test/dot_git/objects/2d/643778ccaa7adc11f5b2531b418cb1394316ec +0 -0
  1532. data/vendor/plugins/grit/test/dot_git/objects/2d/aa9345be6d2692c2b9303e12e8b69fb78d78ec +0 -0
  1533. data/vendor/plugins/grit/test/dot_git/objects/2d/aea61e18b399977a0fc0b124c837e1d00934fa +0 -0
  1534. data/vendor/plugins/grit/test/dot_git/objects/2d/d3efda11ed9a5e5e883cc3b2a624934f3a150e +0 -0
  1535. data/vendor/plugins/grit/test/dot_git/objects/2d/f7c5ddd50228c2d751df8b6aab96b37cdbc965 +0 -0
  1536. data/vendor/plugins/grit/test/dot_git/objects/2e/1325969bea6889ccffe59660583f8f225eaf47 +5 -0
  1537. data/vendor/plugins/grit/test/dot_git/objects/2e/19521c5c4a51a2fc8aee97f952560b7044941b +0 -0
  1538. data/vendor/plugins/grit/test/dot_git/objects/2e/e881239adb659aea65927a76daf526c0d83891 +0 -0
  1539. data/vendor/plugins/grit/test/dot_git/objects/2f/91a713750e086ab1704e05177d4a8f0d88953b +0 -0
  1540. data/vendor/plugins/grit/test/dot_git/objects/30/2bc1a9a65d8c4ddf073a56d0fdacaff71d5500 +0 -0
  1541. data/vendor/plugins/grit/test/dot_git/objects/30/2c67f5952bb0bda88f303e3b8c8a4cf7f27933 +0 -0
  1542. data/vendor/plugins/grit/test/dot_git/objects/30/a95debfc08077d566c9aa204f708104c716e1d +0 -0
  1543. data/vendor/plugins/grit/test/dot_git/objects/30/c859bedf72cb8dfb745bb17f705e4774d4f339 +0 -0
  1544. data/vendor/plugins/grit/test/dot_git/objects/30/eaea1a7dbd755b4774f2e7b4663623398b09a3 +0 -0
  1545. data/vendor/plugins/grit/test/dot_git/objects/31/5cd4d93bf65f8d00303515c7f31be1b888a349 +0 -0
  1546. data/vendor/plugins/grit/test/dot_git/objects/31/81d650ade16efe68108b01998c1297c7ff0095 +0 -0
  1547. data/vendor/plugins/grit/test/dot_git/objects/31/98cb65f97c46156ad634d04141a3aec5a7f637 +0 -0
  1548. data/vendor/plugins/grit/test/dot_git/objects/31/aaeceab051ff055f4b46b642f5891ac54e85ae +0 -0
  1549. data/vendor/plugins/grit/test/dot_git/objects/31/c867dca3a847692dc87bc4906194f13d183cae +0 -0
  1550. data/vendor/plugins/grit/test/dot_git/objects/31/eee41e36796777df147c26692c0624d73cd2d2 +0 -0
  1551. data/vendor/plugins/grit/test/dot_git/objects/32/89cea29590f1ed0f3da77f118b12ae527f7be7 +0 -0
  1552. data/vendor/plugins/grit/test/dot_git/objects/32/d40772f3ec99939cc2fb68cf66d971bb70af47 +0 -0
  1553. data/vendor/plugins/grit/test/dot_git/objects/32/d7a7f04ce188e48735ca805f27a2e399a1cffc +0 -0
  1554. data/vendor/plugins/grit/test/dot_git/objects/32/dec7871d83a6de85e5b96d06178ada1b4185c8 +0 -0
  1555. data/vendor/plugins/grit/test/dot_git/objects/33/373556aa00a77c621c8957d66994e220dd391b +0 -0
  1556. data/vendor/plugins/grit/test/dot_git/objects/33/49c1bb38f1a3bff19ffdb83fe81373f0947531 +0 -0
  1557. data/vendor/plugins/grit/test/dot_git/objects/33/58897c6333ced9f5d0b8b0d70b53207c32cbf2 +0 -0
  1558. data/vendor/plugins/grit/test/dot_git/objects/33/83cca49868379103ad80ebd52d0cd34731ea27 +0 -0
  1559. data/vendor/plugins/grit/test/dot_git/objects/33/86be79ac5e657a5c9a35c0b4ef87e62c47b8bb +0 -0
  1560. data/vendor/plugins/grit/test/dot_git/objects/33/a3d4c5d14917e67edec483f3222245be341fd1 +0 -0
  1561. data/vendor/plugins/grit/test/dot_git/objects/33/b61981170deb261faec0ce907d8775dc9b0827 +0 -0
  1562. data/vendor/plugins/grit/test/dot_git/objects/34/1780f4f7f8409797a6ee710254cadabbd442c7 +0 -0
  1563. data/vendor/plugins/grit/test/dot_git/objects/34/57115dfa37b9f7729f79eee2c75fc13f21438d +0 -0
  1564. data/vendor/plugins/grit/test/dot_git/objects/34/a29f36e9085784d1c22db7331c0d9ac4e90d99 +0 -0
  1565. data/vendor/plugins/grit/test/dot_git/objects/34/a4e9b8065fdd743ca61dcfa82ffbc7cfecdc93 +0 -0
  1566. data/vendor/plugins/grit/test/dot_git/objects/35/82158a912c79ee8d48eba6196c3613b1e34e57 +0 -0
  1567. data/vendor/plugins/grit/test/dot_git/objects/35/dbdfe43f8ad52f5d396abb7a7014bc453803a8 +0 -0
  1568. data/vendor/plugins/grit/test/dot_git/objects/35/e17670f8b2bc0f9a260d34aa83bd40a9d738e3 +0 -0
  1569. data/vendor/plugins/grit/test/dot_git/objects/36/37c7a23088ef2dabae477f385cdaa65c70a251 +0 -0
  1570. data/vendor/plugins/grit/test/dot_git/objects/36/5e358e24b22ca327750961b28dbfba0330d53f +0 -0
  1571. data/vendor/plugins/grit/test/dot_git/objects/36/840b2a85f282cb11294190666a52f764da2e35 +0 -0
  1572. data/vendor/plugins/grit/test/dot_git/objects/36/855d1bea32e3d3f7e0f0ae135e85cc9e9a2671 +0 -0
  1573. data/vendor/plugins/grit/test/dot_git/objects/36/dba981988940ffe26fd7a818d1216360ade56d +0 -0
  1574. data/vendor/plugins/grit/test/dot_git/objects/36/e81104a0508fea06062a796fd85f457e829380 +0 -0
  1575. data/vendor/plugins/grit/test/dot_git/objects/36/f8ebd8d58b3ce1a337024e6b71107591eaa634 +1 -0
  1576. data/vendor/plugins/grit/test/dot_git/objects/37/175959911a8e8032e07935cde93b873f2466f3 +0 -0
  1577. data/vendor/plugins/grit/test/dot_git/objects/37/593280ce24318d5ff8eb1448ae06c83772afe4 +0 -0
  1578. data/vendor/plugins/grit/test/dot_git/objects/37/6ea43a79070bdea30e0508edf49ee891279559 +0 -0
  1579. data/vendor/plugins/grit/test/dot_git/objects/37/7c4c6c44acbdfd450bdd0eba55845ee885be82 +0 -0
  1580. data/vendor/plugins/grit/test/dot_git/objects/37/a7c60c6a9466823e09acaf6c8cdfb9e0ca79a5 +0 -0
  1581. data/vendor/plugins/grit/test/dot_git/objects/37/b6a48b7f3b475a48fe1cbe6c85e1e5c47caa32 +0 -0
  1582. data/vendor/plugins/grit/test/dot_git/objects/37/e9dad721f3414c686125bef88f1de22eec34f1 +0 -0
  1583. data/vendor/plugins/grit/test/dot_git/objects/38/2f4decb47b8d35ced4b1c386f9ea8a38147897 +0 -0
  1584. data/vendor/plugins/grit/test/dot_git/objects/38/507ac81bcab18fff9a4062c508b3ae1c3ed2b4 +0 -0
  1585. data/vendor/plugins/grit/test/dot_git/objects/38/5b7e7fbe895f4c9e866899c8a9dd413c687e3f +0 -0
  1586. data/vendor/plugins/grit/test/dot_git/objects/38/5f9658195f704e1f20ae167f23c3a91871dba2 +0 -0
  1587. data/vendor/plugins/grit/test/dot_git/objects/38/6eb8dab973c5baa669c4627287f608a602a837 +0 -0
  1588. data/vendor/plugins/grit/test/dot_git/objects/38/965f6e6489e6a9c0011c367ffba2b988512f50 +0 -0
  1589. data/vendor/plugins/grit/test/dot_git/objects/38/d6fa611eb2c06126f711eb64f036ffa83331fe +0 -0
  1590. data/vendor/plugins/grit/test/dot_git/objects/39/414f3aeb1c46b4829d41c2b5a41bc243137ab6 +0 -0
  1591. data/vendor/plugins/grit/test/dot_git/objects/39/49bf564f18107bb9c42f7c78e93c935d749db2 +0 -0
  1592. data/vendor/plugins/grit/test/dot_git/objects/39/693b227a583b222dd22eacfd16c948e40e8c19 +0 -0
  1593. data/vendor/plugins/grit/test/dot_git/objects/39/d92ab22590d648ed6efea996048876bf599c0a +0 -0
  1594. data/vendor/plugins/grit/test/dot_git/objects/39/dbd7e9d354ee652f7f5ca117f867696c32fd73 +0 -0
  1595. data/vendor/plugins/grit/test/dot_git/objects/3a/6030afdfb2890fd10a19d4fba1395d7b24f828 +0 -0
  1596. data/vendor/plugins/grit/test/dot_git/objects/3a/9edce0b66cad4c011fb35c90e80b796ba5610f +0 -0
  1597. data/vendor/plugins/grit/test/dot_git/objects/3b/004186dc696853e8af1c478a961fd4b8ec0531 +0 -0
  1598. data/vendor/plugins/grit/test/dot_git/objects/3b/1fd96da523e9922a1f2b126bbcbc65c7ee9c71 +0 -0
  1599. data/vendor/plugins/grit/test/dot_git/objects/3b/494f98fb24ee05c63c63cfaafa730bd933f9ea +0 -0
  1600. data/vendor/plugins/grit/test/dot_git/objects/3b/5bf78ab1d4b5f3d36129b66f1c4a00cc52dcd9 +0 -0
  1601. data/vendor/plugins/grit/test/dot_git/objects/3b/5cc49cd62921d1abc9eaac373c29ea6fa604c9 +0 -0
  1602. data/vendor/plugins/grit/test/dot_git/objects/3b/79e6461579ba7cc976cea73d36a0c7ac56ff57 +0 -0
  1603. data/vendor/plugins/grit/test/dot_git/objects/3b/d1a9b888fb95bf4ce7da5ba1d0f7db711a07ad +0 -0
  1604. data/vendor/plugins/grit/test/dot_git/objects/3c/135209062a3ccd2032092ab2457eb3980b249f +0 -0
  1605. data/vendor/plugins/grit/test/dot_git/objects/3c/612dfb7e6530546a433262c4ccddc633da823a +0 -0
  1606. data/vendor/plugins/grit/test/dot_git/objects/3c/631958129f12cd496c2c918ff76c04e3aec471 +0 -0
  1607. data/vendor/plugins/grit/test/dot_git/objects/3c/681414cda7c8200292d9c37baef74b8e55b25e +0 -0
  1608. data/vendor/plugins/grit/test/dot_git/objects/3d/68199aa3c3ae3e55fad81d987bb954265da64d +0 -0
  1609. data/vendor/plugins/grit/test/dot_git/objects/3d/6fb637c4c133a62712c2f5c5bc5d6c918b257b +0 -0
  1610. data/vendor/plugins/grit/test/dot_git/objects/3d/8cf6e46dbc2863435a7c0befa9f0f9b72f2b40 +0 -0
  1611. data/vendor/plugins/grit/test/dot_git/objects/3d/c1b8ad89993a94b8b8af627ecefb656f450b3a +0 -0
  1612. data/vendor/plugins/grit/test/dot_git/objects/3d/e0ed396b3309d3135dd608633c7e24d7eb7a78 +0 -0
  1613. data/vendor/plugins/grit/test/dot_git/objects/3e/4e5142403fdafa5daaf580ad2754bd5469f297 +0 -0
  1614. data/vendor/plugins/grit/test/dot_git/objects/3e/8b951715d51b517615319e74f1ff5f143bdd33 +0 -0
  1615. data/vendor/plugins/grit/test/dot_git/objects/3e/c671d1b0661dec389ec97ac49729be98a98363 +0 -0
  1616. data/vendor/plugins/grit/test/dot_git/objects/3f/09b8a94def39594ff66018a0267e3a095f0166 +0 -0
  1617. data/vendor/plugins/grit/test/dot_git/objects/3f/a4e130fa18c92e3030d4accb5d3e0cadd40157 +0 -0
  1618. data/vendor/plugins/grit/test/dot_git/objects/3f/a8b0bb7b1158b3d75cb01a338c688465266ae8 +0 -0
  1619. data/vendor/plugins/grit/test/dot_git/objects/3f/ab2e2576d21e160f65e0f037ef49932153b750 +0 -0
  1620. data/vendor/plugins/grit/test/dot_git/objects/3f/ef1de16cfa99882a900d682c98bf4cdbb0bd1e +0 -0
  1621. data/vendor/plugins/grit/test/dot_git/objects/40/1b901ae82016d0e387f3369e2c73b9729fa960 +0 -0
  1622. data/vendor/plugins/grit/test/dot_git/objects/40/5da6eab49ad6c40202515218685cc5e47ba191 +0 -0
  1623. data/vendor/plugins/grit/test/dot_git/objects/40/878bdc3b0b546884c23cc56e36bb01bca26360 +0 -0
  1624. data/vendor/plugins/grit/test/dot_git/objects/40/98e7e0b3ddb23cbb02faed6443bb662103cca9 +0 -0
  1625. data/vendor/plugins/grit/test/dot_git/objects/40/b5472e26b885b5578a748a7199a49f78fc640f +0 -0
  1626. data/vendor/plugins/grit/test/dot_git/objects/40/c2094b4c5f49c7a75493c3b60718f692238689 +0 -0
  1627. data/vendor/plugins/grit/test/dot_git/objects/40/fbcace81729947e3b6a50db55f20e3b0b8619c +0 -0
  1628. data/vendor/plugins/grit/test/dot_git/objects/40/fccf8916dbf1a607b69cb308affb800b24eff8 +1 -0
  1629. data/vendor/plugins/grit/test/dot_git/objects/41/773794cb94bc0b504c25fe2c7160a4297ac722 +0 -0
  1630. data/vendor/plugins/grit/test/dot_git/objects/41/96d4ceab2df8250b126c1fefe537aed40ba3b8 +0 -0
  1631. data/vendor/plugins/grit/test/dot_git/objects/42/3bd8e89cc0374ecbac89cb81f4d7994971373e +0 -0
  1632. data/vendor/plugins/grit/test/dot_git/objects/42/55d57961f71cbbf37c4895cf2e7944cfb3c920 +0 -0
  1633. data/vendor/plugins/grit/test/dot_git/objects/42/77d827856344ecab7a8cd9b4cc8de189a058b6 +0 -0
  1634. data/vendor/plugins/grit/test/dot_git/objects/42/8b046f3d44ee60a2707cd0ec870f214d52b51d +0 -0
  1635. data/vendor/plugins/grit/test/dot_git/objects/42/e9f36ecb27ec85cd80085f1e9848158af142cc +0 -0
  1636. data/vendor/plugins/grit/test/dot_git/objects/42/ea225300e8cf78bb8dee7867cd9b9dd62a2e42 +0 -0
  1637. data/vendor/plugins/grit/test/dot_git/objects/43/66fbe9656ed24eac8afa838af2e6872e0c0f50 +0 -0
  1638. data/vendor/plugins/grit/test/dot_git/objects/43/67a306774650effecbaf8cd100f2d01d53c736 +0 -0
  1639. data/vendor/plugins/grit/test/dot_git/objects/43/990427a4d4cf451298aa2adff627c97c7fbbba +0 -0
  1640. data/vendor/plugins/grit/test/dot_git/objects/44/4120068cf48a97010e1291f7a6b148dc7db3fe +0 -0
  1641. data/vendor/plugins/grit/test/dot_git/objects/44/6235527422ab47a85897515acf1ba002f7d621 +0 -0
  1642. data/vendor/plugins/grit/test/dot_git/objects/44/c1bb76bef6677159624272045dbbd9e1be3de6 +0 -0
  1643. data/vendor/plugins/grit/test/dot_git/objects/45/7135f1291992d204581e4f70019268d2b41f88 +0 -0
  1644. data/vendor/plugins/grit/test/dot_git/objects/45/7629071e6056bf4a8595a6f171b3404892d528 +0 -0
  1645. data/vendor/plugins/grit/test/dot_git/objects/46/ccdb048ecf2b9452dc2e0174dfdba426df0f62 +0 -0
  1646. data/vendor/plugins/grit/test/dot_git/objects/46/d3b63432ebd26da44b9b5f4463ecab8610003c +0 -0
  1647. data/vendor/plugins/grit/test/dot_git/objects/47/07d2feacccdc27e3ae08b6557313c66ad792cb +0 -0
  1648. data/vendor/plugins/grit/test/dot_git/objects/47/36537c04c8c3d07d91d2b3d7d3ec9f772bc208 +0 -0
  1649. data/vendor/plugins/grit/test/dot_git/objects/47/5cda8f04478f1f3eccdfe350cef3beb5854267 +0 -0
  1650. data/vendor/plugins/grit/test/dot_git/objects/47/f94fe43e503475c4699b9bab535949d45786da +0 -0
  1651. data/vendor/plugins/grit/test/dot_git/objects/48/18f5a5bf96cc367861b358578bad5d14bc1ad9 +0 -0
  1652. data/vendor/plugins/grit/test/dot_git/objects/49/9167ba61ed6a925dbf1d801a417fed31325e79 +0 -0
  1653. data/vendor/plugins/grit/test/dot_git/objects/49/c183e5076a69d95cb3267d65b15f07e8ef3dd0 +0 -0
  1654. data/vendor/plugins/grit/test/dot_git/objects/4a/4960fbcaa4f2b5f540c2417a0e6e3e13cd21e5 +0 -0
  1655. data/vendor/plugins/grit/test/dot_git/objects/4a/4aadbb8d70d1a8f1e0494d93c51cf0a70c73c7 +0 -0
  1656. data/vendor/plugins/grit/test/dot_git/objects/4b/69268fd027874cdc84e08be1a7b0adabe29bd6 +0 -0
  1657. data/vendor/plugins/grit/test/dot_git/objects/4b/6a031b5bca40f2d1197e0d0a8c053e48f2d1b8 +0 -0
  1658. data/vendor/plugins/grit/test/dot_git/objects/4b/ac1a816ea4c330c0a60a7faead02c80d216bf9 +1 -0
  1659. data/vendor/plugins/grit/test/dot_git/objects/4b/c83809c12606b8673503ea595bc9dc926a4f85 +0 -0
  1660. data/vendor/plugins/grit/test/dot_git/objects/4c/5d14c6b35b4b9f9f8a10db253e3a61968fe0d5 +0 -0
  1661. data/vendor/plugins/grit/test/dot_git/objects/4c/721af72f40368c4af46c04956fe6553505b03e +0 -0
  1662. data/vendor/plugins/grit/test/dot_git/objects/4c/765b6172fefd3aa2f2462f40b2c5614f855e33 +0 -0
  1663. data/vendor/plugins/grit/test/dot_git/objects/4c/82aff6d42a4a658102f617678bfd9653e0a997 +0 -0
  1664. data/vendor/plugins/grit/test/dot_git/objects/4c/c3aff3a2c0395c6acba1f57f3adf77a254847f +0 -0
  1665. data/vendor/plugins/grit/test/dot_git/objects/4c/c4d71390cf1c9fbe9543b5da0cb0506fc354da +0 -0
  1666. data/vendor/plugins/grit/test/dot_git/objects/4c/ee78c5ee3ab8591996a1b2f03fd20c78a33491 +0 -0
  1667. data/vendor/plugins/grit/test/dot_git/objects/4d/15668f43bd3d20dea783448a37421254211974 +0 -0
  1668. data/vendor/plugins/grit/test/dot_git/objects/4d/251e90cddd2da086b1a094a40877f94699c97b +0 -0
  1669. data/vendor/plugins/grit/test/dot_git/objects/4d/35b41a2bcd2d028a9abffa2218239d0b1a04dd +0 -0
  1670. data/vendor/plugins/grit/test/dot_git/objects/4d/4af31ee8fb34570f7c50474042246adf5f9536 +1 -0
  1671. data/vendor/plugins/grit/test/dot_git/objects/4d/d750e01c939c69940c3633ec65c18c97e9480f +0 -0
  1672. data/vendor/plugins/grit/test/dot_git/objects/4d/fbecaffa3aab6f4f8823db875466a4e079d311 +0 -0
  1673. data/vendor/plugins/grit/test/dot_git/objects/4e/0942f5895107d26ed935f94720ce8fcb5677f7 +0 -0
  1674. data/vendor/plugins/grit/test/dot_git/objects/4e/1ba5a8835b0208f7b4b8832a3ac1f11c5923ad +0 -0
  1675. data/vendor/plugins/grit/test/dot_git/objects/4e/6593b191405aec3d286b1e5e61ef864a47e779 +0 -0
  1676. data/vendor/plugins/grit/test/dot_git/objects/4e/749569e29fd394f47f679262bf138307352c19 +0 -0
  1677. data/vendor/plugins/grit/test/dot_git/objects/4e/9d21828e2e5003af0be5bb895350c428e6cfac +0 -0
  1678. data/vendor/plugins/grit/test/dot_git/objects/4e/f86eb244bbbde9b793fd8cfab92042adb51485 +6 -0
  1679. data/vendor/plugins/grit/test/dot_git/objects/4f/09b8bf59198a887fb97de69dc6d8385ee74756 +0 -0
  1680. data/vendor/plugins/grit/test/dot_git/objects/4f/72728413e0e66b7281b979dce17eadc2fd8c60 +0 -0
  1681. data/vendor/plugins/grit/test/dot_git/objects/4f/ccb01f2d6a0ba681a5cc489af24adacfdab09a +0 -0
  1682. data/vendor/plugins/grit/test/dot_git/objects/4f/f1303d44eba1b583ea2a3b7765153ee1743e61 +0 -0
  1683. data/vendor/plugins/grit/test/dot_git/objects/50/1b7e3e4924d35febd00c13edf3cb513695b09b +0 -0
  1684. data/vendor/plugins/grit/test/dot_git/objects/50/3e3076ad906d21bda16fa7dcd22eab19847c96 +0 -0
  1685. data/vendor/plugins/grit/test/dot_git/objects/50/40f4c67674acda890725edcd0425d02093107c +0 -0
  1686. data/vendor/plugins/grit/test/dot_git/objects/50/87e423df619ef636e056e28a24f8cb7b873adf +0 -0
  1687. data/vendor/plugins/grit/test/dot_git/objects/51/28cc1329ea4d1a14910c23fe2b76d669c27dce +0 -0
  1688. data/vendor/plugins/grit/test/dot_git/objects/51/48455670cac62caf07b4104b898982a2ee1d27 +0 -0
  1689. data/vendor/plugins/grit/test/dot_git/objects/51/84bca98dfa4da277688eb0cf5d4c3c30049dbc +0 -0
  1690. data/vendor/plugins/grit/test/dot_git/objects/52/0dad6b8078f0ec22714905c569a55adb18207c +0 -0
  1691. data/vendor/plugins/grit/test/dot_git/objects/52/7c32e1f12197b30c91a0b0c47492ee5f84d116 +0 -0
  1692. data/vendor/plugins/grit/test/dot_git/objects/52/985c69fce3578762db2c549414d93c5344973f +0 -0
  1693. data/vendor/plugins/grit/test/dot_git/objects/52/a0ed389b902d699b002b4b974d5a422f5d648f +0 -0
  1694. data/vendor/plugins/grit/test/dot_git/objects/52/c074ceaeeae3ad8faba5eaa883b29d47e3753d +0 -0
  1695. data/vendor/plugins/grit/test/dot_git/objects/52/e6e4c8d61116b7306af1e3a83330e9b2f2b22e +0 -0
  1696. data/vendor/plugins/grit/test/dot_git/objects/52/ebe29d5aab2f2d13bff0300809349e47a93578 +0 -0
  1697. data/vendor/plugins/grit/test/dot_git/objects/52/f056f557e9c34c1d410e38f28fb0ff3eb8cf8a +0 -0
  1698. data/vendor/plugins/grit/test/dot_git/objects/53/029523a88fbcc802bc09d177b250779077da61 +0 -0
  1699. data/vendor/plugins/grit/test/dot_git/objects/53/94a7335809300349d81816fcd5c7e4c838025b +0 -0
  1700. data/vendor/plugins/grit/test/dot_git/objects/53/bed2e68961f68a0d28589ab78ac3cddea26870 +0 -0
  1701. data/vendor/plugins/grit/test/dot_git/objects/53/d7b4bf2a0de4f29efbcf9cc5151e6599bfb180 +0 -0
  1702. data/vendor/plugins/grit/test/dot_git/objects/53/e7f70cb60a4a2c42e0c16f9eac862d527ef2b5 +0 -0
  1703. data/vendor/plugins/grit/test/dot_git/objects/54/1264963de31abc20ae319ffb81afb894a58777 +0 -0
  1704. data/vendor/plugins/grit/test/dot_git/objects/55/1240c0e157f1f2758ca49851278b209229067a +0 -0
  1705. data/vendor/plugins/grit/test/dot_git/objects/55/4dd421736514dbff8ee54bcd0fdb14c6066ec5 +0 -0
  1706. data/vendor/plugins/grit/test/dot_git/objects/55/551f97b57dda2e947f0fd75097a712f3c72fa4 +0 -0
  1707. data/vendor/plugins/grit/test/dot_git/objects/55/9b8493ad088486436a0e5569abd24005bd00b8 +0 -0
  1708. data/vendor/plugins/grit/test/dot_git/objects/55/a588a07006a47eaf9805311e73a5c6c8516344 +0 -0
  1709. data/vendor/plugins/grit/test/dot_git/objects/55/b1da2f93e556f8ff2ab9063d73b1ff633f2954 +0 -0
  1710. data/vendor/plugins/grit/test/dot_git/objects/56/3e1a6828c118fda28f11a33f9349bc15dd2607 +0 -0
  1711. data/vendor/plugins/grit/test/dot_git/objects/56/47e47c36c08268426e558565baf40ab240fe9e +0 -0
  1712. data/vendor/plugins/grit/test/dot_git/objects/56/cfafc365c69aa55f9558a59e6d909d2f6822d9 +0 -0
  1713. data/vendor/plugins/grit/test/dot_git/objects/56/d26caca2e437e35d35cf42f782f8c74b283df2 +0 -0
  1714. data/vendor/plugins/grit/test/dot_git/objects/56/d65dce3016a197a757b693799847d2fddbb04e +0 -0
  1715. data/vendor/plugins/grit/test/dot_git/objects/57/639e8ddac5fff2b7693c462538babc53ef81d4 +0 -0
  1716. data/vendor/plugins/grit/test/dot_git/objects/57/771c0727c589e983019a5a076190d156c5ef1c +0 -0
  1717. data/vendor/plugins/grit/test/dot_git/objects/57/e4351700dc0a81ae1aa812484eb0551b1a0866 +1 -0
  1718. data/vendor/plugins/grit/test/dot_git/objects/58/223b18290bf0265b04b3697f729dba40f9e7cc +1 -0
  1719. data/vendor/plugins/grit/test/dot_git/objects/58/40f249cdfffd086dbad61feea0c3a8a4b3d109 +0 -0
  1720. data/vendor/plugins/grit/test/dot_git/objects/58/4b8f537c2d89e0e47d6bbde2627ea6f01d4a7f +0 -0
  1721. data/vendor/plugins/grit/test/dot_git/objects/58/5c2c53d923fa6b480ae2ddc2b820b317b1403d +0 -0
  1722. data/vendor/plugins/grit/test/dot_git/objects/58/628e6483b6cc5cc721f1ee6d398bd0c2a87312 +0 -0
  1723. data/vendor/plugins/grit/test/dot_git/objects/58/74dd25ed52fa87b8597015a538b56ab0100d55 +0 -0
  1724. data/vendor/plugins/grit/test/dot_git/objects/58/8455d11d4347b9ac17d31205e8f638533727f4 +0 -0
  1725. data/vendor/plugins/grit/test/dot_git/objects/58/872e956be186c8fc87efaad3175d4ad9324283 +0 -0
  1726. data/vendor/plugins/grit/test/dot_git/objects/58/b73b8c03710dbc09303ca0a6a6bf0041481ac8 +0 -0
  1727. data/vendor/plugins/grit/test/dot_git/objects/58/f04c947cbdd1f0c2782c1c5575328680790193 +0 -0
  1728. data/vendor/plugins/grit/test/dot_git/objects/59/032046844377888d7f0d53e8bf49e469321ebf +0 -0
  1729. data/vendor/plugins/grit/test/dot_git/objects/59/96606c30d29c0bc97f67b18a0f255f87cc2da3 +0 -0
  1730. data/vendor/plugins/grit/test/dot_git/objects/59/eb45a3f0a6b80dbbb7b99024e55227a4086eba +0 -0
  1731. data/vendor/plugins/grit/test/dot_git/objects/59/ee1a70e83c28f2d74843b91e39e557340e6172 +0 -0
  1732. data/vendor/plugins/grit/test/dot_git/objects/59/ef600ad21001772c04e540918f28c00ea71b39 +0 -0
  1733. data/vendor/plugins/grit/test/dot_git/objects/5a/6c2633eb0410a8651550d1f894c0a06fd4f92d +0 -0
  1734. data/vendor/plugins/grit/test/dot_git/objects/5b/02a248683c285d22af6640765232a018cd666c +0 -0
  1735. data/vendor/plugins/grit/test/dot_git/objects/5b/2741fde089f266afca1adcfdc4eeb8dfe4a463 +0 -0
  1736. data/vendor/plugins/grit/test/dot_git/objects/5b/9e2e35bffc027b09677112d4bd1b3af4d5c313 +0 -0
  1737. data/vendor/plugins/grit/test/dot_git/objects/5b/c6f75b8462a5d6190fdd50f3e74cf9e1dfeed3 +0 -0
  1738. data/vendor/plugins/grit/test/dot_git/objects/5b/f84617e57e85ca06eb64271e0cabfdf8cd925f +0 -0
  1739. data/vendor/plugins/grit/test/dot_git/objects/5b/fd1435a75583e9dd95536f2da3882f41604727 +0 -0
  1740. data/vendor/plugins/grit/test/dot_git/objects/5c/2c0c973c27c8ee488d48bfd12b6e96d202381c +0 -0
  1741. data/vendor/plugins/grit/test/dot_git/objects/5c/72f12ea25d302ad4a4ceb9f5f9f033cbf3fffc +1 -0
  1742. data/vendor/plugins/grit/test/dot_git/objects/5c/8279a64dcfe94e59973fd0125cf5824296623a +0 -0
  1743. data/vendor/plugins/grit/test/dot_git/objects/5c/a47fc1a9590937f34809ea48f5bd873b218317 +0 -0
  1744. data/vendor/plugins/grit/test/dot_git/objects/5d/6109a9e5ef1f941a39144f14340ceef80ff331 +0 -0
  1745. data/vendor/plugins/grit/test/dot_git/objects/5d/66d8da0c12ac0eca4e8c6e766c82b74593ec88 +0 -0
  1746. data/vendor/plugins/grit/test/dot_git/objects/5d/84fe98507e47d78953bd0208ae063f06e52b1f +0 -0
  1747. data/vendor/plugins/grit/test/dot_git/objects/5d/a88f7992de649d8eae9529095b419e8a70f026 +0 -0
  1748. data/vendor/plugins/grit/test/dot_git/objects/5d/c9b501f6b70d5aa3d6420fa5f35bb0a2154a6a +0 -0
  1749. data/vendor/plugins/grit/test/dot_git/objects/5d/e68783db60cc4b7361b8639a73dda527b50b58 +0 -0
  1750. data/vendor/plugins/grit/test/dot_git/objects/5d/ed8819f036921e27f2668819236725c1bc793e +0 -0
  1751. data/vendor/plugins/grit/test/dot_git/objects/5d/fc38afe33e85878cd25a50ad3f18949372afbe +0 -0
  1752. data/vendor/plugins/grit/test/dot_git/objects/5e/2e8449f6aea6b4ca05a1bca0478c1ddfd5535a +0 -0
  1753. data/vendor/plugins/grit/test/dot_git/objects/5e/329b884e07932517bf9909303f6017cb178a25 +0 -0
  1754. data/vendor/plugins/grit/test/dot_git/objects/5e/79da1a7446822b46659edf25e9144816fa0454 +0 -0
  1755. data/vendor/plugins/grit/test/dot_git/objects/5e/d3c8d603d0ee1d52e0d512123e11bc892ec244 +0 -0
  1756. data/vendor/plugins/grit/test/dot_git/objects/5f/04dc6aa3c9ac971fb0c6720602be9c120c16f4 +0 -0
  1757. data/vendor/plugins/grit/test/dot_git/objects/5f/701c07e50ba10b912455198fcfc2392e29bd44 +0 -0
  1758. data/vendor/plugins/grit/test/dot_git/objects/5f/7950617f2d778d6209a11cb13e511ae4fb845f +0 -0
  1759. data/vendor/plugins/grit/test/dot_git/objects/5f/88d05fb1efcdb4d1c825b3590f6a941d878048 +1 -0
  1760. data/vendor/plugins/grit/test/dot_git/objects/5f/c8689d7e4cb9dc91900539ff0562130cf90fdb +0 -0
  1761. data/vendor/plugins/grit/test/dot_git/objects/5f/ec1ca382b811bf51abc319eb929cd7553842e8 +0 -0
  1762. data/vendor/plugins/grit/test/dot_git/objects/60/390f7ddecc01fafb62b7d891f93ea23498acb8 +0 -0
  1763. data/vendor/plugins/grit/test/dot_git/objects/60/7d0c6725b82a2b8ad5977fdf08f7319cfb5b2b +0 -0
  1764. data/vendor/plugins/grit/test/dot_git/objects/61/0bed6eb24528c64369a7eb731801d1111bdf4d +0 -0
  1765. data/vendor/plugins/grit/test/dot_git/objects/61/45457b008cd93e22a44f4cfee2b65f05808d17 +0 -0
  1766. data/vendor/plugins/grit/test/dot_git/objects/61/7d5fec3e4ee86080adc1dedd4ef91cc1b515d4 +0 -0
  1767. data/vendor/plugins/grit/test/dot_git/objects/62/d812d2a42d5ad62cbcef99a81749d1ed68f2c2 +0 -0
  1768. data/vendor/plugins/grit/test/dot_git/objects/63/142041870ce53f5ef4451b8cf021151e145054 +0 -0
  1769. data/vendor/plugins/grit/test/dot_git/objects/63/2ff9f2fc143cb67362b8267d57ff969d91ce85 +0 -0
  1770. data/vendor/plugins/grit/test/dot_git/objects/63/5e6c9e4f53250d4aae886ead0a080d81e0af2c +0 -0
  1771. data/vendor/plugins/grit/test/dot_git/objects/64/29532bf470fad3153093c7f4b10f69ee82ae18 +0 -0
  1772. data/vendor/plugins/grit/test/dot_git/objects/64/2b8924b35c87dd48f07bbdb6d0deb1ae5495dc +0 -0
  1773. data/vendor/plugins/grit/test/dot_git/objects/64/3cc80fe2609914350d4a5bde3cc1c4d7197dc2 +0 -0
  1774. data/vendor/plugins/grit/test/dot_git/objects/64/53d33435bcf98c2736530f3fdd4f74a2cfb974 +0 -0
  1775. data/vendor/plugins/grit/test/dot_git/objects/64/e717a84fb544375169f554be6b922aba692aa9 +0 -0
  1776. data/vendor/plugins/grit/test/dot_git/objects/64/ec7cc059b0db49a529e51823891aef4d8bf338 +0 -0
  1777. data/vendor/plugins/grit/test/dot_git/objects/64/ef0dfa8ef722d4caae716111efb647a1060405 +0 -0
  1778. data/vendor/plugins/grit/test/dot_git/objects/65/46414b519e280abb855f6231e8da5287c7a47d +0 -0
  1779. data/vendor/plugins/grit/test/dot_git/objects/65/d911ebcec541a3d3aecfde6d067b979e6e5086 +0 -0
  1780. data/vendor/plugins/grit/test/dot_git/objects/65/fded76255bcab79ffa0f0a8d0c914b4056b380 +0 -0
  1781. data/vendor/plugins/grit/test/dot_git/objects/66/1b95aeb34878aeacb70d74bf1c577b2cc461c3 +0 -0
  1782. data/vendor/plugins/grit/test/dot_git/objects/66/34746a6fe80824066823779491b252ae012bd6 +0 -0
  1783. data/vendor/plugins/grit/test/dot_git/objects/66/51ea0653b01a5f73d9ae1593c2d8a7369a74d9 +0 -0
  1784. data/vendor/plugins/grit/test/dot_git/objects/66/5fa9d3c28c07aa174637aca8252f88e7ed15ff +0 -0
  1785. data/vendor/plugins/grit/test/dot_git/objects/66/7e57234226564739a618858668734a6b244876 +0 -0
  1786. data/vendor/plugins/grit/test/dot_git/objects/66/893c143a41615e9d2690f179308fc2c9ea2e92 +0 -0
  1787. data/vendor/plugins/grit/test/dot_git/objects/66/9224346dd756bf1d344d5a8b233805fa7e46e1 +0 -0
  1788. data/vendor/plugins/grit/test/dot_git/objects/66/99b0c4524bcdf045b66498ef281f863fc10628 +0 -0
  1789. data/vendor/plugins/grit/test/dot_git/objects/66/de9d57e1401ecd2cca3cd6487fb4ef348f5911 +0 -0
  1790. data/vendor/plugins/grit/test/dot_git/objects/66/e81f2947ee43f489386e4839edbc51bbaa3200 +0 -0
  1791. data/vendor/plugins/grit/test/dot_git/objects/67/3f9b7a23a3fffe64f9ce4701914a110d70172b +0 -0
  1792. data/vendor/plugins/grit/test/dot_git/objects/67/948a3f3783988c41844a3e3cba519563a6b6ae +0 -0
  1793. data/vendor/plugins/grit/test/dot_git/objects/67/9a2f922a0937fc209a3ae77bffcc9fda6c49d0 +0 -0
  1794. data/vendor/plugins/grit/test/dot_git/objects/68/0d86dd159ecd96257a223e3e36f820ececa886 +0 -0
  1795. data/vendor/plugins/grit/test/dot_git/objects/68/ad8c20d09837654709a9511a22d719631606d4 +0 -0
  1796. data/vendor/plugins/grit/test/dot_git/objects/69/51fae70af8ff7ee84d7c3f9f0bdc99214451ed +0 -0
  1797. data/vendor/plugins/grit/test/dot_git/objects/69/b1ef658dcf275374265786e3ef979e1ce7acad +0 -0
  1798. data/vendor/plugins/grit/test/dot_git/objects/69/d8022883cf48368b3559b6e8ce2ba460e620fa +0 -0
  1799. data/vendor/plugins/grit/test/dot_git/objects/6a/0f0474e45585c06d7caac652d252483187d68e +0 -0
  1800. data/vendor/plugins/grit/test/dot_git/objects/6a/17ba4e3597af94f36b95350d0cde8d1a580db8 +0 -0
  1801. data/vendor/plugins/grit/test/dot_git/objects/6a/20b5c1026c8229c32f870c92e8f1031da099e8 +0 -0
  1802. data/vendor/plugins/grit/test/dot_git/objects/6a/4e6a2f37fc02e35ef674d98097c8661c37360c +0 -0
  1803. data/vendor/plugins/grit/test/dot_git/objects/6a/a4e1aa5e7dbd47c73b28ed8ca30bcab93b4638 +0 -0
  1804. data/vendor/plugins/grit/test/dot_git/objects/6a/bc261d2e17d6200800890bf6db1e9bd0d9e764 +0 -0
  1805. data/vendor/plugins/grit/test/dot_git/objects/6b/7b8ca7b28c4c62f8a25ccccb4d6ade9e46c2d7 +0 -0
  1806. data/vendor/plugins/grit/test/dot_git/objects/6b/86465bf8bfad93a003413d0fe62af740f02f94 +0 -0
  1807. data/vendor/plugins/grit/test/dot_git/objects/6b/8c15931c3bc81f0825cbfbeeca79c8a6c3fe82 +0 -0
  1808. data/vendor/plugins/grit/test/dot_git/objects/6b/91775915c89f4141223d3ff5648281347276d1 +0 -0
  1809. data/vendor/plugins/grit/test/dot_git/objects/6b/c9cacf63f0e9783c9222583b3f836a1fd14243 +0 -0
  1810. data/vendor/plugins/grit/test/dot_git/objects/6c/023c8d73917e5c90651fb720269884befdb306 +0 -0
  1811. data/vendor/plugins/grit/test/dot_git/objects/6c/1c2608eaf29388ff986d825f413aefacde71b6 +0 -0
  1812. data/vendor/plugins/grit/test/dot_git/objects/6c/4b8c2fd3da22ef73e392683f926ae3b7494e57 +0 -0
  1813. data/vendor/plugins/grit/test/dot_git/objects/6c/57ae690bc5271210392920898240c13f4e5634 +0 -0
  1814. data/vendor/plugins/grit/test/dot_git/objects/6c/b49e0e6182741e6fd69d9cf9c162a1bd26be8c +0 -0
  1815. data/vendor/plugins/grit/test/dot_git/objects/6c/b6584d6d4c398766ba42bd0a4f3cb620b62b95 +0 -0
  1816. data/vendor/plugins/grit/test/dot_git/objects/6c/d7d640a01480625cdf36af25696eea32a7a5ce +0 -0
  1817. data/vendor/plugins/grit/test/dot_git/objects/6c/e9e816cf0f060838d5f34ecf284ad2458f806f +0 -0
  1818. data/vendor/plugins/grit/test/dot_git/objects/6d/50eaf75755f91cd174bd97a6fb26574d42a972 +0 -0
  1819. data/vendor/plugins/grit/test/dot_git/objects/6d/7b878255abaea31a1bd43cfacd89727a40b334 +0 -0
  1820. data/vendor/plugins/grit/test/dot_git/objects/6e/770404d1e88f7b87a687bdba3e4063e1b84c43 +0 -0
  1821. data/vendor/plugins/grit/test/dot_git/objects/6e/9dc33da171c918556c6474b9c1ff075a4b4667 +0 -0
  1822. data/vendor/plugins/grit/test/dot_git/objects/6e/af969270949b97cde160323221579ebf7d0ae6 +0 -0
  1823. data/vendor/plugins/grit/test/dot_git/objects/6e/ea8c4874e378d50b39180173efd8540a3dad17 +0 -0
  1824. data/vendor/plugins/grit/test/dot_git/objects/6e/fe28fff834a94fbc20cac51fe9cd65ecc78d43 +0 -0
  1825. data/vendor/plugins/grit/test/dot_git/objects/6f/6906254fa5d16d54cd4511e79acc3ee79da96c +0 -0
  1826. data/vendor/plugins/grit/test/dot_git/objects/6f/ba35bc25c85a6950fe9ad5c4713fee174dcd1e +0 -0
  1827. data/vendor/plugins/grit/test/dot_git/objects/70/03498f1263cfdbc14d0ba3f5107959c4ccff7a +0 -0
  1828. data/vendor/plugins/grit/test/dot_git/objects/70/7d0fbd934e645980235d52112ce9ed8a8da14c +0 -0
  1829. data/vendor/plugins/grit/test/dot_git/objects/70/9df040a86df6a593c7f3247202fb9d2103914b +0 -0
  1830. data/vendor/plugins/grit/test/dot_git/objects/70/a5bb43f72b4a6075e0e2bf83e5abafee417d01 +0 -0
  1831. data/vendor/plugins/grit/test/dot_git/objects/71/1cf6f726379a9c1a83eea1fae4ec3a10af28f1 +0 -0
  1832. data/vendor/plugins/grit/test/dot_git/objects/71/8053589f8cff63551986b4961853f16903eda2 +0 -0
  1833. data/vendor/plugins/grit/test/dot_git/objects/71/a6696da9143512b4f2b6d7474d58835c9dea6d +0 -0
  1834. data/vendor/plugins/grit/test/dot_git/objects/71/b079961daac90fe8402177b87a08fa87a86ab7 +0 -0
  1835. data/vendor/plugins/grit/test/dot_git/objects/71/be442fd1a2b656e262f5a50268e57f3d64ec68 +0 -0
  1836. data/vendor/plugins/grit/test/dot_git/objects/71/eb51ed930e26754304f1470cfde1d1675cf2be +0 -0
  1837. data/vendor/plugins/grit/test/dot_git/objects/72/1cf10ace0fad67e9d7ef5024bbfdea99d54b6d +0 -0
  1838. data/vendor/plugins/grit/test/dot_git/objects/72/944ef1b06abd709ae708d6be3426937f248a32 +0 -0
  1839. data/vendor/plugins/grit/test/dot_git/objects/72/c02e7e07d2284fe144183529f9b5ca45027a99 +0 -0
  1840. data/vendor/plugins/grit/test/dot_git/objects/72/ec1f22a7b22aca941d9483e3b9fec79b46c8c2 +0 -0
  1841. data/vendor/plugins/grit/test/dot_git/objects/73/1501ae418cdc7babb9a86f3cb869daf11c28e8 +0 -0
  1842. data/vendor/plugins/grit/test/dot_git/objects/73/167b43c845d98eaa2040c701334f0c6f24a69c +0 -0
  1843. data/vendor/plugins/grit/test/dot_git/objects/73/5942ed3013eb862658960cf891e4c7de0f511e +0 -0
  1844. data/vendor/plugins/grit/test/dot_git/objects/73/64a83cdea4b92b1604c498d9e82f1f16a80778 +0 -0
  1845. data/vendor/plugins/grit/test/dot_git/objects/73/6b8e522a9076b3622c0f45f54b4ae2b033ce8f +0 -0
  1846. data/vendor/plugins/grit/test/dot_git/objects/73/84eef4cb81eca27a0e7996bf7305f77438ae9e +0 -0
  1847. data/vendor/plugins/grit/test/dot_git/objects/73/d04ec8b76b7eb2cacdd6fdd5c34bd975ebb04e +0 -0
  1848. data/vendor/plugins/grit/test/dot_git/objects/73/e65a8a571f4319984cf694e45f37186f55fd0a +0 -0
  1849. data/vendor/plugins/grit/test/dot_git/objects/73/f11a5cf43de10f70cbf9cc1dfd1f34fbf918e3 +0 -0
  1850. data/vendor/plugins/grit/test/dot_git/objects/74/30b0ca149b99aad6bec0e5ffdab3f602648ceb +1 -0
  1851. data/vendor/plugins/grit/test/dot_git/objects/74/8a7d9c0d07f08f5ad23a0188cd017e2f1d9730 +0 -0
  1852. data/vendor/plugins/grit/test/dot_git/objects/74/e48401ad6085171109f933862cb87c98cf1132 +0 -0
  1853. data/vendor/plugins/grit/test/dot_git/objects/75/20a2be3072026e93bafbcb83245de447c02211 +0 -0
  1854. data/vendor/plugins/grit/test/dot_git/objects/75/7a9ec68a0a196a196ac5b42c13a45de2a39e3b +0 -0
  1855. data/vendor/plugins/grit/test/dot_git/objects/75/f3bbdeec9b0ce7b4dbf652348f7105099df310 +0 -0
  1856. data/vendor/plugins/grit/test/dot_git/objects/76/517e7150248161747a113dd311b5f2e5112b7e +0 -0
  1857. data/vendor/plugins/grit/test/dot_git/objects/76/940ef6ba3d8d1048e6059d48417279b74e057f +0 -0
  1858. data/vendor/plugins/grit/test/dot_git/objects/76/aa89f0b0bc7e92b92758b7e6520a8dfd086739 +0 -0
  1859. data/vendor/plugins/grit/test/dot_git/objects/76/ac881b1ec4cd0b8f3ed71bc90f915ac465042c +0 -0
  1860. data/vendor/plugins/grit/test/dot_git/objects/76/b3f0be5ec5ff6c63e471f4dc696917d64de92d +0 -0
  1861. data/vendor/plugins/grit/test/dot_git/objects/76/d54fdb3b93105642dd779a429b81a32d4a4d07 +0 -0
  1862. data/vendor/plugins/grit/test/dot_git/objects/77/aa887449c28a922a660b2bb749e4127f7664e5 +0 -0
  1863. data/vendor/plugins/grit/test/dot_git/objects/77/edfa1c893d3e8d80881ff5eb56dc9d10fd944b +0 -0
  1864. data/vendor/plugins/grit/test/dot_git/objects/78/06987ac105edba10fe27c9a9f415dab7c0f9b8 +0 -0
  1865. data/vendor/plugins/grit/test/dot_git/objects/78/3367a2b50a733782aec243f1e8760effd62769 +0 -0
  1866. data/vendor/plugins/grit/test/dot_git/objects/78/38858f15204b6c4b0f076c47d0c825350a845f +0 -0
  1867. data/vendor/plugins/grit/test/dot_git/objects/78/447092f23b8719ca1d548075f46174d1f18269 +0 -0
  1868. data/vendor/plugins/grit/test/dot_git/objects/78/591e22e8e9fd665bf9bf955ecd7601bc10efc5 +0 -0
  1869. data/vendor/plugins/grit/test/dot_git/objects/78/99ce846a293ff465fd391e790a8c7e6d896cbf +0 -0
  1870. data/vendor/plugins/grit/test/dot_git/objects/78/d03cddc9d41d27792e9c84ce3174ee141294c9 +0 -0
  1871. data/vendor/plugins/grit/test/dot_git/objects/78/e0f291158261fcdb038e8cd7c09903b4c95729 +0 -0
  1872. data/vendor/plugins/grit/test/dot_git/objects/78/e118de9e47c4652608412c27425c01764317b5 +0 -0
  1873. data/vendor/plugins/grit/test/dot_git/objects/79/0005c92fc8f75b3d194ae031bb89b041eecb04 +0 -0
  1874. data/vendor/plugins/grit/test/dot_git/objects/79/0e7b517e808fb9ddbc67ac1e6b4c02bd4f302a +0 -0
  1875. data/vendor/plugins/grit/test/dot_git/objects/79/657d266b1abff32fb3177c9e383f670dc285c0 +0 -0
  1876. data/vendor/plugins/grit/test/dot_git/objects/79/6a9d3b5c3ad98586fa0e68f91ddb9d317600ab +0 -0
  1877. data/vendor/plugins/grit/test/dot_git/objects/79/8078f16e07ac653bd09edb381b77fd70aa434f +0 -0
  1878. data/vendor/plugins/grit/test/dot_git/objects/79/9bfeaa86d66c4e1638f9c777cd823329ce532e +0 -0
  1879. data/vendor/plugins/grit/test/dot_git/objects/79/b2b708e1b11d83d8d169bae09d8291698d5365 +0 -0
  1880. data/vendor/plugins/grit/test/dot_git/objects/79/d5f65d307915105523c1267ee2457c853f6d76 +0 -0
  1881. data/vendor/plugins/grit/test/dot_git/objects/7a/087349e9f350ece8e7fa7715da5e84927e9705 +0 -0
  1882. data/vendor/plugins/grit/test/dot_git/objects/7a/5e762fa8f7fa3e2302f1ad4c0710b6910812c1 +0 -0
  1883. data/vendor/plugins/grit/test/dot_git/objects/7a/b4406c6679ad4d2a6d7abb029f46b35b1bd3ec +0 -0
  1884. data/vendor/plugins/grit/test/dot_git/objects/7a/e93eb82d94273605ea4ffa808223f3517751f1 +0 -0
  1885. data/vendor/plugins/grit/test/dot_git/objects/7b/0eb3a3b0d48710afc0fb2f7b95cf949c17db45 +0 -0
  1886. data/vendor/plugins/grit/test/dot_git/objects/7b/3c2f5c49cc882758b2dfebcda96f14bf04ba11 +0 -0
  1887. data/vendor/plugins/grit/test/dot_git/objects/7b/95db1c259d8fca0aa9d641dfc85127b079c311 +0 -0
  1888. data/vendor/plugins/grit/test/dot_git/objects/7b/bf33d461c4840401abc9cb8b37287c7997e9cf +0 -0
  1889. data/vendor/plugins/grit/test/dot_git/objects/7c/04a6027ad8768258e2dbbb82b069fa1f061e6f +0 -0
  1890. data/vendor/plugins/grit/test/dot_git/objects/7d/3a818a79464316e03c53b11b684e797e9d06ed +2 -0
  1891. data/vendor/plugins/grit/test/dot_git/objects/7d/bfba85b625779105f0d853f89522971346b3ef +0 -0
  1892. data/vendor/plugins/grit/test/dot_git/objects/7d/cfb401bdfd9817a0b3ca08ada41bf0c1080802 +0 -0
  1893. data/vendor/plugins/grit/test/dot_git/objects/7e/013cd6934d110979c95b17ad9b796264919b52 +0 -0
  1894. data/vendor/plugins/grit/test/dot_git/objects/7e/1c4e68dcc2fb435310e397e1269e257f1db6b4 +0 -0
  1895. data/vendor/plugins/grit/test/dot_git/objects/7e/3f8ceb97f84e983cbae9934eda025babbb393a +0 -0
  1896. data/vendor/plugins/grit/test/dot_git/objects/7e/4639a2cb181a6592f431d42db83cf640a563d1 +0 -0
  1897. data/vendor/plugins/grit/test/dot_git/objects/7e/8b4499db8aeeb2b1b285657113076d643b5f5d +0 -0
  1898. data/vendor/plugins/grit/test/dot_git/objects/7f/200467dab592a0a0f1e72777bb2404ef00d57e +0 -0
  1899. data/vendor/plugins/grit/test/dot_git/objects/7f/4a452ac9fc4b6751b454035df3f357c458b150 +0 -0
  1900. data/vendor/plugins/grit/test/dot_git/objects/7f/8c688c758239f302451b0bc10679e547003b5e +0 -0
  1901. data/vendor/plugins/grit/test/dot_git/objects/7f/d9cd76d00c54c434d003a49058592b6f0c10c1 +0 -0
  1902. data/vendor/plugins/grit/test/dot_git/objects/7f/e607b5531e290bd50f1f70ea236d0306a882a9 +0 -0
  1903. data/vendor/plugins/grit/test/dot_git/objects/80/056ae72df1345efa2dd3e216360ca326943fb9 +0 -0
  1904. data/vendor/plugins/grit/test/dot_git/objects/80/8ac3c39d4453622e036118e256f502689d4067 +0 -0
  1905. data/vendor/plugins/grit/test/dot_git/objects/80/dd878d113eee55fd606afc60099d24ba50e670 +0 -0
  1906. data/vendor/plugins/grit/test/dot_git/objects/81/17c407e1439f789727b5acdfa809c67bf29ddd +0 -0
  1907. data/vendor/plugins/grit/test/dot_git/objects/81/21bb4a8880254f69d3ce36b1e85de59f85d9bc +1 -0
  1908. data/vendor/plugins/grit/test/dot_git/objects/81/28628b8e0eb3e167d58b1a393db319bc379fe9 +0 -0
  1909. data/vendor/plugins/grit/test/dot_git/objects/81/a18c36ebe04e406ab84ccc911d79e65e14d1c0 +0 -0
  1910. data/vendor/plugins/grit/test/dot_git/objects/81/b45795bd079c07ed01170a19069372bc6bb885 +0 -0
  1911. data/vendor/plugins/grit/test/dot_git/objects/81/c78b8d7ecacc9aea1ca93221f8b6cbef2ffde7 +0 -0
  1912. data/vendor/plugins/grit/test/dot_git/objects/81/db1993b56df3c9e2511209eecc3339df0a416e +0 -0
  1913. data/vendor/plugins/grit/test/dot_git/objects/81/f3aa336cc7f79b9765daf032f084059eb2b635 +0 -0
  1914. data/vendor/plugins/grit/test/dot_git/objects/82/0d6dbc4c5d6aa2ac39e9f6e18d334ea3cafa44 +0 -0
  1915. data/vendor/plugins/grit/test/dot_git/objects/82/def912edf146e3f30dd02ec78c07356aefdfa5 +0 -0
  1916. data/vendor/plugins/grit/test/dot_git/objects/83/1a6e4e570910039b5359a9cdb5e6b42ff4c423 +0 -0
  1917. data/vendor/plugins/grit/test/dot_git/objects/83/6dca6265fb655643b769aa1dd9d24de45713c4 +0 -0
  1918. data/vendor/plugins/grit/test/dot_git/objects/83/797cb2aabfcc30a94aba8ae9ba396b2a16c3a6 +0 -0
  1919. data/vendor/plugins/grit/test/dot_git/objects/83/a11c45ea6d699f2a874701bc231495df320ef8 +0 -0
  1920. data/vendor/plugins/grit/test/dot_git/objects/83/b2a44866c05489569466edd0b64fd64c35f3bf +0 -0
  1921. data/vendor/plugins/grit/test/dot_git/objects/84/8b08ba949f0d0f64d00a3318775e7f3becf164 +0 -0
  1922. data/vendor/plugins/grit/test/dot_git/objects/85/12f2fa7f4b87784c64cb6615f1fbad7926abf2 +0 -0
  1923. data/vendor/plugins/grit/test/dot_git/objects/85/1c599e01cab929963ee07bb8911477da3817bd +0 -0
  1924. data/vendor/plugins/grit/test/dot_git/objects/85/4e76fadf16d5005f334dbaac7a951bf690c310 +0 -0
  1925. data/vendor/plugins/grit/test/dot_git/objects/85/80c640aa9c03061a2607afd70a52d4a0fe21b3 +0 -0
  1926. data/vendor/plugins/grit/test/dot_git/objects/85/b40f2911319215ea768a7d599e267a465e2b85 +0 -0
  1927. data/vendor/plugins/grit/test/dot_git/objects/85/bb8a9e19a9a179bd9f5c2056588e6e25274288 +0 -0
  1928. data/vendor/plugins/grit/test/dot_git/objects/85/e5fdbc2cefd10f0aa7042e092bd5f4c8c823d3 +0 -0
  1929. data/vendor/plugins/grit/test/dot_git/objects/86/165d83745d61a99aa3961957d191e038b2f5a6 +0 -0
  1930. data/vendor/plugins/grit/test/dot_git/objects/86/1b019631332e20abcedcd44efb78b4bc245797 +0 -0
  1931. data/vendor/plugins/grit/test/dot_git/objects/86/4a495e2f411c12a0a5df886d2a3bc0c36edf8b +0 -0
  1932. data/vendor/plugins/grit/test/dot_git/objects/86/a7b47629e8ae1c822c8014a342d1d041609d8c +0 -0
  1933. data/vendor/plugins/grit/test/dot_git/objects/87/26f79534faaea1e04860001c426e9ea4082a88 +0 -0
  1934. data/vendor/plugins/grit/test/dot_git/objects/87/e2e8f0df7fdf8605ba86ecd97d8e7b5590893c +0 -0
  1935. data/vendor/plugins/grit/test/dot_git/objects/88/33b49921fe5b49266199aa3eba316a80c9e61b +0 -0
  1936. data/vendor/plugins/grit/test/dot_git/objects/88/a86c6983316e48805a13bbb54fa0f9c80248b2 +0 -0
  1937. data/vendor/plugins/grit/test/dot_git/objects/89/353c81b260c81a3340ce0a1b92da0d94d8f6de +0 -0
  1938. data/vendor/plugins/grit/test/dot_git/objects/89/6cdba0f0e33856711cb64067e30256894fe40c +0 -0
  1939. data/vendor/plugins/grit/test/dot_git/objects/89/d0fc07bb62c543b73721d9eb8e76375317777c +0 -0
  1940. data/vendor/plugins/grit/test/dot_git/objects/89/e93573ff69db29a5a7d7f77319a743e8afa784 +0 -0
  1941. data/vendor/plugins/grit/test/dot_git/objects/8a/0d30f5ec46a905b14597f5f1a50526339313f1 +0 -0
  1942. data/vendor/plugins/grit/test/dot_git/objects/8a/4e031f65e18814ff506beee5de5576aca31aeb +0 -0
  1943. data/vendor/plugins/grit/test/dot_git/objects/8a/8a57d37adad012752dbba3c6e1063a374b66a6 +0 -0
  1944. data/vendor/plugins/grit/test/dot_git/objects/8a/ac2492e118b62b049858e49286eda99b70424c +0 -0
  1945. data/vendor/plugins/grit/test/dot_git/objects/8b/039964bc11de4db51deada1676b0a8e7c80fbf +1 -0
  1946. data/vendor/plugins/grit/test/dot_git/objects/8b/3cdab3baad4295363739c4116a96d8321a67c7 +0 -0
  1947. data/vendor/plugins/grit/test/dot_git/objects/8b/8e7f353094009e7fc3b360ecc266081fa7e72d +0 -0
  1948. data/vendor/plugins/grit/test/dot_git/objects/8b/a8d47b778c172e3fa94f59d715d3ccfec9eab8 +0 -0
  1949. data/vendor/plugins/grit/test/dot_git/objects/8b/e6f34ad98804d1d0d39d41d63a06d736050494 +1 -0
  1950. data/vendor/plugins/grit/test/dot_git/objects/8b/ea8baddf15affc95414c402dfff718790816ee +0 -0
  1951. data/vendor/plugins/grit/test/dot_git/objects/8c/a7f29a74c0245e6d5ffe19047290e89c53c2e3 +0 -0
  1952. data/vendor/plugins/grit/test/dot_git/objects/8c/b1801bab79dbed4c457f7c56a4243b19a572a1 +0 -0
  1953. data/vendor/plugins/grit/test/dot_git/objects/8c/b23bbdc76c2644bcc177e96c648f49b04f2a62 +0 -0
  1954. data/vendor/plugins/grit/test/dot_git/objects/8c/be10141cdef6c19f769fe5feb9f97f218a751c +0 -0
  1955. data/vendor/plugins/grit/test/dot_git/objects/8c/cc9b07c5a8c07bb3170758dcd76bfd26631f05 +0 -0
  1956. data/vendor/plugins/grit/test/dot_git/objects/8d/2896b596358c8d3fe2bde06f71b74322e6c69f +0 -0
  1957. data/vendor/plugins/grit/test/dot_git/objects/8d/86c5f852a8cde3e1500f0bc7e4b75fa16478bc +0 -0
  1958. data/vendor/plugins/grit/test/dot_git/objects/8d/94435b58a834245eb3e98204f6981949febda4 +0 -0
  1959. data/vendor/plugins/grit/test/dot_git/objects/8d/9939f789c32f715831c70529faa0ed8bdaeaef +0 -0
  1960. data/vendor/plugins/grit/test/dot_git/objects/8d/c2a6356dbcaa309b457d54ecc297fe9abe4cac +0 -0
  1961. data/vendor/plugins/grit/test/dot_git/objects/8d/e21b364f1831a676486d65deea2bfbe141962c +0 -0
  1962. data/vendor/plugins/grit/test/dot_git/objects/8d/fad1edfb99419586b830f19f9e96ce9d241c49 +0 -0
  1963. data/vendor/plugins/grit/test/dot_git/objects/8e/f9baa02195f51e8d2322fb9304c8631acc126d +0 -0
  1964. data/vendor/plugins/grit/test/dot_git/objects/8f/1becb8995005a7e1b22260e5d6d674249f094c +0 -0
  1965. data/vendor/plugins/grit/test/dot_git/objects/8f/1d9f4bc14deac99f49eddae61ef2c3db7ab5c4 +0 -0
  1966. data/vendor/plugins/grit/test/dot_git/objects/8f/270405010cb4b04ee17d650e27bedf52ebc104 +0 -0
  1967. data/vendor/plugins/grit/test/dot_git/objects/8f/33d0578b63742b37657963d10bdbc3a30ac874 +0 -0
  1968. data/vendor/plugins/grit/test/dot_git/objects/8f/67e2313d82205d121e809ba1095930ded3e3c7 +0 -0
  1969. data/vendor/plugins/grit/test/dot_git/objects/8f/a525c77fec13ec6c2178840912c6c37b8c3cce +0 -0
  1970. data/vendor/plugins/grit/test/dot_git/objects/90/00a6cdf5f075a5b745726b97a7b27f1e669c47 +0 -0
  1971. data/vendor/plugins/grit/test/dot_git/objects/90/6fb7baecb35dff873248bae5084a74f59b4912 +0 -0
  1972. data/vendor/plugins/grit/test/dot_git/objects/90/87b71f5562c7c842fd3001419f5676f28385b4 +0 -0
  1973. data/vendor/plugins/grit/test/dot_git/objects/91/9f3cce611b8364e605830f3dbb059d36b223df +0 -0
  1974. data/vendor/plugins/grit/test/dot_git/objects/91/a3a5989e366c3037fbd7e917c49a36dcfbf79e +0 -0
  1975. data/vendor/plugins/grit/test/dot_git/objects/92/06fce962ca848ff0d6c4a9bf28e92b4a694c87 +0 -0
  1976. data/vendor/plugins/grit/test/dot_git/objects/92/10addf8611cebd99b28d8ecc01dd90006cf8e3 +0 -0
  1977. data/vendor/plugins/grit/test/dot_git/objects/92/1f3eccb5f75c6b81f9044aedd151dd391eef10 +0 -0
  1978. data/vendor/plugins/grit/test/dot_git/objects/92/214a8582931848b8146baf317db76dee9cfac1 +0 -0
  1979. data/vendor/plugins/grit/test/dot_git/objects/92/4b409ce9b20af189cf2a6ce930be8d977d3d3b +0 -0
  1980. data/vendor/plugins/grit/test/dot_git/objects/92/6bfd86bcaf51e3926756ffce7b877665a2e87f +0 -0
  1981. data/vendor/plugins/grit/test/dot_git/objects/92/d6e4952a99f3b26a0848f5d121f618d9a36c9e +0 -0
  1982. data/vendor/plugins/grit/test/dot_git/objects/92/ffbe0beb74ed54fe13db418914b436f8b155b8 +0 -0
  1983. data/vendor/plugins/grit/test/dot_git/objects/93/a8d9a44e349e3b8eb1138d58aed8574dd1e5eb +0 -0
  1984. data/vendor/plugins/grit/test/dot_git/objects/93/e09a95f21568d850e6dce849a3a637c9459c01 +2 -0
  1985. data/vendor/plugins/grit/test/dot_git/objects/94/2831545ab1b5a6c47998d5204e8fa4a13af252 +0 -0
  1986. data/vendor/plugins/grit/test/dot_git/objects/94/319883d8329892c2a817a819b2208369000d09 +0 -0
  1987. data/vendor/plugins/grit/test/dot_git/objects/94/9d05d450c007f882ca5bf52552966f40af5e96 +0 -0
  1988. data/vendor/plugins/grit/test/dot_git/objects/94/b0a3aa0d0e1faea2587a2ea7f60d8b4720dc54 +1 -0
  1989. data/vendor/plugins/grit/test/dot_git/objects/94/c860430bed915b713e537a4b1a1327df976c1c +0 -0
  1990. data/vendor/plugins/grit/test/dot_git/objects/94/ccb02ffd3754e3db0024925d5c15fa1292aae1 +0 -0
  1991. data/vendor/plugins/grit/test/dot_git/objects/94/f4167ce48b9a84a94dce037146cd1e6cccd1d1 +0 -0
  1992. data/vendor/plugins/grit/test/dot_git/objects/94/f6073254faf452d56d37160580fa2480b0e42b +0 -0
  1993. data/vendor/plugins/grit/test/dot_git/objects/95/49f8c5b4d118463f75816da93143d538be3f45 +0 -0
  1994. data/vendor/plugins/grit/test/dot_git/objects/95/c29e184a0ec7c5fa0a2d4ecd105f17bec6218b +0 -0
  1995. data/vendor/plugins/grit/test/dot_git/objects/95/efe1bd08e0b7b1469b4773c14dc728d5068b7e +0 -0
  1996. data/vendor/plugins/grit/test/dot_git/objects/96/39d45833816298a7e113f5e6bf048fb3fba7dd +0 -0
  1997. data/vendor/plugins/grit/test/dot_git/objects/96/3bce669afa5f95366b27bf12345f9c3a7e91f0 +0 -0
  1998. data/vendor/plugins/grit/test/dot_git/objects/96/738a9834afe2e2e8abee5b78a8b88ffa9fca0c +0 -0
  1999. data/vendor/plugins/grit/test/dot_git/objects/97/71f107d373b028c2b73e2e169218951f772028 +0 -0
  2000. data/vendor/plugins/grit/test/dot_git/objects/97/bc5e8c3cff57c5ad09ee02a39e90a0de08109d +0 -0
  2001. data/vendor/plugins/grit/test/dot_git/objects/97/ec7d3e32843a7a846c3b24332d812a05d28fff +0 -0
  2002. data/vendor/plugins/grit/test/dot_git/objects/98/1c454cda632d2c1729c5dd8ff72dbf33c2e819 +0 -0
  2003. data/vendor/plugins/grit/test/dot_git/objects/98/36cd7a87f3baa9c004d7ed277baef050b2ce3d +0 -0
  2004. data/vendor/plugins/grit/test/dot_git/objects/98/4ab69b9f09ba4087a503628badb3bfb001e417 +0 -0
  2005. data/vendor/plugins/grit/test/dot_git/objects/98/b806b34a110411575eee9d45f949a72ac27c7a +1 -0
  2006. data/vendor/plugins/grit/test/dot_git/objects/98/eae78c5916391dc2553c50c60bb6360bc4a298 +0 -0
  2007. data/vendor/plugins/grit/test/dot_git/objects/99/6e0688dd70cbbf10bf760f392d8d52629a51c3 +0 -0
  2008. data/vendor/plugins/grit/test/dot_git/objects/99/d7785e7d61fe9f201fdd8d0443e390d77d2ab2 +0 -0
  2009. data/vendor/plugins/grit/test/dot_git/objects/9a/24db0198f7b9980743fb18ff030428bb4e0da8 +0 -0
  2010. data/vendor/plugins/grit/test/dot_git/objects/9a/6864cba7ee98c5f4813ae96ca60385916b449b +0 -0
  2011. data/vendor/plugins/grit/test/dot_git/objects/9a/9060f4b2cf886595f6eb374d5de37755ae8cd0 +0 -0
  2012. data/vendor/plugins/grit/test/dot_git/objects/9a/d1e4b62307d64b0e86ca3b178fedde4e078376 +0 -0
  2013. data/vendor/plugins/grit/test/dot_git/objects/9b/1ffc7e40c8e14632213cdaf588378e9ba8e90b +0 -0
  2014. data/vendor/plugins/grit/test/dot_git/objects/9b/70d75286c8218b28f623a9b0801b0b952ffb8b +0 -0
  2015. data/vendor/plugins/grit/test/dot_git/objects/9b/7786e50a3bc4bdfb9c85ac9ab526ee5030fc34 +0 -0
  2016. data/vendor/plugins/grit/test/dot_git/objects/9b/a5af0916c41313afd8ab1ad808e9e810157f50 +0 -0
  2017. data/vendor/plugins/grit/test/dot_git/objects/9b/cba3f8ce0858c3a3d79d049995b3b7431cbe2c +0 -0
  2018. data/vendor/plugins/grit/test/dot_git/objects/9c/08a48040fa6f5532bcc3a66a79a423a99e7f2a +0 -0
  2019. data/vendor/plugins/grit/test/dot_git/objects/9c/0e612a10196a3ab25264a807d2501bcd520540 +0 -0
  2020. data/vendor/plugins/grit/test/dot_git/objects/9c/13d94648123c351a208389b375ef220832086c +0 -0
  2021. data/vendor/plugins/grit/test/dot_git/objects/9c/274162674c99d986363d19a31379b999666765 +0 -0
  2022. data/vendor/plugins/grit/test/dot_git/objects/9c/5810283f7b71f0e6658f83fa3cea4c42add182 +0 -0
  2023. data/vendor/plugins/grit/test/dot_git/objects/9c/757047550f98256fe4c212d42a404ca75826ba +0 -0
  2024. data/vendor/plugins/grit/test/dot_git/objects/9c/a4d54b87ae030f69c6a1652b06458229163bff +0 -0
  2025. data/vendor/plugins/grit/test/dot_git/objects/9d/4cb25621a8fd3751691b5320a63acc0cb71359 +0 -0
  2026. data/vendor/plugins/grit/test/dot_git/objects/9d/637db3c6cfa5434f11a71cee9da87c7b8fcfcc +0 -0
  2027. data/vendor/plugins/grit/test/dot_git/objects/9d/b04ec7ffa80fec3f65b02ee882a872e61fa363 +0 -0
  2028. data/vendor/plugins/grit/test/dot_git/objects/9d/bdbf17f96c75b31237c301b704a7b11036793d +0 -0
  2029. data/vendor/plugins/grit/test/dot_git/objects/9d/ddf2d703b7acb646470caf3f9b320f8171a952 +0 -0
  2030. data/vendor/plugins/grit/test/dot_git/objects/9e/0ac6b7a43e94f49694ff169d9e4f55700668c1 +0 -0
  2031. data/vendor/plugins/grit/test/dot_git/objects/9e/5651973373448a7621f2b50a6c7719fc731717 +0 -0
  2032. data/vendor/plugins/grit/test/dot_git/objects/9e/a045ac20cfcc8c99e5a096926516d940810219 +0 -0
  2033. data/vendor/plugins/grit/test/dot_git/objects/9e/cfabcf37cf5ca8f1d9e4be940d38a0ca374592 +0 -0
  2034. data/vendor/plugins/grit/test/dot_git/objects/9f/17dfcb0f307446f1a9f5f4f265fd03f01e5337 +0 -0
  2035. data/vendor/plugins/grit/test/dot_git/objects/9f/625cc941888266a5ace9ea0f7b6de8056648bb +0 -0
  2036. data/vendor/plugins/grit/test/dot_git/objects/9f/94c114fbd1a011d99783c2df5dc97db923fd27 +0 -0
  2037. data/vendor/plugins/grit/test/dot_git/objects/9f/9b08b0ed1e63325c5669c54b1666cf00231856 +0 -0
  2038. data/vendor/plugins/grit/test/dot_git/objects/9f/a2a086398a284a5ec686601a80f23a81d579f6 +0 -0
  2039. data/vendor/plugins/grit/test/dot_git/objects/9f/a6e958bf96ddee6b71a2905bdd4b13bb35bbc3 +0 -0
  2040. data/vendor/plugins/grit/test/dot_git/objects/9f/ace5ebf66d7a4990759a6b23d593b27c560371 +0 -0
  2041. data/vendor/plugins/grit/test/dot_git/objects/a0/1626c862e48de9548a21ee3877c96266a9f247 +0 -0
  2042. data/vendor/plugins/grit/test/dot_git/objects/a0/292a1e42c64c9738088223f119740f9bcf25a4 +0 -0
  2043. data/vendor/plugins/grit/test/dot_git/objects/a0/2fea10783145b59d53157dfa950e1624506160 +0 -0
  2044. data/vendor/plugins/grit/test/dot_git/objects/a0/7705679876a805028101587259fd8f496e8c07 +0 -0
  2045. data/vendor/plugins/grit/test/dot_git/objects/a0/89b4d1cc2b3887c816f5ba51ce48d90ea53e4a +0 -0
  2046. data/vendor/plugins/grit/test/dot_git/objects/a0/931153ab2b7eadad5cccf57e8cfe67051a902a +0 -0
  2047. data/vendor/plugins/grit/test/dot_git/objects/a0/94901cc0f4e3f9c311214bc2f9a1e0cf9a0c18 +0 -0
  2048. data/vendor/plugins/grit/test/dot_git/objects/a1/31034466bff753545671326d45a76592e59f86 +0 -0
  2049. data/vendor/plugins/grit/test/dot_git/objects/a1/3905543ce8634d5206f155d887818c261a34ca +0 -0
  2050. data/vendor/plugins/grit/test/dot_git/objects/a1/5c431db0bd54892a5b5965a68c4f313174a415 +0 -0
  2051. data/vendor/plugins/grit/test/dot_git/objects/a1/65317959fbd09503f7cc9c0cf917a2bf74d426 +0 -0
  2052. data/vendor/plugins/grit/test/dot_git/objects/a2/83d38a51ccde7f05bf3b2cdbb374d3e794e3e4 +0 -0
  2053. data/vendor/plugins/grit/test/dot_git/objects/a2/a52fd45454e98d600a73080db9be8da494fd05 +0 -0
  2054. data/vendor/plugins/grit/test/dot_git/objects/a2/d4e7e0f4d030940b4a62cf905c7f18c9f3ed08 +0 -0
  2055. data/vendor/plugins/grit/test/dot_git/objects/a2/e10f1f8af34131fa4e48a41d0331684ca13a80 +0 -0
  2056. data/vendor/plugins/grit/test/dot_git/objects/a2/f5e090e38fba14a1d0f776716ddc761952863d +0 -0
  2057. data/vendor/plugins/grit/test/dot_git/objects/a3/5cd0e0eff6610786f61c335565d72d9fa3ae69 +0 -0
  2058. data/vendor/plugins/grit/test/dot_git/objects/a3/961f321293662cee00c6b53f0fcfa1b91275cf +1 -0
  2059. data/vendor/plugins/grit/test/dot_git/objects/a3/ed9657784be802136449dfd07e5a9586c7826f +0 -0
  2060. data/vendor/plugins/grit/test/dot_git/objects/a4/89242712c5cb4eddb40a7969e8e9c12db7b594 +0 -0
  2061. data/vendor/plugins/grit/test/dot_git/objects/a4/8bbf51254111dea6d206b753781fbef82f8f63 +0 -0
  2062. data/vendor/plugins/grit/test/dot_git/objects/a4/8dbab8aaf71f35784363f7bd5fe0bbdc91219a +0 -0
  2063. data/vendor/plugins/grit/test/dot_git/objects/a4/949eb5bfc411c724532a24a2070e16fafbdbf8 +0 -0
  2064. data/vendor/plugins/grit/test/dot_git/objects/a5/0da2e9910b2748aafc830288ff86192291e594 +0 -0
  2065. data/vendor/plugins/grit/test/dot_git/objects/a5/3312cdadae43ef320f56980491d2db43649ccc +1 -0
  2066. data/vendor/plugins/grit/test/dot_git/objects/a5/7dfa71d8353c05d3c96880fc4c1c2a18168a0a +0 -0
  2067. data/vendor/plugins/grit/test/dot_git/objects/a5/825bc61ad69802743867bafa342c5922fe23bc +0 -0
  2068. data/vendor/plugins/grit/test/dot_git/objects/a5/9c6325fc1e9e00808f2f077f2ba382c8e71140 +0 -0
  2069. data/vendor/plugins/grit/test/dot_git/objects/a5/a096c8f88729e302bc0dcfcde69bd1d6cee54b +0 -0
  2070. data/vendor/plugins/grit/test/dot_git/objects/a6/25a89a89cfe2916a812c0a19bbf7c88d2bc6c5 +0 -0
  2071. data/vendor/plugins/grit/test/dot_git/objects/a6/5cf40f373fb2652f724aa1fe552cfb1cac8f9c +0 -0
  2072. data/vendor/plugins/grit/test/dot_git/objects/a6/61101de591928518b26e5cf19f976173af84b1 +0 -0
  2073. data/vendor/plugins/grit/test/dot_git/objects/a6/79381688bf42ef8c52ff13d7ad10fd357b716b +0 -0
  2074. data/vendor/plugins/grit/test/dot_git/objects/a6/7dc709250bd465ac07b180985de98f5eb176b5 +0 -0
  2075. data/vendor/plugins/grit/test/dot_git/objects/a6/8e7f06b20e91283fa2729f9f442dee40816d5e +0 -0
  2076. data/vendor/plugins/grit/test/dot_git/objects/a6/b63376a6c6208c700d28f4152f06561a8591f5 +0 -0
  2077. data/vendor/plugins/grit/test/dot_git/objects/a6/cc9707d22121121c4c436961f25ad3136c7a2d +0 -0
  2078. data/vendor/plugins/grit/test/dot_git/objects/a7/56e607bf1b1f234346348f600ee9216a5687f6 +0 -0
  2079. data/vendor/plugins/grit/test/dot_git/objects/a7/b17990b0ddd4909d8a765c5ddbe50e9cb135ca +0 -0
  2080. data/vendor/plugins/grit/test/dot_git/objects/a7/f6425fdc0d6eab1f94942603f9101a9eb010f3 +0 -0
  2081. data/vendor/plugins/grit/test/dot_git/objects/a8/26a873283fed2746f1f9f934f71db6d9a5e040 +0 -0
  2082. data/vendor/plugins/grit/test/dot_git/objects/a8/2dc65e43b5f13287fe61d9c0d535319e10d1fb +0 -0
  2083. data/vendor/plugins/grit/test/dot_git/objects/a8/92c736936baf76e90a8400e13180846943dd65 +0 -0
  2084. data/vendor/plugins/grit/test/dot_git/objects/a8/a74a93cf26ee794cebc9f1440c56882b0124e7 +0 -0
  2085. data/vendor/plugins/grit/test/dot_git/objects/a8/b7e0fbece9a52e5539e4ab8f80e14504344410 +0 -0
  2086. data/vendor/plugins/grit/test/dot_git/objects/a8/f3b83e0ed58f5a7c58fd673eeca588942bcde5 +0 -0
  2087. data/vendor/plugins/grit/test/dot_git/objects/a9/35f4bb2d641436ab22510afdb2ddf59f953521 +0 -0
  2088. data/vendor/plugins/grit/test/dot_git/objects/a9/a1da34ff670558c1aa7d3c6e285cc5fb9b76db +0 -0
  2089. data/vendor/plugins/grit/test/dot_git/objects/a9/b871f8f8bee8e9236b0e47333a0fce672b1445 +0 -0
  2090. data/vendor/plugins/grit/test/dot_git/objects/aa/74200714ce8190b38211795f974b4410f5a9d0 +0 -0
  2091. data/vendor/plugins/grit/test/dot_git/objects/aa/957bcdd3c48f838e0e613c3066ce09399423dc +0 -0
  2092. data/vendor/plugins/grit/test/dot_git/objects/aa/ca7266c757878ce0f80a5edd9651afc32624c5 +0 -0
  2093. data/vendor/plugins/grit/test/dot_git/objects/ab/a5708519a06e49c3801a27e54e710f30fb13d4 +0 -0
  2094. data/vendor/plugins/grit/test/dot_git/objects/ab/c19c8c3819bbaa4964ca4f7fafc32d97834920 +0 -0
  2095. data/vendor/plugins/grit/test/dot_git/objects/ac/44d394114272dc8ced750155b89a4ea7feec8e +4 -0
  2096. data/vendor/plugins/grit/test/dot_git/objects/ac/9ba205c42662c60238be9f5997d10c2df68d05 +0 -0
  2097. data/vendor/plugins/grit/test/dot_git/objects/ac/e84f11ee83b490c7b0421c3815da52172e6106 +0 -0
  2098. data/vendor/plugins/grit/test/dot_git/objects/ac/f6144115985ce9f37dbe5f56f4f5d96875b518 +0 -0
  2099. data/vendor/plugins/grit/test/dot_git/objects/ad/065db654ef09714c6463e2f13e6e936ca8a4b1 +0 -0
  2100. data/vendor/plugins/grit/test/dot_git/objects/ad/ac6394aaa5f63348d12c6d7c556cc5895bdb5e +0 -0
  2101. data/vendor/plugins/grit/test/dot_git/objects/ad/be3ad1cfaed6ae867ff4c780e57b24aba92bb6 +0 -0
  2102. data/vendor/plugins/grit/test/dot_git/objects/ae/45e5b88fcd45b55efa1e8a1f60e6525897430f +0 -0
  2103. data/vendor/plugins/grit/test/dot_git/objects/ae/51c7beb1d82b967d1ec70d43dc2546880e902c +0 -0
  2104. data/vendor/plugins/grit/test/dot_git/objects/ae/88cc08586ab2baad34a00de9aed2be4e8ec297 +0 -0
  2105. data/vendor/plugins/grit/test/dot_git/objects/ae/aa7324c31d374eac09744a5e1cf3eb5c11b1ef +0 -0
  2106. data/vendor/plugins/grit/test/dot_git/objects/af/37cb1d947f50b5a9c4ea7c68dcfeb67ad66f8a +0 -0
  2107. data/vendor/plugins/grit/test/dot_git/objects/af/4976e0ea1364d59c64bfcf0482d50e0e238d16 +0 -0
  2108. data/vendor/plugins/grit/test/dot_git/objects/af/6752006c8dfaea112143bd2692f439719162b8 +0 -0
  2109. data/vendor/plugins/grit/test/dot_git/objects/af/a1dfabcd436cf7af4deaf13e00180ef5368940 +0 -0
  2110. data/vendor/plugins/grit/test/dot_git/objects/af/ae8e12352682bf9d015dce28e338a451c5f55e +0 -0
  2111. data/vendor/plugins/grit/test/dot_git/objects/af/d4d958e849a246bd3413f2cc02e7910f19f058 +0 -0
  2112. data/vendor/plugins/grit/test/dot_git/objects/b0/1401ffc98de4b600588fcfcd09a3961d162c69 +0 -0
  2113. data/vendor/plugins/grit/test/dot_git/objects/b0/3531d097981c72b9c99aca10eca9c50a70d466 +0 -0
  2114. data/vendor/plugins/grit/test/dot_git/objects/b0/c2e6b2e88b854dab551433cb113e3daf4c4e3e +0 -0
  2115. data/vendor/plugins/grit/test/dot_git/objects/b0/fb915abf0e5be77c6c2400cffbbfd9c3bdcd00 +0 -0
  2116. data/vendor/plugins/grit/test/dot_git/objects/b1/35bf729745de0027719d613c8adef1007eaf6e +0 -0
  2117. data/vendor/plugins/grit/test/dot_git/objects/b1/c0001ea8e43861235f34cd4d21853ca458158e +0 -0
  2118. data/vendor/plugins/grit/test/dot_git/objects/b1/fc231270ad6b6edc230aa22b4c10267198b9e6 +0 -0
  2119. data/vendor/plugins/grit/test/dot_git/objects/b2/1d54ab7d3ec8d8a3c91c997ed9538777e46188 +0 -0
  2120. data/vendor/plugins/grit/test/dot_git/objects/b2/1f05a2f9d51a8ef2c143fb7b8282fc53be06dd +0 -0
  2121. data/vendor/plugins/grit/test/dot_git/objects/b2/226c9a893eb2e71e0ff33742968479cd50b131 +0 -0
  2122. data/vendor/plugins/grit/test/dot_git/objects/b2/5dce6bbfa5e52108459b9a89b16def6963aec0 +3 -0
  2123. data/vendor/plugins/grit/test/dot_git/objects/b2/c2a902e25e522df67b8577b8bb8ddf9aa25098 +0 -0
  2124. data/vendor/plugins/grit/test/dot_git/objects/b3/6d57789486dabe2309bd7819f7793ef2e7487c +0 -0
  2125. data/vendor/plugins/grit/test/dot_git/objects/b3/d79746ef32b978c65e1654d7ccddb89baa216d +0 -0
  2126. data/vendor/plugins/grit/test/dot_git/objects/b4/07761d8d0840acc0c147dce23dcf7b741e3238 +0 -0
  2127. data/vendor/plugins/grit/test/dot_git/objects/b4/1467a894bdbe6be958a5de6984dd9c6dcb176b +0 -0
  2128. data/vendor/plugins/grit/test/dot_git/objects/b4/3d94c5a8e399fff7661187411c2f3702898160 +0 -0
  2129. data/vendor/plugins/grit/test/dot_git/objects/b4/f07cbe632b5fb7ffe7c25e2a2ed215268ef15f +0 -0
  2130. data/vendor/plugins/grit/test/dot_git/objects/b4/f32e4ada1229dbc85db12ed3f93d15056252ec +0 -0
  2131. data/vendor/plugins/grit/test/dot_git/objects/b4/fd01bf7d2194b58ffc3a8e703bcdef5b3046bc +0 -0
  2132. data/vendor/plugins/grit/test/dot_git/objects/b5/297f606fed8450572f35e6e34df7c81d2840e5 +0 -0
  2133. data/vendor/plugins/grit/test/dot_git/objects/b5/9047a78a3d6a92deac583900b77af84d0ada54 +0 -0
  2134. data/vendor/plugins/grit/test/dot_git/objects/b5/b60fcbee8f46d6b1efa206e139255ae33b81cc +0 -0
  2135. data/vendor/plugins/grit/test/dot_git/objects/b5/e9a82adb2f8bfe4b02ee14b46c32eeb453d53a +0 -0
  2136. data/vendor/plugins/grit/test/dot_git/objects/b5/fe7fc1265ffab1b6441b88055a7638688ba013 +0 -0
  2137. data/vendor/plugins/grit/test/dot_git/objects/b6/33e336e94e1090bd7e19773972b1bf177d18bb +0 -0
  2138. data/vendor/plugins/grit/test/dot_git/objects/b6/9a6fedabd2d05896b06986e7ac8f69f6d32903 +0 -0
  2139. data/vendor/plugins/grit/test/dot_git/objects/b6/e387967dd4d8cc2a590dae48327dd7b1225992 +0 -0
  2140. data/vendor/plugins/grit/test/dot_git/objects/b7/0c8fd36430fb1e0b02119d7f802c2144fa2a41 +2 -0
  2141. data/vendor/plugins/grit/test/dot_git/objects/b7/2772427161ca37e13344c1a9573dfdde28a881 +0 -0
  2142. data/vendor/plugins/grit/test/dot_git/objects/b7/6a1914a9461f6e66a4fc5a32b890f38b3dbe89 +0 -0
  2143. data/vendor/plugins/grit/test/dot_git/objects/b7/90eae3127d5f3c9d501885ae9e17f342b25298 +0 -0
  2144. data/vendor/plugins/grit/test/dot_git/objects/b7/f932bd02b3e0a4228ee7b55832749028d345de +1 -0
  2145. data/vendor/plugins/grit/test/dot_git/objects/b8/2e9938dbcadfcb79efff23a12763d6ec48f19d +0 -0
  2146. data/vendor/plugins/grit/test/dot_git/objects/b8/46d2f4cb2a5adfb0c4f46e73f53a074e76c2f6 +0 -0
  2147. data/vendor/plugins/grit/test/dot_git/objects/b8/562d355858f20a0043c4b8adf03d7ad64b71e6 +0 -0
  2148. data/vendor/plugins/grit/test/dot_git/objects/b8/a5e1b3d5334ec5484f1299b77526b187a94c25 +0 -0
  2149. data/vendor/plugins/grit/test/dot_git/objects/b8/a73a8761cd544a512ec2d4461953db8ce95bd2 +0 -0
  2150. data/vendor/plugins/grit/test/dot_git/objects/b9/04b1fddfc7870be76bb238721ce91ee589856a +0 -0
  2151. data/vendor/plugins/grit/test/dot_git/objects/b9/695b896e6e9cb7944d01b7161c394f558618b8 +0 -0
  2152. data/vendor/plugins/grit/test/dot_git/objects/b9/751e8e983d7cf18c3a165a82158a7ad242cbcb +0 -0
  2153. data/vendor/plugins/grit/test/dot_git/objects/b9/79812846dd07c8f72f80075e482764f84e6da2 +0 -0
  2154. data/vendor/plugins/grit/test/dot_git/objects/b9/82edbe57b1cb1a9cbe7c5866406978172b994c +0 -0
  2155. data/vendor/plugins/grit/test/dot_git/objects/b9/e18f001d183fcf54debaf1b2995d31a2f60de8 +0 -0
  2156. data/vendor/plugins/grit/test/dot_git/objects/b9/fe6cfc99544168ab86a9e5326d2278651204c9 +0 -0
  2157. data/vendor/plugins/grit/test/dot_git/objects/ba/017639ed43f1604c4bdc3f06cafce7b6678d4a +0 -0
  2158. data/vendor/plugins/grit/test/dot_git/objects/ba/3f83d47153b9bc59a4051c30c1dd037a6eeedd +0 -0
  2159. data/vendor/plugins/grit/test/dot_git/objects/ba/8e143dc8770a08a289c15e575adc55c5a4bb54 +0 -0
  2160. data/vendor/plugins/grit/test/dot_git/objects/ba/bdcc3cacd23b79d9fc2bdf3c0b4fc18fb539a5 +0 -0
  2161. data/vendor/plugins/grit/test/dot_git/objects/ba/c7b8660ab69c5728f49b9e63751ad1d86ef5d3 +0 -0
  2162. data/vendor/plugins/grit/test/dot_git/objects/bb/332bf8f4417e45a74d87c762665d27562d4e95 +0 -0
  2163. data/vendor/plugins/grit/test/dot_git/objects/bb/9eeafff7d803955a2f4984b2334f43143eede9 +0 -0
  2164. data/vendor/plugins/grit/test/dot_git/objects/bb/d2a60494d609583a1117447158a329e1629022 +0 -0
  2165. data/vendor/plugins/grit/test/dot_git/objects/bc/ba8937bbe9b916c050151ab09d43fa735de698 +2 -0
  2166. data/vendor/plugins/grit/test/dot_git/objects/bd/0ff2ff68bff3d9c961ac3c549e888204d51ceb +0 -0
  2167. data/vendor/plugins/grit/test/dot_git/objects/bd/1d7e6252aaa69a1a67688101117881c20c6ce2 +0 -0
  2168. data/vendor/plugins/grit/test/dot_git/objects/bd/451870911b60ed681e43d21a079858da8263bd +0 -0
  2169. data/vendor/plugins/grit/test/dot_git/objects/bd/4bd34e5de499f1c7cfeb5c7355ea9074d7c3d2 +0 -0
  2170. data/vendor/plugins/grit/test/dot_git/objects/bd/5ae9aa537db33ac612a1eb89ea18f3a0f6a6eb +0 -0
  2171. data/vendor/plugins/grit/test/dot_git/objects/bd/76610f714db7ccae84d520a1b354a404f7d860 +0 -0
  2172. data/vendor/plugins/grit/test/dot_git/objects/bd/d8251cf5343dafc1ab05b6a939de869802a157 +0 -0
  2173. data/vendor/plugins/grit/test/dot_git/objects/be/0ff545481a8562aa83969dea21653fc932f809 +0 -0
  2174. data/vendor/plugins/grit/test/dot_git/objects/be/1f6f33eed717448edf483296f6c2aa558fb937 +0 -0
  2175. data/vendor/plugins/grit/test/dot_git/objects/be/8cb297061306048ddd8c190161745ee928e49e +0 -0
  2176. data/vendor/plugins/grit/test/dot_git/objects/be/96f23efa55a1c4cdcd2da6735566571ef94302 +0 -0
  2177. data/vendor/plugins/grit/test/dot_git/objects/be/df2c64a1d0b97f039e8bc0d80722f020adfb70 +0 -0
  2178. data/vendor/plugins/grit/test/dot_git/objects/bf/1f2fa6fd19e57dde89b415269effcd3ac68540 +0 -0
  2179. data/vendor/plugins/grit/test/dot_git/objects/bf/2c69e3ff4f9c3abc2c8711a4d9b94fad30e9f0 +0 -0
  2180. data/vendor/plugins/grit/test/dot_git/objects/bf/83cc523b783450eb66980b493d415097aeea79 +0 -0
  2181. data/vendor/plugins/grit/test/dot_git/objects/bf/d2fc2cdbf316abd7da4ef8d8d8b4536613eeb0 +0 -0
  2182. data/vendor/plugins/grit/test/dot_git/objects/c0/090cbbfd98cfdbcbe152dd50bfc71e243e8e74 +0 -0
  2183. data/vendor/plugins/grit/test/dot_git/objects/c0/489424bfdca21656c06c22b37165a8e72ab8f3 +0 -0
  2184. data/vendor/plugins/grit/test/dot_git/objects/c0/529776901fd212c4534feca9ddf0af66962bbc +0 -0
  2185. data/vendor/plugins/grit/test/dot_git/objects/c0/7b369a37b99a56c3d73682e076d610cc66f9ea +0 -0
  2186. data/vendor/plugins/grit/test/dot_git/objects/c0/7e0a3d15fac47b3a4b1628b959a16577ff3388 +0 -0
  2187. data/vendor/plugins/grit/test/dot_git/objects/c0/85faa2f50c6d1e7dba1494be5589adadf67c1b +0 -0
  2188. data/vendor/plugins/grit/test/dot_git/objects/c0/a0771d3e3ca04f47b010867ac7a4a42408da0d +0 -0
  2189. data/vendor/plugins/grit/test/dot_git/objects/c0/bff5fee2b3e7ced9f6db56394af1aad1ea7ed8 +0 -0
  2190. data/vendor/plugins/grit/test/dot_git/objects/c1/4f6e2efdd2993b0bb6b3f247eb50310762bbfb +0 -0
  2191. data/vendor/plugins/grit/test/dot_git/objects/c1/c96e82e7c4ceed6a5e2d54f1e471eb914d1b02 +0 -0
  2192. data/vendor/plugins/grit/test/dot_git/objects/c1/ccd31fd431573003f6492034e888f7d9f0b9b8 +0 -0
  2193. data/vendor/plugins/grit/test/dot_git/objects/c1/f6b5ee610aeb6ac999ad6dfba1252f17d06d76 +0 -0
  2194. data/vendor/plugins/grit/test/dot_git/objects/c2/85fb81c97b0ad4b5e31d6c88f7d2de1a999bf6 +0 -0
  2195. data/vendor/plugins/grit/test/dot_git/objects/c2/c11d80b63f7583f569ccedf8956daf4dcd7738 +0 -0
  2196. data/vendor/plugins/grit/test/dot_git/objects/c2/c80f4043230f63b99f68ba1b31cd3af0e6151a +0 -0
  2197. data/vendor/plugins/grit/test/dot_git/objects/c2/dcc243dd5586cdefe67c1a47922f2b33515e84 +0 -0
  2198. data/vendor/plugins/grit/test/dot_git/objects/c3/0c8c756c092cc3c5260805b630973786a0c740 +0 -0
  2199. data/vendor/plugins/grit/test/dot_git/objects/c3/465a138d3eb08fd7f3ddf6682e1ff5afee196d +0 -0
  2200. data/vendor/plugins/grit/test/dot_git/objects/c3/927974367ccc76ff45e65f64691f866843eda9 +0 -0
  2201. data/vendor/plugins/grit/test/dot_git/objects/c3/d90063e61a4f18f0c67f40875c3fbef7679c37 +0 -0
  2202. data/vendor/plugins/grit/test/dot_git/objects/c4/346031a7f6dd0445b2bb6c8ecfb4b210f71c02 +0 -0
  2203. data/vendor/plugins/grit/test/dot_git/objects/c4/a254452489221950ff79204a3fef57bed8f22c +0 -0
  2204. data/vendor/plugins/grit/test/dot_git/objects/c4/cce53174e22a2c0a4ad14d953df1ffa2fb6798 +0 -0
  2205. data/vendor/plugins/grit/test/dot_git/objects/c4/e1178df3417161a08166519c671cc7eb9d13da +0 -0
  2206. data/vendor/plugins/grit/test/dot_git/objects/c5/316e5a772e358243b305cd39185907ba4000e8 +0 -0
  2207. data/vendor/plugins/grit/test/dot_git/objects/c5/4397c1097a4bb0139266faf7f87af3829969fa +0 -0
  2208. data/vendor/plugins/grit/test/dot_git/objects/c5/4fed0d4c2cbdbae8e0e7153d36a0570181dc57 +0 -0
  2209. data/vendor/plugins/grit/test/dot_git/objects/c5/5a0b537cb1897139a0423c262c5896633c8ec2 +0 -0
  2210. data/vendor/plugins/grit/test/dot_git/objects/c5/ad873781f7507ecbdff12ebf2892aa63829165 +0 -0
  2211. data/vendor/plugins/grit/test/dot_git/objects/c5/b18055a68d5dad811238d2c06ae311503c2bba +0 -0
  2212. data/vendor/plugins/grit/test/dot_git/objects/c6/1481cac83e3ade196547455a29355a04eada79 +0 -0
  2213. data/vendor/plugins/grit/test/dot_git/objects/c6/2a36758a44d5314d84f2a0e5519a12fa788c52 +0 -0
  2214. data/vendor/plugins/grit/test/dot_git/objects/c6/9bf949c1ad67d6b982e2a963f5f6f6338efe03 +0 -0
  2215. data/vendor/plugins/grit/test/dot_git/objects/c6/c29d8b2626547f47c454e3132643e911a9dca7 +0 -0
  2216. data/vendor/plugins/grit/test/dot_git/objects/c6/e98d328fadcc7fd967d0600ddc285e0a1c40c8 +0 -0
  2217. data/vendor/plugins/grit/test/dot_git/objects/c6/f25e80b8bcf0a21db2bea368b9e444c19bc0bf +0 -0
  2218. data/vendor/plugins/grit/test/dot_git/objects/c6/fe7a87983e74b52fa926fa439dc86267ad0ece +0 -0
  2219. data/vendor/plugins/grit/test/dot_git/objects/c7/3ab753abf0ab07061c6e5c9f18f723c8839eea +0 -0
  2220. data/vendor/plugins/grit/test/dot_git/objects/c7/7d84a29d341be904705ff97f40060d896d32a2 +0 -0
  2221. data/vendor/plugins/grit/test/dot_git/objects/c8/7eab9bd090b6e7f3777681b5cd11f4ea7a0fdb +0 -0
  2222. data/vendor/plugins/grit/test/dot_git/objects/c8/b4c9d59ca1c0115f3ad4bb89d46dccdcf4a00c +0 -0
  2223. data/vendor/plugins/grit/test/dot_git/objects/c9/0f97abc5e730138e977fa4b3049e6a8417b8c6 +0 -0
  2224. data/vendor/plugins/grit/test/dot_git/objects/c9/378208eb8e4d7b44ff1d4ed8b24b2a3cec63ac +0 -0
  2225. data/vendor/plugins/grit/test/dot_git/objects/c9/67cea0a628ff0f9b85d59003b56ab3db1ab2b4 +0 -0
  2226. data/vendor/plugins/grit/test/dot_git/objects/c9/868012bd4ec4530b50ec581eb4464640583367 +0 -0
  2227. data/vendor/plugins/grit/test/dot_git/objects/ca/296a4122a0f6c4412532bd8cb785eb477d670a +0 -0
  2228. data/vendor/plugins/grit/test/dot_git/objects/ca/8a30f5a7f0f163bbe3b6f0abf18a6c83b0687a +1 -0
  2229. data/vendor/plugins/grit/test/dot_git/objects/ca/c661c85aa6405085fb561e4f5a1dbd62c89e0c +0 -0
  2230. data/vendor/plugins/grit/test/dot_git/objects/cb/025c8d5557e85215123582995ce4f29ba8cf58 +0 -0
  2231. data/vendor/plugins/grit/test/dot_git/objects/cb/089cd89a7d7686d284d8761201649346b5aa1c +0 -0
  2232. data/vendor/plugins/grit/test/dot_git/objects/cb/2d623b0705dab9033b26ba6b1d26347c9c7dc6 +0 -0
  2233. data/vendor/plugins/grit/test/dot_git/objects/cb/7524872ad0434e6ae1b9a467161d71cd052b20 +0 -0
  2234. data/vendor/plugins/grit/test/dot_git/objects/cb/865cdf59ba7e39d8a5130ff81b2c753dc87ed6 +0 -0
  2235. data/vendor/plugins/grit/test/dot_git/objects/cb/9af18c3753abd34f1bffd77af3c02e8975e24c +0 -0
  2236. data/vendor/plugins/grit/test/dot_git/objects/cb/b903f44f2508c6204f58f812977dcc8cf9cefe +0 -0
  2237. data/vendor/plugins/grit/test/dot_git/objects/cb/c8b3ec01bb98eb90e9988fe0005ecbc2dd33e8 +0 -0
  2238. data/vendor/plugins/grit/test/dot_git/objects/cc/04ea7b08f3c688db2d08837cd02cc314dcc993 +0 -0
  2239. data/vendor/plugins/grit/test/dot_git/objects/cc/21f81d7720b48f4c536e38de9228f590f747a2 +0 -0
  2240. data/vendor/plugins/grit/test/dot_git/objects/cc/5a59d08bd7e2ffe3e7b4476d809edab4038bb2 +0 -0
  2241. data/vendor/plugins/grit/test/dot_git/objects/cc/70a2b9b33e50633e146745b14be7b827a1b3fd +0 -0
  2242. data/vendor/plugins/grit/test/dot_git/objects/cc/76d7de880e9bc84ff2b42cbfd394d0e3a61113 +0 -0
  2243. data/vendor/plugins/grit/test/dot_git/objects/cc/a47071801b43a39ca8d0a88f2201ad30ebedc9 +0 -0
  2244. data/vendor/plugins/grit/test/dot_git/objects/cc/fdeb08df97d990299a7cf523c0f26be1a17b72 +0 -0
  2245. data/vendor/plugins/grit/test/dot_git/objects/cd/34920bf0e591f952d46919b31ac464091c5ec6 +0 -0
  2246. data/vendor/plugins/grit/test/dot_git/objects/cd/3d162097c26b24b58f1d41cac56b871d945629 +0 -0
  2247. data/vendor/plugins/grit/test/dot_git/objects/cd/4b54aa066e4907be838d76250968a49d9a54a5 +0 -0
  2248. data/vendor/plugins/grit/test/dot_git/objects/cd/b5ce2c133787835ca0b75e3dddd4482d7d40ce +0 -0
  2249. data/vendor/plugins/grit/test/dot_git/objects/ce/37aab31d5b51592d153e85dc31a1164f2c74d5 +0 -0
  2250. data/vendor/plugins/grit/test/dot_git/objects/ce/c2177c534977032173305e028aec34b2b15244 +0 -0
  2251. data/vendor/plugins/grit/test/dot_git/objects/ce/d71400e6918863c98829c3257274047aa86c3e +0 -0
  2252. data/vendor/plugins/grit/test/dot_git/objects/cf/19fd85e7967177d5419c4d07398f990c33545d +0 -0
  2253. data/vendor/plugins/grit/test/dot_git/objects/cf/1c5abec20238b4fda0b8fb9c9fcc0314198010 +0 -0
  2254. data/vendor/plugins/grit/test/dot_git/objects/cf/217f62ca6f13caa821e5f364e2db97d4139adc +0 -0
  2255. data/vendor/plugins/grit/test/dot_git/objects/cf/940d627bfd8f62d084bc351a17e70f138754e7 +0 -0
  2256. data/vendor/plugins/grit/test/dot_git/objects/cf/ba8a784564e61ab02beec0546e2b7deb1dedf8 +0 -0
  2257. data/vendor/plugins/grit/test/dot_git/objects/cf/c1d07a120f8fa9812c821a93c6eea7b5f3f849 +0 -0
  2258. data/vendor/plugins/grit/test/dot_git/objects/d0/609bbcf9b21b5488a3d0ec2cac298072d39773 +0 -0
  2259. data/vendor/plugins/grit/test/dot_git/objects/d0/b8e19994cff4866d3464f604a44f5856436e67 +0 -0
  2260. data/vendor/plugins/grit/test/dot_git/objects/d0/b95097a4a97decfb88616ac5fa995bf8fd2353 +0 -0
  2261. data/vendor/plugins/grit/test/dot_git/objects/d0/c74daaca46f35c1ff78c5b600826deb5649524 +0 -0
  2262. data/vendor/plugins/grit/test/dot_git/objects/d1/13634b1167576fe27292c3857813ef5cc4a669 +0 -0
  2263. data/vendor/plugins/grit/test/dot_git/objects/d1/152cb07487bd11c9f63843437b277d51e07205 +0 -0
  2264. data/vendor/plugins/grit/test/dot_git/objects/d1/5036828e61ea14859aa7d1bfcebd0e3b0eb881 +0 -0
  2265. data/vendor/plugins/grit/test/dot_git/objects/d1/55f8b40aab911804bdc6375d9db0c585fd16ae +0 -0
  2266. data/vendor/plugins/grit/test/dot_git/objects/d1/624b21caf0eee83ec682d312cf477e88f750d3 +0 -0
  2267. data/vendor/plugins/grit/test/dot_git/objects/d1/7653ab881d8ca2930b87b7456a41cf8745a4c2 +0 -0
  2268. data/vendor/plugins/grit/test/dot_git/objects/d1/d689918ec50ffe164a1eed435b6e3afb281aa0 +0 -0
  2269. data/vendor/plugins/grit/test/dot_git/objects/d1/f010bd414b89ab2d70d95f819b913dfe421a14 +0 -0
  2270. data/vendor/plugins/grit/test/dot_git/objects/d2/110dfef12479935cf619a11136153f94ca9b67 +0 -0
  2271. data/vendor/plugins/grit/test/dot_git/objects/d2/2e791be92d7cb52fb20e5734ace4423d1832b5 +0 -0
  2272. data/vendor/plugins/grit/test/dot_git/objects/d2/563757320e1557299ad7249cd23523f065e654 +0 -0
  2273. data/vendor/plugins/grit/test/dot_git/objects/d2/7b6ed3f2298528545a2d5fec952ab8468c52b4 +0 -0
  2274. data/vendor/plugins/grit/test/dot_git/objects/d2/d47b0e111aa46550e107f7c2d0342dab5fec54 +0 -0
  2275. data/vendor/plugins/grit/test/dot_git/objects/d2/ef2754d3f4498e5f39093a13bb7b63f5ac53e0 +0 -0
  2276. data/vendor/plugins/grit/test/dot_git/objects/d3/60d56c0dc32d09a1dac7d14227c0dc502e0315 +0 -0
  2277. data/vendor/plugins/grit/test/dot_git/objects/d3/6adf3899666534d3dfdbb7cb56ae6cd67c775f +0 -0
  2278. data/vendor/plugins/grit/test/dot_git/objects/d3/e2f80ca20952878e5d2b113eea12af3b86548e +0 -0
  2279. data/vendor/plugins/grit/test/dot_git/objects/d4/15fea0f0ad0b7894d6bef5705377f0bbdf14b1 +0 -0
  2280. data/vendor/plugins/grit/test/dot_git/objects/d4/47e353cbaaa11b404fc0f03d3cabe71cdf4938 +0 -0
  2281. data/vendor/plugins/grit/test/dot_git/objects/d4/c1f16003f3a9dbd786ff9c76fd870f6410219e +0 -0
  2282. data/vendor/plugins/grit/test/dot_git/objects/d4/c52892a65b126bd009552425629d3ddeac187c +0 -0
  2283. data/vendor/plugins/grit/test/dot_git/objects/d5/23191505a04e561b83f1d2d4161d0464fb7cc4 +0 -0
  2284. data/vendor/plugins/grit/test/dot_git/objects/d5/50ee25ecdea090a474e46047f5fb53c608225c +0 -0
  2285. data/vendor/plugins/grit/test/dot_git/objects/d5/b2e50283d7c08ba11cff41cf969bc409e25b04 +0 -0
  2286. data/vendor/plugins/grit/test/dot_git/objects/d6/8924f19dad96912e1a653946aedca73e4f1515 +0 -0
  2287. data/vendor/plugins/grit/test/dot_git/objects/d6/8d89dbe9dd68f50039dce10c47e26f09515a49 +0 -0
  2288. data/vendor/plugins/grit/test/dot_git/objects/d6/a96d9347d002e1f4c994f6e706c92cacf34c1b +0 -0
  2289. data/vendor/plugins/grit/test/dot_git/objects/d6/fa111185d38e869024040461d97e3fb1f2a3dd +0 -0
  2290. data/vendor/plugins/grit/test/dot_git/objects/d7/06308dfda94ed1d1fa3b4e166204a3b3b821de +0 -0
  2291. data/vendor/plugins/grit/test/dot_git/objects/d7/3109da898b1130ebf23ac384cd19f037244f2c +0 -0
  2292. data/vendor/plugins/grit/test/dot_git/objects/d7/3cb7a250d50941a792fa4b7ce8967d8d19f172 +0 -0
  2293. data/vendor/plugins/grit/test/dot_git/objects/d7/769d5114d138fe191f89c4762207cf09ee6ff6 +0 -0
  2294. data/vendor/plugins/grit/test/dot_git/objects/d7/7e88e54007ca7054c80e4a553dfc9497033190 +0 -0
  2295. data/vendor/plugins/grit/test/dot_git/objects/d7/9588e68ca46be7ff40142a916384bb2e747a23 +0 -0
  2296. data/vendor/plugins/grit/test/dot_git/objects/d7/a66b7d6053a49c44d0be8431be4e3f83d2fca6 +0 -0
  2297. data/vendor/plugins/grit/test/dot_git/objects/d7/b6c50da9b2013a2b68a58ad248a5ee86e3e413 +0 -0
  2298. data/vendor/plugins/grit/test/dot_git/objects/d8/263d0d2544145f915010a759217b3cca42372d +0 -0
  2299. data/vendor/plugins/grit/test/dot_git/objects/d8/32e468be4f1fc8898bf2e5273f1edbe96df5a1 +0 -0
  2300. data/vendor/plugins/grit/test/dot_git/objects/d8/5761603253c1244d71de61bbaede916abbc31e +0 -0
  2301. data/vendor/plugins/grit/test/dot_git/objects/d8/73fa62a4ffb5d5a75d21432ffa8d1f6579024d +0 -0
  2302. data/vendor/plugins/grit/test/dot_git/objects/d8/abe3ca243a8ff9bba26b084100087bfcb4cc76 +0 -0
  2303. data/vendor/plugins/grit/test/dot_git/objects/d8/c9929f8fd838bb3b382e0d59d64d98fde2c1c6 +0 -0
  2304. data/vendor/plugins/grit/test/dot_git/objects/d9/257b8d55aa73dd51720e85768d217c9305f3ff +0 -0
  2305. data/vendor/plugins/grit/test/dot_git/objects/d9/8d313fdd7d2bfa25bc440ac7419b65548d0ccb +0 -0
  2306. data/vendor/plugins/grit/test/dot_git/objects/d9/a1d623cba5e02e877ab45f642d103ef8d5b3b0 +0 -0
  2307. data/vendor/plugins/grit/test/dot_git/objects/d9/f86d513707635a11cbd37ea1bd2a7963122c0b +0 -0
  2308. data/vendor/plugins/grit/test/dot_git/objects/da/1669b4371b10947264cb338e9a1cbedc0ad569 +0 -0
  2309. data/vendor/plugins/grit/test/dot_git/objects/da/2906f8045e1fdb88e00041682e7bd681a8ad1d +0 -0
  2310. data/vendor/plugins/grit/test/dot_git/objects/da/a1ae72d1b50ea84156ab4609e643a070bdef4e +1 -0
  2311. data/vendor/plugins/grit/test/dot_git/objects/da/a957a7309b9c4151fbed3db2467a05a20af896 +0 -0
  2312. data/vendor/plugins/grit/test/dot_git/objects/da/d96db2312b0af8967b04f7071ef98dab98eda4 +0 -0
  2313. data/vendor/plugins/grit/test/dot_git/objects/da/fd8a6599574a188701e2efd965b5a9907925ee +0 -0
  2314. data/vendor/plugins/grit/test/dot_git/objects/db/0101ef085f8c71eb0f4a1ec982d292924a5d7e +0 -0
  2315. data/vendor/plugins/grit/test/dot_git/objects/db/41697c57c3d294a776b4d42156868d6af91432 +0 -0
  2316. data/vendor/plugins/grit/test/dot_git/objects/db/668e5f99bf481aa0c196091e4922238fdaf341 +0 -0
  2317. data/vendor/plugins/grit/test/dot_git/objects/db/c9ba300c9939793123d04c4cb1b1f0b25e6bb3 +0 -0
  2318. data/vendor/plugins/grit/test/dot_git/objects/db/d625cae0863ef56c00c09d7954dea8165650db +0 -0
  2319. data/vendor/plugins/grit/test/dot_git/objects/db/dff42a58d11af46dd1361105de13ae6cfcddf2 +0 -0
  2320. data/vendor/plugins/grit/test/dot_git/objects/db/fed0396f4690e49a9326015f0986f0d88e9bf8 +0 -0
  2321. data/vendor/plugins/grit/test/dot_git/objects/dc/0bcf3df4f74fa898ab5541c38e38b405dbcaa9 +0 -0
  2322. data/vendor/plugins/grit/test/dot_git/objects/dc/13b3e9e0c9f064e50c432158e3b038dc36b63e +0 -0
  2323. data/vendor/plugins/grit/test/dot_git/objects/dc/5de731e66fa25fa825ef4d2d550914c50e3592 +0 -0
  2324. data/vendor/plugins/grit/test/dot_git/objects/dc/7dadd3e76635500988a1805b414074cca37470 +0 -0
  2325. data/vendor/plugins/grit/test/dot_git/objects/dc/80b6e1a79803154171b8b54021280c79345b03 +0 -0
  2326. data/vendor/plugins/grit/test/dot_git/objects/dc/a70d64a067eb0739bd71b8725d8e34fbc1ed0a +0 -0
  2327. data/vendor/plugins/grit/test/dot_git/objects/dd/018cf1e22bb55a7603eb7b5dc40dd794df96f5 +2 -0
  2328. data/vendor/plugins/grit/test/dot_git/objects/dd/0d926603e93d455d1986c28adb6596062580f0 +0 -0
  2329. data/vendor/plugins/grit/test/dot_git/objects/dd/7efbb77e82a842d13c91288c372e26fc701ed6 +0 -0
  2330. data/vendor/plugins/grit/test/dot_git/objects/de/6582afb45f6095e001f58add5ea7c10e9dcb6d +1 -0
  2331. data/vendor/plugins/grit/test/dot_git/objects/de/b2346f42ba644e6768541b5eded5d381c26158 +0 -0
  2332. data/vendor/plugins/grit/test/dot_git/objects/de/e78dfdbff2d10b632252914a27b087c133c6c0 +0 -0
  2333. data/vendor/plugins/grit/test/dot_git/objects/df/bda7c78373c97807758e7385e980ea1969a6a6 +0 -0
  2334. data/vendor/plugins/grit/test/dot_git/objects/df/eb56c9ad7ffe4aa3119f378720dea2e4c7b663 +0 -0
  2335. data/vendor/plugins/grit/test/dot_git/objects/df/eeb6e6ca48947e35b882ae04bdcc7cbc992d99 +0 -0
  2336. data/vendor/plugins/grit/test/dot_git/objects/e0/2bcf0380749a290c327fad97bfb383ca54bcb3 +0 -0
  2337. data/vendor/plugins/grit/test/dot_git/objects/e0/34f8ea24c4f0e5a5ad74291148ab8a94843dcf +0 -0
  2338. data/vendor/plugins/grit/test/dot_git/objects/e1/c2a8f7843b588275eda6f3c8e321e23e74fd96 +0 -0
  2339. data/vendor/plugins/grit/test/dot_git/objects/e2/496eb77be920be74b1e9685a737a0f774d4fcf +0 -0
  2340. data/vendor/plugins/grit/test/dot_git/objects/e2/4cc74b1f91acd0cc01b6cc413319155934735f +0 -0
  2341. data/vendor/plugins/grit/test/dot_git/objects/e2/52fa762a251d01725a8d4c5becb136e9955fe8 +0 -0
  2342. data/vendor/plugins/grit/test/dot_git/objects/e2/56e219e2898ef4e259472205a4cfb3fb782f3b +0 -0
  2343. data/vendor/plugins/grit/test/dot_git/objects/e2/a696dd7cc6a5870130b7111fd0d768101aef73 +0 -0
  2344. data/vendor/plugins/grit/test/dot_git/objects/e2/c9f53517ee568ac02ce2b8f2633e8b0a9f513e +0 -0
  2345. data/vendor/plugins/grit/test/dot_git/objects/e3/2412d181cced969cb0259656bed360e07e1c3a +0 -0
  2346. data/vendor/plugins/grit/test/dot_git/objects/e3/3e78cb3c472bc6e1566146f6758851ce2677b6 +0 -0
  2347. data/vendor/plugins/grit/test/dot_git/objects/e3/8017572b5eae23f041a40cb49292213e603cd2 +0 -0
  2348. data/vendor/plugins/grit/test/dot_git/objects/e3/a3038573f3b1246def8ef1a1614f054bedf997 +0 -0
  2349. data/vendor/plugins/grit/test/dot_git/objects/e3/e846396d26e98aa34d26c7417e851f46801f9a +0 -0
  2350. data/vendor/plugins/grit/test/dot_git/objects/e4/2c5d4e90496dec671202ade0099d0ab93beb9d +0 -0
  2351. data/vendor/plugins/grit/test/dot_git/objects/e4/36cb7f50f0d742c0e0aa972092ec9bebb7f576 +0 -0
  2352. data/vendor/plugins/grit/test/dot_git/objects/e4/45223b62c0dfe199d2db14b439c5eb1f10edd4 +0 -0
  2353. data/vendor/plugins/grit/test/dot_git/objects/e4/76515e4c1e9c034f44efea8cb96bc137cd4c94 +0 -0
  2354. data/vendor/plugins/grit/test/dot_git/objects/e4/c491a2a3369cd2dbb250ee51c77026a9f0e890 +0 -0
  2355. data/vendor/plugins/grit/test/dot_git/objects/e4/d1fc91a3740ecf260efeaaaf6e7376021900e1 +2 -0
  2356. data/vendor/plugins/grit/test/dot_git/objects/e4/e9744dfabd3c54cddf8274d95ffe7e8d4ae1f6 +0 -0
  2357. data/vendor/plugins/grit/test/dot_git/objects/e5/3c62a8e65bcb441de67dd388f22d9e59ff41b4 +1 -0
  2358. data/vendor/plugins/grit/test/dot_git/objects/e5/b2c414dddbe9e0c485e4021afe939e6f760113 +0 -0
  2359. data/vendor/plugins/grit/test/dot_git/objects/e6/04d431540c63ebb9387bd1506b7df63e3d4868 +0 -0
  2360. data/vendor/plugins/grit/test/dot_git/objects/e6/1b707b59d20dc125ae1c2383eb67e06ee6686e +1 -0
  2361. data/vendor/plugins/grit/test/dot_git/objects/e6/2bf8d52ea71f4bfa9f703291736740662a569e +0 -0
  2362. data/vendor/plugins/grit/test/dot_git/objects/e6/30c25e624543723c051a8cef0b7894a43b5d66 +0 -0
  2363. data/vendor/plugins/grit/test/dot_git/objects/e6/d63855e008c8a3a126fe042e8411bf60c6d6a1 +0 -0
  2364. data/vendor/plugins/grit/test/dot_git/objects/e6/e2baff2ba5e92ee6487187f4d0a47a6e981dc3 +0 -0
  2365. data/vendor/plugins/grit/test/dot_git/objects/e7/67e28974d0047a53f3880d1361822c2386873b +1 -0
  2366. data/vendor/plugins/grit/test/dot_git/objects/e7/681e997de80c7d57e2c8e09c50c990c55d3b1c +0 -0
  2367. data/vendor/plugins/grit/test/dot_git/objects/e7/68654a38ce8abc9f3b62d6860e386dc6188ed1 +0 -0
  2368. data/vendor/plugins/grit/test/dot_git/objects/e7/7a296aa02490f6a8d2ee4cb61e3600cdd416be +0 -0
  2369. data/vendor/plugins/grit/test/dot_git/objects/e7/9953820104e86a400504a738d09a9af1a85d52 +0 -0
  2370. data/vendor/plugins/grit/test/dot_git/objects/e7/ca677143058e804352ae7225ec7ee077e732cc +0 -0
  2371. data/vendor/plugins/grit/test/dot_git/objects/e8/c36a5942eb01f7036ed8969f5845c4d5385896 +0 -0
  2372. data/vendor/plugins/grit/test/dot_git/objects/e8/cecd71bf2bf0ee79b8254de22260bcacabe3aa +0 -0
  2373. data/vendor/plugins/grit/test/dot_git/objects/e9/0d7972cddfcbed0e7efd7dac92cbe894c226f0 +0 -0
  2374. data/vendor/plugins/grit/test/dot_git/objects/e9/13e5150f7f6789f16afe8276c0c4cbd4e6d374 +0 -0
  2375. data/vendor/plugins/grit/test/dot_git/objects/e9/2a43db63f1c8bd572270140e8771fd33d1e415 +0 -0
  2376. data/vendor/plugins/grit/test/dot_git/objects/e9/462ac46b53343c09ea5dcdc7ab53b28dbdaf95 +0 -0
  2377. data/vendor/plugins/grit/test/dot_git/objects/e9/4f08ad7175d17064b709e487cf3d16954fb204 +0 -0
  2378. data/vendor/plugins/grit/test/dot_git/objects/e9/594eba936a7a228d42b65d700bebff95a4d7d9 +2 -0
  2379. data/vendor/plugins/grit/test/dot_git/objects/e9/5d5db706850682b2798f7643e31f3f82cfa8e0 +0 -0
  2380. data/vendor/plugins/grit/test/dot_git/objects/e9/6f1622e59e32a89c727359f2c8c5e598d719c8 +0 -0
  2381. data/vendor/plugins/grit/test/dot_git/objects/e9/95e20b7c6ad21823aedc5d3646271bbb5565a9 +0 -0
  2382. data/vendor/plugins/grit/test/dot_git/objects/e9/c97e96fc539a6586110b4698c64e8167f09b7d +1 -0
  2383. data/vendor/plugins/grit/test/dot_git/objects/ea/35a4556f5a6f1e25e133e0c4928c1bd9994356 +0 -0
  2384. data/vendor/plugins/grit/test/dot_git/objects/ea/7d7232c2035543c3b0f349339d50157874b5f0 +0 -0
  2385. data/vendor/plugins/grit/test/dot_git/objects/ea/94f383c239922fd70cc0433e2f34484b630f52 +0 -0
  2386. data/vendor/plugins/grit/test/dot_git/objects/eb/0661fd2ee02af9e0c5c885028f147fbd5f13ab +0 -0
  2387. data/vendor/plugins/grit/test/dot_git/objects/eb/275489327879906f5ced9f04220aa896534243 +0 -0
  2388. data/vendor/plugins/grit/test/dot_git/objects/eb/8ca7d4157905fe359425a58c05c4c43ceb3911 +0 -0
  2389. data/vendor/plugins/grit/test/dot_git/objects/eb/9c34e472281434001fb733bb12dcef2a27fc1e +0 -0
  2390. data/vendor/plugins/grit/test/dot_git/objects/eb/edf3022c32069f7c375fed501e27ce570a8df7 +0 -0
  2391. data/vendor/plugins/grit/test/dot_git/objects/eb/ee5088c07150ab83f09d7f56b7317afdc0b447 +0 -0
  2392. data/vendor/plugins/grit/test/dot_git/objects/ec/256eeca5ef0eb92479e4b5dec684deb962e952 +0 -0
  2393. data/vendor/plugins/grit/test/dot_git/objects/ec/43985d3cabe16a0096836a5ad64317101bb0a6 +0 -0
  2394. data/vendor/plugins/grit/test/dot_git/objects/ec/a0c428506f18dc36589e9464513f7157cd6e52 +0 -0
  2395. data/vendor/plugins/grit/test/dot_git/objects/ec/c3c63aa7cd24a169698704dcbddd9dc19f81f1 +0 -0
  2396. data/vendor/plugins/grit/test/dot_git/objects/ed/0facca8d7f95104e95cc6682f77c8171c5423a +0 -0
  2397. data/vendor/plugins/grit/test/dot_git/objects/ed/3d99d5dc459aca24614bb4ca672413aa41d64a +0 -0
  2398. data/vendor/plugins/grit/test/dot_git/objects/ed/a08db954e49e1d794a7e74a81a2a5b2215a9a4 +0 -0
  2399. data/vendor/plugins/grit/test/dot_git/objects/ed/a3c8823fddd1f491948351df3757b624d5f3ef +0 -0
  2400. data/vendor/plugins/grit/test/dot_git/objects/ed/c62f0fb7f82ee1ad7c29b42e513960fdcf13d9 +0 -0
  2401. data/vendor/plugins/grit/test/dot_git/objects/ee/0ca6cafabbf02988a2e023b35c1567f9b0795e +0 -0
  2402. data/vendor/plugins/grit/test/dot_git/objects/ee/2b012174a4a37234adb948bc56ec2ed55881fb +0 -0
  2403. data/vendor/plugins/grit/test/dot_git/objects/ee/88371bc4a42cb7980fdb7704be9f05fee3b0a3 +0 -0
  2404. data/vendor/plugins/grit/test/dot_git/objects/ee/ccc934cad8bb74624ed388988fe79c26e6900d +0 -0
  2405. data/vendor/plugins/grit/test/dot_git/objects/ee/de095009fcdde7b3bb4ddc21f3f479eb2331c2 +0 -0
  2406. data/vendor/plugins/grit/test/dot_git/objects/ee/e211414ed00e6b5b65d81179ea21d5c052addd +0 -0
  2407. data/vendor/plugins/grit/test/dot_git/objects/ee/e9df3d091825b2ce066c0fe717e2224f2f2931 +0 -0
  2408. data/vendor/plugins/grit/test/dot_git/objects/ef/9d99db794a654d4c67527d277064481e996c5a +0 -0
  2409. data/vendor/plugins/grit/test/dot_git/objects/ef/9e75f59ccadfd4c67c6853828b9bc34d974ec7 +0 -0
  2410. data/vendor/plugins/grit/test/dot_git/objects/ef/b165f0221d9739b6be5179ae3cecd633e45ce8 +0 -0
  2411. data/vendor/plugins/grit/test/dot_git/objects/ef/e949a5fd8eb03a7380b2eccb2fc7dcabef6899 +1 -0
  2412. data/vendor/plugins/grit/test/dot_git/objects/f0/32303006cdfe5892e2f8f64cf0f972d351b9a3 +0 -0
  2413. data/vendor/plugins/grit/test/dot_git/objects/f0/5fb20e635d8ae2ff50ccb6a984274e58058632 +0 -0
  2414. data/vendor/plugins/grit/test/dot_git/objects/f0/6db1288baf0f8671f287ad5a2a91d943747068 +0 -0
  2415. data/vendor/plugins/grit/test/dot_git/objects/f0/f6f7e25c4bdd0647932e859fca992ff37869b3 +0 -0
  2416. data/vendor/plugins/grit/test/dot_git/objects/f0/f87fe091f1256b42135c6e2e482cd3a078c7f9 +0 -0
  2417. data/vendor/plugins/grit/test/dot_git/objects/f1/0267a9fd3a1baaf9ba9e869f23e9941f16a040 +0 -0
  2418. data/vendor/plugins/grit/test/dot_git/objects/f1/0a750f2d5017a105d99d49dac1a86adcfef830 +0 -0
  2419. data/vendor/plugins/grit/test/dot_git/objects/f1/279e3559971fcd3ab535140d9f320796f48269 +0 -0
  2420. data/vendor/plugins/grit/test/dot_git/objects/f1/43aeeecdd4c7736a3d9767acf598e9c5f10e9e +0 -0
  2421. data/vendor/plugins/grit/test/dot_git/objects/f1/bf0001951ac41581e708bacacc4bdb4deddf3c +0 -0
  2422. data/vendor/plugins/grit/test/dot_git/objects/f2/0b59e485ec38019c363f3e1e89e0f804ed48ec +0 -0
  2423. data/vendor/plugins/grit/test/dot_git/objects/f2/2d0c85fbcfc90bc51ef9a9131d03033ca11115 +0 -0
  2424. data/vendor/plugins/grit/test/dot_git/objects/f2/41613e98ac4f7d57d45dfd8d7f38b7c8df99f3 +0 -0
  2425. data/vendor/plugins/grit/test/dot_git/objects/f2/46936f2d7e901199afad8bb7e1e3b27de590a6 +0 -0
  2426. data/vendor/plugins/grit/test/dot_git/objects/f2/4881f7c6a31653a8d979a9d57dc892987be60c +0 -0
  2427. data/vendor/plugins/grit/test/dot_git/objects/f2/4e3a795e54ee05df27ecd67f24d7033f954e2d +0 -0
  2428. data/vendor/plugins/grit/test/dot_git/objects/f2/55ce10804955454568678091a6f328ef66a8a6 +0 -0
  2429. data/vendor/plugins/grit/test/dot_git/objects/f2/7d9bd39b44bd80abd029a481c6a54617d0d170 +0 -0
  2430. data/vendor/plugins/grit/test/dot_git/objects/f2/8d3bb5dd2c9be42f4ec9458808a4d8487c2e3e +0 -0
  2431. data/vendor/plugins/grit/test/dot_git/objects/f2/c90099c5e43ab88371cdccc411d0424b0a4fb9 +1 -0
  2432. data/vendor/plugins/grit/test/dot_git/objects/f2/ce4153e5b1231e5603dea5772cd7a895d93923 +0 -0
  2433. data/vendor/plugins/grit/test/dot_git/objects/f2/e63e8292a9e5750c459398d54f3ad9a23c18d7 +0 -0
  2434. data/vendor/plugins/grit/test/dot_git/objects/f3/58447ff06a87a0aeac39e1945e3c635b328801 +0 -0
  2435. data/vendor/plugins/grit/test/dot_git/objects/f3/7527fc3a9a67a11e982ac64d37b6f8ed68d297 +0 -0
  2436. data/vendor/plugins/grit/test/dot_git/objects/f3/b578c9694e83744b094524cbd190f2763f4a12 +0 -0
  2437. data/vendor/plugins/grit/test/dot_git/objects/f3/f1411becc7ea375d82a8cd1e6581f112dcb7d0 +0 -0
  2438. data/vendor/plugins/grit/test/dot_git/objects/f4/1be6d524d8db969348f7e3bdcc08908932bb4e +0 -0
  2439. data/vendor/plugins/grit/test/dot_git/objects/f4/401b69f04ff4a08df8e03e7883feca260f30f1 +0 -0
  2440. data/vendor/plugins/grit/test/dot_git/objects/f4/e4a260042d8030185c55a6005496ca7735ac3e +0 -0
  2441. data/vendor/plugins/grit/test/dot_git/objects/f5/0489c78cc3d06d797c82d871726716684fc61c +0 -0
  2442. data/vendor/plugins/grit/test/dot_git/objects/f5/3a1631d49cfdb0a257974b3ebc0b5bc79bde52 +0 -0
  2443. data/vendor/plugins/grit/test/dot_git/objects/f5/3d11ab42a370d97a2121c864b411aaca6f08dd +0 -0
  2444. data/vendor/plugins/grit/test/dot_git/objects/f5/3eb189e857104b44de96b0a41436ebf60ffd78 +0 -0
  2445. data/vendor/plugins/grit/test/dot_git/objects/f5/42ce17ea0da75b3de894eb7d0ffd8b9efe97d2 +0 -0
  2446. data/vendor/plugins/grit/test/dot_git/objects/f5/69f066cdae3a13946f7ef9608677006ff387ed +0 -0
  2447. data/vendor/plugins/grit/test/dot_git/objects/f5/6b3f207a27f31f0d625926f822ca2e48d9d0d4 +0 -0
  2448. data/vendor/plugins/grit/test/dot_git/objects/f5/923002632da369454a1dc158ea3c0306fdeeee +0 -0
  2449. data/vendor/plugins/grit/test/dot_git/objects/f5/c3d3175f45e9bc0d22a18c23d05aa3efd495dd +0 -0
  2450. data/vendor/plugins/grit/test/dot_git/objects/f6/2215251c1d9fd76bdfb6454446cb1826ee9246 +0 -0
  2451. data/vendor/plugins/grit/test/dot_git/objects/f6/c9c0b559fd041a0a23d33ae4bb605f0dba7b58 +0 -0
  2452. data/vendor/plugins/grit/test/dot_git/objects/f7/3b9daf41c4c1380be40168b5cb7a3fefb87728 +0 -0
  2453. data/vendor/plugins/grit/test/dot_git/objects/f7/f0d1e2900534942ca33db3655dca736cf511cd +0 -0
  2454. data/vendor/plugins/grit/test/dot_git/objects/f8/1eec2ace52484d074b1db7a29b32c8b716d056 +0 -0
  2455. data/vendor/plugins/grit/test/dot_git/objects/f8/206296fd197c506a224e9bbee22a8dccd2d8b7 +0 -0
  2456. data/vendor/plugins/grit/test/dot_git/objects/f8/5c1f389f7a79aff1d3f05abb8dbff7e7c15ee0 +0 -0
  2457. data/vendor/plugins/grit/test/dot_git/objects/f8/f75c70d9abddb176e61fe67520a0f0a168b8ee +0 -0
  2458. data/vendor/plugins/grit/test/dot_git/objects/f9/1286d73b748a0008e48f03362e4642cd5dc9b3 +0 -0
  2459. data/vendor/plugins/grit/test/dot_git/objects/f9/f3fe3f0b327e5b7955a195e5d789791bcc08f1 +0 -0
  2460. data/vendor/plugins/grit/test/dot_git/objects/fa/18b41bbe8588286eaa9e969516ad761d0e3014 +0 -0
  2461. data/vendor/plugins/grit/test/dot_git/objects/fa/3c45fbf74c431e978028feee0b2fdd5253a150 +0 -0
  2462. data/vendor/plugins/grit/test/dot_git/objects/fa/64d91bcda155c1622505ca91dde0fa694c04c1 +0 -0
  2463. data/vendor/plugins/grit/test/dot_git/objects/fa/b9a01ca267b7eec6fa6f215c34b9967d8565a7 +0 -0
  2464. data/vendor/plugins/grit/test/dot_git/objects/fa/dd0862e018dbf21be3c6775acf9b93df85b8ae +0 -0
  2465. data/vendor/plugins/grit/test/dot_git/objects/fb/646a3ac70216618af383ce1bec1e05692d81fd +0 -0
  2466. data/vendor/plugins/grit/test/dot_git/objects/fb/720415bc5672ba589928d8ac63c5fcc7de2eb0 +0 -0
  2467. data/vendor/plugins/grit/test/dot_git/objects/fb/c4ed43dfd3173f9707e3d7657809dc77c0bd9a +0 -0
  2468. data/vendor/plugins/grit/test/dot_git/objects/fc/0bfccdebfaea6fbb28e5a6cea62f9a820ea817 +0 -0
  2469. data/vendor/plugins/grit/test/dot_git/objects/fc/ee3824a8d0213b9a3a940653e9fafaeaeeae1d +0 -0
  2470. data/vendor/plugins/grit/test/dot_git/objects/fd/f213805d60b3c1736a8121b8388ff143363e58 +0 -0
  2471. data/vendor/plugins/grit/test/dot_git/objects/fe/790b61726b8a710b66df71b8999798d9a8e176 +0 -0
  2472. data/vendor/plugins/grit/test/dot_git/objects/fe/7efffeafed1ecd4679b5526d72a7dd3df140a9 +0 -0
  2473. data/vendor/plugins/grit/test/dot_git/objects/fe/96440abd8d769d80037c7a8afcbf225156b604 +0 -0
  2474. data/vendor/plugins/grit/test/dot_git/objects/fe/a98a018892bd22aa0bf7de727097eafc66ecc2 +0 -0
  2475. data/vendor/plugins/grit/test/dot_git/objects/fe/cd79941b5854d9a729c4b0752ebc23c49ae0f0 +0 -0
  2476. data/vendor/plugins/grit/test/dot_git/objects/fe/d488d40a767dd69f1e6aa6ba060e8669666391 +0 -0
  2477. data/vendor/plugins/grit/test/dot_git/objects/fe/f69482cd45384aeccd1161cdbbf754a524a811 +0 -0
  2478. data/vendor/plugins/grit/test/dot_git/objects/ff/0f42a1d984cdcd4b647e713eaec668177fb1f6 +3 -0
  2479. data/vendor/plugins/grit/test/dot_git/objects/ff/2a1936f7883f44e7587a65dcbb5d18b03f3835 +0 -0
  2480. data/vendor/plugins/grit/test/dot_git/objects/ff/667b71fb08b0642e5a92087e763fc09096893c +0 -0
  2481. data/vendor/plugins/grit/test/dot_git/objects/ff/97e5351d9fccccd047d798573c5a61771fc6c9 +0 -0
  2482. data/vendor/plugins/grit/test/dot_git/objects/info/alternates +0 -0
  2483. data/vendor/plugins/grit/test/dot_git/objects/pack/pack-c8881c2613522dc3ac69af9c7b4881a061aaec8c.idx +0 -0
  2484. data/vendor/plugins/grit/test/dot_git/objects/pack/pack-c8881c2613522dc3ac69af9c7b4881a061aaec8c.keep +1 -0
  2485. data/vendor/plugins/grit/test/dot_git/objects/pack/pack-c8881c2613522dc3ac69af9c7b4881a061aaec8c.pack +0 -0
  2486. data/vendor/plugins/grit/test/dot_git/packed-refs +10 -0
  2487. data/vendor/plugins/grit/test/dot_git/refs/heads/nonpack +1 -0
  2488. data/vendor/plugins/grit/test/dot_git/refs/remotes/origin/HEAD +1 -0
  2489. data/vendor/plugins/grit/test/dot_git/refs/remotes/origin/master +1 -0
  2490. data/vendor/plugins/grit/test/dot_git/refs/remotes/tom/master +1 -0
  2491. data/vendor/plugins/grit/test/dot_git/refs/tags/annotated +1 -0
  2492. data/vendor/plugins/grit/test/dot_git/refs/tags/not_annotated +1 -0
  2493. data/vendor/plugins/grit/test/dot_git/refs/tags/v0.7.0 +1 -0
  2494. data/vendor/plugins/grit/test/dot_git_clone/HEAD +1 -0
  2495. data/vendor/plugins/grit/test/dot_git_clone/config +4 -0
  2496. data/vendor/plugins/grit/test/dot_git_clone/description +1 -0
  2497. data/vendor/plugins/grit/test/dot_git_clone/hooks/applypatch-msg +15 -0
  2498. data/vendor/plugins/grit/test/dot_git_clone/hooks/commit-msg +24 -0
  2499. data/vendor/plugins/grit/test/dot_git_clone/hooks/post-commit +8 -0
  2500. data/vendor/plugins/grit/test/dot_git_clone/hooks/post-receive +16 -0
  2501. data/vendor/plugins/grit/test/dot_git_clone/hooks/post-update +8 -0
  2502. data/vendor/plugins/grit/test/dot_git_clone/hooks/pre-applypatch +14 -0
  2503. data/vendor/plugins/grit/test/dot_git_clone/hooks/pre-commit +70 -0
  2504. data/vendor/plugins/grit/test/dot_git_clone/hooks/pre-rebase +150 -0
  2505. data/vendor/plugins/grit/test/dot_git_clone/hooks/prepare-commit-msg +36 -0
  2506. data/vendor/plugins/grit/test/dot_git_clone/hooks/update +107 -0
  2507. data/vendor/plugins/grit/test/dot_git_clone/info/exclude +6 -0
  2508. data/vendor/plugins/grit/test/dot_git_clone/objects/info/alternates +1 -0
  2509. data/vendor/plugins/grit/test/dot_git_clone/refs/heads/master +1 -0
  2510. data/vendor/plugins/grit/test/dot_git_clone/refs/heads/nonpack +1 -0
  2511. data/vendor/plugins/grit/test/dot_git_clone/refs/heads/test/chacon +1 -0
  2512. data/vendor/plugins/grit/test/dot_git_clone/refs/heads/testing +1 -0
  2513. data/vendor/plugins/grit/test/dot_git_clone/refs/tags/v0.7.0 +1 -0
  2514. data/vendor/plugins/grit/test/dot_git_clone2/HEAD +1 -0
  2515. data/vendor/plugins/grit/test/dot_git_clone2/config +4 -0
  2516. data/vendor/plugins/grit/test/dot_git_clone2/description +1 -0
  2517. data/vendor/plugins/grit/test/dot_git_clone2/hooks/applypatch-msg +15 -0
  2518. data/vendor/plugins/grit/test/dot_git_clone2/hooks/commit-msg +24 -0
  2519. data/vendor/plugins/grit/test/dot_git_clone2/hooks/post-commit +8 -0
  2520. data/vendor/plugins/grit/test/dot_git_clone2/hooks/post-receive +16 -0
  2521. data/vendor/plugins/grit/test/dot_git_clone2/hooks/post-update +8 -0
  2522. data/vendor/plugins/grit/test/dot_git_clone2/hooks/pre-applypatch +14 -0
  2523. data/vendor/plugins/grit/test/dot_git_clone2/hooks/pre-commit +70 -0
  2524. data/vendor/plugins/grit/test/dot_git_clone2/hooks/pre-rebase +150 -0
  2525. data/vendor/plugins/grit/test/dot_git_clone2/hooks/prepare-commit-msg +36 -0
  2526. data/vendor/plugins/grit/test/dot_git_clone2/hooks/update +107 -0
  2527. data/vendor/plugins/grit/test/dot_git_clone2/info/exclude +6 -0
  2528. data/vendor/plugins/grit/test/dot_git_clone2/objects/info/alternates +1 -0
  2529. data/vendor/plugins/grit/test/dot_git_clone2/refs/heads/master +1 -0
  2530. data/vendor/plugins/grit/test/dot_git_clone2/refs/heads/nonpack +1 -0
  2531. data/vendor/plugins/grit/test/dot_git_clone2/refs/heads/test/chacon +1 -0
  2532. data/vendor/plugins/grit/test/dot_git_clone2/refs/heads/testing +1 -0
  2533. data/vendor/plugins/grit/test/dot_git_clone2/refs/tags/v0.7.0 +1 -0
  2534. data/vendor/plugins/grit/test/dot_git_iv2/HEAD +1 -0
  2535. data/vendor/plugins/grit/test/dot_git_iv2/config +11 -0
  2536. data/vendor/plugins/grit/test/dot_git_iv2/description +1 -0
  2537. data/vendor/plugins/grit/test/dot_git_iv2/index +0 -0
  2538. data/vendor/plugins/grit/test/dot_git_iv2/info/exclude +6 -0
  2539. data/vendor/plugins/grit/test/dot_git_iv2/info/refs +10 -0
  2540. data/vendor/plugins/grit/test/dot_git_iv2/objects/info/alternates +0 -0
  2541. data/vendor/plugins/grit/test/dot_git_iv2/objects/info/packs +3 -0
  2542. data/vendor/plugins/grit/test/dot_git_iv2/objects/pack/pack-4eb8bbafbe65e4f3841581537735fc5d448759c5.idx +0 -0
  2543. data/vendor/plugins/grit/test/dot_git_iv2/objects/pack/pack-4eb8bbafbe65e4f3841581537735fc5d448759c5.pack +0 -0
  2544. data/vendor/plugins/grit/test/dot_git_iv2/objects/pack/pack-c8881c2613522dc3ac69af9c7b4881a061aaec8c.idx +0 -0
  2545. data/vendor/plugins/grit/test/dot_git_iv2/objects/pack/pack-c8881c2613522dc3ac69af9c7b4881a061aaec8c.keep +1 -0
  2546. data/vendor/plugins/grit/test/dot_git_iv2/objects/pack/pack-c8881c2613522dc3ac69af9c7b4881a061aaec8c.pack +0 -0
  2547. data/vendor/plugins/grit/test/dot_git_iv2/packed-refs +10 -0
  2548. data/vendor/plugins/grit/test/dot_git_iv2/refs/remotes/origin/HEAD +1 -0
  2549. data/vendor/plugins/grit/test/fixtures/blame +131 -0
  2550. data/vendor/plugins/grit/test/fixtures/cat_file_blob +1 -0
  2551. data/vendor/plugins/grit/test/fixtures/cat_file_blob_ruby +5 -0
  2552. data/vendor/plugins/grit/test/fixtures/cat_file_blob_size +1 -0
  2553. data/vendor/plugins/grit/test/fixtures/cat_file_commit_ruby +7 -0
  2554. data/vendor/plugins/grit/test/fixtures/cat_file_tree_ruby +7 -0
  2555. data/vendor/plugins/grit/test/fixtures/commit +3 -0
  2556. data/vendor/plugins/grit/test/fixtures/diff_2 +54 -0
  2557. data/vendor/plugins/grit/test/fixtures/diff_2f +19 -0
  2558. data/vendor/plugins/grit/test/fixtures/diff_f +15 -0
  2559. data/vendor/plugins/grit/test/fixtures/diff_files +4 -0
  2560. data/vendor/plugins/grit/test/fixtures/diff_i +201 -0
  2561. data/vendor/plugins/grit/test/fixtures/diff_index +5 -0
  2562. data/vendor/plugins/grit/test/fixtures/diff_mode_only +1152 -0
  2563. data/vendor/plugins/grit/test/fixtures/diff_new_mode +17 -0
  2564. data/vendor/plugins/grit/test/fixtures/diff_p +610 -0
  2565. data/vendor/plugins/grit/test/fixtures/for_each_ref +0 -0
  2566. data/vendor/plugins/grit/test/fixtures/for_each_ref_remotes +0 -0
  2567. data/vendor/plugins/grit/test/fixtures/for_each_ref_tags +0 -0
  2568. data/vendor/plugins/grit/test/fixtures/gitmodules +6 -0
  2569. data/vendor/plugins/grit/test/fixtures/log +30 -0
  2570. data/vendor/plugins/grit/test/fixtures/ls_files +17 -0
  2571. data/vendor/plugins/grit/test/fixtures/ls_tree_a +7 -0
  2572. data/vendor/plugins/grit/test/fixtures/ls_tree_b +2 -0
  2573. data/vendor/plugins/grit/test/fixtures/ls_tree_commit +3 -0
  2574. data/vendor/plugins/grit/test/fixtures/ls_tree_paths_ruby +2 -0
  2575. data/vendor/plugins/grit/test/fixtures/ls_tree_paths_ruby_deep +2 -0
  2576. data/vendor/plugins/grit/test/fixtures/ls_tree_subdir +12 -0
  2577. data/vendor/plugins/grit/test/fixtures/ls_tree_submodule +1 -0
  2578. data/vendor/plugins/grit/test/fixtures/merge_result +76 -0
  2579. data/vendor/plugins/grit/test/fixtures/rev_list +26 -0
  2580. data/vendor/plugins/grit/test/fixtures/rev_list_all +892 -0
  2581. data/vendor/plugins/grit/test/fixtures/rev_list_count +655 -0
  2582. data/vendor/plugins/grit/test/fixtures/rev_list_delta_a +8 -0
  2583. data/vendor/plugins/grit/test/fixtures/rev_list_delta_b +11 -0
  2584. data/vendor/plugins/grit/test/fixtures/rev_list_lines +107 -0
  2585. data/vendor/plugins/grit/test/fixtures/rev_list_range +4 -0
  2586. data/vendor/plugins/grit/test/fixtures/rev_list_since +23 -0
  2587. data/vendor/plugins/grit/test/fixtures/rev_list_single +7 -0
  2588. data/vendor/plugins/grit/test/fixtures/rev_parse +1 -0
  2589. data/vendor/plugins/grit/test/fixtures/ruby_diff +216 -0
  2590. data/vendor/plugins/grit/test/fixtures/ruby_diff_full_index +216 -0
  2591. data/vendor/plugins/grit/test/fixtures/ruby_for_each_ref +6 -0
  2592. data/vendor/plugins/grit/test/fixtures/show_cc +637 -0
  2593. data/vendor/plugins/grit/test/fixtures/show_empty_commit +6 -0
  2594. data/vendor/plugins/grit/test/fixtures/simple_config +2 -0
  2595. data/vendor/plugins/grit/test/helper.rb +18 -0
  2596. data/vendor/plugins/grit/test/profile.rb +21 -0
  2597. data/vendor/plugins/grit/test/suite.rb +6 -0
  2598. data/vendor/plugins/grit/test/test_actor.rb +35 -0
  2599. data/vendor/plugins/grit/test/test_blame.rb +32 -0
  2600. data/vendor/plugins/grit/test/test_blame_tree.rb +33 -0
  2601. data/vendor/plugins/grit/test/test_blob.rb +83 -0
  2602. data/vendor/plugins/grit/test/test_commit.rb +207 -0
  2603. data/vendor/plugins/grit/test/test_commit_stats.rb +33 -0
  2604. data/vendor/plugins/grit/test/test_commit_write.rb +20 -0
  2605. data/vendor/plugins/grit/test/test_config.rb +58 -0
  2606. data/vendor/plugins/grit/test/test_diff.rb +18 -0
  2607. data/vendor/plugins/grit/test/test_file_index.rb +56 -0
  2608. data/vendor/plugins/grit/test/test_git.rb +105 -0
  2609. data/vendor/plugins/grit/test/test_grit.rb +32 -0
  2610. data/vendor/plugins/grit/test/test_head.rb +47 -0
  2611. data/vendor/plugins/grit/test/test_index_status.rb +40 -0
  2612. data/vendor/plugins/grit/test/test_merge.rb +17 -0
  2613. data/vendor/plugins/grit/test/test_raw.rb +16 -0
  2614. data/vendor/plugins/grit/test/test_real.rb +19 -0
  2615. data/vendor/plugins/grit/test/test_reality.rb +17 -0
  2616. data/vendor/plugins/grit/test/test_remote.rb +14 -0
  2617. data/vendor/plugins/grit/test/test_repo.rb +349 -0
  2618. data/vendor/plugins/grit/test/test_rubygit.rb +192 -0
  2619. data/vendor/plugins/grit/test/test_rubygit_alt.rb +40 -0
  2620. data/vendor/plugins/grit/test/test_rubygit_index.rb +76 -0
  2621. data/vendor/plugins/grit/test/test_rubygit_iv2.rb +28 -0
  2622. data/vendor/plugins/grit/test/test_submodule.rb +69 -0
  2623. data/vendor/plugins/grit/test/test_tag.rb +67 -0
  2624. data/vendor/plugins/grit/test/test_tree.rb +101 -0
  2625. data/vendor/plugins/slugify/.gitignore +2 -0
  2626. data/vendor/plugins/slugify/GPL_LICENSE +674 -0
  2627. data/vendor/plugins/slugify/MIT_LICENSE +22 -0
  2628. data/vendor/plugins/slugify/README.rdoc +37 -0
  2629. data/vendor/plugins/slugify/Rakefile +6 -0
  2630. data/vendor/plugins/slugify/lib/slugify.rb +56 -0
  2631. data/vendor/plugins/slugify/lib/slugify/slug_generator.rb +141 -0
  2632. data/vendor/plugins/slugify/lib/slugify/version.rb +9 -0
  2633. data/vendor/plugins/slugify/rakefiles/flog.rake +10 -0
  2634. data/vendor/plugins/slugify/rakefiles/rdoc.rake +16 -0
  2635. data/vendor/plugins/slugify/rakefiles/rspec.rake +21 -0
  2636. data/vendor/plugins/slugify/rakefiles/sloc.rake +16 -0
  2637. data/vendor/plugins/slugify/rakefiles/tags.rake +23 -0
  2638. data/vendor/plugins/slugify/spec/fixtures.rb +49 -0
  2639. data/vendor/plugins/slugify/spec/slugify/inclusion_spec.rb +9 -0
  2640. data/vendor/plugins/slugify/spec/slugify/slug_generation_spec.rb +9 -0
  2641. data/vendor/plugins/slugify/spec/slugify/slug_spec.rb +353 -0
  2642. data/vendor/plugins/slugify/spec/slugify/sti_spec.rb +23 -0
  2643. data/vendor/plugins/slugify/spec/slugify/version_spec.rb +9 -0
  2644. data/vendor/plugins/slugify/spec/spec.opts +1 -0
  2645. data/vendor/plugins/slugify/spec/spec_helper.rb +72 -0
  2646. data/vendor/rails/actionmailer/CHANGELOG +366 -0
  2647. data/vendor/rails/actionmailer/MIT-LICENSE +21 -0
  2648. data/vendor/rails/actionmailer/README +149 -0
  2649. data/vendor/rails/actionmailer/Rakefile +99 -0
  2650. data/vendor/rails/actionmailer/install.rb +30 -0
  2651. data/vendor/rails/actionmailer/lib/action_mailer.rb +62 -0
  2652. data/vendor/rails/actionmailer/lib/action_mailer/adv_attr_accessor.rb +30 -0
  2653. data/vendor/rails/actionmailer/lib/action_mailer/base.rb +706 -0
  2654. data/vendor/rails/actionmailer/lib/action_mailer/helpers.rb +113 -0
  2655. data/vendor/rails/actionmailer/lib/action_mailer/mail_helper.rb +17 -0
  2656. data/vendor/rails/actionmailer/lib/action_mailer/part.rb +107 -0
  2657. data/vendor/rails/actionmailer/lib/action_mailer/part_container.rb +55 -0
  2658. data/vendor/rails/actionmailer/lib/action_mailer/quoting.rb +61 -0
  2659. data/vendor/rails/actionmailer/lib/action_mailer/test_case.rb +64 -0
  2660. data/vendor/rails/actionmailer/lib/action_mailer/test_helper.rb +68 -0
  2661. data/vendor/rails/actionmailer/lib/action_mailer/utils.rb +7 -0
  2662. data/vendor/rails/actionmailer/lib/action_mailer/vendor/text-format-0.6.3/text/format.rb +1466 -0
  2663. data/vendor/rails/actionmailer/lib/action_mailer/vendor/text_format.rb +10 -0
  2664. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail.rb +5 -0
  2665. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/address.rb +426 -0
  2666. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/attachments.rb +46 -0
  2667. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/base64.rb +46 -0
  2668. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/compat.rb +41 -0
  2669. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/config.rb +67 -0
  2670. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/core_extensions.rb +63 -0
  2671. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/encode.rb +581 -0
  2672. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/header.rb +960 -0
  2673. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/index.rb +9 -0
  2674. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/interface.rb +1130 -0
  2675. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/loader.rb +3 -0
  2676. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/mail.rb +578 -0
  2677. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/mailbox.rb +495 -0
  2678. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/main.rb +6 -0
  2679. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/mbox.rb +3 -0
  2680. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/net.rb +248 -0
  2681. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/obsolete.rb +132 -0
  2682. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/parser.rb +1476 -0
  2683. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/port.rb +379 -0
  2684. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/quoting.rb +118 -0
  2685. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/require_arch.rb +58 -0
  2686. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/scanner.rb +49 -0
  2687. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/scanner_r.rb +261 -0
  2688. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/stringio.rb +280 -0
  2689. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/utils.rb +337 -0
  2690. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/version.rb +39 -0
  2691. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail.rb +17 -0
  2692. data/vendor/rails/actionmailer/lib/action_mailer/version.rb +9 -0
  2693. data/vendor/rails/actionmailer/lib/actionmailer.rb +1 -0
  2694. data/vendor/rails/actionmailer/test/abstract_unit.rb +62 -0
  2695. data/vendor/rails/actionmailer/test/asset_host_test.rb +54 -0
  2696. data/vendor/rails/actionmailer/test/delivery_method_test.rb +51 -0
  2697. data/vendor/rails/actionmailer/test/fixtures/asset_host_mailer/email_with_asset.html.erb +1 -0
  2698. data/vendor/rails/actionmailer/test/fixtures/auto_layout_mailer/hello.html.erb +1 -0
  2699. data/vendor/rails/actionmailer/test/fixtures/auto_layout_mailer/multipart.text.html.erb +1 -0
  2700. data/vendor/rails/actionmailer/test/fixtures/auto_layout_mailer/multipart.text.plain.erb +1 -0
  2701. data/vendor/rails/actionmailer/test/fixtures/explicit_layout_mailer/logout.html.erb +1 -0
  2702. data/vendor/rails/actionmailer/test/fixtures/explicit_layout_mailer/signup.html.erb +1 -0
  2703. data/vendor/rails/actionmailer/test/fixtures/first_mailer/share.erb +1 -0
  2704. data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_example_helper.erb +1 -0
  2705. data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper.erb +1 -0
  2706. data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper_method.erb +1 -0
  2707. data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_mail_helper.erb +5 -0
  2708. data/vendor/rails/actionmailer/test/fixtures/helpers/example_helper.rb +5 -0
  2709. data/vendor/rails/actionmailer/test/fixtures/layouts/auto_layout_mailer.html.erb +1 -0
  2710. data/vendor/rails/actionmailer/test/fixtures/layouts/auto_layout_mailer.text.erb +1 -0
  2711. data/vendor/rails/actionmailer/test/fixtures/layouts/spam.html.erb +1 -0
  2712. data/vendor/rails/actionmailer/test/fixtures/path.with.dots/funky_path_mailer/multipart_with_template_path_with_dots.erb +1 -0
  2713. data/vendor/rails/actionmailer/test/fixtures/raw_email +14 -0
  2714. data/vendor/rails/actionmailer/test/fixtures/raw_email10 +20 -0
  2715. data/vendor/rails/actionmailer/test/fixtures/raw_email12 +32 -0
  2716. data/vendor/rails/actionmailer/test/fixtures/raw_email13 +29 -0
  2717. data/vendor/rails/actionmailer/test/fixtures/raw_email2 +114 -0
  2718. data/vendor/rails/actionmailer/test/fixtures/raw_email3 +70 -0
  2719. data/vendor/rails/actionmailer/test/fixtures/raw_email4 +59 -0
  2720. data/vendor/rails/actionmailer/test/fixtures/raw_email5 +19 -0
  2721. data/vendor/rails/actionmailer/test/fixtures/raw_email6 +20 -0
  2722. data/vendor/rails/actionmailer/test/fixtures/raw_email7 +66 -0
  2723. data/vendor/rails/actionmailer/test/fixtures/raw_email8 +47 -0
  2724. data/vendor/rails/actionmailer/test/fixtures/raw_email9 +28 -0
  2725. data/vendor/rails/actionmailer/test/fixtures/raw_email_quoted_with_0d0a +14 -0
  2726. data/vendor/rails/actionmailer/test/fixtures/raw_email_with_invalid_characters_in_content_type +104 -0
  2727. data/vendor/rails/actionmailer/test/fixtures/raw_email_with_nested_attachment +100 -0
  2728. data/vendor/rails/actionmailer/test/fixtures/raw_email_with_partially_quoted_subject +14 -0
  2729. data/vendor/rails/actionmailer/test/fixtures/second_mailer/share.erb +1 -0
  2730. data/vendor/rails/actionmailer/test/fixtures/templates/signed_up.erb +3 -0
  2731. data/vendor/rails/actionmailer/test/fixtures/test_mailer/_subtemplate.text.plain.erb +1 -0
  2732. data/vendor/rails/actionmailer/test/fixtures/test_mailer/body_ivar.erb +2 -0
  2733. data/vendor/rails/actionmailer/test/fixtures/test_mailer/custom_templating_extension.text.html.haml +6 -0
  2734. data/vendor/rails/actionmailer/test/fixtures/test_mailer/custom_templating_extension.text.plain.haml +6 -0
  2735. data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.ignored.erb +1 -0
  2736. data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.html.erb +10 -0
  2737. data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.plain.erb +2 -0
  2738. data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.yaml.erb +1 -0
  2739. data/vendor/rails/actionmailer/test/fixtures/test_mailer/included_subtemplate.text.plain.erb +1 -0
  2740. data/vendor/rails/actionmailer/test/fixtures/test_mailer/rxml_template.builder +2 -0
  2741. data/vendor/rails/actionmailer/test/fixtures/test_mailer/rxml_template.rxml +2 -0
  2742. data/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up.html.erb +3 -0
  2743. data/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up_with_url.erb +5 -0
  2744. data/vendor/rails/actionmailer/test/mail_helper_test.rb +95 -0
  2745. data/vendor/rails/actionmailer/test/mail_layout_test.rb +123 -0
  2746. data/vendor/rails/actionmailer/test/mail_render_test.rb +116 -0
  2747. data/vendor/rails/actionmailer/test/mail_service_test.rb +1079 -0
  2748. data/vendor/rails/actionmailer/test/quoting_test.rb +99 -0
  2749. data/vendor/rails/actionmailer/test/test_helper_test.rb +129 -0
  2750. data/vendor/rails/actionmailer/test/tmail_test.rb +22 -0
  2751. data/vendor/rails/actionmailer/test/url_test.rb +76 -0
  2752. data/vendor/rails/actionpack/CHANGELOG +5172 -0
  2753. data/vendor/rails/actionpack/MIT-LICENSE +21 -0
  2754. data/vendor/rails/actionpack/README +409 -0
  2755. data/vendor/rails/actionpack/RUNNING_UNIT_TESTS +24 -0
  2756. data/vendor/rails/actionpack/Rakefile +160 -0
  2757. data/vendor/rails/actionpack/install.rb +30 -0
  2758. data/vendor/rails/actionpack/lib/action_controller.rb +111 -0
  2759. data/vendor/rails/actionpack/lib/action_controller/assertions/dom_assertions.rb +39 -0
  2760. data/vendor/rails/actionpack/lib/action_controller/assertions/model_assertions.rb +21 -0
  2761. data/vendor/rails/actionpack/lib/action_controller/assertions/response_assertions.rb +160 -0
  2762. data/vendor/rails/actionpack/lib/action_controller/assertions/routing_assertions.rb +146 -0
  2763. data/vendor/rails/actionpack/lib/action_controller/assertions/selector_assertions.rb +632 -0
  2764. data/vendor/rails/actionpack/lib/action_controller/assertions/tag_assertions.rb +127 -0
  2765. data/vendor/rails/actionpack/lib/action_controller/base.rb +1423 -0
  2766. data/vendor/rails/actionpack/lib/action_controller/benchmarking.rb +107 -0
  2767. data/vendor/rails/actionpack/lib/action_controller/caching.rb +70 -0
  2768. data/vendor/rails/actionpack/lib/action_controller/caching/actions.rb +177 -0
  2769. data/vendor/rails/actionpack/lib/action_controller/caching/fragments.rb +120 -0
  2770. data/vendor/rails/actionpack/lib/action_controller/caching/pages.rb +152 -0
  2771. data/vendor/rails/actionpack/lib/action_controller/caching/sweeper.rb +45 -0
  2772. data/vendor/rails/actionpack/lib/action_controller/caching/sweeping.rb +55 -0
  2773. data/vendor/rails/actionpack/lib/action_controller/cgi_ext.rb +15 -0
  2774. data/vendor/rails/actionpack/lib/action_controller/cgi_ext/cookie.rb +112 -0
  2775. data/vendor/rails/actionpack/lib/action_controller/cgi_ext/query_extension.rb +22 -0
  2776. data/vendor/rails/actionpack/lib/action_controller/cgi_ext/stdinput.rb +24 -0
  2777. data/vendor/rails/actionpack/lib/action_controller/cgi_process.rb +77 -0
  2778. data/vendor/rails/actionpack/lib/action_controller/cookies.rb +94 -0
  2779. data/vendor/rails/actionpack/lib/action_controller/dispatcher.rb +133 -0
  2780. data/vendor/rails/actionpack/lib/action_controller/failsafe.rb +86 -0
  2781. data/vendor/rails/actionpack/lib/action_controller/filters.rb +680 -0
  2782. data/vendor/rails/actionpack/lib/action_controller/flash.rb +171 -0
  2783. data/vendor/rails/actionpack/lib/action_controller/headers.rb +33 -0
  2784. data/vendor/rails/actionpack/lib/action_controller/helpers.rb +225 -0
  2785. data/vendor/rails/actionpack/lib/action_controller/http_authentication.rb +308 -0
  2786. data/vendor/rails/actionpack/lib/action_controller/integration.rb +680 -0
  2787. data/vendor/rails/actionpack/lib/action_controller/layout.rb +281 -0
  2788. data/vendor/rails/actionpack/lib/action_controller/middleware_stack.rb +119 -0
  2789. data/vendor/rails/actionpack/lib/action_controller/middlewares.rb +12 -0
  2790. data/vendor/rails/actionpack/lib/action_controller/mime_responds.rb +193 -0
  2791. data/vendor/rails/actionpack/lib/action_controller/mime_type.rb +212 -0
  2792. data/vendor/rails/actionpack/lib/action_controller/mime_types.rb +21 -0
  2793. data/vendor/rails/actionpack/lib/action_controller/params_parser.rb +77 -0
  2794. data/vendor/rails/actionpack/lib/action_controller/performance_test.rb +15 -0
  2795. data/vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb +204 -0
  2796. data/vendor/rails/actionpack/lib/action_controller/record_identifier.rb +104 -0
  2797. data/vendor/rails/actionpack/lib/action_controller/reloader.rb +54 -0
  2798. data/vendor/rails/actionpack/lib/action_controller/request.rb +493 -0
  2799. data/vendor/rails/actionpack/lib/action_controller/request_forgery_protection.rb +109 -0
  2800. data/vendor/rails/actionpack/lib/action_controller/rescue.rb +183 -0
  2801. data/vendor/rails/actionpack/lib/action_controller/resources.rb +682 -0
  2802. data/vendor/rails/actionpack/lib/action_controller/response.rb +238 -0
  2803. data/vendor/rails/actionpack/lib/action_controller/routing.rb +388 -0
  2804. data/vendor/rails/actionpack/lib/action_controller/routing/builder.rb +197 -0
  2805. data/vendor/rails/actionpack/lib/action_controller/routing/optimisations.rb +130 -0
  2806. data/vendor/rails/actionpack/lib/action_controller/routing/recognition_optimisation.rb +167 -0
  2807. data/vendor/rails/actionpack/lib/action_controller/routing/route.rb +265 -0
  2808. data/vendor/rails/actionpack/lib/action_controller/routing/route_set.rb +502 -0
  2809. data/vendor/rails/actionpack/lib/action_controller/routing/routing_ext.rb +49 -0
  2810. data/vendor/rails/actionpack/lib/action_controller/routing/segments.rb +343 -0
  2811. data/vendor/rails/actionpack/lib/action_controller/session/abstract_store.rb +181 -0
  2812. data/vendor/rails/actionpack/lib/action_controller/session/cookie_store.rb +221 -0
  2813. data/vendor/rails/actionpack/lib/action_controller/session/mem_cache_store.rb +51 -0
  2814. data/vendor/rails/actionpack/lib/action_controller/session_management.rb +54 -0
  2815. data/vendor/rails/actionpack/lib/action_controller/status_codes.rb +88 -0
  2816. data/vendor/rails/actionpack/lib/action_controller/streaming.rb +181 -0
  2817. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/_request_and_response.erb +24 -0
  2818. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/_trace.erb +26 -0
  2819. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/diagnostics.erb +11 -0
  2820. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb +29 -0
  2821. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/missing_template.erb +2 -0
  2822. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/routing_error.erb +10 -0
  2823. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/template_error.erb +21 -0
  2824. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/unknown_action.erb +2 -0
  2825. data/vendor/rails/actionpack/lib/action_controller/test_case.rb +204 -0
  2826. data/vendor/rails/actionpack/lib/action_controller/test_process.rb +580 -0
  2827. data/vendor/rails/actionpack/lib/action_controller/translation.rb +13 -0
  2828. data/vendor/rails/actionpack/lib/action_controller/uploaded_file.rb +44 -0
  2829. data/vendor/rails/actionpack/lib/action_controller/url_rewriter.rb +216 -0
  2830. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner.rb +16 -0
  2831. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/document.rb +68 -0
  2832. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/node.rb +537 -0
  2833. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/sanitizer.rb +173 -0
  2834. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/selector.rb +828 -0
  2835. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/tokenizer.rb +105 -0
  2836. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/version.rb +11 -0
  2837. data/vendor/rails/actionpack/lib/action_controller/verification.rb +130 -0
  2838. data/vendor/rails/actionpack/lib/action_pack.rb +24 -0
  2839. data/vendor/rails/actionpack/lib/action_pack/version.rb +9 -0
  2840. data/vendor/rails/actionpack/lib/action_view.rb +58 -0
  2841. data/vendor/rails/actionpack/lib/action_view/base.rb +357 -0
  2842. data/vendor/rails/actionpack/lib/action_view/erb/util.rb +38 -0
  2843. data/vendor/rails/actionpack/lib/action_view/helpers.rb +57 -0
  2844. data/vendor/rails/actionpack/lib/action_view/helpers/active_record_helper.rb +305 -0
  2845. data/vendor/rails/actionpack/lib/action_view/helpers/asset_tag_helper.rb +694 -0
  2846. data/vendor/rails/actionpack/lib/action_view/helpers/atom_feed_helper.rb +198 -0
  2847. data/vendor/rails/actionpack/lib/action_view/helpers/benchmark_helper.rb +54 -0
  2848. data/vendor/rails/actionpack/lib/action_view/helpers/cache_helper.rb +39 -0
  2849. data/vendor/rails/actionpack/lib/action_view/helpers/capture_helper.rb +136 -0
  2850. data/vendor/rails/actionpack/lib/action_view/helpers/date_helper.rb +976 -0
  2851. data/vendor/rails/actionpack/lib/action_view/helpers/debug_helper.rb +38 -0
  2852. data/vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb +1053 -0
  2853. data/vendor/rails/actionpack/lib/action_view/helpers/form_options_helper.rb +600 -0
  2854. data/vendor/rails/actionpack/lib/action_view/helpers/form_tag_helper.rb +487 -0
  2855. data/vendor/rails/actionpack/lib/action_view/helpers/javascript_helper.rb +208 -0
  2856. data/vendor/rails/actionpack/lib/action_view/helpers/number_helper.rb +303 -0
  2857. data/vendor/rails/actionpack/lib/action_view/helpers/prototype_helper.rb +1305 -0
  2858. data/vendor/rails/actionpack/lib/action_view/helpers/record_identification_helper.rb +20 -0
  2859. data/vendor/rails/actionpack/lib/action_view/helpers/record_tag_helper.rb +58 -0
  2860. data/vendor/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb +251 -0
  2861. data/vendor/rails/actionpack/lib/action_view/helpers/scriptaculous_helper.rb +226 -0
  2862. data/vendor/rails/actionpack/lib/action_view/helpers/tag_helper.rb +150 -0
  2863. data/vendor/rails/actionpack/lib/action_view/helpers/text_helper.rb +587 -0
  2864. data/vendor/rails/actionpack/lib/action_view/helpers/translation_helper.rb +39 -0
  2865. data/vendor/rails/actionpack/lib/action_view/helpers/url_helper.rb +638 -0
  2866. data/vendor/rails/actionpack/lib/action_view/inline_template.rb +19 -0
  2867. data/vendor/rails/actionpack/lib/action_view/locale/en.yml +114 -0
  2868. data/vendor/rails/actionpack/lib/action_view/partials.rb +240 -0
  2869. data/vendor/rails/actionpack/lib/action_view/paths.rb +69 -0
  2870. data/vendor/rails/actionpack/lib/action_view/reloadable_template.rb +117 -0
  2871. data/vendor/rails/actionpack/lib/action_view/renderable.rb +95 -0
  2872. data/vendor/rails/actionpack/lib/action_view/renderable_partial.rb +47 -0
  2873. data/vendor/rails/actionpack/lib/action_view/template.rb +246 -0
  2874. data/vendor/rails/actionpack/lib/action_view/template_error.rb +99 -0
  2875. data/vendor/rails/actionpack/lib/action_view/template_handler.rb +34 -0
  2876. data/vendor/rails/actionpack/lib/action_view/template_handlers.rb +48 -0
  2877. data/vendor/rails/actionpack/lib/action_view/template_handlers/builder.rb +17 -0
  2878. data/vendor/rails/actionpack/lib/action_view/template_handlers/erb.rb +22 -0
  2879. data/vendor/rails/actionpack/lib/action_view/template_handlers/rjs.rb +13 -0
  2880. data/vendor/rails/actionpack/lib/action_view/test_case.rb +87 -0
  2881. data/vendor/rails/actionpack/lib/actionpack.rb +1 -0
  2882. data/vendor/rails/actionpack/test/abstract_unit.rb +61 -0
  2883. data/vendor/rails/actionpack/test/active_record_unit.rb +104 -0
  2884. data/vendor/rails/actionpack/test/activerecord/active_record_store_test.rb +174 -0
  2885. data/vendor/rails/actionpack/test/activerecord/render_partial_with_record_identification_test.rb +188 -0
  2886. data/vendor/rails/actionpack/test/adv_attr_test.rb +20 -0
  2887. data/vendor/rails/actionpack/test/controller/action_pack_assertions_test.rb +543 -0
  2888. data/vendor/rails/actionpack/test/controller/addresses_render_test.rb +37 -0
  2889. data/vendor/rails/actionpack/test/controller/assert_select_test.rb +734 -0
  2890. data/vendor/rails/actionpack/test/controller/base_test.rb +217 -0
  2891. data/vendor/rails/actionpack/test/controller/benchmark_test.rb +32 -0
  2892. data/vendor/rails/actionpack/test/controller/caching_test.rb +729 -0
  2893. data/vendor/rails/actionpack/test/controller/capture_test.rb +66 -0
  2894. data/vendor/rails/actionpack/test/controller/content_type_test.rb +168 -0
  2895. data/vendor/rails/actionpack/test/controller/controller_fixtures/app/controllers/admin/user_controller.rb +0 -0
  2896. data/vendor/rails/actionpack/test/controller/controller_fixtures/app/controllers/user_controller.rb +0 -0
  2897. data/vendor/rails/actionpack/test/controller/controller_fixtures/vendor/plugins/bad_plugin/lib/plugin_controller.rb +0 -0
  2898. data/vendor/rails/actionpack/test/controller/cookie_test.rb +127 -0
  2899. data/vendor/rails/actionpack/test/controller/deprecation/deprecated_base_methods_test.rb +32 -0
  2900. data/vendor/rails/actionpack/test/controller/dispatcher_test.rb +144 -0
  2901. data/vendor/rails/actionpack/test/controller/failsafe_test.rb +60 -0
  2902. data/vendor/rails/actionpack/test/controller/fake_controllers.rb +33 -0
  2903. data/vendor/rails/actionpack/test/controller/fake_models.rb +19 -0
  2904. data/vendor/rails/actionpack/test/controller/filter_params_test.rb +51 -0
  2905. data/vendor/rails/actionpack/test/controller/filters_test.rb +885 -0
  2906. data/vendor/rails/actionpack/test/controller/flash_test.rb +147 -0
  2907. data/vendor/rails/actionpack/test/controller/header_test.rb +14 -0
  2908. data/vendor/rails/actionpack/test/controller/helper_test.rb +224 -0
  2909. data/vendor/rails/actionpack/test/controller/html-scanner/cdata_node_test.rb +15 -0
  2910. data/vendor/rails/actionpack/test/controller/html-scanner/document_test.rb +148 -0
  2911. data/vendor/rails/actionpack/test/controller/html-scanner/node_test.rb +89 -0
  2912. data/vendor/rails/actionpack/test/controller/html-scanner/sanitizer_test.rb +273 -0
  2913. data/vendor/rails/actionpack/test/controller/html-scanner/tag_node_test.rb +238 -0
  2914. data/vendor/rails/actionpack/test/controller/html-scanner/text_node_test.rb +50 -0
  2915. data/vendor/rails/actionpack/test/controller/html-scanner/tokenizer_test.rb +131 -0
  2916. data/vendor/rails/actionpack/test/controller/http_basic_authentication_test.rb +113 -0
  2917. data/vendor/rails/actionpack/test/controller/http_digest_authentication_test.rb +232 -0
  2918. data/vendor/rails/actionpack/test/controller/integration_test.rb +445 -0
  2919. data/vendor/rails/actionpack/test/controller/layout_test.rb +204 -0
  2920. data/vendor/rails/actionpack/test/controller/logging_test.rb +46 -0
  2921. data/vendor/rails/actionpack/test/controller/middleware_stack_test.rb +90 -0
  2922. data/vendor/rails/actionpack/test/controller/mime_responds_test.rb +536 -0
  2923. data/vendor/rails/actionpack/test/controller/mime_type_test.rb +93 -0
  2924. data/vendor/rails/actionpack/test/controller/polymorphic_routes_test.rb +293 -0
  2925. data/vendor/rails/actionpack/test/controller/rack_test.rb +311 -0
  2926. data/vendor/rails/actionpack/test/controller/record_identifier_test.rb +139 -0
  2927. data/vendor/rails/actionpack/test/controller/redirect_test.rb +285 -0
  2928. data/vendor/rails/actionpack/test/controller/reloader_test.rb +124 -0
  2929. data/vendor/rails/actionpack/test/controller/render_test.rb +1762 -0
  2930. data/vendor/rails/actionpack/test/controller/request/json_params_parsing_test.rb +65 -0
  2931. data/vendor/rails/actionpack/test/controller/request/multipart_params_parsing_test.rb +162 -0
  2932. data/vendor/rails/actionpack/test/controller/request/query_string_parsing_test.rb +120 -0
  2933. data/vendor/rails/actionpack/test/controller/request/test_request_test.rb +35 -0
  2934. data/vendor/rails/actionpack/test/controller/request/url_encoded_params_parsing_test.rb +146 -0
  2935. data/vendor/rails/actionpack/test/controller/request/xml_params_parsing_test.rb +103 -0
  2936. data/vendor/rails/actionpack/test/controller/request_forgery_protection_test.rb +247 -0
  2937. data/vendor/rails/actionpack/test/controller/request_test.rb +395 -0
  2938. data/vendor/rails/actionpack/test/controller/rescue_test.rb +536 -0
  2939. data/vendor/rails/actionpack/test/controller/resources_test.rb +1393 -0
  2940. data/vendor/rails/actionpack/test/controller/routing_test.rb +2583 -0
  2941. data/vendor/rails/actionpack/test/controller/selector_test.rb +628 -0
  2942. data/vendor/rails/actionpack/test/controller/send_file_test.rb +171 -0
  2943. data/vendor/rails/actionpack/test/controller/session/cookie_store_test.rb +216 -0
  2944. data/vendor/rails/actionpack/test/controller/session/mem_cache_store_test.rb +127 -0
  2945. data/vendor/rails/actionpack/test/controller/session/test_session_test.rb +58 -0
  2946. data/vendor/rails/actionpack/test/controller/test_test.rb +700 -0
  2947. data/vendor/rails/actionpack/test/controller/translation_test.rb +26 -0
  2948. data/vendor/rails/actionpack/test/controller/url_rewriter_test.rb +385 -0
  2949. data/vendor/rails/actionpack/test/controller/verification_test.rb +270 -0
  2950. data/vendor/rails/actionpack/test/controller/view_paths_test.rb +141 -0
  2951. data/vendor/rails/actionpack/test/controller/webservice_test.rb +260 -0
  2952. data/vendor/rails/actionpack/test/fixtures/_top_level_partial.html.erb +1 -0
  2953. data/vendor/rails/actionpack/test/fixtures/_top_level_partial_only.erb +1 -0
  2954. data/vendor/rails/actionpack/test/fixtures/addresses/list.erb +1 -0
  2955. data/vendor/rails/actionpack/test/fixtures/alternate_helpers/foo_helper.rb +3 -0
  2956. data/vendor/rails/actionpack/test/fixtures/bad_customers/_bad_customer.html.erb +1 -0
  2957. data/vendor/rails/actionpack/test/fixtures/companies.yml +24 -0
  2958. data/vendor/rails/actionpack/test/fixtures/company.rb +10 -0
  2959. data/vendor/rails/actionpack/test/fixtures/content_type/render_default_content_types_for_respond_to.rhtml +1 -0
  2960. data/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rhtml.rhtml +1 -0
  2961. data/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rjs.rjs +1 -0
  2962. data/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rxml.rxml +1 -0
  2963. data/vendor/rails/actionpack/test/fixtures/customers/_customer.html.erb +1 -0
  2964. data/vendor/rails/actionpack/test/fixtures/db_definitions/sqlite.sql +49 -0
  2965. data/vendor/rails/actionpack/test/fixtures/developer.rb +9 -0
  2966. data/vendor/rails/actionpack/test/fixtures/developers.yml +21 -0
  2967. data/vendor/rails/actionpack/test/fixtures/developers/_developer.erb +1 -0
  2968. data/vendor/rails/actionpack/test/fixtures/developers_projects.yml +13 -0
  2969. data/vendor/rails/actionpack/test/fixtures/failsafe/500.html +1 -0
  2970. data/vendor/rails/actionpack/test/fixtures/fun/games/_game.erb +1 -0
  2971. data/vendor/rails/actionpack/test/fixtures/fun/games/hello_world.erb +1 -0
  2972. data/vendor/rails/actionpack/test/fixtures/fun/serious/games/_game.erb +1 -0
  2973. data/vendor/rails/actionpack/test/fixtures/functional_caching/_partial.erb +3 -0
  2974. data/vendor/rails/actionpack/test/fixtures/functional_caching/formatted_fragment_cached.html.erb +3 -0
  2975. data/vendor/rails/actionpack/test/fixtures/functional_caching/formatted_fragment_cached.js.rjs +6 -0
  2976. data/vendor/rails/actionpack/test/fixtures/functional_caching/formatted_fragment_cached.xml.builder +5 -0
  2977. data/vendor/rails/actionpack/test/fixtures/functional_caching/fragment_cached.html.erb +2 -0
  2978. data/vendor/rails/actionpack/test/fixtures/functional_caching/html_fragment_cached_with_partial.html.erb +1 -0
  2979. data/vendor/rails/actionpack/test/fixtures/functional_caching/inline_fragment_cached.html.erb +2 -0
  2980. data/vendor/rails/actionpack/test/fixtures/functional_caching/js_fragment_cached_with_partial.js.rjs +1 -0
  2981. data/vendor/rails/actionpack/test/fixtures/good_customers/_good_customer.html.erb +1 -0
  2982. data/vendor/rails/actionpack/test/fixtures/helpers/abc_helper.rb +5 -0
  2983. data/vendor/rails/actionpack/test/fixtures/helpers/fun/games_helper.rb +3 -0
  2984. data/vendor/rails/actionpack/test/fixtures/helpers/fun/pdf_helper.rb +3 -0
  2985. data/vendor/rails/actionpack/test/fixtures/layout_tests/alt/hello.rhtml +1 -0
  2986. data/vendor/rails/actionpack/test/fixtures/layout_tests/alt/layouts/alt.rhtml +0 -0
  2987. data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/controller_name_space/nested.rhtml +1 -0
  2988. data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/item.rhtml +1 -0
  2989. data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/layout_test.rhtml +1 -0
  2990. data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/multiple_extensions.html.erb +1 -0
  2991. data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/third_party_template_library.mab +1 -0
  2992. data/vendor/rails/actionpack/test/fixtures/layout_tests/views/hello.rhtml +1 -0
  2993. data/vendor/rails/actionpack/test/fixtures/layouts/_column.html.erb +2 -0
  2994. data/vendor/rails/actionpack/test/fixtures/layouts/block_with_layout.erb +3 -0
  2995. data/vendor/rails/actionpack/test/fixtures/layouts/builder.builder +3 -0
  2996. data/vendor/rails/actionpack/test/fixtures/layouts/default_html.html.erb +1 -0
  2997. data/vendor/rails/actionpack/test/fixtures/layouts/partial_with_layout.erb +3 -0
  2998. data/vendor/rails/actionpack/test/fixtures/layouts/standard.erb +1 -0
  2999. data/vendor/rails/actionpack/test/fixtures/layouts/talk_from_action.erb +2 -0
  3000. data/vendor/rails/actionpack/test/fixtures/layouts/xhr.html.erb +2 -0
  3001. data/vendor/rails/actionpack/test/fixtures/layouts/yield.erb +2 -0
  3002. data/vendor/rails/actionpack/test/fixtures/mascot.rb +3 -0
  3003. data/vendor/rails/actionpack/test/fixtures/mascots.yml +4 -0
  3004. data/vendor/rails/actionpack/test/fixtures/mascots/_mascot.html.erb +1 -0
  3005. data/vendor/rails/actionpack/test/fixtures/multipart/binary_file +0 -0
  3006. data/vendor/rails/actionpack/test/fixtures/multipart/boundary_problem_file +10 -0
  3007. data/vendor/rails/actionpack/test/fixtures/multipart/bracketed_param +5 -0
  3008. data/vendor/rails/actionpack/test/fixtures/multipart/empty +10 -0
  3009. data/vendor/rails/actionpack/test/fixtures/multipart/hello.txt +1 -0
  3010. data/vendor/rails/actionpack/test/fixtures/multipart/large_text_file +10 -0
  3011. data/vendor/rails/actionpack/test/fixtures/multipart/mixed_files +0 -0
  3012. data/vendor/rails/actionpack/test/fixtures/multipart/mona_lisa.jpg +0 -0
  3013. data/vendor/rails/actionpack/test/fixtures/multipart/none +9 -0
  3014. data/vendor/rails/actionpack/test/fixtures/multipart/single_parameter +5 -0
  3015. data/vendor/rails/actionpack/test/fixtures/multipart/text_file +10 -0
  3016. data/vendor/rails/actionpack/test/fixtures/override/test/hello_world.erb +1 -0
  3017. data/vendor/rails/actionpack/test/fixtures/override2/layouts/test/sub.erb +1 -0
  3018. data/vendor/rails/actionpack/test/fixtures/post_test/layouts/post.html.erb +1 -0
  3019. data/vendor/rails/actionpack/test/fixtures/post_test/layouts/super_post.iphone.erb +1 -0
  3020. data/vendor/rails/actionpack/test/fixtures/post_test/post/index.html.erb +1 -0
  3021. data/vendor/rails/actionpack/test/fixtures/post_test/post/index.iphone.erb +1 -0
  3022. data/vendor/rails/actionpack/test/fixtures/post_test/super_post/index.html.erb +1 -0
  3023. data/vendor/rails/actionpack/test/fixtures/post_test/super_post/index.iphone.erb +1 -0
  3024. data/vendor/rails/actionpack/test/fixtures/project.rb +3 -0
  3025. data/vendor/rails/actionpack/test/fixtures/projects.yml +7 -0
  3026. data/vendor/rails/actionpack/test/fixtures/projects/_project.erb +1 -0
  3027. data/vendor/rails/actionpack/test/fixtures/public/404.html +1 -0
  3028. data/vendor/rails/actionpack/test/fixtures/public/500.da.html +1 -0
  3029. data/vendor/rails/actionpack/test/fixtures/public/500.html +1 -0
  3030. data/vendor/rails/actionpack/test/fixtures/public/absolute/test.css +23 -0
  3031. data/vendor/rails/actionpack/test/fixtures/public/absolute/test.js +63 -0
  3032. data/vendor/rails/actionpack/test/fixtures/public/images/rails.png +0 -0
  3033. data/vendor/rails/actionpack/test/fixtures/public/javascripts/application.js +1 -0
  3034. data/vendor/rails/actionpack/test/fixtures/public/javascripts/bank.js +1 -0
  3035. data/vendor/rails/actionpack/test/fixtures/public/javascripts/controls.js +1 -0
  3036. data/vendor/rails/actionpack/test/fixtures/public/javascripts/dragdrop.js +1 -0
  3037. data/vendor/rails/actionpack/test/fixtures/public/javascripts/effects.js +1 -0
  3038. data/vendor/rails/actionpack/test/fixtures/public/javascripts/prototype.js +1 -0
  3039. data/vendor/rails/actionpack/test/fixtures/public/javascripts/robber.js +1 -0
  3040. data/vendor/rails/actionpack/test/fixtures/public/javascripts/subdir/subdir.js +1 -0
  3041. data/vendor/rails/actionpack/test/fixtures/public/javascripts/version.1.0.js +1 -0
  3042. data/vendor/rails/actionpack/test/fixtures/public/stylesheets/bank.css +1 -0
  3043. data/vendor/rails/actionpack/test/fixtures/public/stylesheets/robber.css +1 -0
  3044. data/vendor/rails/actionpack/test/fixtures/public/stylesheets/subdir/subdir.css +1 -0
  3045. data/vendor/rails/actionpack/test/fixtures/public/stylesheets/version.1.0.css +1 -0
  3046. data/vendor/rails/actionpack/test/fixtures/quiz/questions/_question.html.erb +1 -0
  3047. data/vendor/rails/actionpack/test/fixtures/replies.yml +15 -0
  3048. data/vendor/rails/actionpack/test/fixtures/replies/_reply.erb +1 -0
  3049. data/vendor/rails/actionpack/test/fixtures/reply.rb +7 -0
  3050. data/vendor/rails/actionpack/test/fixtures/respond_to/all_types_with_layout.html.erb +1 -0
  3051. data/vendor/rails/actionpack/test/fixtures/respond_to/all_types_with_layout.js.rjs +1 -0
  3052. data/vendor/rails/actionpack/test/fixtures/respond_to/custom_constant_handling_without_block.mobile.erb +1 -0
  3053. data/vendor/rails/actionpack/test/fixtures/respond_to/iphone_with_html_response_type.html.erb +1 -0
  3054. data/vendor/rails/actionpack/test/fixtures/respond_to/iphone_with_html_response_type.iphone.erb +1 -0
  3055. data/vendor/rails/actionpack/test/fixtures/respond_to/layouts/missing.html.erb +1 -0
  3056. data/vendor/rails/actionpack/test/fixtures/respond_to/layouts/standard.html.erb +1 -0
  3057. data/vendor/rails/actionpack/test/fixtures/respond_to/layouts/standard.iphone.erb +1 -0
  3058. data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.html.erb +1 -0
  3059. data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.js.rjs +1 -0
  3060. data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.xml.builder +1 -0
  3061. data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.html.erb +1 -0
  3062. data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.js.rjs +1 -0
  3063. data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.xml.builder +1 -0
  3064. data/vendor/rails/actionpack/test/fixtures/scope/test/modgreet.erb +1 -0
  3065. data/vendor/rails/actionpack/test/fixtures/shared.html.erb +1 -0
  3066. data/vendor/rails/actionpack/test/fixtures/symlink_parent/symlinked_layout.erb +5 -0
  3067. data/vendor/rails/actionpack/test/fixtures/test/_counter.html.erb +1 -0
  3068. data/vendor/rails/actionpack/test/fixtures/test/_customer.erb +1 -0
  3069. data/vendor/rails/actionpack/test/fixtures/test/_customer_counter.erb +1 -0
  3070. data/vendor/rails/actionpack/test/fixtures/test/_customer_greeting.erb +1 -0
  3071. data/vendor/rails/actionpack/test/fixtures/test/_customer_with_var.erb +1 -0
  3072. data/vendor/rails/actionpack/test/fixtures/test/_form.erb +1 -0
  3073. data/vendor/rails/actionpack/test/fixtures/test/_hash_greeting.erb +1 -0
  3074. data/vendor/rails/actionpack/test/fixtures/test/_hash_object.erb +2 -0
  3075. data/vendor/rails/actionpack/test/fixtures/test/_hello.builder +1 -0
  3076. data/vendor/rails/actionpack/test/fixtures/test/_labelling_form.erb +1 -0
  3077. data/vendor/rails/actionpack/test/fixtures/test/_layout_for_block_with_args.html.erb +3 -0
  3078. data/vendor/rails/actionpack/test/fixtures/test/_layout_for_partial.html.erb +3 -0
  3079. data/vendor/rails/actionpack/test/fixtures/test/_local_inspector.html.erb +1 -0
  3080. data/vendor/rails/actionpack/test/fixtures/test/_one.html.erb +1 -0
  3081. data/vendor/rails/actionpack/test/fixtures/test/_partial.erb +1 -0
  3082. data/vendor/rails/actionpack/test/fixtures/test/_partial.html.erb +1 -0
  3083. data/vendor/rails/actionpack/test/fixtures/test/_partial.js.erb +1 -0
  3084. data/vendor/rails/actionpack/test/fixtures/test/_partial_for_use_in_layout.html.erb +1 -0
  3085. data/vendor/rails/actionpack/test/fixtures/test/_partial_only.erb +1 -0
  3086. data/vendor/rails/actionpack/test/fixtures/test/_partial_with_only_html_version.html.erb +1 -0
  3087. data/vendor/rails/actionpack/test/fixtures/test/_person.erb +2 -0
  3088. data/vendor/rails/actionpack/test/fixtures/test/_raise.html.erb +1 -0
  3089. data/vendor/rails/actionpack/test/fixtures/test/_two.html.erb +1 -0
  3090. data/vendor/rails/actionpack/test/fixtures/test/action_talk_to_layout.erb +2 -0
  3091. data/vendor/rails/actionpack/test/fixtures/test/calling_partial_with_layout.html.erb +1 -0
  3092. data/vendor/rails/actionpack/test/fixtures/test/capturing.erb +4 -0
  3093. data/vendor/rails/actionpack/test/fixtures/test/content_for.erb +2 -0
  3094. data/vendor/rails/actionpack/test/fixtures/test/content_for_concatenated.erb +3 -0
  3095. data/vendor/rails/actionpack/test/fixtures/test/content_for_with_parameter.erb +2 -0
  3096. data/vendor/rails/actionpack/test/fixtures/test/delete_with_js.rjs +2 -0
  3097. data/vendor/rails/actionpack/test/fixtures/test/dont_pick_me +1 -0
  3098. data/vendor/rails/actionpack/test/fixtures/test/dot.directory/render_file_with_ivar.erb +1 -0
  3099. data/vendor/rails/actionpack/test/fixtures/test/enum_rjs_test.rjs +6 -0
  3100. data/vendor/rails/actionpack/test/fixtures/test/formatted_html_erb.html.erb +1 -0
  3101. data/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.builder +1 -0
  3102. data/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.html.erb +1 -0
  3103. data/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.xml.erb +1 -0
  3104. data/vendor/rails/actionpack/test/fixtures/test/greeting.erb +1 -0
  3105. data/vendor/rails/actionpack/test/fixtures/test/greeting.js.rjs +1 -0
  3106. data/vendor/rails/actionpack/test/fixtures/test/hello.builder +4 -0
  3107. data/vendor/rails/actionpack/test/fixtures/test/hello_world.da.html.erb +1 -0
  3108. data/vendor/rails/actionpack/test/fixtures/test/hello_world.erb +1 -0
  3109. data/vendor/rails/actionpack/test/fixtures/test/hello_world.pt-BR.html.erb +1 -0
  3110. data/vendor/rails/actionpack/test/fixtures/test/hello_world_container.builder +3 -0
  3111. data/vendor/rails/actionpack/test/fixtures/test/hello_world_from_rxml.builder +4 -0
  3112. data/vendor/rails/actionpack/test/fixtures/test/hello_world_with_layout_false.erb +1 -0
  3113. data/vendor/rails/actionpack/test/fixtures/test/hello_xml_world.builder +11 -0
  3114. data/vendor/rails/actionpack/test/fixtures/test/hyphen-ated.erb +1 -0
  3115. data/vendor/rails/actionpack/test/fixtures/test/implicit_content_type.atom.builder +2 -0
  3116. data/vendor/rails/actionpack/test/fixtures/test/list.erb +1 -0
  3117. data/vendor/rails/actionpack/test/fixtures/test/nested_layout.erb +3 -0
  3118. data/vendor/rails/actionpack/test/fixtures/test/non_erb_block_content_for.builder +4 -0
  3119. data/vendor/rails/actionpack/test/fixtures/test/potential_conflicts.erb +4 -0
  3120. data/vendor/rails/actionpack/test/fixtures/test/render_explicit_html_template.js.rjs +1 -0
  3121. data/vendor/rails/actionpack/test/fixtures/test/render_file_from_template.html.erb +1 -0
  3122. data/vendor/rails/actionpack/test/fixtures/test/render_file_with_ivar.erb +1 -0
  3123. data/vendor/rails/actionpack/test/fixtures/test/render_file_with_locals.erb +1 -0
  3124. data/vendor/rails/actionpack/test/fixtures/test/render_implicit_html_template.js.rjs +1 -0
  3125. data/vendor/rails/actionpack/test/fixtures/test/render_implicit_html_template_from_xhr_request.da.html.erb +1 -0
  3126. data/vendor/rails/actionpack/test/fixtures/test/render_implicit_html_template_from_xhr_request.html.erb +1 -0
  3127. data/vendor/rails/actionpack/test/fixtures/test/render_implicit_js_template_without_layout.js.erb +1 -0
  3128. data/vendor/rails/actionpack/test/fixtures/test/render_to_string_test.erb +1 -0
  3129. data/vendor/rails/actionpack/test/fixtures/test/sub_template_raise.html.erb +1 -0
  3130. data/vendor/rails/actionpack/test/fixtures/test/template.erb +1 -0
  3131. data/vendor/rails/actionpack/test/fixtures/test/update_element_with_capture.erb +9 -0
  3132. data/vendor/rails/actionpack/test/fixtures/test/using_layout_around_block.html.erb +1 -0
  3133. data/vendor/rails/actionpack/test/fixtures/test/using_layout_around_block_with_args.html.erb +1 -0
  3134. data/vendor/rails/actionpack/test/fixtures/test/utf8.html.erb +2 -0
  3135. data/vendor/rails/actionpack/test/fixtures/topic.rb +3 -0
  3136. data/vendor/rails/actionpack/test/fixtures/topics.yml +22 -0
  3137. data/vendor/rails/actionpack/test/fixtures/topics/_topic.html.erb +1 -0
  3138. data/vendor/rails/actionpack/test/template/active_record_helper_i18n_test.rb +44 -0
  3139. data/vendor/rails/actionpack/test/template/active_record_helper_test.rb +302 -0
  3140. data/vendor/rails/actionpack/test/template/asset_tag_helper_test.rb +759 -0
  3141. data/vendor/rails/actionpack/test/template/atom_feed_helper_test.rb +315 -0
  3142. data/vendor/rails/actionpack/test/template/benchmark_helper_test.rb +86 -0
  3143. data/vendor/rails/actionpack/test/template/compiled_templates_test.rb +203 -0
  3144. data/vendor/rails/actionpack/test/template/date_helper_i18n_test.rb +120 -0
  3145. data/vendor/rails/actionpack/test/template/date_helper_test.rb +2469 -0
  3146. data/vendor/rails/actionpack/test/template/erb_util_test.rb +24 -0
  3147. data/vendor/rails/actionpack/test/template/form_helper_test.rb +1313 -0
  3148. data/vendor/rails/actionpack/test/template/form_options_helper_i18n_test.rb +27 -0
  3149. data/vendor/rails/actionpack/test/template/form_options_helper_test.rb +807 -0
  3150. data/vendor/rails/actionpack/test/template/form_tag_helper_test.rb +344 -0
  3151. data/vendor/rails/actionpack/test/template/javascript_helper_test.rb +106 -0
  3152. data/vendor/rails/actionpack/test/template/number_helper_i18n_test.rb +69 -0
  3153. data/vendor/rails/actionpack/test/template/number_helper_test.rb +128 -0
  3154. data/vendor/rails/actionpack/test/template/prototype_helper_test.rb +639 -0
  3155. data/vendor/rails/actionpack/test/template/record_tag_helper_test.rb +58 -0
  3156. data/vendor/rails/actionpack/test/template/render_test.rb +290 -0
  3157. data/vendor/rails/actionpack/test/template/sanitize_helper_test.rb +48 -0
  3158. data/vendor/rails/actionpack/test/template/scriptaculous_helper_test.rb +90 -0
  3159. data/vendor/rails/actionpack/test/template/tag_helper_test.rb +97 -0
  3160. data/vendor/rails/actionpack/test/template/template_test.rb +32 -0
  3161. data/vendor/rails/actionpack/test/template/test_test.rb +54 -0
  3162. data/vendor/rails/actionpack/test/template/text_helper_test.rb +543 -0
  3163. data/vendor/rails/actionpack/test/template/translation_helper_test.rb +32 -0
  3164. data/vendor/rails/actionpack/test/template/url_helper_test.rb +622 -0
  3165. data/vendor/rails/actionpack/test/testing_sandbox.rb +15 -0
  3166. data/vendor/rails/actionpack/test/view/test_case_test.rb +8 -0
  3167. data/vendor/rails/activerecord/CHANGELOG +5850 -0
  3168. data/vendor/rails/activerecord/README +351 -0
  3169. data/vendor/rails/activerecord/RUNNING_UNIT_TESTS +36 -0
  3170. data/vendor/rails/activerecord/Rakefile +270 -0
  3171. data/vendor/rails/activerecord/examples/associations.png +0 -0
  3172. data/vendor/rails/activerecord/examples/performance.rb +162 -0
  3173. data/vendor/rails/activerecord/install.rb +30 -0
  3174. data/vendor/rails/activerecord/lib/active_record.rb +84 -0
  3175. data/vendor/rails/activerecord/lib/active_record/aggregations.rb +261 -0
  3176. data/vendor/rails/activerecord/lib/active_record/association_preload.rb +389 -0
  3177. data/vendor/rails/activerecord/lib/active_record/associations.rb +2238 -0
  3178. data/vendor/rails/activerecord/lib/active_record/associations/association_collection.rb +475 -0
  3179. data/vendor/rails/activerecord/lib/active_record/associations/association_proxy.rb +279 -0
  3180. data/vendor/rails/activerecord/lib/active_record/associations/belongs_to_association.rb +76 -0
  3181. data/vendor/rails/activerecord/lib/active_record/associations/belongs_to_polymorphic_association.rb +53 -0
  3182. data/vendor/rails/activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb +143 -0
  3183. data/vendor/rails/activerecord/lib/active_record/associations/has_many_association.rb +122 -0
  3184. data/vendor/rails/activerecord/lib/active_record/associations/has_many_through_association.rb +266 -0
  3185. data/vendor/rails/activerecord/lib/active_record/associations/has_one_association.rb +124 -0
  3186. data/vendor/rails/activerecord/lib/active_record/associations/has_one_through_association.rb +37 -0
  3187. data/vendor/rails/activerecord/lib/active_record/attribute_methods.rb +388 -0
  3188. data/vendor/rails/activerecord/lib/active_record/autosave_association.rb +355 -0
  3189. data/vendor/rails/activerecord/lib/active_record/base.rb +3158 -0
  3190. data/vendor/rails/activerecord/lib/active_record/batches.rb +81 -0
  3191. data/vendor/rails/activerecord/lib/active_record/calculations.rb +311 -0
  3192. data/vendor/rails/activerecord/lib/active_record/callbacks.rb +360 -0
  3193. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb +371 -0
  3194. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb +139 -0
  3195. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb +289 -0
  3196. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb +94 -0
  3197. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/quoting.rb +69 -0
  3198. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb +722 -0
  3199. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +434 -0
  3200. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb +241 -0
  3201. data/vendor/rails/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb +626 -0
  3202. data/vendor/rails/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb +1113 -0
  3203. data/vendor/rails/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb +34 -0
  3204. data/vendor/rails/activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb +453 -0
  3205. data/vendor/rails/activerecord/lib/active_record/dirty.rb +183 -0
  3206. data/vendor/rails/activerecord/lib/active_record/dynamic_finder_match.rb +41 -0
  3207. data/vendor/rails/activerecord/lib/active_record/dynamic_scope_match.rb +25 -0
  3208. data/vendor/rails/activerecord/lib/active_record/fixtures.rb +996 -0
  3209. data/vendor/rails/activerecord/lib/active_record/i18n_interpolation_deprecation.rb +26 -0
  3210. data/vendor/rails/activerecord/lib/active_record/locale/en.yml +58 -0
  3211. data/vendor/rails/activerecord/lib/active_record/locking/optimistic.rb +181 -0
  3212. data/vendor/rails/activerecord/lib/active_record/locking/pessimistic.rb +77 -0
  3213. data/vendor/rails/activerecord/lib/active_record/migration.rb +566 -0
  3214. data/vendor/rails/activerecord/lib/active_record/named_scope.rb +192 -0
  3215. data/vendor/rails/activerecord/lib/active_record/nested_attributes.rb +329 -0
  3216. data/vendor/rails/activerecord/lib/active_record/observer.rb +197 -0
  3217. data/vendor/rails/activerecord/lib/active_record/query_cache.rb +33 -0
  3218. data/vendor/rails/activerecord/lib/active_record/reflection.rb +320 -0
  3219. data/vendor/rails/activerecord/lib/active_record/schema.rb +51 -0
  3220. data/vendor/rails/activerecord/lib/active_record/schema_dumper.rb +182 -0
  3221. data/vendor/rails/activerecord/lib/active_record/serialization.rb +101 -0
  3222. data/vendor/rails/activerecord/lib/active_record/serializers/json_serializer.rb +91 -0
  3223. data/vendor/rails/activerecord/lib/active_record/serializers/xml_serializer.rb +357 -0
  3224. data/vendor/rails/activerecord/lib/active_record/session_store.rb +326 -0
  3225. data/vendor/rails/activerecord/lib/active_record/test_case.rb +66 -0
  3226. data/vendor/rails/activerecord/lib/active_record/timestamp.rb +71 -0
  3227. data/vendor/rails/activerecord/lib/active_record/transactions.rb +235 -0
  3228. data/vendor/rails/activerecord/lib/active_record/validations.rb +1135 -0
  3229. data/vendor/rails/activerecord/lib/active_record/version.rb +9 -0
  3230. data/vendor/rails/activerecord/lib/activerecord.rb +1 -0
  3231. data/vendor/rails/activerecord/test/assets/example.log +1 -0
  3232. data/vendor/rails/activerecord/test/assets/flowers.jpg +0 -0
  3233. data/vendor/rails/activerecord/test/cases/aaa_create_tables_test.rb +24 -0
  3234. data/vendor/rails/activerecord/test/cases/active_schema_test_mysql.rb +100 -0
  3235. data/vendor/rails/activerecord/test/cases/active_schema_test_postgresql.rb +24 -0
  3236. data/vendor/rails/activerecord/test/cases/adapter_test.rb +145 -0
  3237. data/vendor/rails/activerecord/test/cases/aggregations_test.rb +167 -0
  3238. data/vendor/rails/activerecord/test/cases/ar_schema_test.rb +32 -0
  3239. data/vendor/rails/activerecord/test/cases/associations/belongs_to_associations_test.rb +425 -0
  3240. data/vendor/rails/activerecord/test/cases/associations/callbacks_test.rb +161 -0
  3241. data/vendor/rails/activerecord/test/cases/associations/cascaded_eager_loading_test.rb +131 -0
  3242. data/vendor/rails/activerecord/test/cases/associations/eager_load_includes_full_sti_class_test.rb +36 -0
  3243. data/vendor/rails/activerecord/test/cases/associations/eager_load_nested_include_test.rb +130 -0
  3244. data/vendor/rails/activerecord/test/cases/associations/eager_singularization_test.rb +145 -0
  3245. data/vendor/rails/activerecord/test/cases/associations/eager_test.rb +834 -0
  3246. data/vendor/rails/activerecord/test/cases/associations/extension_test.rb +62 -0
  3247. data/vendor/rails/activerecord/test/cases/associations/habtm_join_table_test.rb +56 -0
  3248. data/vendor/rails/activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb +822 -0
  3249. data/vendor/rails/activerecord/test/cases/associations/has_many_associations_test.rb +1122 -0
  3250. data/vendor/rails/activerecord/test/cases/associations/has_many_through_associations_test.rb +324 -0
  3251. data/vendor/rails/activerecord/test/cases/associations/has_one_associations_test.rb +309 -0
  3252. data/vendor/rails/activerecord/test/cases/associations/has_one_through_associations_test.rb +209 -0
  3253. data/vendor/rails/activerecord/test/cases/associations/inner_join_association_test.rb +93 -0
  3254. data/vendor/rails/activerecord/test/cases/associations/join_model_test.rb +712 -0
  3255. data/vendor/rails/activerecord/test/cases/associations_test.rb +262 -0
  3256. data/vendor/rails/activerecord/test/cases/attribute_methods_test.rb +305 -0
  3257. data/vendor/rails/activerecord/test/cases/autosave_association_test.rb +923 -0
  3258. data/vendor/rails/activerecord/test/cases/base_test.rb +2152 -0
  3259. data/vendor/rails/activerecord/test/cases/batches_test.rb +61 -0
  3260. data/vendor/rails/activerecord/test/cases/binary_test.rb +30 -0
  3261. data/vendor/rails/activerecord/test/cases/calculations_test.rb +348 -0
  3262. data/vendor/rails/activerecord/test/cases/callbacks_observers_test.rb +38 -0
  3263. data/vendor/rails/activerecord/test/cases/callbacks_test.rb +438 -0
  3264. data/vendor/rails/activerecord/test/cases/class_inheritable_attributes_test.rb +32 -0
  3265. data/vendor/rails/activerecord/test/cases/column_alias_test.rb +17 -0
  3266. data/vendor/rails/activerecord/test/cases/column_definition_test.rb +70 -0
  3267. data/vendor/rails/activerecord/test/cases/connection_pool_test.rb +25 -0
  3268. data/vendor/rails/activerecord/test/cases/connection_test_firebird.rb +8 -0
  3269. data/vendor/rails/activerecord/test/cases/connection_test_mysql.rb +56 -0
  3270. data/vendor/rails/activerecord/test/cases/copy_table_test_sqlite.rb +80 -0
  3271. data/vendor/rails/activerecord/test/cases/database_statements_test.rb +12 -0
  3272. data/vendor/rails/activerecord/test/cases/datatype_test_postgresql.rb +204 -0
  3273. data/vendor/rails/activerecord/test/cases/date_time_test.rb +37 -0
  3274. data/vendor/rails/activerecord/test/cases/default_test_firebird.rb +16 -0
  3275. data/vendor/rails/activerecord/test/cases/defaults_test.rb +111 -0
  3276. data/vendor/rails/activerecord/test/cases/deprecated_finder_test.rb +30 -0
  3277. data/vendor/rails/activerecord/test/cases/dirty_test.rb +316 -0
  3278. data/vendor/rails/activerecord/test/cases/finder_respond_to_test.rb +76 -0
  3279. data/vendor/rails/activerecord/test/cases/finder_test.rb +1054 -0
  3280. data/vendor/rails/activerecord/test/cases/fixtures_test.rb +656 -0
  3281. data/vendor/rails/activerecord/test/cases/helper.rb +68 -0
  3282. data/vendor/rails/activerecord/test/cases/i18n_test.rb +46 -0
  3283. data/vendor/rails/activerecord/test/cases/inheritance_test.rb +262 -0
  3284. data/vendor/rails/activerecord/test/cases/invalid_date_test.rb +24 -0
  3285. data/vendor/rails/activerecord/test/cases/json_serialization_test.rb +205 -0
  3286. data/vendor/rails/activerecord/test/cases/lifecycle_test.rb +193 -0
  3287. data/vendor/rails/activerecord/test/cases/locking_test.rb +322 -0
  3288. data/vendor/rails/activerecord/test/cases/method_scoping_test.rb +704 -0
  3289. data/vendor/rails/activerecord/test/cases/migration_test.rb +1523 -0
  3290. data/vendor/rails/activerecord/test/cases/migration_test_firebird.rb +124 -0
  3291. data/vendor/rails/activerecord/test/cases/mixin_test.rb +96 -0
  3292. data/vendor/rails/activerecord/test/cases/modules_test.rb +81 -0
  3293. data/vendor/rails/activerecord/test/cases/multiple_db_test.rb +85 -0
  3294. data/vendor/rails/activerecord/test/cases/named_scope_test.rb +361 -0
  3295. data/vendor/rails/activerecord/test/cases/nested_attributes_test.rb +509 -0
  3296. data/vendor/rails/activerecord/test/cases/pk_test.rb +119 -0
  3297. data/vendor/rails/activerecord/test/cases/pooled_connections_test.rb +103 -0
  3298. data/vendor/rails/activerecord/test/cases/query_cache_test.rb +123 -0
  3299. data/vendor/rails/activerecord/test/cases/readonly_test.rb +107 -0
  3300. data/vendor/rails/activerecord/test/cases/reflection_test.rb +194 -0
  3301. data/vendor/rails/activerecord/test/cases/reload_models_test.rb +22 -0
  3302. data/vendor/rails/activerecord/test/cases/repair_helper.rb +50 -0
  3303. data/vendor/rails/activerecord/test/cases/reserved_word_test_mysql.rb +176 -0
  3304. data/vendor/rails/activerecord/test/cases/sanitize_test.rb +25 -0
  3305. data/vendor/rails/activerecord/test/cases/schema_authorization_test_postgresql.rb +75 -0
  3306. data/vendor/rails/activerecord/test/cases/schema_dumper_test.rb +211 -0
  3307. data/vendor/rails/activerecord/test/cases/schema_test_postgresql.rb +178 -0
  3308. data/vendor/rails/activerecord/test/cases/serialization_test.rb +47 -0
  3309. data/vendor/rails/activerecord/test/cases/synonym_test_oracle.rb +17 -0
  3310. data/vendor/rails/activerecord/test/cases/timestamp_test.rb +75 -0
  3311. data/vendor/rails/activerecord/test/cases/transactions_test.rb +522 -0
  3312. data/vendor/rails/activerecord/test/cases/unconnected_test.rb +32 -0
  3313. data/vendor/rails/activerecord/test/cases/validations_i18n_test.rb +947 -0
  3314. data/vendor/rails/activerecord/test/cases/validations_test.rb +1612 -0
  3315. data/vendor/rails/activerecord/test/cases/xml_serialization_test.rb +240 -0
  3316. data/vendor/rails/activerecord/test/config.rb +5 -0
  3317. data/vendor/rails/activerecord/test/connections/jdbc_jdbcderby/connection.rb +18 -0
  3318. data/vendor/rails/activerecord/test/connections/jdbc_jdbch2/connection.rb +18 -0
  3319. data/vendor/rails/activerecord/test/connections/jdbc_jdbchsqldb/connection.rb +18 -0
  3320. data/vendor/rails/activerecord/test/connections/jdbc_jdbcmysql/connection.rb +26 -0
  3321. data/vendor/rails/activerecord/test/connections/jdbc_jdbcpostgresql/connection.rb +26 -0
  3322. data/vendor/rails/activerecord/test/connections/jdbc_jdbcsqlite3/connection.rb +25 -0
  3323. data/vendor/rails/activerecord/test/connections/native_db2/connection.rb +25 -0
  3324. data/vendor/rails/activerecord/test/connections/native_firebird/connection.rb +26 -0
  3325. data/vendor/rails/activerecord/test/connections/native_frontbase/connection.rb +27 -0
  3326. data/vendor/rails/activerecord/test/connections/native_mysql/connection.rb +25 -0
  3327. data/vendor/rails/activerecord/test/connections/native_openbase/connection.rb +21 -0
  3328. data/vendor/rails/activerecord/test/connections/native_oracle/connection.rb +27 -0
  3329. data/vendor/rails/activerecord/test/connections/native_postgresql/connection.rb +21 -0
  3330. data/vendor/rails/activerecord/test/connections/native_sqlite/connection.rb +25 -0
  3331. data/vendor/rails/activerecord/test/connections/native_sqlite3/connection.rb +25 -0
  3332. data/vendor/rails/activerecord/test/connections/native_sqlite3/in_memory_connection.rb +18 -0
  3333. data/vendor/rails/activerecord/test/connections/native_sybase/connection.rb +23 -0
  3334. data/vendor/rails/activerecord/test/fixtures/accounts.yml +28 -0
  3335. data/vendor/rails/activerecord/test/fixtures/all/developers.yml +0 -0
  3336. data/vendor/rails/activerecord/test/fixtures/all/people.csv +0 -0
  3337. data/vendor/rails/activerecord/test/fixtures/all/tasks.yml +0 -0
  3338. data/vendor/rails/activerecord/test/fixtures/author_addresses.yml +5 -0
  3339. data/vendor/rails/activerecord/test/fixtures/author_favorites.yml +4 -0
  3340. data/vendor/rails/activerecord/test/fixtures/authors.yml +9 -0
  3341. data/vendor/rails/activerecord/test/fixtures/binaries.yml +132 -0
  3342. data/vendor/rails/activerecord/test/fixtures/books.yml +7 -0
  3343. data/vendor/rails/activerecord/test/fixtures/categories.yml +14 -0
  3344. data/vendor/rails/activerecord/test/fixtures/categories/special_categories.yml +9 -0
  3345. data/vendor/rails/activerecord/test/fixtures/categories/subsubdir/arbitrary_filename.yml +4 -0
  3346. data/vendor/rails/activerecord/test/fixtures/categories_ordered.yml +7 -0
  3347. data/vendor/rails/activerecord/test/fixtures/categories_posts.yml +23 -0
  3348. data/vendor/rails/activerecord/test/fixtures/categorizations.yml +17 -0
  3349. data/vendor/rails/activerecord/test/fixtures/clubs.yml +6 -0
  3350. data/vendor/rails/activerecord/test/fixtures/comments.yml +59 -0
  3351. data/vendor/rails/activerecord/test/fixtures/companies.yml +56 -0
  3352. data/vendor/rails/activerecord/test/fixtures/computers.yml +4 -0
  3353. data/vendor/rails/activerecord/test/fixtures/courses.yml +7 -0
  3354. data/vendor/rails/activerecord/test/fixtures/customers.yml +26 -0
  3355. data/vendor/rails/activerecord/test/fixtures/developers.yml +21 -0
  3356. data/vendor/rails/activerecord/test/fixtures/developers_projects.yml +17 -0
  3357. data/vendor/rails/activerecord/test/fixtures/edges.yml +6 -0
  3358. data/vendor/rails/activerecord/test/fixtures/entrants.yml +14 -0
  3359. data/vendor/rails/activerecord/test/fixtures/fixture_database.sqlite +0 -0
  3360. data/vendor/rails/activerecord/test/fixtures/fixture_database.sqlite3 +0 -0
  3361. data/vendor/rails/activerecord/test/fixtures/fixture_database_2.sqlite +0 -0
  3362. data/vendor/rails/activerecord/test/fixtures/fixture_database_2.sqlite3 +0 -0
  3363. data/vendor/rails/activerecord/test/fixtures/fk_test_has_fk.yml +3 -0
  3364. data/vendor/rails/activerecord/test/fixtures/fk_test_has_pk.yml +2 -0
  3365. data/vendor/rails/activerecord/test/fixtures/funny_jokes.yml +10 -0
  3366. data/vendor/rails/activerecord/test/fixtures/items.yml +4 -0
  3367. data/vendor/rails/activerecord/test/fixtures/jobs.yml +7 -0
  3368. data/vendor/rails/activerecord/test/fixtures/legacy_things.yml +3 -0
  3369. data/vendor/rails/activerecord/test/fixtures/mateys.yml +4 -0
  3370. data/vendor/rails/activerecord/test/fixtures/member_types.yml +6 -0
  3371. data/vendor/rails/activerecord/test/fixtures/members.yml +6 -0
  3372. data/vendor/rails/activerecord/test/fixtures/memberships.yml +20 -0
  3373. data/vendor/rails/activerecord/test/fixtures/minimalistics.yml +2 -0
  3374. data/vendor/rails/activerecord/test/fixtures/mixed_case_monkeys.yml +6 -0
  3375. data/vendor/rails/activerecord/test/fixtures/mixins.yml +29 -0
  3376. data/vendor/rails/activerecord/test/fixtures/movies.yml +7 -0
  3377. data/vendor/rails/activerecord/test/fixtures/naked/csv/accounts.csv +1 -0
  3378. data/vendor/rails/activerecord/test/fixtures/naked/yml/accounts.yml +1 -0
  3379. data/vendor/rails/activerecord/test/fixtures/naked/yml/companies.yml +1 -0
  3380. data/vendor/rails/activerecord/test/fixtures/naked/yml/courses.yml +1 -0
  3381. data/vendor/rails/activerecord/test/fixtures/organizations.yml +5 -0
  3382. data/vendor/rails/activerecord/test/fixtures/owners.yml +7 -0
  3383. data/vendor/rails/activerecord/test/fixtures/parrots.yml +27 -0
  3384. data/vendor/rails/activerecord/test/fixtures/parrots_pirates.yml +7 -0
  3385. data/vendor/rails/activerecord/test/fixtures/people.yml +15 -0
  3386. data/vendor/rails/activerecord/test/fixtures/pets.yml +14 -0
  3387. data/vendor/rails/activerecord/test/fixtures/pirates.yml +9 -0
  3388. data/vendor/rails/activerecord/test/fixtures/posts.yml +52 -0
  3389. data/vendor/rails/activerecord/test/fixtures/price_estimates.yml +7 -0
  3390. data/vendor/rails/activerecord/test/fixtures/projects.yml +7 -0
  3391. data/vendor/rails/activerecord/test/fixtures/readers.yml +9 -0
  3392. data/vendor/rails/activerecord/test/fixtures/references.yml +17 -0
  3393. data/vendor/rails/activerecord/test/fixtures/reserved_words/distinct.yml +5 -0
  3394. data/vendor/rails/activerecord/test/fixtures/reserved_words/distincts_selects.yml +11 -0
  3395. data/vendor/rails/activerecord/test/fixtures/reserved_words/group.yml +14 -0
  3396. data/vendor/rails/activerecord/test/fixtures/reserved_words/select.yml +8 -0
  3397. data/vendor/rails/activerecord/test/fixtures/reserved_words/values.yml +7 -0
  3398. data/vendor/rails/activerecord/test/fixtures/ships.yml +5 -0
  3399. data/vendor/rails/activerecord/test/fixtures/sponsors.yml +9 -0
  3400. data/vendor/rails/activerecord/test/fixtures/subscribers.yml +7 -0
  3401. data/vendor/rails/activerecord/test/fixtures/subscriptions.yml +12 -0
  3402. data/vendor/rails/activerecord/test/fixtures/taggings.yml +28 -0
  3403. data/vendor/rails/activerecord/test/fixtures/tags.yml +7 -0
  3404. data/vendor/rails/activerecord/test/fixtures/tasks.yml +7 -0
  3405. data/vendor/rails/activerecord/test/fixtures/topics.yml +42 -0
  3406. data/vendor/rails/activerecord/test/fixtures/toys.yml +4 -0
  3407. data/vendor/rails/activerecord/test/fixtures/treasures.yml +10 -0
  3408. data/vendor/rails/activerecord/test/fixtures/vertices.yml +4 -0
  3409. data/vendor/rails/activerecord/test/fixtures/warehouse-things.yml +3 -0
  3410. data/vendor/rails/activerecord/test/migrations/broken/100_migration_that_raises_exception.rb +10 -0
  3411. data/vendor/rails/activerecord/test/migrations/decimal/1_give_me_big_numbers.rb +15 -0
  3412. data/vendor/rails/activerecord/test/migrations/duplicate/1_people_have_last_names.rb +9 -0
  3413. data/vendor/rails/activerecord/test/migrations/duplicate/2_we_need_reminders.rb +12 -0
  3414. data/vendor/rails/activerecord/test/migrations/duplicate/3_foo.rb +7 -0
  3415. data/vendor/rails/activerecord/test/migrations/duplicate/3_innocent_jointable.rb +12 -0
  3416. data/vendor/rails/activerecord/test/migrations/duplicate_names/20080507052938_chunky.rb +7 -0
  3417. data/vendor/rails/activerecord/test/migrations/duplicate_names/20080507053028_chunky.rb +7 -0
  3418. data/vendor/rails/activerecord/test/migrations/interleaved/pass_1/3_innocent_jointable.rb +12 -0
  3419. data/vendor/rails/activerecord/test/migrations/interleaved/pass_2/1_people_have_last_names.rb +9 -0
  3420. data/vendor/rails/activerecord/test/migrations/interleaved/pass_2/3_innocent_jointable.rb +12 -0
  3421. data/vendor/rails/activerecord/test/migrations/interleaved/pass_3/1_people_have_last_names.rb +9 -0
  3422. data/vendor/rails/activerecord/test/migrations/interleaved/pass_3/2_i_raise_on_down.rb +8 -0
  3423. data/vendor/rails/activerecord/test/migrations/interleaved/pass_3/3_innocent_jointable.rb +12 -0
  3424. data/vendor/rails/activerecord/test/migrations/missing/1000_people_have_middle_names.rb +9 -0
  3425. data/vendor/rails/activerecord/test/migrations/missing/1_people_have_last_names.rb +9 -0
  3426. data/vendor/rails/activerecord/test/migrations/missing/3_we_need_reminders.rb +12 -0
  3427. data/vendor/rails/activerecord/test/migrations/missing/4_innocent_jointable.rb +12 -0
  3428. data/vendor/rails/activerecord/test/migrations/valid/1_people_have_last_names.rb +9 -0
  3429. data/vendor/rails/activerecord/test/migrations/valid/2_we_need_reminders.rb +12 -0
  3430. data/vendor/rails/activerecord/test/migrations/valid/3_innocent_jointable.rb +12 -0
  3431. data/vendor/rails/activerecord/test/models/author.rb +146 -0
  3432. data/vendor/rails/activerecord/test/models/auto_id.rb +4 -0
  3433. data/vendor/rails/activerecord/test/models/binary.rb +2 -0
  3434. data/vendor/rails/activerecord/test/models/bird.rb +3 -0
  3435. data/vendor/rails/activerecord/test/models/book.rb +4 -0
  3436. data/vendor/rails/activerecord/test/models/categorization.rb +5 -0
  3437. data/vendor/rails/activerecord/test/models/category.rb +34 -0
  3438. data/vendor/rails/activerecord/test/models/citation.rb +6 -0
  3439. data/vendor/rails/activerecord/test/models/club.rb +13 -0
  3440. data/vendor/rails/activerecord/test/models/column_name.rb +3 -0
  3441. data/vendor/rails/activerecord/test/models/comment.rb +29 -0
  3442. data/vendor/rails/activerecord/test/models/company.rb +161 -0
  3443. data/vendor/rails/activerecord/test/models/company_in_module.rb +61 -0
  3444. data/vendor/rails/activerecord/test/models/computer.rb +3 -0
  3445. data/vendor/rails/activerecord/test/models/contact.rb +16 -0
  3446. data/vendor/rails/activerecord/test/models/contract.rb +5 -0
  3447. data/vendor/rails/activerecord/test/models/course.rb +3 -0
  3448. data/vendor/rails/activerecord/test/models/customer.rb +73 -0
  3449. data/vendor/rails/activerecord/test/models/default.rb +2 -0
  3450. data/vendor/rails/activerecord/test/models/developer.rb +101 -0
  3451. data/vendor/rails/activerecord/test/models/edge.rb +5 -0
  3452. data/vendor/rails/activerecord/test/models/entrant.rb +3 -0
  3453. data/vendor/rails/activerecord/test/models/essay.rb +3 -0
  3454. data/vendor/rails/activerecord/test/models/event.rb +3 -0
  3455. data/vendor/rails/activerecord/test/models/guid.rb +2 -0
  3456. data/vendor/rails/activerecord/test/models/item.rb +7 -0
  3457. data/vendor/rails/activerecord/test/models/job.rb +5 -0
  3458. data/vendor/rails/activerecord/test/models/joke.rb +3 -0
  3459. data/vendor/rails/activerecord/test/models/keyboard.rb +3 -0
  3460. data/vendor/rails/activerecord/test/models/legacy_thing.rb +3 -0
  3461. data/vendor/rails/activerecord/test/models/matey.rb +4 -0
  3462. data/vendor/rails/activerecord/test/models/member.rb +12 -0
  3463. data/vendor/rails/activerecord/test/models/member_detail.rb +5 -0
  3464. data/vendor/rails/activerecord/test/models/member_type.rb +3 -0
  3465. data/vendor/rails/activerecord/test/models/membership.rb +9 -0
  3466. data/vendor/rails/activerecord/test/models/minimalistic.rb +2 -0
  3467. data/vendor/rails/activerecord/test/models/mixed_case_monkey.rb +3 -0
  3468. data/vendor/rails/activerecord/test/models/movie.rb +5 -0
  3469. data/vendor/rails/activerecord/test/models/order.rb +4 -0
  3470. data/vendor/rails/activerecord/test/models/organization.rb +6 -0
  3471. data/vendor/rails/activerecord/test/models/owner.rb +5 -0
  3472. data/vendor/rails/activerecord/test/models/parrot.rb +16 -0
  3473. data/vendor/rails/activerecord/test/models/person.rb +16 -0
  3474. data/vendor/rails/activerecord/test/models/pet.rb +5 -0
  3475. data/vendor/rails/activerecord/test/models/pirate.rb +63 -0
  3476. data/vendor/rails/activerecord/test/models/post.rb +100 -0
  3477. data/vendor/rails/activerecord/test/models/price_estimate.rb +3 -0
  3478. data/vendor/rails/activerecord/test/models/project.rb +30 -0
  3479. data/vendor/rails/activerecord/test/models/reader.rb +4 -0
  3480. data/vendor/rails/activerecord/test/models/reference.rb +4 -0
  3481. data/vendor/rails/activerecord/test/models/reply.rb +46 -0
  3482. data/vendor/rails/activerecord/test/models/ship.rb +10 -0
  3483. data/vendor/rails/activerecord/test/models/ship_part.rb +5 -0
  3484. data/vendor/rails/activerecord/test/models/sponsor.rb +4 -0
  3485. data/vendor/rails/activerecord/test/models/subject.rb +4 -0
  3486. data/vendor/rails/activerecord/test/models/subscriber.rb +8 -0
  3487. data/vendor/rails/activerecord/test/models/subscription.rb +4 -0
  3488. data/vendor/rails/activerecord/test/models/tag.rb +7 -0
  3489. data/vendor/rails/activerecord/test/models/tagging.rb +10 -0
  3490. data/vendor/rails/activerecord/test/models/task.rb +3 -0
  3491. data/vendor/rails/activerecord/test/models/topic.rb +80 -0
  3492. data/vendor/rails/activerecord/test/models/toy.rb +6 -0
  3493. data/vendor/rails/activerecord/test/models/treasure.rb +6 -0
  3494. data/vendor/rails/activerecord/test/models/vertex.rb +9 -0
  3495. data/vendor/rails/activerecord/test/models/warehouse_thing.rb +5 -0
  3496. data/vendor/rails/activerecord/test/schema/mysql_specific_schema.rb +12 -0
  3497. data/vendor/rails/activerecord/test/schema/postgresql_specific_schema.rb +114 -0
  3498. data/vendor/rails/activerecord/test/schema/schema.rb +492 -0
  3499. data/vendor/rails/activerecord/test/schema/schema2.rb +6 -0
  3500. data/vendor/rails/activerecord/test/schema/sqlite_specific_schema.rb +25 -0
  3501. data/vendor/rails/activeresource/CHANGELOG +283 -0
  3502. data/vendor/rails/activeresource/README +165 -0
  3503. data/vendor/rails/activeresource/Rakefile +139 -0
  3504. data/vendor/rails/activeresource/lib/active_resource.rb +44 -0
  3505. data/vendor/rails/activeresource/lib/active_resource/base.rb +1157 -0
  3506. data/vendor/rails/activeresource/lib/active_resource/connection.rb +283 -0
  3507. data/vendor/rails/activeresource/lib/active_resource/custom_methods.rb +120 -0
  3508. data/vendor/rails/activeresource/lib/active_resource/exceptions.rb +66 -0
  3509. data/vendor/rails/activeresource/lib/active_resource/formats.rb +14 -0
  3510. data/vendor/rails/activeresource/lib/active_resource/formats/json_format.rb +23 -0
  3511. data/vendor/rails/activeresource/lib/active_resource/formats/xml_format.rb +34 -0
  3512. data/vendor/rails/activeresource/lib/active_resource/http_mock.rb +207 -0
  3513. data/vendor/rails/activeresource/lib/active_resource/validations.rb +290 -0
  3514. data/vendor/rails/activeresource/lib/active_resource/version.rb +9 -0
  3515. data/vendor/rails/activeresource/lib/activeresource.rb +1 -0
  3516. data/vendor/rails/activeresource/test/abstract_unit.rb +21 -0
  3517. data/vendor/rails/activeresource/test/authorization_test.rb +122 -0
  3518. data/vendor/rails/activeresource/test/base/custom_methods_test.rb +100 -0
  3519. data/vendor/rails/activeresource/test/base/equality_test.rb +52 -0
  3520. data/vendor/rails/activeresource/test/base/load_test.rb +161 -0
  3521. data/vendor/rails/activeresource/test/base_errors_test.rb +85 -0
  3522. data/vendor/rails/activeresource/test/base_test.rb +1038 -0
  3523. data/vendor/rails/activeresource/test/connection_test.rb +238 -0
  3524. data/vendor/rails/activeresource/test/debug.log +7974 -0
  3525. data/vendor/rails/activeresource/test/fixtures/beast.rb +14 -0
  3526. data/vendor/rails/activeresource/test/fixtures/customer.rb +3 -0
  3527. data/vendor/rails/activeresource/test/fixtures/person.rb +3 -0
  3528. data/vendor/rails/activeresource/test/fixtures/proxy.rb +4 -0
  3529. data/vendor/rails/activeresource/test/fixtures/street_address.rb +4 -0
  3530. data/vendor/rails/activeresource/test/format_test.rb +112 -0
  3531. data/vendor/rails/activeresource/test/setter_trap.rb +26 -0
  3532. data/vendor/rails/activesupport/CHANGELOG +1322 -0
  3533. data/vendor/rails/activesupport/README +43 -0
  3534. data/vendor/rails/activesupport/lib/active_support.rb +59 -0
  3535. data/vendor/rails/activesupport/lib/active_support/all.rb +8 -0
  3536. data/vendor/rails/activesupport/lib/active_support/backtrace_cleaner.rb +72 -0
  3537. data/vendor/rails/activesupport/lib/active_support/base64.rb +33 -0
  3538. data/vendor/rails/activesupport/lib/active_support/basic_object.rb +24 -0
  3539. data/vendor/rails/activesupport/lib/active_support/buffered_logger.rb +127 -0
  3540. data/vendor/rails/activesupport/lib/active_support/cache.rb +241 -0
  3541. data/vendor/rails/activesupport/lib/active_support/cache/compressed_mem_cache_store.rb +20 -0
  3542. data/vendor/rails/activesupport/lib/active_support/cache/drb_store.rb +14 -0
  3543. data/vendor/rails/activesupport/lib/active_support/cache/file_store.rb +72 -0
  3544. data/vendor/rails/activesupport/lib/active_support/cache/mem_cache_store.rb +138 -0
  3545. data/vendor/rails/activesupport/lib/active_support/cache/memory_store.rb +52 -0
  3546. data/vendor/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb +104 -0
  3547. data/vendor/rails/activesupport/lib/active_support/cache/synchronized_memory_store.rb +47 -0
  3548. data/vendor/rails/activesupport/lib/active_support/callbacks.rb +279 -0
  3549. data/vendor/rails/activesupport/lib/active_support/core_ext.rb +4 -0
  3550. data/vendor/rails/activesupport/lib/active_support/core_ext/array.rb +15 -0
  3551. data/vendor/rails/activesupport/lib/active_support/core_ext/array/access.rb +53 -0
  3552. data/vendor/rails/activesupport/lib/active_support/core_ext/array/conversions.rb +197 -0
  3553. data/vendor/rails/activesupport/lib/active_support/core_ext/array/extract_options.rb +20 -0
  3554. data/vendor/rails/activesupport/lib/active_support/core_ext/array/grouping.rb +106 -0
  3555. data/vendor/rails/activesupport/lib/active_support/core_ext/array/random_access.rb +12 -0
  3556. data/vendor/rails/activesupport/lib/active_support/core_ext/array/wrapper.rb +24 -0
  3557. data/vendor/rails/activesupport/lib/active_support/core_ext/base64.rb +4 -0
  3558. data/vendor/rails/activesupport/lib/active_support/core_ext/base64/encoding.rb +16 -0
  3559. data/vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb +19 -0
  3560. data/vendor/rails/activesupport/lib/active_support/core_ext/bigdecimal.rb +6 -0
  3561. data/vendor/rails/activesupport/lib/active_support/core_ext/bigdecimal/conversions.rb +37 -0
  3562. data/vendor/rails/activesupport/lib/active_support/core_ext/blank.rb +58 -0
  3563. data/vendor/rails/activesupport/lib/active_support/core_ext/cgi.rb +5 -0
  3564. data/vendor/rails/activesupport/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb +23 -0
  3565. data/vendor/rails/activesupport/lib/active_support/core_ext/class.rb +4 -0
  3566. data/vendor/rails/activesupport/lib/active_support/core_ext/class/attribute_accessors.rb +54 -0
  3567. data/vendor/rails/activesupport/lib/active_support/core_ext/class/delegating_attributes.rb +47 -0
  3568. data/vendor/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb +140 -0
  3569. data/vendor/rails/activesupport/lib/active_support/core_ext/class/removal.rb +50 -0
  3570. data/vendor/rails/activesupport/lib/active_support/core_ext/date.rb +10 -0
  3571. data/vendor/rails/activesupport/lib/active_support/core_ext/date/behavior.rb +42 -0
  3572. data/vendor/rails/activesupport/lib/active_support/core_ext/date/calculations.rb +231 -0
  3573. data/vendor/rails/activesupport/lib/active_support/core_ext/date/conversions.rb +107 -0
  3574. data/vendor/rails/activesupport/lib/active_support/core_ext/date_time.rb +12 -0
  3575. data/vendor/rails/activesupport/lib/active_support/core_ext/date_time/calculations.rb +126 -0
  3576. data/vendor/rails/activesupport/lib/active_support/core_ext/date_time/conversions.rb +96 -0
  3577. data/vendor/rails/activesupport/lib/active_support/core_ext/duplicable.rb +43 -0
  3578. data/vendor/rails/activesupport/lib/active_support/core_ext/enumerable.rb +114 -0
  3579. data/vendor/rails/activesupport/lib/active_support/core_ext/exception.rb +45 -0
  3580. data/vendor/rails/activesupport/lib/active_support/core_ext/file.rb +5 -0
  3581. data/vendor/rails/activesupport/lib/active_support/core_ext/file/atomic.rb +46 -0
  3582. data/vendor/rails/activesupport/lib/active_support/core_ext/float.rb +7 -0
  3583. data/vendor/rails/activesupport/lib/active_support/core_ext/float/rounding.rb +24 -0
  3584. data/vendor/rails/activesupport/lib/active_support/core_ext/float/time.rb +27 -0
  3585. data/vendor/rails/activesupport/lib/active_support/core_ext/hash.rb +14 -0
  3586. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/conversions.rb +247 -0
  3587. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/deep_merge.rb +23 -0
  3588. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/diff.rb +19 -0
  3589. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/except.rb +25 -0
  3590. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb +143 -0
  3591. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/keys.rb +52 -0
  3592. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/reverse_merge.rb +35 -0
  3593. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/slice.rb +40 -0
  3594. data/vendor/rails/activesupport/lib/active_support/core_ext/integer.rb +9 -0
  3595. data/vendor/rails/activesupport/lib/active_support/core_ext/integer/even_odd.rb +29 -0
  3596. data/vendor/rails/activesupport/lib/active_support/core_ext/integer/inflections.rb +20 -0
  3597. data/vendor/rails/activesupport/lib/active_support/core_ext/integer/time.rb +45 -0
  3598. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel.rb +5 -0
  3599. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/agnostics.rb +11 -0
  3600. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/daemonizing.rb +7 -0
  3601. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/debugger.rb +15 -0
  3602. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/reporting.rb +59 -0
  3603. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/requires.rb +24 -0
  3604. data/vendor/rails/activesupport/lib/active_support/core_ext/load_error.rb +38 -0
  3605. data/vendor/rails/activesupport/lib/active_support/core_ext/logger.rb +145 -0
  3606. data/vendor/rails/activesupport/lib/active_support/core_ext/module.rb +23 -0
  3607. data/vendor/rails/activesupport/lib/active_support/core_ext/module/aliasing.rb +74 -0
  3608. data/vendor/rails/activesupport/lib/active_support/core_ext/module/attr_accessor_with_default.rb +31 -0
  3609. data/vendor/rails/activesupport/lib/active_support/core_ext/module/attr_internal.rb +32 -0
  3610. data/vendor/rails/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb +60 -0
  3611. data/vendor/rails/activesupport/lib/active_support/core_ext/module/delegation.rb +135 -0
  3612. data/vendor/rails/activesupport/lib/active_support/core_ext/module/inclusion.rb +30 -0
  3613. data/vendor/rails/activesupport/lib/active_support/core_ext/module/introspection.rb +90 -0
  3614. data/vendor/rails/activesupport/lib/active_support/core_ext/module/loading.rb +23 -0
  3615. data/vendor/rails/activesupport/lib/active_support/core_ext/module/model_naming.rb +25 -0
  3616. data/vendor/rails/activesupport/lib/active_support/core_ext/module/synchronization.rb +39 -0
  3617. data/vendor/rails/activesupport/lib/active_support/core_ext/name_error.rb +17 -0
  3618. data/vendor/rails/activesupport/lib/active_support/core_ext/numeric.rb +9 -0
  3619. data/vendor/rails/activesupport/lib/active_support/core_ext/numeric/bytes.rb +50 -0
  3620. data/vendor/rails/activesupport/lib/active_support/core_ext/numeric/conversions.rb +19 -0
  3621. data/vendor/rails/activesupport/lib/active_support/core_ext/numeric/time.rb +81 -0
  3622. data/vendor/rails/activesupport/lib/active_support/core_ext/object.rb +5 -0
  3623. data/vendor/rails/activesupport/lib/active_support/core_ext/object/conversions.rb +15 -0
  3624. data/vendor/rails/activesupport/lib/active_support/core_ext/object/extending.rb +80 -0
  3625. data/vendor/rails/activesupport/lib/active_support/core_ext/object/instance_variables.rb +74 -0
  3626. data/vendor/rails/activesupport/lib/active_support/core_ext/object/metaclass.rb +13 -0
  3627. data/vendor/rails/activesupport/lib/active_support/core_ext/object/misc.rb +90 -0
  3628. data/vendor/rails/activesupport/lib/active_support/core_ext/pathname.rb +7 -0
  3629. data/vendor/rails/activesupport/lib/active_support/core_ext/pathname/clean_within.rb +14 -0
  3630. data/vendor/rails/activesupport/lib/active_support/core_ext/proc.rb +12 -0
  3631. data/vendor/rails/activesupport/lib/active_support/core_ext/process.rb +1 -0
  3632. data/vendor/rails/activesupport/lib/active_support/core_ext/process/daemon.rb +25 -0
  3633. data/vendor/rails/activesupport/lib/active_support/core_ext/range.rb +11 -0
  3634. data/vendor/rails/activesupport/lib/active_support/core_ext/range/blockless_step.rb +32 -0
  3635. data/vendor/rails/activesupport/lib/active_support/core_ext/range/conversions.rb +27 -0
  3636. data/vendor/rails/activesupport/lib/active_support/core_ext/range/include_range.rb +30 -0
  3637. data/vendor/rails/activesupport/lib/active_support/core_ext/range/overlaps.rb +15 -0
  3638. data/vendor/rails/activesupport/lib/active_support/core_ext/rexml.rb +41 -0
  3639. data/vendor/rails/activesupport/lib/active_support/core_ext/string.rb +23 -0
  3640. data/vendor/rails/activesupport/lib/active_support/core_ext/string/access.rb +106 -0
  3641. data/vendor/rails/activesupport/lib/active_support/core_ext/string/behavior.rb +13 -0
  3642. data/vendor/rails/activesupport/lib/active_support/core_ext/string/bytesize.rb +5 -0
  3643. data/vendor/rails/activesupport/lib/active_support/core_ext/string/conversions.rb +28 -0
  3644. data/vendor/rails/activesupport/lib/active_support/core_ext/string/filters.rb +26 -0
  3645. data/vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb +167 -0
  3646. data/vendor/rails/activesupport/lib/active_support/core_ext/string/iterators.rb +23 -0
  3647. data/vendor/rails/activesupport/lib/active_support/core_ext/string/multibyte.rb +81 -0
  3648. data/vendor/rails/activesupport/lib/active_support/core_ext/string/starts_ends_with.rb +35 -0
  3649. data/vendor/rails/activesupport/lib/active_support/core_ext/string/xchar.rb +11 -0
  3650. data/vendor/rails/activesupport/lib/active_support/core_ext/symbol.rb +14 -0
  3651. data/vendor/rails/activesupport/lib/active_support/core_ext/time.rb +42 -0
  3652. data/vendor/rails/activesupport/lib/active_support/core_ext/time/behavior.rb +13 -0
  3653. data/vendor/rails/activesupport/lib/active_support/core_ext/time/calculations.rb +303 -0
  3654. data/vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb +90 -0
  3655. data/vendor/rails/activesupport/lib/active_support/core_ext/time/zones.rb +86 -0
  3656. data/vendor/rails/activesupport/lib/active_support/core_ext/try.rb +36 -0
  3657. data/vendor/rails/activesupport/lib/active_support/core_ext/uri.rb +16 -0
  3658. data/vendor/rails/activesupport/lib/active_support/dependencies.rb +625 -0
  3659. data/vendor/rails/activesupport/lib/active_support/deprecation.rb +196 -0
  3660. data/vendor/rails/activesupport/lib/active_support/duration.rb +100 -0
  3661. data/vendor/rails/activesupport/lib/active_support/gzip.rb +25 -0
  3662. data/vendor/rails/activesupport/lib/active_support/inflections.rb +56 -0
  3663. data/vendor/rails/activesupport/lib/active_support/inflector.rb +406 -0
  3664. data/vendor/rails/activesupport/lib/active_support/json.rb +2 -0
  3665. data/vendor/rails/activesupport/lib/active_support/json/backends/jsongem.rb +38 -0
  3666. data/vendor/rails/activesupport/lib/active_support/json/backends/yaml.rb +88 -0
  3667. data/vendor/rails/activesupport/lib/active_support/json/decoding.rb +33 -0
  3668. data/vendor/rails/activesupport/lib/active_support/json/encoders/date.rb +22 -0
  3669. data/vendor/rails/activesupport/lib/active_support/json/encoders/date_time.rb +22 -0
  3670. data/vendor/rails/activesupport/lib/active_support/json/encoders/enumerable.rb +17 -0
  3671. data/vendor/rails/activesupport/lib/active_support/json/encoders/false_class.rb +7 -0
  3672. data/vendor/rails/activesupport/lib/active_support/json/encoders/hash.rb +56 -0
  3673. data/vendor/rails/activesupport/lib/active_support/json/encoders/nil_class.rb +7 -0
  3674. data/vendor/rails/activesupport/lib/active_support/json/encoders/numeric.rb +21 -0
  3675. data/vendor/rails/activesupport/lib/active_support/json/encoders/object.rb +10 -0
  3676. data/vendor/rails/activesupport/lib/active_support/json/encoders/regexp.rb +9 -0
  3677. data/vendor/rails/activesupport/lib/active_support/json/encoders/string.rb +9 -0
  3678. data/vendor/rails/activesupport/lib/active_support/json/encoders/symbol.rb +5 -0
  3679. data/vendor/rails/activesupport/lib/active_support/json/encoders/time.rb +22 -0
  3680. data/vendor/rails/activesupport/lib/active_support/json/encoders/true_class.rb +7 -0
  3681. data/vendor/rails/activesupport/lib/active_support/json/encoding.rb +102 -0
  3682. data/vendor/rails/activesupport/lib/active_support/json/variable.rb +10 -0
  3683. data/vendor/rails/activesupport/lib/active_support/locale/en.yml +33 -0
  3684. data/vendor/rails/activesupport/lib/active_support/memoizable.rb +100 -0
  3685. data/vendor/rails/activesupport/lib/active_support/message_encryptor.rb +70 -0
  3686. data/vendor/rails/activesupport/lib/active_support/message_verifier.rb +59 -0
  3687. data/vendor/rails/activesupport/lib/active_support/multibyte.rb +57 -0
  3688. data/vendor/rails/activesupport/lib/active_support/multibyte/chars.rb +707 -0
  3689. data/vendor/rails/activesupport/lib/active_support/multibyte/exceptions.rb +8 -0
  3690. data/vendor/rails/activesupport/lib/active_support/multibyte/unicode_database.rb +71 -0
  3691. data/vendor/rails/activesupport/lib/active_support/multibyte/utils.rb +61 -0
  3692. data/vendor/rails/activesupport/lib/active_support/option_merger.rb +23 -0
  3693. data/vendor/rails/activesupport/lib/active_support/ordered_hash.rb +134 -0
  3694. data/vendor/rails/activesupport/lib/active_support/ordered_options.rb +19 -0
  3695. data/vendor/rails/activesupport/lib/active_support/rescuable.rb +108 -0
  3696. data/vendor/rails/activesupport/lib/active_support/secure_random.rb +199 -0
  3697. data/vendor/rails/activesupport/lib/active_support/string_inquirer.rb +21 -0
  3698. data/vendor/rails/activesupport/lib/active_support/test_case.rb +40 -0
  3699. data/vendor/rails/activesupport/lib/active_support/testing/assertions.rb +65 -0
  3700. data/vendor/rails/activesupport/lib/active_support/testing/declarative.rb +21 -0
  3701. data/vendor/rails/activesupport/lib/active_support/testing/default.rb +9 -0
  3702. data/vendor/rails/activesupport/lib/active_support/testing/deprecation.rb +57 -0
  3703. data/vendor/rails/activesupport/lib/active_support/testing/performance.rb +452 -0
  3704. data/vendor/rails/activesupport/lib/active_support/testing/setup_and_teardown.rb +91 -0
  3705. data/vendor/rails/activesupport/lib/active_support/time_with_zone.rb +335 -0
  3706. data/vendor/rails/activesupport/lib/active_support/values/time_zone.rb +404 -0
  3707. data/vendor/rails/activesupport/lib/active_support/values/unicode_tables.dat +0 -0
  3708. data/vendor/rails/activesupport/lib/active_support/vendor.rb +28 -0
  3709. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/blankslate.rb +113 -0
  3710. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder.rb +13 -0
  3711. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/blankslate.rb +20 -0
  3712. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/css.rb +250 -0
  3713. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xchar.rb +115 -0
  3714. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlbase.rb +139 -0
  3715. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlevents.rb +63 -0
  3716. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlmarkup.rb +328 -0
  3717. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/MIT-LICENSE +20 -0
  3718. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/README.textile +20 -0
  3719. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/Rakefile +5 -0
  3720. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/i18n.gemspec +27 -0
  3721. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/lib/i18n.rb +199 -0
  3722. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/lib/i18n/backend/simple.rb +214 -0
  3723. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/lib/i18n/exceptions.rb +53 -0
  3724. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/all.rb +5 -0
  3725. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/i18n_exceptions_test.rb +99 -0
  3726. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/i18n_test.rb +124 -0
  3727. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/locale/en.rb +1 -0
  3728. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/locale/en.yml +3 -0
  3729. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/simple_backend_test.rb +567 -0
  3730. data/vendor/rails/activesupport/lib/active_support/vendor/memcache-client-1.7.4/memcache.rb +1107 -0
  3731. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo.rb +33 -0
  3732. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/data_timezone.rb +47 -0
  3733. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/data_timezone_info.rb +228 -0
  3734. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Algiers.rb +55 -0
  3735. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Cairo.rb +219 -0
  3736. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Casablanca.rb +40 -0
  3737. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Harare.rb +18 -0
  3738. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Johannesburg.rb +25 -0
  3739. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Monrovia.rb +22 -0
  3740. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Nairobi.rb +23 -0
  3741. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/Buenos_Aires.rb +166 -0
  3742. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/San_Juan.rb +86 -0
  3743. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Bogota.rb +23 -0
  3744. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Caracas.rb +23 -0
  3745. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Chicago.rb +283 -0
  3746. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Chihuahua.rb +136 -0
  3747. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Denver.rb +204 -0
  3748. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Godthab.rb +161 -0
  3749. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Guatemala.rb +27 -0
  3750. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Halifax.rb +274 -0
  3751. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Indiana/Indianapolis.rb +149 -0
  3752. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Juneau.rb +194 -0
  3753. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/La_Paz.rb +22 -0
  3754. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Lima.rb +35 -0
  3755. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Los_Angeles.rb +232 -0
  3756. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Mazatlan.rb +139 -0
  3757. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Mexico_City.rb +144 -0
  3758. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Monterrey.rb +131 -0
  3759. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/New_York.rb +282 -0
  3760. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Phoenix.rb +30 -0
  3761. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Regina.rb +74 -0
  3762. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Santiago.rb +205 -0
  3763. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Sao_Paulo.rb +171 -0
  3764. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/St_Johns.rb +288 -0
  3765. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Tijuana.rb +196 -0
  3766. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Almaty.rb +67 -0
  3767. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Baghdad.rb +73 -0
  3768. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Baku.rb +161 -0
  3769. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Bangkok.rb +20 -0
  3770. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Chongqing.rb +33 -0
  3771. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Colombo.rb +30 -0
  3772. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Dhaka.rb +27 -0
  3773. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Hong_Kong.rb +87 -0
  3774. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Irkutsk.rb +165 -0
  3775. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Jakarta.rb +30 -0
  3776. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Jerusalem.rb +163 -0
  3777. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kabul.rb +20 -0
  3778. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kamchatka.rb +163 -0
  3779. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Karachi.rb +30 -0
  3780. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Katmandu.rb +20 -0
  3781. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kolkata.rb +25 -0
  3782. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Krasnoyarsk.rb +163 -0
  3783. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kuala_Lumpur.rb +31 -0
  3784. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kuwait.rb +18 -0
  3785. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Magadan.rb +163 -0
  3786. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Muscat.rb +18 -0
  3787. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Novosibirsk.rb +164 -0
  3788. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Rangoon.rb +24 -0
  3789. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Riyadh.rb +18 -0
  3790. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Seoul.rb +34 -0
  3791. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Shanghai.rb +35 -0
  3792. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Singapore.rb +33 -0
  3793. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Taipei.rb +59 -0
  3794. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tashkent.rb +47 -0
  3795. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tbilisi.rb +78 -0
  3796. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tehran.rb +121 -0
  3797. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tokyo.rb +30 -0
  3798. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Ulaanbaatar.rb +65 -0
  3799. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Urumqi.rb +33 -0
  3800. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Vladivostok.rb +164 -0
  3801. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yakutsk.rb +163 -0
  3802. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yekaterinburg.rb +165 -0
  3803. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yerevan.rb +165 -0
  3804. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/Azores.rb +270 -0
  3805. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/Cape_Verde.rb +23 -0
  3806. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/South_Georgia.rb +18 -0
  3807. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Adelaide.rb +187 -0
  3808. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Brisbane.rb +35 -0
  3809. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Darwin.rb +29 -0
  3810. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Hobart.rb +193 -0
  3811. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Melbourne.rb +185 -0
  3812. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Perth.rb +37 -0
  3813. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Sydney.rb +185 -0
  3814. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Etc/UTC.rb +16 -0
  3815. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Amsterdam.rb +228 -0
  3816. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Athens.rb +185 -0
  3817. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Belgrade.rb +163 -0
  3818. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Berlin.rb +188 -0
  3819. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Bratislava.rb +13 -0
  3820. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Brussels.rb +232 -0
  3821. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Bucharest.rb +181 -0
  3822. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Budapest.rb +197 -0
  3823. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Copenhagen.rb +179 -0
  3824. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Dublin.rb +276 -0
  3825. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Helsinki.rb +163 -0
  3826. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Istanbul.rb +218 -0
  3827. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Kiev.rb +168 -0
  3828. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Lisbon.rb +268 -0
  3829. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Ljubljana.rb +13 -0
  3830. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/London.rb +288 -0
  3831. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Madrid.rb +211 -0
  3832. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Minsk.rb +170 -0
  3833. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Moscow.rb +181 -0
  3834. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Paris.rb +232 -0
  3835. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Prague.rb +187 -0
  3836. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Riga.rb +176 -0
  3837. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Rome.rb +215 -0
  3838. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Sarajevo.rb +13 -0
  3839. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Skopje.rb +13 -0
  3840. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Sofia.rb +173 -0
  3841. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Stockholm.rb +165 -0
  3842. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Tallinn.rb +172 -0
  3843. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Vienna.rb +183 -0
  3844. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Vilnius.rb +170 -0
  3845. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Warsaw.rb +212 -0
  3846. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Zagreb.rb +13 -0
  3847. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Auckland.rb +202 -0
  3848. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Fiji.rb +23 -0
  3849. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Guam.rb +22 -0
  3850. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Honolulu.rb +28 -0
  3851. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Majuro.rb +20 -0
  3852. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Midway.rb +25 -0
  3853. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Noumea.rb +25 -0
  3854. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Pago_Pago.rb +26 -0
  3855. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Port_Moresby.rb +20 -0
  3856. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Tongatapu.rb +27 -0
  3857. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/info_timezone.rb +52 -0
  3858. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/linked_timezone.rb +51 -0
  3859. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/linked_timezone_info.rb +44 -0
  3860. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/offset_rationals.rb +98 -0
  3861. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/ruby_core_support.rb +56 -0
  3862. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/time_or_datetime.rb +292 -0
  3863. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone.rb +508 -0
  3864. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_definition.rb +56 -0
  3865. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_info.rb +40 -0
  3866. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_offset_info.rb +94 -0
  3867. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_period.rb +198 -0
  3868. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_transition_info.rb +129 -0
  3869. data/vendor/rails/activesupport/lib/active_support/version.rb +9 -0
  3870. data/vendor/rails/activesupport/lib/active_support/whiny_nil.rb +58 -0
  3871. data/vendor/rails/activesupport/lib/active_support/xml_mini.rb +31 -0
  3872. data/vendor/rails/activesupport/lib/active_support/xml_mini/jdom.rb +162 -0
  3873. data/vendor/rails/activesupport/lib/active_support/xml_mini/libxml.rb +133 -0
  3874. data/vendor/rails/activesupport/lib/active_support/xml_mini/nokogiri.rb +77 -0
  3875. data/vendor/rails/activesupport/lib/active_support/xml_mini/rexml.rb +108 -0
  3876. data/vendor/rails/activesupport/lib/activesupport.rb +1 -0
  3877. data/vendor/rails/railties/CHANGELOG +2166 -0
  3878. data/vendor/rails/railties/MIT-LICENSE +20 -0
  3879. data/vendor/rails/railties/README +243 -0
  3880. data/vendor/rails/railties/Rakefile +368 -0
  3881. data/vendor/rails/railties/bin/about +4 -0
  3882. data/vendor/rails/railties/bin/console +3 -0
  3883. data/vendor/rails/railties/bin/dbconsole +3 -0
  3884. data/vendor/rails/railties/bin/destroy +3 -0
  3885. data/vendor/rails/railties/bin/generate +3 -0
  3886. data/vendor/rails/railties/bin/performance/benchmarker +3 -0
  3887. data/vendor/rails/railties/bin/performance/profiler +3 -0
  3888. data/vendor/rails/railties/bin/plugin +3 -0
  3889. data/vendor/rails/railties/bin/rails +20 -0
  3890. data/vendor/rails/railties/bin/runner +3 -0
  3891. data/vendor/rails/railties/bin/server +3 -0
  3892. data/vendor/rails/railties/builtin/rails_info/rails/info.rb +131 -0
  3893. data/vendor/rails/railties/builtin/rails_info/rails/info_controller.rb +9 -0
  3894. data/vendor/rails/railties/builtin/rails_info/rails/info_helper.rb +2 -0
  3895. data/vendor/rails/railties/builtin/rails_info/rails_info_controller.rb +2 -0
  3896. data/vendor/rails/railties/configs/databases/frontbase.yml +28 -0
  3897. data/vendor/rails/railties/configs/databases/ibm_db.yml +62 -0
  3898. data/vendor/rails/railties/configs/databases/mysql.yml +60 -0
  3899. data/vendor/rails/railties/configs/databases/oracle.yml +39 -0
  3900. data/vendor/rails/railties/configs/databases/postgresql.yml +51 -0
  3901. data/vendor/rails/railties/configs/databases/sqlite2.yml +19 -0
  3902. data/vendor/rails/railties/configs/databases/sqlite3.yml +22 -0
  3903. data/vendor/rails/railties/configs/empty.log +0 -0
  3904. data/vendor/rails/railties/configs/initializers/backtrace_silencers.rb +7 -0
  3905. data/vendor/rails/railties/configs/initializers/inflections.rb +10 -0
  3906. data/vendor/rails/railties/configs/initializers/mime_types.rb +5 -0
  3907. data/vendor/rails/railties/configs/initializers/new_rails_defaults.rb +21 -0
  3908. data/vendor/rails/railties/configs/initializers/session_store.rb +15 -0
  3909. data/vendor/rails/railties/configs/locales/en.yml +5 -0
  3910. data/vendor/rails/railties/configs/routes.rb +43 -0
  3911. data/vendor/rails/railties/configs/seeds.rb +7 -0
  3912. data/vendor/rails/railties/dispatches/config.ru +7 -0
  3913. data/vendor/rails/railties/dispatches/dispatch.fcgi +24 -0
  3914. data/vendor/rails/railties/dispatches/dispatch.rb +10 -0
  3915. data/vendor/rails/railties/dispatches/gateway.cgi +97 -0
  3916. data/vendor/rails/railties/doc/README_FOR_APP +2 -0
  3917. data/vendor/rails/railties/environments/boot.rb +110 -0
  3918. data/vendor/rails/railties/environments/development.rb +17 -0
  3919. data/vendor/rails/railties/environments/environment.rb +41 -0
  3920. data/vendor/rails/railties/environments/production.rb +28 -0
  3921. data/vendor/rails/railties/environments/test.rb +28 -0
  3922. data/vendor/rails/railties/fresh_rakefile +10 -0
  3923. data/vendor/rails/railties/guides/files/javascripts/code_highlighter.js +188 -0
  3924. data/vendor/rails/railties/guides/files/javascripts/guides.js +8 -0
  3925. data/vendor/rails/railties/guides/files/javascripts/highlighters.js +90 -0
  3926. data/vendor/rails/railties/guides/files/stylesheets/main.css +441 -0
  3927. data/vendor/rails/railties/guides/files/stylesheets/print.css +52 -0
  3928. data/vendor/rails/railties/guides/files/stylesheets/reset.css +43 -0
  3929. data/vendor/rails/railties/guides/files/stylesheets/style.css +13 -0
  3930. data/vendor/rails/railties/guides/files/stylesheets/syntax.css +31 -0
  3931. data/vendor/rails/railties/guides/images/belongs_to.png +0 -0
  3932. data/vendor/rails/railties/guides/images/book_icon.gif +0 -0
  3933. data/vendor/rails/railties/guides/images/bullet.gif +0 -0
  3934. data/vendor/rails/railties/guides/images/chapters_icon.gif +0 -0
  3935. data/vendor/rails/railties/guides/images/check_bullet.gif +0 -0
  3936. data/vendor/rails/railties/guides/images/credits_pic_blank.gif +0 -0
  3937. data/vendor/rails/railties/guides/images/csrf.png +0 -0
  3938. data/vendor/rails/railties/guides/images/customized_error_messages.png +0 -0
  3939. data/vendor/rails/railties/guides/images/error_messages.png +0 -0
  3940. data/vendor/rails/railties/guides/images/feature_tile.gif +0 -0
  3941. data/vendor/rails/railties/guides/images/footer_tile.gif +0 -0
  3942. data/vendor/rails/railties/guides/images/fxn.jpg +0 -0
  3943. data/vendor/rails/railties/guides/images/grey_bullet.gif +0 -0
  3944. data/vendor/rails/railties/guides/images/habtm.png +0 -0
  3945. data/vendor/rails/railties/guides/images/has_many.png +0 -0
  3946. data/vendor/rails/railties/guides/images/has_many_through.png +0 -0
  3947. data/vendor/rails/railties/guides/images/has_one.png +0 -0
  3948. data/vendor/rails/railties/guides/images/has_one_through.png +0 -0
  3949. data/vendor/rails/railties/guides/images/header_backdrop.png +0 -0
  3950. data/vendor/rails/railties/guides/images/header_tile.gif +0 -0
  3951. data/vendor/rails/railties/guides/images/i18n/demo_localized_pirate.png +0 -0
  3952. data/vendor/rails/railties/guides/images/i18n/demo_translated_en.png +0 -0
  3953. data/vendor/rails/railties/guides/images/i18n/demo_translated_pirate.png +0 -0
  3954. data/vendor/rails/railties/guides/images/i18n/demo_translation_missing.png +0 -0
  3955. data/vendor/rails/railties/guides/images/i18n/demo_untranslated.png +0 -0
  3956. data/vendor/rails/railties/guides/images/icons/README +5 -0
  3957. data/vendor/rails/railties/guides/images/icons/callouts/1.png +0 -0
  3958. data/vendor/rails/railties/guides/images/icons/callouts/10.png +0 -0
  3959. data/vendor/rails/railties/guides/images/icons/callouts/11.png +0 -0
  3960. data/vendor/rails/railties/guides/images/icons/callouts/12.png +0 -0
  3961. data/vendor/rails/railties/guides/images/icons/callouts/13.png +0 -0
  3962. data/vendor/rails/railties/guides/images/icons/callouts/14.png +0 -0
  3963. data/vendor/rails/railties/guides/images/icons/callouts/15.png +0 -0
  3964. data/vendor/rails/railties/guides/images/icons/callouts/2.png +0 -0
  3965. data/vendor/rails/railties/guides/images/icons/callouts/3.png +0 -0
  3966. data/vendor/rails/railties/guides/images/icons/callouts/4.png +0 -0
  3967. data/vendor/rails/railties/guides/images/icons/callouts/5.png +0 -0
  3968. data/vendor/rails/railties/guides/images/icons/callouts/6.png +0 -0
  3969. data/vendor/rails/railties/guides/images/icons/callouts/7.png +0 -0
  3970. data/vendor/rails/railties/guides/images/icons/callouts/8.png +0 -0
  3971. data/vendor/rails/railties/guides/images/icons/callouts/9.png +0 -0
  3972. data/vendor/rails/railties/guides/images/icons/caution.png +0 -0
  3973. data/vendor/rails/railties/guides/images/icons/example.png +0 -0
  3974. data/vendor/rails/railties/guides/images/icons/home.png +0 -0
  3975. data/vendor/rails/railties/guides/images/icons/important.png +0 -0
  3976. data/vendor/rails/railties/guides/images/icons/next.png +0 -0
  3977. data/vendor/rails/railties/guides/images/icons/note.png +0 -0
  3978. data/vendor/rails/railties/guides/images/icons/prev.png +0 -0
  3979. data/vendor/rails/railties/guides/images/icons/tip.png +0 -0
  3980. data/vendor/rails/railties/guides/images/icons/up.png +0 -0
  3981. data/vendor/rails/railties/guides/images/icons/warning.png +0 -0
  3982. data/vendor/rails/railties/guides/images/nav_arrow.gif +0 -0
  3983. data/vendor/rails/railties/guides/images/polymorphic.png +0 -0
  3984. data/vendor/rails/railties/guides/images/posts_index.png +0 -0
  3985. data/vendor/rails/railties/guides/images/rails_guides_logo.gif +0 -0
  3986. data/vendor/rails/railties/guides/images/rails_logo_remix.gif +0 -0
  3987. data/vendor/rails/railties/guides/images/rails_welcome.png +0 -0
  3988. data/vendor/rails/railties/guides/images/session_fixation.png +0 -0
  3989. data/vendor/rails/railties/guides/images/tab_grey.gif +0 -0
  3990. data/vendor/rails/railties/guides/images/tab_info.gif +0 -0
  3991. data/vendor/rails/railties/guides/images/tab_note.gif +0 -0
  3992. data/vendor/rails/railties/guides/images/tab_red.gif +0 -0
  3993. data/vendor/rails/railties/guides/images/tab_yellow.gif +0 -0
  3994. data/vendor/rails/railties/guides/images/tab_yellow.png +0 -0
  3995. data/vendor/rails/railties/guides/images/validation_error_messages.png +0 -0
  3996. data/vendor/rails/railties/guides/rails_guides.rb +42 -0
  3997. data/vendor/rails/railties/guides/rails_guides/generator.rb +138 -0
  3998. data/vendor/rails/railties/guides/rails_guides/helpers.rb +34 -0
  3999. data/vendor/rails/railties/guides/rails_guides/indexer.rb +55 -0
  4000. data/vendor/rails/railties/guides/rails_guides/textile_extensions.rb +41 -0
  4001. data/vendor/rails/railties/guides/source/2_2_release_notes.textile +422 -0
  4002. data/vendor/rails/railties/guides/source/2_3_release_notes.textile +610 -0
  4003. data/vendor/rails/railties/guides/source/action_controller_overview.textile +776 -0
  4004. data/vendor/rails/railties/guides/source/action_mailer_basics.textile +424 -0
  4005. data/vendor/rails/railties/guides/source/active_record_basics.textile +135 -0
  4006. data/vendor/rails/railties/guides/source/active_record_querying.textile +969 -0
  4007. data/vendor/rails/railties/guides/source/activerecord_validations_callbacks.textile +1086 -0
  4008. data/vendor/rails/railties/guides/source/association_basics.textile +1781 -0
  4009. data/vendor/rails/railties/guides/source/caching_with_rails.textile +524 -0
  4010. data/vendor/rails/railties/guides/source/command_line.textile +589 -0
  4011. data/vendor/rails/railties/guides/source/configuring.textile +234 -0
  4012. data/vendor/rails/railties/guides/source/contribute.textile +71 -0
  4013. data/vendor/rails/railties/guides/source/contributing_to_rails.textile +239 -0
  4014. data/vendor/rails/railties/guides/source/credits.erb.textile +52 -0
  4015. data/vendor/rails/railties/guides/source/debugging_rails_applications.textile +709 -0
  4016. data/vendor/rails/railties/guides/source/form_helpers.textile +766 -0
  4017. data/vendor/rails/railties/guides/source/getting_started.textile +1297 -0
  4018. data/vendor/rails/railties/guides/source/i18n.textile +912 -0
  4019. data/vendor/rails/railties/guides/source/index.erb.textile +124 -0
  4020. data/vendor/rails/railties/guides/source/layout.html.erb +103 -0
  4021. data/vendor/rails/railties/guides/source/layouts_and_rendering.textile +979 -0
  4022. data/vendor/rails/railties/guides/source/migrations.textile +591 -0
  4023. data/vendor/rails/railties/guides/source/nested_model_forms.textile +222 -0
  4024. data/vendor/rails/railties/guides/source/performance_testing.textile +531 -0
  4025. data/vendor/rails/railties/guides/source/plugins.textile +1512 -0
  4026. data/vendor/rails/railties/guides/source/rails_on_rack.textile +309 -0
  4027. data/vendor/rails/railties/guides/source/routing.textile +903 -0
  4028. data/vendor/rails/railties/guides/source/security.textile +986 -0
  4029. data/vendor/rails/railties/guides/source/testing.textile +951 -0
  4030. data/vendor/rails/railties/helpers/application_controller.rb +10 -0
  4031. data/vendor/rails/railties/helpers/application_helper.rb +3 -0
  4032. data/vendor/rails/railties/helpers/performance_test.rb +9 -0
  4033. data/vendor/rails/railties/helpers/test_helper.rb +38 -0
  4034. data/vendor/rails/railties/html/404.html +30 -0
  4035. data/vendor/rails/railties/html/422.html +30 -0
  4036. data/vendor/rails/railties/html/500.html +30 -0
  4037. data/vendor/rails/railties/html/favicon.ico +0 -0
  4038. data/vendor/rails/railties/html/images/rails.png +0 -0
  4039. data/vendor/rails/railties/html/index.html +275 -0
  4040. data/vendor/rails/railties/html/javascripts/application.js +2 -0
  4041. data/vendor/rails/railties/html/javascripts/controls.js +963 -0
  4042. data/vendor/rails/railties/html/javascripts/dragdrop.js +973 -0
  4043. data/vendor/rails/railties/html/javascripts/effects.js +1128 -0
  4044. data/vendor/rails/railties/html/javascripts/prototype.js +4320 -0
  4045. data/vendor/rails/railties/html/robots.txt +5 -0
  4046. data/vendor/rails/railties/lib/code_statistics.rb +107 -0
  4047. data/vendor/rails/railties/lib/commands.rb +17 -0
  4048. data/vendor/rails/railties/lib/commands/about.rb +3 -0
  4049. data/vendor/rails/railties/lib/commands/console.rb +45 -0
  4050. data/vendor/rails/railties/lib/commands/dbconsole.rb +87 -0
  4051. data/vendor/rails/railties/lib/commands/destroy.rb +6 -0
  4052. data/vendor/rails/railties/lib/commands/generate.rb +6 -0
  4053. data/vendor/rails/railties/lib/commands/ncgi/listener +86 -0
  4054. data/vendor/rails/railties/lib/commands/ncgi/tracker +69 -0
  4055. data/vendor/rails/railties/lib/commands/performance/benchmarker.rb +24 -0
  4056. data/vendor/rails/railties/lib/commands/performance/profiler.rb +50 -0
  4057. data/vendor/rails/railties/lib/commands/plugin.rb +968 -0
  4058. data/vendor/rails/railties/lib/commands/runner.rb +54 -0
  4059. data/vendor/rails/railties/lib/commands/server.rb +114 -0
  4060. data/vendor/rails/railties/lib/commands/update.rb +4 -0
  4061. data/vendor/rails/railties/lib/console_app.rb +30 -0
  4062. data/vendor/rails/railties/lib/console_sandbox.rb +6 -0
  4063. data/vendor/rails/railties/lib/console_with_helpers.rb +5 -0
  4064. data/vendor/rails/railties/lib/dispatcher.rb +24 -0
  4065. data/vendor/rails/railties/lib/fcgi_handler.rb +239 -0
  4066. data/vendor/rails/railties/lib/initializer.rb +1128 -0
  4067. data/vendor/rails/railties/lib/performance_test_help.rb +5 -0
  4068. data/vendor/rails/railties/lib/rails/backtrace_cleaner.rb +54 -0
  4069. data/vendor/rails/railties/lib/rails/gem_builder.rb +21 -0
  4070. data/vendor/rails/railties/lib/rails/gem_dependency.rb +311 -0
  4071. data/vendor/rails/railties/lib/rails/plugin.rb +179 -0
  4072. data/vendor/rails/railties/lib/rails/plugin/loader.rb +198 -0
  4073. data/vendor/rails/railties/lib/rails/plugin/locator.rb +100 -0
  4074. data/vendor/rails/railties/lib/rails/rack.rb +8 -0
  4075. data/vendor/rails/railties/lib/rails/rack/debugger.rb +21 -0
  4076. data/vendor/rails/railties/lib/rails/rack/log_tailer.rb +35 -0
  4077. data/vendor/rails/railties/lib/rails/rack/metal.rb +51 -0
  4078. data/vendor/rails/railties/lib/rails/rack/static.rb +46 -0
  4079. data/vendor/rails/railties/lib/rails/vendor_gem_source_index.rb +140 -0
  4080. data/vendor/rails/railties/lib/rails/version.rb +9 -0
  4081. data/vendor/rails/railties/lib/rails_generator.rb +43 -0
  4082. data/vendor/rails/railties/lib/rails_generator/base.rb +266 -0
  4083. data/vendor/rails/railties/lib/rails_generator/commands.rb +621 -0
  4084. data/vendor/rails/railties/lib/rails_generator/generated_attribute.rb +46 -0
  4085. data/vendor/rails/railties/lib/rails_generator/generators/applications/app/USAGE +9 -0
  4086. data/vendor/rails/railties/lib/rails_generator/generators/applications/app/app_generator.rb +263 -0
  4087. data/vendor/rails/railties/lib/rails_generator/generators/applications/app/scm/git.rb +18 -0
  4088. data/vendor/rails/railties/lib/rails_generator/generators/applications/app/scm/scm.rb +8 -0
  4089. data/vendor/rails/railties/lib/rails_generator/generators/applications/app/scm/svn.rb +7 -0
  4090. data/vendor/rails/railties/lib/rails_generator/generators/applications/app/template_runner.rb +401 -0
  4091. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/USAGE +30 -0
  4092. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/controller_generator.rb +43 -0
  4093. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/controller.rb +7 -0
  4094. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/functional_test.rb +8 -0
  4095. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/helper.rb +2 -0
  4096. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/helper_test.rb +4 -0
  4097. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/view.html.erb +2 -0
  4098. data/vendor/rails/railties/lib/rails_generator/generators/components/helper/USAGE +24 -0
  4099. data/vendor/rails/railties/lib/rails_generator/generators/components/helper/helper_generator.rb +25 -0
  4100. data/vendor/rails/railties/lib/rails_generator/generators/components/helper/templates/helper.rb +2 -0
  4101. data/vendor/rails/railties/lib/rails_generator/generators/components/helper/templates/helper_test.rb +4 -0
  4102. data/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/USAGE +8 -0
  4103. data/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/integration_test_generator.rb +16 -0
  4104. data/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/templates/integration_test.rb +10 -0
  4105. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/USAGE +16 -0
  4106. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/mailer_generator.rb +30 -0
  4107. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/fixture.erb +3 -0
  4108. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/fixture.rhtml +0 -0
  4109. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/mailer.rb +15 -0
  4110. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/unit_test.rb +20 -0
  4111. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/view.erb +3 -0
  4112. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/view.rhtml +0 -0
  4113. data/vendor/rails/railties/lib/rails_generator/generators/components/metal/USAGE +8 -0
  4114. data/vendor/rails/railties/lib/rails_generator/generators/components/metal/metal_generator.rb +8 -0
  4115. data/vendor/rails/railties/lib/rails_generator/generators/components/metal/templates/metal.rb +12 -0
  4116. data/vendor/rails/railties/lib/rails_generator/generators/components/migration/USAGE +29 -0
  4117. data/vendor/rails/railties/lib/rails_generator/generators/components/migration/migration_generator.rb +20 -0
  4118. data/vendor/rails/railties/lib/rails_generator/generators/components/migration/templates/migration.rb +11 -0
  4119. data/vendor/rails/railties/lib/rails_generator/generators/components/model/USAGE +27 -0
  4120. data/vendor/rails/railties/lib/rails_generator/generators/components/model/model_generator.rb +52 -0
  4121. data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/fixtures.yml +19 -0
  4122. data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/migration.rb +16 -0
  4123. data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/model.rb +5 -0
  4124. data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/unit_test.rb +8 -0
  4125. data/vendor/rails/railties/lib/rails_generator/generators/components/observer/USAGE +13 -0
  4126. data/vendor/rails/railties/lib/rails_generator/generators/components/observer/observer_generator.rb +16 -0
  4127. data/vendor/rails/railties/lib/rails_generator/generators/components/observer/templates/observer.rb +2 -0
  4128. data/vendor/rails/railties/lib/rails_generator/generators/components/observer/templates/unit_test.rb +8 -0
  4129. data/vendor/rails/railties/lib/rails_generator/generators/components/performance_test/USAGE +8 -0
  4130. data/vendor/rails/railties/lib/rails_generator/generators/components/performance_test/performance_test_generator.rb +16 -0
  4131. data/vendor/rails/railties/lib/rails_generator/generators/components/performance_test/templates/performance_test.rb +9 -0
  4132. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/USAGE +25 -0
  4133. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/plugin_generator.rb +39 -0
  4134. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/MIT-LICENSE +20 -0
  4135. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/README +13 -0
  4136. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/Rakefile +23 -0
  4137. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/USAGE +8 -0
  4138. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/generator.rb +8 -0
  4139. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/init.rb +1 -0
  4140. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/install.rb +1 -0
  4141. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/plugin.rb +1 -0
  4142. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/tasks.rake +4 -0
  4143. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/test_helper.rb +3 -0
  4144. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/uninstall.rb +1 -0
  4145. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/unit_test.rb +8 -0
  4146. data/vendor/rails/railties/lib/rails_generator/generators/components/resource/USAGE +23 -0
  4147. data/vendor/rails/railties/lib/rails_generator/generators/components/resource/resource_generator.rb +76 -0
  4148. data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/controller.rb +2 -0
  4149. data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/functional_test.rb +8 -0
  4150. data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/helper.rb +2 -0
  4151. data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/helper_test.rb +4 -0
  4152. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/USAGE +29 -0
  4153. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/scaffold_generator.rb +103 -0
  4154. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/controller.rb +85 -0
  4155. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/functional_test.rb +45 -0
  4156. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/helper.rb +2 -0
  4157. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/helper_test.rb +4 -0
  4158. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/layout.html.erb +17 -0
  4159. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/style.css +54 -0
  4160. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_edit.html.erb +18 -0
  4161. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_index.html.erb +24 -0
  4162. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_new.html.erb +17 -0
  4163. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_show.html.erb +10 -0
  4164. data/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/USAGE +10 -0
  4165. data/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/session_migration_generator.rb +18 -0
  4166. data/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/templates/migration.rb +16 -0
  4167. data/vendor/rails/railties/lib/rails_generator/lookup.rb +249 -0
  4168. data/vendor/rails/railties/lib/rails_generator/manifest.rb +53 -0
  4169. data/vendor/rails/railties/lib/rails_generator/options.rb +150 -0
  4170. data/vendor/rails/railties/lib/rails_generator/scripts.rb +89 -0
  4171. data/vendor/rails/railties/lib/rails_generator/scripts/destroy.rb +29 -0
  4172. data/vendor/rails/railties/lib/rails_generator/scripts/generate.rb +7 -0
  4173. data/vendor/rails/railties/lib/rails_generator/scripts/update.rb +12 -0
  4174. data/vendor/rails/railties/lib/rails_generator/secret_key_generator.rb +24 -0
  4175. data/vendor/rails/railties/lib/rails_generator/simple_logger.rb +46 -0
  4176. data/vendor/rails/railties/lib/rails_generator/spec.rb +44 -0
  4177. data/vendor/rails/railties/lib/railties_path.rb +1 -0
  4178. data/vendor/rails/railties/lib/ruby_version_check.rb +17 -0
  4179. data/vendor/rails/railties/lib/rubyprof_ext.rb +35 -0
  4180. data/vendor/rails/railties/lib/source_annotation_extractor.rb +102 -0
  4181. data/vendor/rails/railties/lib/tasks/annotations.rake +20 -0
  4182. data/vendor/rails/railties/lib/tasks/databases.rake +436 -0
  4183. data/vendor/rails/railties/lib/tasks/documentation.rake +88 -0
  4184. data/vendor/rails/railties/lib/tasks/framework.rake +143 -0
  4185. data/vendor/rails/railties/lib/tasks/gems.rake +78 -0
  4186. data/vendor/rails/railties/lib/tasks/log.rake +9 -0
  4187. data/vendor/rails/railties/lib/tasks/middleware.rake +7 -0
  4188. data/vendor/rails/railties/lib/tasks/misc.rake +63 -0
  4189. data/vendor/rails/railties/lib/tasks/rails.rb +8 -0
  4190. data/vendor/rails/railties/lib/tasks/routes.rake +18 -0
  4191. data/vendor/rails/railties/lib/tasks/statistics.rake +17 -0
  4192. data/vendor/rails/railties/lib/tasks/testing.rake +139 -0
  4193. data/vendor/rails/railties/lib/tasks/tmp.rake +37 -0
  4194. data/vendor/rails/railties/lib/test_help.rb +38 -0
  4195. data/vendor/rails/railties/lib/webrick_server.rb +156 -0
  4196. metadata +4217 -160
  4197. data.tar.gz.sig +0 -1
  4198. data/CHANGELOG +0 -4
  4199. data/Manifest +0 -61
  4200. data/README.txt +0 -1
  4201. data/bin/ginst_master +0 -11
  4202. data/features/browsing_project.feature +0 -20
  4203. data/features/manage_projects.feature +0 -36
  4204. data/features/manage_server.feature +0 -17
  4205. data/features/step_definitions/manage_projects_steps.rb +0 -35
  4206. data/features/step_definitions/manage_server_steps.rb +0 -33
  4207. data/features/step_definitions/webrat_steps.rb +0 -99
  4208. data/features/support/git.rb +0 -22
  4209. data/features/support/paths.rb +0 -16
  4210. data/lib/app/authorization.rb +0 -44
  4211. data/lib/app/views/_commit.haml +0 -8
  4212. data/lib/app/views/assets/jquery.corners.js +0 -7
  4213. data/lib/app/views/assets/jquery.js +0 -19
  4214. data/lib/app/views/branch_index.haml +0 -4
  4215. data/lib/app/views/clean_layout.haml +0 -17
  4216. data/lib/app/views/commit.haml +0 -38
  4217. data/lib/app/views/commits.haml +0 -8
  4218. data/lib/app/views/edit.haml +0 -11
  4219. data/lib/app/views/index.haml +0 -1
  4220. data/lib/app/views/layout.haml +0 -35
  4221. data/lib/app/views/new.haml +0 -19
  4222. data/lib/app/views/not_found.haml +0 -3
  4223. data/lib/app/views/project.haml +0 -4
  4224. data/lib/app/views/ref.haml +0 -3
  4225. data/lib/app/views/style.sass +0 -106
  4226. data/lib/app/webserver.rb +0 -103
  4227. data/lib/ginst/core_extensions.rb +0 -32
  4228. data/lib/ginst/ginst.rb +0 -6
  4229. data/lib/ginst/project.rb +0 -15
  4230. data/lib/ginst/project/base.rb +0 -59
  4231. data/lib/ginst/project/build.rb +0 -117
  4232. data/lib/ginst/project/commit_db.rb +0 -29
  4233. data/lib/ginst/project/finders.rb +0 -17
  4234. data/lib/ginst/project/grit.rb +0 -53
  4235. data/lib/ginst/project/validations.rb +0 -60
  4236. data/lib/ginst/test.rb +0 -8
  4237. data/lib/ginst/test/base.rb +0 -17
  4238. data/lib/ginst/test/dir.rb +0 -39
  4239. data/lib/ginst/test/repo.rb +0 -13
  4240. data/lib/ginst/test/run.rb +0 -11
  4241. data/spec/fixtures/sample_repo.zip +0 -0
  4242. data/spec/models/project_base_spec.rb +0 -56
  4243. data/spec/models/project_build_spec.rb +0 -18
  4244. data/spec/models/project_commit_db_spec.rb +0 -19
  4245. data/spec/models/project_finders_spec.rb +0 -34
  4246. data/spec/models/project_grit_spec.rb +0 -19
  4247. data/spec/models/project_validations_spec.rb +0 -72
  4248. data/test/app/test_webserver.rb +0 -21
  4249. data/test/test_ginst.rb +0 -84
  4250. data/test/test_helper.rb +0 -36
  4251. data/test/test_project.rb +0 -8
  4252. data/test/test_server.rb +0 -75
  4253. metadata.gz.sig +0 -1
@@ -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'