radiant-rc 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2360) hide show
  1. data/CHANGELOG +489 -0
  2. data/CONTRIBUTORS +194 -0
  3. data/INSTALL +40 -0
  4. data/LICENSE +21 -0
  5. data/README +64 -0
  6. data/Rakefile +11 -0
  7. data/app/controllers/admin/export_controller.rb +5 -0
  8. data/app/controllers/admin/extensions_controller.rb +11 -0
  9. data/app/controllers/admin/layouts_controller.rb +13 -0
  10. data/app/controllers/admin/page_parts_controller.rb +9 -0
  11. data/app/controllers/admin/pages_controller.rb +55 -0
  12. data/app/controllers/admin/preferences_controller.rb +45 -0
  13. data/app/controllers/admin/references_controller.rb +7 -0
  14. data/app/controllers/admin/resource_controller.rb +173 -0
  15. data/app/controllers/admin/snippets_controller.rb +13 -0
  16. data/app/controllers/admin/users_controller.rb +25 -0
  17. data/app/controllers/admin/welcome_controller.rb +43 -0
  18. data/app/controllers/application_controller.rb +74 -0
  19. data/app/controllers/site_controller.rb +61 -0
  20. data/app/helpers/admin/abstract_model_helper.rb +2 -0
  21. data/app/helpers/admin/export_helper.rb +2 -0
  22. data/app/helpers/admin/extensions_helper.rb +2 -0
  23. data/app/helpers/admin/layouts_helper.rb +2 -0
  24. data/app/helpers/admin/node_helper.rb +87 -0
  25. data/app/helpers/admin/pages_helper.rb +112 -0
  26. data/app/helpers/admin/preferences_helper.rb +2 -0
  27. data/app/helpers/admin/references_helper.rb +42 -0
  28. data/app/helpers/admin/regions_helper.rb +28 -0
  29. data/app/helpers/admin/snippets_helper.rb +2 -0
  30. data/app/helpers/admin/users_helper.rb +8 -0
  31. data/app/helpers/admin/welcome_helper.rb +2 -0
  32. data/app/helpers/application_helper.rb +174 -0
  33. data/app/helpers/site_helper.rb +2 -0
  34. data/app/models/env_dump_page.rb +17 -0
  35. data/app/models/file_not_found_page.rb +28 -0
  36. data/app/models/layout.rb +16 -0
  37. data/app/models/page.rb +297 -0
  38. data/app/models/page_context.rb +46 -0
  39. data/app/models/page_part.rb +21 -0
  40. data/app/models/radiant/config.rb +100 -0
  41. data/app/models/radiant/exporter.rb +11 -0
  42. data/app/models/snippet.rb +19 -0
  43. data/app/models/standard_tags.rb +1057 -0
  44. data/app/models/status.rb +31 -0
  45. data/app/models/text_filter.rb +25 -0
  46. data/app/models/user.rb +97 -0
  47. data/app/models/user_action_observer.rb +13 -0
  48. data/app/views/admin/extensions/index.html.haml +41 -0
  49. data/app/views/admin/layouts/_form.html.haml +36 -0
  50. data/app/views/admin/layouts/edit.html.haml +9 -0
  51. data/app/views/admin/layouts/index.html.haml +35 -0
  52. data/app/views/admin/layouts/new.html.haml +7 -0
  53. data/app/views/admin/layouts/remove.html.haml +16 -0
  54. data/app/views/admin/page_parts/_page_part.html.haml +17 -0
  55. data/app/views/admin/pages/_fields.html.haml +56 -0
  56. data/app/views/admin/pages/_meta_row.html.haml +6 -0
  57. data/app/views/admin/pages/_node.html.haml +25 -0
  58. data/app/views/admin/pages/_popups.html.haml +14 -0
  59. data/app/views/admin/pages/children.html.haml +2 -0
  60. data/app/views/admin/pages/edit.html.haml +14 -0
  61. data/app/views/admin/pages/index.html.haml +26 -0
  62. data/app/views/admin/pages/new.html.haml +12 -0
  63. data/app/views/admin/pages/remove.html.haml +21 -0
  64. data/app/views/admin/preferences/edit.html.haml +36 -0
  65. data/app/views/admin/references/_tag_reference.haml +3 -0
  66. data/app/views/admin/references/filters.haml +6 -0
  67. data/app/views/admin/references/tags.haml +24 -0
  68. data/app/views/admin/snippets/_form.html.haml +28 -0
  69. data/app/views/admin/snippets/edit.html.haml +9 -0
  70. data/app/views/admin/snippets/index.html.haml +33 -0
  71. data/app/views/admin/snippets/new.html.haml +7 -0
  72. data/app/views/admin/snippets/remove.html.haml +19 -0
  73. data/app/views/admin/users/_form.html.haml +45 -0
  74. data/app/views/admin/users/_password_fields.html.haml +16 -0
  75. data/app/views/admin/users/edit.html.haml +9 -0
  76. data/app/views/admin/users/index.html.haml +37 -0
  77. data/app/views/admin/users/new.html.haml +7 -0
  78. data/app/views/admin/users/remove.html.haml +18 -0
  79. data/app/views/admin/welcome/login.html.haml +24 -0
  80. data/app/views/layouts/application.html.haml +53 -0
  81. data/app/views/site/not_found.html.haml +3 -0
  82. data/bin/radiant +53 -0
  83. data/config/boot.rb +162 -0
  84. data/config/database.db2.yml +20 -0
  85. data/config/database.mysql.yml +25 -0
  86. data/config/database.postgresql.yml +25 -0
  87. data/config/database.sqlserver.yml +20 -0
  88. data/config/environment.rb +81 -0
  89. data/config/environments/development.rb +17 -0
  90. data/config/environments/production.rb +19 -0
  91. data/config/environments/test.rb +35 -0
  92. data/config/routes.rb +44 -0
  93. data/db/migrate/001_create_radiant_tables.rb +75 -0
  94. data/db/migrate/002_insert_initial_data.rb +12 -0
  95. data/db/migrate/003_rename_behavior_column.rb +9 -0
  96. data/db/migrate/004_rename_filter_column.rb +11 -0
  97. data/db/migrate/005_add_virtual_column_to_page.rb +9 -0
  98. data/db/migrate/006_integer_columns_to_boolean.rb +36 -0
  99. data/db/migrate/007_remove_virtual_column_from_page.rb +9 -0
  100. data/db/migrate/008_add_virtual_column_to_page_again.rb +9 -0
  101. data/db/migrate/009_add_content_type_field_to_layout.rb +9 -0
  102. data/db/migrate/010_merge_behaviors_and_pages.rb +57 -0
  103. data/db/migrate/011_rename_type_column_on_page_to_class_name.rb +9 -0
  104. data/db/migrate/012_create_extension_meta.rb +13 -0
  105. data/db/migrate/013_add_notes_field_to_user.rb +9 -0
  106. data/db/migrate/014_rename_config_default_parts_key.rb +17 -0
  107. data/db/migrate/015_add_optimistic_locking.rb +15 -0
  108. data/db/migrate/016_add_sessions.rb +16 -0
  109. data/db/migrate/017_rename_created_by_updated_by_columns.rb +15 -0
  110. data/db/migrate/018_add_description_and_keywords_to_pages.rb +11 -0
  111. data/db/migrate/019_add_salt_to_users.rb +11 -0
  112. data/db/migrate/020_add_session_info_to_users.rb +11 -0
  113. data/db/migrate/021_remove_session_expire_from_users.rb +9 -0
  114. data/db/migrate/20081203140407_add_indexes.rb +19 -0
  115. data/db/migrate/20090929164633_rename_developer_role_to_designer.rb +9 -0
  116. data/db/schema.rb +112 -0
  117. data/db/templates/empty.yml +2 -0
  118. data/db/templates/roasters.yml +1210 -0
  119. data/db/templates/simple-blog.yml +197 -0
  120. data/db/templates/styled-blog.yml +472 -0
  121. data/features/admin/content_negotiation.feature +24 -0
  122. data/features/admin/layouts_management.feature +10 -0
  123. data/features/admin/pages_management.feature +72 -0
  124. data/features/admin/snippets_management.feature +56 -0
  125. data/features/admin/user_permissions.feature +157 -0
  126. data/features/admin/user_preferences.feature +18 -0
  127. data/features/admin/users_management.feature +62 -0
  128. data/features/page_serving.feature +42 -0
  129. data/features/step_definitions/admin/admin_steps.rb +31 -0
  130. data/features/step_definitions/admin/content_negotiation_steps.rb +37 -0
  131. data/features/step_definitions/admin/pages_management_steps.rb +14 -0
  132. data/features/step_definitions/admin/users_management_steps.rb +15 -0
  133. data/features/step_definitions/page_serving_steps.rb +65 -0
  134. data/features/step_definitions/webrat_steps.rb +125 -0
  135. data/features/support/env.rb +24 -0
  136. data/features/support/paths.rb +21 -0
  137. data/lib/annotatable.rb +68 -0
  138. data/lib/autotest/discover.rb +3 -0
  139. data/lib/autotest/radiant_rails_rspec.rb +111 -0
  140. data/lib/generators/extension/USAGE +30 -0
  141. data/lib/generators/extension/extension_generator.rb +65 -0
  142. data/lib/generators/extension/templates/README +3 -0
  143. data/lib/generators/extension/templates/RSpecRakefile +123 -0
  144. data/lib/generators/extension/templates/Rakefile +25 -0
  145. data/lib/generators/extension/templates/cucumber.yml +1 -0
  146. data/lib/generators/extension/templates/cucumber_env.rb +16 -0
  147. data/lib/generators/extension/templates/cucumber_paths.rb +14 -0
  148. data/lib/generators/extension/templates/extension.rb +18 -0
  149. data/lib/generators/extension/templates/functional_test.rb +15 -0
  150. data/lib/generators/extension/templates/migration.rb +9 -0
  151. data/lib/generators/extension/templates/spec.opts +6 -0
  152. data/lib/generators/extension/templates/spec_helper.rb +36 -0
  153. data/lib/generators/extension/templates/tasks.rake +28 -0
  154. data/lib/generators/extension/templates/test_helper.rb +26 -0
  155. data/lib/generators/extension_controller/USAGE +36 -0
  156. data/lib/generators/extension_controller/extension_controller_generator.rb +84 -0
  157. data/lib/generators/extension_controller/templates/controller.rb +10 -0
  158. data/lib/generators/extension_controller/templates/controller_spec.rb +23 -0
  159. data/lib/generators/extension_controller/templates/functional_test.rb +11 -0
  160. data/lib/generators/extension_controller/templates/helper.rb +2 -0
  161. data/lib/generators/extension_controller/templates/helper_spec.rb +11 -0
  162. data/lib/generators/extension_controller/templates/helper_test.rb +4 -0
  163. data/lib/generators/extension_controller/templates/view.html.erb +2 -0
  164. data/lib/generators/extension_controller/templates/view_spec.rb +12 -0
  165. data/lib/generators/extension_mailer/USAGE +17 -0
  166. data/lib/generators/extension_mailer/extension_mailer_generator.rb +68 -0
  167. data/lib/generators/extension_mailer/templates/fixture.erb +3 -0
  168. data/lib/generators/extension_mailer/templates/mailer.rb +15 -0
  169. data/lib/generators/extension_mailer/templates/unit_test.rb +21 -0
  170. data/lib/generators/extension_mailer/templates/view.erb +3 -0
  171. data/lib/generators/extension_migration/USAGE +34 -0
  172. data/lib/generators/extension_migration/extension_migration_generator.rb +25 -0
  173. data/lib/generators/extension_migration/templates/migration.rb +11 -0
  174. data/lib/generators/extension_model/USAGE +35 -0
  175. data/lib/generators/extension_model/extension_model_generator.rb +68 -0
  176. data/lib/generators/extension_model/templates/fixtures.yml +19 -0
  177. data/lib/generators/extension_model/templates/migration.rb +16 -0
  178. data/lib/generators/extension_model/templates/model.rb +2 -0
  179. data/lib/generators/extension_model/templates/model_spec.rb +11 -0
  180. data/lib/generators/extension_model/templates/unit_test.rb +8 -0
  181. data/lib/generators/generator_base_extension.rb +16 -0
  182. data/lib/generators/instance/instance_generator.rb +117 -0
  183. data/lib/generators/instance/templates/databases/db2.yml +40 -0
  184. data/lib/generators/instance/templates/databases/mysql.yml +47 -0
  185. data/lib/generators/instance/templates/databases/postgresql.yml +44 -0
  186. data/lib/generators/instance/templates/databases/sqlite3.yml +16 -0
  187. data/lib/generators/instance/templates/databases/sqlserver.yml +20 -0
  188. data/lib/generators/instance/templates/instance_boot.rb +161 -0
  189. data/lib/generators/instance/templates/instance_environment.rb +81 -0
  190. data/lib/generators/instance/templates/instance_generate +18 -0
  191. data/lib/generators/instance/templates/instance_rakefile +3 -0
  192. data/lib/generators/instance/templates/instance_routes.rb +1 -0
  193. data/lib/inheritable_class_attributes.rb +65 -0
  194. data/lib/local_time.rb +6 -0
  195. data/lib/login_system.rb +128 -0
  196. data/lib/method_observer.rb +50 -0
  197. data/lib/plugins/active_record_extensions/init.rb +1 -0
  198. data/lib/plugins/active_record_extensions/lib/active_record_extensions.rb +47 -0
  199. data/lib/plugins/extension_patches/init.rb +1 -0
  200. data/lib/plugins/extension_patches/lib/routing_extension.rb +31 -0
  201. data/lib/plugins/object_extensions/init.rb +1 -0
  202. data/lib/plugins/object_extensions/lib/object_extensions.rb +5 -0
  203. data/lib/plugins/response_cache_timeout/init.rb +3 -0
  204. data/lib/plugins/string_extensions/init.rb +1 -0
  205. data/lib/plugins/string_extensions/lib/string_extensions.rb +23 -0
  206. data/lib/plugins/symbol_extensions/init.rb +1 -0
  207. data/lib/plugins/symbol_extensions/lib/symbol_extensions.rb +5 -0
  208. data/lib/radiant.rb +18 -0
  209. data/lib/radiant/admin_ui.rb +230 -0
  210. data/lib/radiant/admin_ui/region_partials.rb +18 -0
  211. data/lib/radiant/admin_ui/region_set.rb +35 -0
  212. data/lib/radiant/cache.rb +98 -0
  213. data/lib/radiant/extension.rb +100 -0
  214. data/lib/radiant/extension/script.rb +347 -0
  215. data/lib/radiant/extension_loader.rb +153 -0
  216. data/lib/radiant/extension_migrator.rb +86 -0
  217. data/lib/radiant/initializer.rb +244 -0
  218. data/lib/radiant/legacy_routes.rb +72 -0
  219. data/lib/radiant/resource_responses.rb +115 -0
  220. data/lib/radiant/setup.rb +212 -0
  221. data/lib/radiant/taggable.rb +91 -0
  222. data/lib/simpleton.rb +21 -0
  223. data/lib/task_support.rb +33 -0
  224. data/lib/tasks/cucumber.rake +21 -0
  225. data/lib/tasks/database.rake +31 -0
  226. data/lib/tasks/environments.rake +11 -0
  227. data/lib/tasks/extensions.rake +86 -0
  228. data/lib/tasks/framework.rake +171 -0
  229. data/lib/tasks/instance.rake +23 -0
  230. data/lib/tasks/prototype.rake +34 -0
  231. data/lib/tasks/radiant_config.rake +18 -0
  232. data/lib/tasks/release.rake +121 -0
  233. data/lib/tasks/rspec.rake +221 -0
  234. data/lib/tasks/undefine.rake +28 -0
  235. data/log/.keep +0 -0
  236. data/public/.htaccess +40 -0
  237. data/public/404.html +8 -0
  238. data/public/500.html +8 -0
  239. data/public/dispatch.cgi +10 -0
  240. data/public/dispatch.fcgi +24 -0
  241. data/public/dispatch.rb +10 -0
  242. data/public/favicon.ico +0 -0
  243. data/public/images/admin/add_child.png +0 -0
  244. data/public/images/admin/add_tab.png +0 -0
  245. data/public/images/admin/avatar_32x32.png +0 -0
  246. data/public/images/admin/brown_bottom_line.gif +0 -0
  247. data/public/images/admin/buttons_background.png +0 -0
  248. data/public/images/admin/collapse.png +0 -0
  249. data/public/images/admin/draft_page.png +0 -0
  250. data/public/images/admin/expand.png +0 -0
  251. data/public/images/admin/layout.png +0 -0
  252. data/public/images/admin/login_shadow.png +0 -0
  253. data/public/images/admin/metadata_toggle.png +0 -0
  254. data/public/images/admin/minus.png +0 -0
  255. data/public/images/admin/minus_grey.png +0 -0
  256. data/public/images/admin/navigation_background.gif +0 -0
  257. data/public/images/admin/navigation_secondary_background.png +0 -0
  258. data/public/images/admin/navigation_secondary_separator.gif +0 -0
  259. data/public/images/admin/navigation_shadow.png +0 -0
  260. data/public/images/admin/navigation_tabs.png +0 -0
  261. data/public/images/admin/new_homepage.png +0 -0
  262. data/public/images/admin/new_layout.png +0 -0
  263. data/public/images/admin/new_snippet.png +0 -0
  264. data/public/images/admin/new_user.png +0 -0
  265. data/public/images/admin/page.png +0 -0
  266. data/public/images/admin/plus.png +0 -0
  267. data/public/images/admin/plus_grey.png +0 -0
  268. data/public/images/admin/popup_border_background.png +0 -0
  269. data/public/images/admin/popup_border_bottom_left.png +0 -0
  270. data/public/images/admin/popup_border_bottom_right.png +0 -0
  271. data/public/images/admin/popup_border_top_left.png +0 -0
  272. data/public/images/admin/popup_border_top_right.png +0 -0
  273. data/public/images/admin/remove.png +0 -0
  274. data/public/images/admin/remove_disabled.png +0 -0
  275. data/public/images/admin/snippet.png +0 -0
  276. data/public/images/admin/spacer.gif +0 -0
  277. data/public/images/admin/spinner.gif +0 -0
  278. data/public/images/admin/status_background.png +0 -0
  279. data/public/images/admin/status_bottom_left.png +0 -0
  280. data/public/images/admin/status_bottom_right.png +0 -0
  281. data/public/images/admin/status_spinner.gif +0 -0
  282. data/public/images/admin/status_top_left.png +0 -0
  283. data/public/images/admin/status_top_right.png +0 -0
  284. data/public/images/admin/tab_close.png +0 -0
  285. data/public/images/admin/vertical_tan_gradient.png +0 -0
  286. data/public/images/admin/view_site.png +0 -0
  287. data/public/images/admin/virtual_page.png +0 -0
  288. data/public/javascripts/admin/application.js +52 -0
  289. data/public/javascripts/admin/codearea.js +165 -0
  290. data/public/javascripts/admin/controls.js +965 -0
  291. data/public/javascripts/admin/cookie.js +80 -0
  292. data/public/javascripts/admin/dragdrop.js +974 -0
  293. data/public/javascripts/admin/effects.js +1122 -0
  294. data/public/javascripts/admin/lowpro.js +339 -0
  295. data/public/javascripts/admin/pngfix.js +39 -0
  296. data/public/javascripts/admin/popup.js +216 -0
  297. data/public/javascripts/admin/prototype.js +4184 -0
  298. data/public/javascripts/admin/ruledtable.js +13 -0
  299. data/public/javascripts/admin/shortcuts.js +27 -0
  300. data/public/javascripts/admin/sitemap.js +150 -0
  301. data/public/javascripts/admin/status.js +198 -0
  302. data/public/javascripts/admin/tabcontrol.js +141 -0
  303. data/public/javascripts/admin/utility.js +52 -0
  304. data/public/robots.txt +1 -0
  305. data/public/stylesheets/admin/main.css +907 -0
  306. data/public/stylesheets/sass/admin/_avatars.sass +4 -0
  307. data/public/stylesheets/sass/admin/_base.sass +61 -0
  308. data/public/stylesheets/sass/admin/_content.sass +215 -0
  309. data/public/stylesheets/sass/admin/_footer.sass +12 -0
  310. data/public/stylesheets/sass/admin/_forms.sass +269 -0
  311. data/public/stylesheets/sass/admin/_header.sass +117 -0
  312. data/public/stylesheets/sass/admin/_layout.sass +10 -0
  313. data/public/stylesheets/sass/admin/_messages.sass +10 -0
  314. data/public/stylesheets/sass/admin/_popup.sass +116 -0
  315. data/public/stylesheets/sass/admin/_reset.sass +36 -0
  316. data/public/stylesheets/sass/admin/_status.sass +8 -0
  317. data/public/stylesheets/sass/admin/_tabcontrol.sass +74 -0
  318. data/public/stylesheets/sass/admin/main.sass +14 -0
  319. data/public/stylesheets/sass/admin/styles.sass +13 -0
  320. data/script/about +3 -0
  321. data/script/autospec +5 -0
  322. data/script/breakpointer +3 -0
  323. data/script/console +3 -0
  324. data/script/cucumber +8 -0
  325. data/script/dbconsole +3 -0
  326. data/script/destroy +3 -0
  327. data/script/extension +5 -0
  328. data/script/generate +4 -0
  329. data/script/performance/benchmarker +3 -0
  330. data/script/performance/profiler +3 -0
  331. data/script/performance/request +3 -0
  332. data/script/plugin +3 -0
  333. data/script/process/inspector +3 -0
  334. data/script/process/reaper +3 -0
  335. data/script/process/spawner +3 -0
  336. data/script/process/spinner +3 -0
  337. data/script/runner +3 -0
  338. data/script/server +3 -0
  339. data/script/spec +5 -0
  340. data/script/spec_server +116 -0
  341. data/script/version +5 -0
  342. data/spec/controllers/admin/export_controller_spec.rb +16 -0
  343. data/spec/controllers/admin/extensions_controller_spec.rb +36 -0
  344. data/spec/controllers/admin/layouts_controller_spec.rb +102 -0
  345. data/spec/controllers/admin/pages_controller_spec.rb +241 -0
  346. data/spec/controllers/admin/preferences_controller_spec.rb +43 -0
  347. data/spec/controllers/admin/references_controller_spec.rb +15 -0
  348. data/spec/controllers/admin/snippets_controller_spec.rb +110 -0
  349. data/spec/controllers/admin/users_controller_spec.rb +92 -0
  350. data/spec/controllers/admin/welcome_controller_spec.rb +98 -0
  351. data/spec/controllers/application_controller_spec.rb +88 -0
  352. data/spec/controllers/site_controller_spec.rb +135 -0
  353. data/spec/datasets/config_dataset.rb +11 -0
  354. data/spec/datasets/file_not_found_dataset.rb +22 -0
  355. data/spec/datasets/home_page_dataset.rb +64 -0
  356. data/spec/datasets/layouts_dataset.rb +58 -0
  357. data/spec/datasets/markup_pages_dataset.rb +13 -0
  358. data/spec/datasets/pages_dataset.rb +61 -0
  359. data/spec/datasets/pages_with_layouts_dataset.rb +10 -0
  360. data/spec/datasets/snippets_dataset.rb +38 -0
  361. data/spec/datasets/users_and_pages_dataset.rb +9 -0
  362. data/spec/datasets/users_dataset.rb +43 -0
  363. data/spec/fixtures/example_extension/README +3 -0
  364. data/spec/fixtures/example_extension/Rakefile +120 -0
  365. data/spec/fixtures/example_extension/example_extension.rb +21 -0
  366. data/spec/fixtures/example_extension/lib/tasks/example_extension_tasks.rake +28 -0
  367. data/spec/fixtures/example_extension/spec/spec.opts +6 -0
  368. data/spec/fixtures/example_extension/spec/spec_helper.rb +36 -0
  369. data/spec/fixtures/radiant_config.yml +10 -0
  370. data/spec/fixtures/sample.txt +1 -0
  371. data/spec/generators/extension_controller_generator_spec.rb +85 -0
  372. data/spec/generators/extension_generator_spec.rb +184 -0
  373. data/spec/generators/extension_generators_spec_helper.rb +139 -0
  374. data/spec/generators/extension_mailer_generator_spec.rb +60 -0
  375. data/spec/generators/extension_migration_generator_spec.rb +21 -0
  376. data/spec/generators/extension_model_generator_spec.rb +61 -0
  377. data/spec/helpers/admin/abstract_model_helper_spec.rb +4 -0
  378. data/spec/helpers/admin/export_helper_spec.rb +4 -0
  379. data/spec/helpers/admin/extensions_helper_spec.rb +4 -0
  380. data/spec/helpers/admin/layouts_helper_spec.rb +4 -0
  381. data/spec/helpers/admin/node_helper_spec.rb +105 -0
  382. data/spec/helpers/admin/pages_helper_spec.rb +63 -0
  383. data/spec/helpers/admin/preferences_helper_spec.rb +11 -0
  384. data/spec/helpers/admin/references_helper_spec.rb +115 -0
  385. data/spec/helpers/admin/regions_helper_spec.rb +47 -0
  386. data/spec/helpers/admin/snippets_helper_spec.rb +4 -0
  387. data/spec/helpers/admin/users_helper_spec.rb +11 -0
  388. data/spec/helpers/admin/welcome_helper_spec.rb +4 -0
  389. data/spec/helpers/application_helper_spec.rb +164 -0
  390. data/spec/helpers/site_helper_spec.rb +4 -0
  391. data/spec/lib/annotatable_spec.rb +86 -0
  392. data/spec/lib/autotest_spec.rb +81 -0
  393. data/spec/lib/core_ext/string_ext_spec.rb +11 -0
  394. data/spec/lib/inheritable_class_attributes_spec.rb +90 -0
  395. data/spec/lib/login_system_spec.rb +195 -0
  396. data/spec/lib/method_observer_spec.rb +48 -0
  397. data/spec/lib/radiant/admin_ui/nav_tabs_spec.rb +167 -0
  398. data/spec/lib/radiant/admin_ui/region_partials_spec.rb +35 -0
  399. data/spec/lib/radiant/admin_ui/region_set_spec.rb +61 -0
  400. data/spec/lib/radiant/admin_ui_spec.rb +120 -0
  401. data/spec/lib/radiant/extension/script_spec.rb +456 -0
  402. data/spec/lib/radiant/extension_loader_spec.rb +218 -0
  403. data/spec/lib/radiant/extension_migrator_spec.rb +46 -0
  404. data/spec/lib/radiant/extension_spec.rb +101 -0
  405. data/spec/lib/radiant/initializer_spec.rb +131 -0
  406. data/spec/lib/radiant/legacy_routes_spec.rb +14 -0
  407. data/spec/lib/radiant/resource_responses_spec.rb +207 -0
  408. data/spec/lib/radiant/taggable_spec.rb +186 -0
  409. data/spec/lib/radiant_spec.rb +26 -0
  410. data/spec/lib/simpleton_spec.rb +45 -0
  411. data/spec/lib/task_support_spec.rb +42 -0
  412. data/spec/matchers/autotest_matchers.rb +47 -0
  413. data/spec/matchers/generator_matchers.rb +237 -0
  414. data/spec/matchers/login_system_matcher.rb +79 -0
  415. data/spec/matchers/render_form_errors_matcher.rb +62 -0
  416. data/spec/matchers/render_matcher.rb +120 -0
  417. data/spec/models/env_dump_page_spec.rb +18 -0
  418. data/spec/models/file_not_found_page_spec.rb +31 -0
  419. data/spec/models/layout_spec.rb +29 -0
  420. data/spec/models/page_context_spec.rb +66 -0
  421. data/spec/models/page_part_spec.rb +67 -0
  422. data/spec/models/page_spec.rb +609 -0
  423. data/spec/models/radiant/config_spec.rb +114 -0
  424. data/spec/models/radiant/exporter_spec.rb +25 -0
  425. data/spec/models/snippet_spec.rb +41 -0
  426. data/spec/models/standard_tags_spec.rb +1027 -0
  427. data/spec/models/status_spec.rb +53 -0
  428. data/spec/models/text_filter_spec.rb +40 -0
  429. data/spec/models/user_action_observer_spec.rb +34 -0
  430. data/spec/models/user_spec.rb +203 -0
  431. data/spec/rcov.opts +2 -0
  432. data/spec/spec.opts +4 -0
  433. data/spec/spec_helper.rb +74 -0
  434. data/test/fixtures/extensions/01_basic/app/controllers/basic_extension_controller.rb +7 -0
  435. data/test/fixtures/extensions/01_basic/app/metal/basic_metal.rb +9 -0
  436. data/test/fixtures/extensions/01_basic/app/models/basic_extension_mailer.rb +4 -0
  437. data/test/fixtures/extensions/01_basic/app/models/basic_extension_model.rb +2 -0
  438. data/test/fixtures/extensions/01_basic/app/views/basic_extension/index.html.erb +1 -0
  439. data/test/fixtures/extensions/01_basic/app/views/basic_extension/override.html.erb +1 -0
  440. data/test/fixtures/extensions/01_basic/app/views/basic_extension_mailer/message.text.html.erb +1 -0
  441. data/test/fixtures/extensions/01_basic/basic_extension.rb +14 -0
  442. data/test/fixtures/extensions/01_basic/db/migrate/200812131420_create_initial_schema.rb +10 -0
  443. data/test/fixtures/extensions/01_basic/db/migrate/200812131421_modify_initial_schema.rb +10 -0
  444. data/test/fixtures/extensions/01_basic/lib/new_module.rb +2 -0
  445. data/test/fixtures/extensions/01_basic/vendor/plugins/multiple/init.rb +1 -0
  446. data/test/fixtures/extensions/01_basic/vendor/plugins/multiple/lib/multiple.rb +2 -0
  447. data/test/fixtures/extensions/01_basic/vendor/plugins/plugin_normal/init.rb +1 -0
  448. data/test/fixtures/extensions/01_basic/vendor/plugins/plugin_normal/lib/normal_plugin.rb +2 -0
  449. data/test/fixtures/extensions/02_overriding/app/metal/basic_metal.rb +9 -0
  450. data/test/fixtures/extensions/02_overriding/app/views/basic_extension/override.html.erb +1 -0
  451. data/test/fixtures/extensions/02_overriding/overriding_extension.rb +8 -0
  452. data/test/fixtures/extensions/02_overriding/vendor/plugins/multiple/init.rb +1 -0
  453. data/test/fixtures/extensions/02_overriding/vendor/plugins/multiple/lib/multiple.rb +2 -0
  454. data/test/fixtures/extensions/03_upgrading/db/migrate/01_first.rb +7 -0
  455. data/test/fixtures/extensions/03_upgrading/db/migrate/02_second.rb +7 -0
  456. data/test/fixtures/extensions/03_upgrading/db/migrate/03_pending.rb +7 -0
  457. data/test/fixtures/extensions/03_upgrading/db/migrate/04_dont_run.rb +7 -0
  458. data/test/fixtures/extensions/03_upgrading/upgrading_extension.rb +2 -0
  459. data/test/fixtures/extensions/load_order_blue/load_order_blue_extension.rb +8 -0
  460. data/test/fixtures/extensions/load_order_green/load_order_green_extension.rb +8 -0
  461. data/test/fixtures/extensions/load_order_red/load_order_red_extension.rb +8 -0
  462. data/test/fixtures/extensions/special_characters/db/migrate/001_create_initial_schema.rb +10 -0
  463. data/test/fixtures/extensions/special_characters/special_characters_extension.rb +3 -0
  464. data/test/helpers/page_test_helper.rb +79 -0
  465. data/test/helpers/render_test_helper.rb +60 -0
  466. data/test/helpers/user_test_helper.rb +35 -0
  467. data/test/helpers/validation_test_helper.rb +42 -0
  468. data/test/test_helper.rb +64 -0
  469. data/vendor/extensions/archive/README +29 -0
  470. data/vendor/extensions/archive/Rakefile +120 -0
  471. data/vendor/extensions/archive/app/models/archive_day_index_page.rb +28 -0
  472. data/vendor/extensions/archive/app/models/archive_finder.rb +55 -0
  473. data/vendor/extensions/archive/app/models/archive_month_index_page.rb +28 -0
  474. data/vendor/extensions/archive/app/models/archive_page.rb +36 -0
  475. data/vendor/extensions/archive/app/models/archive_year_index_page.rb +28 -0
  476. data/vendor/extensions/archive/archive_extension.rb +19 -0
  477. data/vendor/extensions/archive/lib/archive_index_tags_and_methods.rb +57 -0
  478. data/vendor/extensions/archive/lib/tasks/archive_extension_tasks.rake +28 -0
  479. data/vendor/extensions/archive/spec/datasets/archive_dataset.rb +51 -0
  480. data/vendor/extensions/archive/spec/models/archive_day_index_page_spec.rb +20 -0
  481. data/vendor/extensions/archive/spec/models/archive_month_index_page_spec.rb +20 -0
  482. data/vendor/extensions/archive/spec/models/archive_page_spec.rb +33 -0
  483. data/vendor/extensions/archive/spec/models/archive_year_index_page_spec.rb +20 -0
  484. data/vendor/extensions/archive/spec/spec.opts +6 -0
  485. data/vendor/extensions/archive/spec/spec_helper.rb +36 -0
  486. data/vendor/extensions/archive/test/fixtures/pages.yml +397 -0
  487. data/vendor/extensions/archive/test/functional/archive_extension_test.rb +16 -0
  488. data/vendor/extensions/archive/test/helpers/archive_index_test_helper.rb +37 -0
  489. data/vendor/extensions/archive/test/test_helper.rb +26 -0
  490. data/vendor/extensions/archive/test/unit/archive_day_index_page_test.rb +22 -0
  491. data/vendor/extensions/archive/test/unit/archive_month_index_page_test.rb +22 -0
  492. data/vendor/extensions/archive/test/unit/archive_page_test.rb +40 -0
  493. data/vendor/extensions/archive/test/unit/archive_year_index_page_test.rb +22 -0
  494. data/vendor/extensions/markdown_filter/README +1 -0
  495. data/vendor/extensions/markdown_filter/Rakefile +120 -0
  496. data/vendor/extensions/markdown_filter/lib/markdown_filter.rb +10 -0
  497. data/vendor/extensions/markdown_filter/lib/markdown_tags.rb +33 -0
  498. data/vendor/extensions/markdown_filter/lib/smarty_pants_filter.rb +7 -0
  499. data/vendor/extensions/markdown_filter/lib/tasks/markdown_filter_extension_tasks.rake +28 -0
  500. data/vendor/extensions/markdown_filter/markdown.html +123 -0
  501. data/vendor/extensions/markdown_filter/markdown_filter_extension.rb +27 -0
  502. data/vendor/extensions/markdown_filter/smartypants.html +47 -0
  503. data/vendor/extensions/markdown_filter/spec/models/markdown_filter_spec.rb +22 -0
  504. data/vendor/extensions/markdown_filter/spec/models/smarty_pants_filter_spec.rb +19 -0
  505. data/vendor/extensions/markdown_filter/spec/spec.opts +6 -0
  506. data/vendor/extensions/markdown_filter/spec/spec_helper.rb +36 -0
  507. data/vendor/extensions/markdown_filter/test/test_helper.rb +19 -0
  508. data/vendor/extensions/markdown_filter/test/unit/markdown_filter_test.rb +18 -0
  509. data/vendor/extensions/markdown_filter/test/unit/smarty_pants_filter_test.rb +14 -0
  510. data/vendor/extensions/markdown_filter/vendor/bluecloth/CHANGES +366 -0
  511. data/vendor/extensions/markdown_filter/vendor/bluecloth/LICENSE +340 -0
  512. data/vendor/extensions/markdown_filter/vendor/bluecloth/README +99 -0
  513. data/vendor/extensions/markdown_filter/vendor/bluecloth/bin/bluecloth +83 -0
  514. data/vendor/extensions/markdown_filter/vendor/bluecloth/install.rb +150 -0
  515. data/vendor/extensions/markdown_filter/vendor/bluecloth/lib/bluecloth.rb +1144 -0
  516. data/vendor/extensions/markdown_filter/vendor/bluecloth/test.rb +117 -0
  517. data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/00_Class.tests.rb +71 -0
  518. data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/05_Markdown.tests.rb +1527 -0
  519. data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/10_Bug.tests.rb +57 -0
  520. data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/15_Contrib.tests.rb +132 -0
  521. data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/bctestcase.rb +274 -0
  522. data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/data/antsugar.txt +34 -0
  523. data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/data/ml-announce.txt +17 -0
  524. data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/data/re-overflow.txt +67 -0
  525. data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/data/re-overflow2.txt +281 -0
  526. data/vendor/extensions/markdown_filter/vendor/bluecloth/utils.rb +553 -0
  527. data/vendor/extensions/markdown_filter/vendor/rubypants/README +114 -0
  528. data/vendor/extensions/markdown_filter/vendor/rubypants/Rakefile +84 -0
  529. data/vendor/extensions/markdown_filter/vendor/rubypants/install.rb +9 -0
  530. data/vendor/extensions/markdown_filter/vendor/rubypants/rubypants.rb +490 -0
  531. data/vendor/extensions/markdown_filter/vendor/rubypants/test_rubypants.rb +162 -0
  532. data/vendor/extensions/textile_filter/README +1 -0
  533. data/vendor/extensions/textile_filter/Rakefile +120 -0
  534. data/vendor/extensions/textile_filter/lib/tasks/textile_filter_extension_tasks.rake +0 -0
  535. data/vendor/extensions/textile_filter/lib/textile_filter.rb +6 -0
  536. data/vendor/extensions/textile_filter/lib/textile_tags.rb +24 -0
  537. data/vendor/extensions/textile_filter/spec/models/textile_filter_spec.rb +19 -0
  538. data/vendor/extensions/textile_filter/spec/spec.opts +6 -0
  539. data/vendor/extensions/textile_filter/spec/spec_helper.rb +36 -0
  540. data/vendor/extensions/textile_filter/test/test_helper.rb +19 -0
  541. data/vendor/extensions/textile_filter/test/unit/textile_filter_test.rb +13 -0
  542. data/vendor/extensions/textile_filter/textile.html +115 -0
  543. data/vendor/extensions/textile_filter/textile_filter_extension.rb +10 -0
  544. data/vendor/highline/CHANGELOG +222 -0
  545. data/vendor/highline/INSTALL +35 -0
  546. data/vendor/highline/LICENSE +7 -0
  547. data/vendor/highline/README +63 -0
  548. data/vendor/highline/Rakefile +82 -0
  549. data/vendor/highline/TODO +6 -0
  550. data/vendor/highline/examples/ansi_colors.rb +38 -0
  551. data/vendor/highline/examples/asking_for_arrays.rb +18 -0
  552. data/vendor/highline/examples/basic_usage.rb +75 -0
  553. data/vendor/highline/examples/color_scheme.rb +32 -0
  554. data/vendor/highline/examples/limit.rb +12 -0
  555. data/vendor/highline/examples/menus.rb +65 -0
  556. data/vendor/highline/examples/overwrite.rb +19 -0
  557. data/vendor/highline/examples/page_and_wrap.rb +322 -0
  558. data/vendor/highline/examples/password.rb +7 -0
  559. data/vendor/highline/examples/trapping_eof.rb +22 -0
  560. data/vendor/highline/examples/using_readline.rb +17 -0
  561. data/vendor/highline/lib/highline.rb +758 -0
  562. data/vendor/highline/lib/highline/color_scheme.rb +120 -0
  563. data/vendor/highline/lib/highline/compatibility.rb +17 -0
  564. data/vendor/highline/lib/highline/import.rb +43 -0
  565. data/vendor/highline/lib/highline/menu.rb +395 -0
  566. data/vendor/highline/lib/highline/question.rb +463 -0
  567. data/vendor/highline/lib/highline/system_extensions.rb +193 -0
  568. data/vendor/highline/setup.rb +1360 -0
  569. data/vendor/highline/test/tc_color_scheme.rb +56 -0
  570. data/vendor/highline/test/tc_highline.rb +823 -0
  571. data/vendor/highline/test/tc_import.rb +54 -0
  572. data/vendor/highline/test/tc_menu.rb +429 -0
  573. data/vendor/highline/test/ts_all.rb +15 -0
  574. data/vendor/plugins/acts_as_tree/README +26 -0
  575. data/vendor/plugins/acts_as_tree/Rakefile +22 -0
  576. data/vendor/plugins/acts_as_tree/init.rb +1 -0
  577. data/vendor/plugins/acts_as_tree/lib/active_record/acts/tree.rb +96 -0
  578. data/vendor/plugins/acts_as_tree/test/abstract_unit.rb +0 -0
  579. data/vendor/plugins/acts_as_tree/test/acts_as_tree_test.rb +219 -0
  580. data/vendor/plugins/acts_as_tree/test/database.yml +0 -0
  581. data/vendor/plugins/acts_as_tree/test/fixtures/mixin.rb +0 -0
  582. data/vendor/plugins/acts_as_tree/test/fixtures/mixins.yml +0 -0
  583. data/vendor/plugins/acts_as_tree/test/schema.rb +0 -0
  584. data/vendor/plugins/haml/FAQ +138 -0
  585. data/vendor/plugins/haml/MIT-LICENSE +20 -0
  586. data/vendor/plugins/haml/README.rdoc +319 -0
  587. data/vendor/plugins/haml/REVISION +1 -0
  588. data/vendor/plugins/haml/Rakefile +184 -0
  589. data/vendor/plugins/haml/VERSION +1 -0
  590. data/vendor/plugins/haml/bin/css2sass +7 -0
  591. data/vendor/plugins/haml/bin/haml +9 -0
  592. data/vendor/plugins/haml/bin/html2haml +7 -0
  593. data/vendor/plugins/haml/bin/sass +8 -0
  594. data/vendor/plugins/haml/extra/haml-mode.el +331 -0
  595. data/vendor/plugins/haml/extra/sass-mode.el +89 -0
  596. data/vendor/plugins/haml/init.rb +8 -0
  597. data/vendor/plugins/haml/lib/haml.rb +1018 -0
  598. data/vendor/plugins/haml/lib/haml/buffer.rb +240 -0
  599. data/vendor/plugins/haml/lib/haml/engine.rb +265 -0
  600. data/vendor/plugins/haml/lib/haml/error.rb +22 -0
  601. data/vendor/plugins/haml/lib/haml/exec.rb +374 -0
  602. data/vendor/plugins/haml/lib/haml/filters.rb +276 -0
  603. data/vendor/plugins/haml/lib/haml/helpers.rb +465 -0
  604. data/vendor/plugins/haml/lib/haml/helpers/action_view_extensions.rb +45 -0
  605. data/vendor/plugins/haml/lib/haml/helpers/action_view_mods.rb +181 -0
  606. data/vendor/plugins/haml/lib/haml/html.rb +222 -0
  607. data/vendor/plugins/haml/lib/haml/precompiler.rb +811 -0
  608. data/vendor/plugins/haml/lib/haml/template.rb +51 -0
  609. data/vendor/plugins/haml/lib/haml/template/patch.rb +58 -0
  610. data/vendor/plugins/haml/lib/haml/template/plugin.rb +72 -0
  611. data/vendor/plugins/haml/lib/haml/util.rb +23 -0
  612. data/vendor/plugins/haml/lib/haml/version.rb +47 -0
  613. data/vendor/plugins/haml/lib/sass.rb +873 -0
  614. data/vendor/plugins/haml/lib/sass/constant.rb +216 -0
  615. data/vendor/plugins/haml/lib/sass/constant/color.rb +101 -0
  616. data/vendor/plugins/haml/lib/sass/constant/literal.rb +54 -0
  617. data/vendor/plugins/haml/lib/sass/constant/nil.rb +9 -0
  618. data/vendor/plugins/haml/lib/sass/constant/number.rb +87 -0
  619. data/vendor/plugins/haml/lib/sass/constant/operation.rb +30 -0
  620. data/vendor/plugins/haml/lib/sass/constant/string.rb +22 -0
  621. data/vendor/plugins/haml/lib/sass/css.rb +394 -0
  622. data/vendor/plugins/haml/lib/sass/engine.rb +466 -0
  623. data/vendor/plugins/haml/lib/sass/error.rb +35 -0
  624. data/vendor/plugins/haml/lib/sass/plugin.rb +169 -0
  625. data/vendor/plugins/haml/lib/sass/plugin/merb.rb +56 -0
  626. data/vendor/plugins/haml/lib/sass/plugin/rails.rb +24 -0
  627. data/vendor/plugins/haml/lib/sass/tree/attr_node.rb +57 -0
  628. data/vendor/plugins/haml/lib/sass/tree/comment_node.rb +20 -0
  629. data/vendor/plugins/haml/lib/sass/tree/directive_node.rb +46 -0
  630. data/vendor/plugins/haml/lib/sass/tree/node.rb +46 -0
  631. data/vendor/plugins/haml/lib/sass/tree/rule_node.rb +93 -0
  632. data/vendor/plugins/haml/lib/sass/tree/value_node.rb +20 -0
  633. data/vendor/plugins/haml/rails/init.rb +1 -0
  634. data/vendor/plugins/haml/test/benchmark.rb +99 -0
  635. data/vendor/plugins/haml/test/haml/engine_test.rb +657 -0
  636. data/vendor/plugins/haml/test/haml/helper_test.rb +224 -0
  637. data/vendor/plugins/haml/test/haml/html2haml_test.rb +92 -0
  638. data/vendor/plugins/haml/test/haml/markaby/standard.mab +52 -0
  639. data/vendor/plugins/haml/test/haml/mocks/article.rb +6 -0
  640. data/vendor/plugins/haml/test/haml/results/content_for_layout.xhtml +15 -0
  641. data/vendor/plugins/haml/test/haml/results/eval_suppressed.xhtml +9 -0
  642. data/vendor/plugins/haml/test/haml/results/filters.xhtml +60 -0
  643. data/vendor/plugins/haml/test/haml/results/helpers.xhtml +93 -0
  644. data/vendor/plugins/haml/test/haml/results/helpful.xhtml +10 -0
  645. data/vendor/plugins/haml/test/haml/results/just_stuff.xhtml +68 -0
  646. data/vendor/plugins/haml/test/haml/results/list.xhtml +12 -0
  647. data/vendor/plugins/haml/test/haml/results/nuke_inner_whitespace.xhtml +40 -0
  648. data/vendor/plugins/haml/test/haml/results/nuke_outer_whitespace.xhtml +148 -0
  649. data/vendor/plugins/haml/test/haml/results/original_engine.xhtml +20 -0
  650. data/vendor/plugins/haml/test/haml/results/partial_layout.xhtml +5 -0
  651. data/vendor/plugins/haml/test/haml/results/partials.xhtml +21 -0
  652. data/vendor/plugins/haml/test/haml/results/render_layout.xhtml +3 -0
  653. data/vendor/plugins/haml/test/haml/results/silent_script.xhtml +74 -0
  654. data/vendor/plugins/haml/test/haml/results/standard.xhtml +42 -0
  655. data/vendor/plugins/haml/test/haml/results/tag_parsing.xhtml +23 -0
  656. data/vendor/plugins/haml/test/haml/results/very_basic.xhtml +5 -0
  657. data/vendor/plugins/haml/test/haml/results/whitespace_handling.xhtml +89 -0
  658. data/vendor/plugins/haml/test/haml/rhtml/_av_partial_1.rhtml +12 -0
  659. data/vendor/plugins/haml/test/haml/rhtml/_av_partial_2.rhtml +8 -0
  660. data/vendor/plugins/haml/test/haml/rhtml/action_view.rhtml +62 -0
  661. data/vendor/plugins/haml/test/haml/rhtml/standard.rhtml +54 -0
  662. data/vendor/plugins/haml/test/haml/template_test.rb +204 -0
  663. data/vendor/plugins/haml/test/haml/templates/_av_partial_1.haml +9 -0
  664. data/vendor/plugins/haml/test/haml/templates/_av_partial_1_ugly.haml +9 -0
  665. data/vendor/plugins/haml/test/haml/templates/_av_partial_2.haml +5 -0
  666. data/vendor/plugins/haml/test/haml/templates/_av_partial_2_ugly.haml +5 -0
  667. data/vendor/plugins/haml/test/haml/templates/_layout.erb +3 -0
  668. data/vendor/plugins/haml/test/haml/templates/_layout_for_partial.haml +3 -0
  669. data/vendor/plugins/haml/test/haml/templates/_partial.haml +8 -0
  670. data/vendor/plugins/haml/test/haml/templates/_text_area.haml +3 -0
  671. data/vendor/plugins/haml/test/haml/templates/action_view.haml +47 -0
  672. data/vendor/plugins/haml/test/haml/templates/action_view_ugly.haml +47 -0
  673. data/vendor/plugins/haml/test/haml/templates/breakage.haml +8 -0
  674. data/vendor/plugins/haml/test/haml/templates/content_for_layout.haml +10 -0
  675. data/vendor/plugins/haml/test/haml/templates/eval_suppressed.haml +11 -0
  676. data/vendor/plugins/haml/test/haml/templates/filters.haml +66 -0
  677. data/vendor/plugins/haml/test/haml/templates/helpers.haml +95 -0
  678. data/vendor/plugins/haml/test/haml/templates/helpful.haml +11 -0
  679. data/vendor/plugins/haml/test/haml/templates/just_stuff.haml +83 -0
  680. data/vendor/plugins/haml/test/haml/templates/list.haml +12 -0
  681. data/vendor/plugins/haml/test/haml/templates/nuke_inner_whitespace.haml +32 -0
  682. data/vendor/plugins/haml/test/haml/templates/nuke_outer_whitespace.haml +144 -0
  683. data/vendor/plugins/haml/test/haml/templates/original_engine.haml +17 -0
  684. data/vendor/plugins/haml/test/haml/templates/partial_layout.haml +3 -0
  685. data/vendor/plugins/haml/test/haml/templates/partialize.haml +1 -0
  686. data/vendor/plugins/haml/test/haml/templates/partials.haml +12 -0
  687. data/vendor/plugins/haml/test/haml/templates/render_layout.haml +2 -0
  688. data/vendor/plugins/haml/test/haml/templates/silent_script.haml +40 -0
  689. data/vendor/plugins/haml/test/haml/templates/standard.haml +42 -0
  690. data/vendor/plugins/haml/test/haml/templates/standard_ugly.haml +42 -0
  691. data/vendor/plugins/haml/test/haml/templates/tag_parsing.haml +21 -0
  692. data/vendor/plugins/haml/test/haml/templates/very_basic.haml +4 -0
  693. data/vendor/plugins/haml/test/haml/templates/whitespace_handling.haml +87 -0
  694. data/vendor/plugins/haml/test/linked_rails.rb +12 -0
  695. data/vendor/plugins/haml/test/sass/css2sass_test.rb +193 -0
  696. data/vendor/plugins/haml/test/sass/engine_test.rb +294 -0
  697. data/vendor/plugins/haml/test/sass/plugin_test.rb +161 -0
  698. data/vendor/plugins/haml/test/sass/results/alt.css +4 -0
  699. data/vendor/plugins/haml/test/sass/results/basic.css +9 -0
  700. data/vendor/plugins/haml/test/sass/results/compact.css +5 -0
  701. data/vendor/plugins/haml/test/sass/results/complex.css +87 -0
  702. data/vendor/plugins/haml/test/sass/results/compressed.css +1 -0
  703. data/vendor/plugins/haml/test/sass/results/constants.css +16 -0
  704. data/vendor/plugins/haml/test/sass/results/expanded.css +19 -0
  705. data/vendor/plugins/haml/test/sass/results/import.css +29 -0
  706. data/vendor/plugins/haml/test/sass/results/mixins.css +95 -0
  707. data/vendor/plugins/haml/test/sass/results/multiline.css +24 -0
  708. data/vendor/plugins/haml/test/sass/results/nested.css +22 -0
  709. data/vendor/plugins/haml/test/sass/results/parent_ref.css +13 -0
  710. data/vendor/plugins/haml/test/sass/results/subdir/nested_subdir/nested_subdir.css +1 -0
  711. data/vendor/plugins/haml/test/sass/results/subdir/subdir.css +1 -0
  712. data/vendor/plugins/haml/test/sass/templates/_partial.sass +2 -0
  713. data/vendor/plugins/haml/test/sass/templates/alt.sass +16 -0
  714. data/vendor/plugins/haml/test/sass/templates/basic.sass +23 -0
  715. data/vendor/plugins/haml/test/sass/templates/bork.sass +2 -0
  716. data/vendor/plugins/haml/test/sass/templates/bork2.sass +2 -0
  717. data/vendor/plugins/haml/test/sass/templates/compact.sass +17 -0
  718. data/vendor/plugins/haml/test/sass/templates/complex.sass +310 -0
  719. data/vendor/plugins/haml/test/sass/templates/compressed.sass +15 -0
  720. data/vendor/plugins/haml/test/sass/templates/constants.sass +100 -0
  721. data/vendor/plugins/haml/test/sass/templates/expanded.sass +17 -0
  722. data/vendor/plugins/haml/test/sass/templates/import.sass +11 -0
  723. data/vendor/plugins/haml/test/sass/templates/importee.sass +14 -0
  724. data/vendor/plugins/haml/test/sass/templates/mixins.sass +76 -0
  725. data/vendor/plugins/haml/test/sass/templates/multiline.sass +20 -0
  726. data/vendor/plugins/haml/test/sass/templates/nested.sass +25 -0
  727. data/vendor/plugins/haml/test/sass/templates/parent_ref.sass +25 -0
  728. data/vendor/plugins/haml/test/sass/templates/subdir/nested_subdir/nested_subdir.sass +3 -0
  729. data/vendor/plugins/haml/test/sass/templates/subdir/subdir.sass +6 -0
  730. data/vendor/plugins/haml/test/test_helper.rb +13 -0
  731. data/vendor/rack-cache/CHANGES +128 -0
  732. data/vendor/rack-cache/COPYING +18 -0
  733. data/vendor/rack-cache/README +110 -0
  734. data/vendor/rack-cache/Rakefile +137 -0
  735. data/vendor/rack-cache/TODO +31 -0
  736. data/vendor/rack-cache/doc/configuration.markdown +86 -0
  737. data/vendor/rack-cache/doc/faq.markdown +141 -0
  738. data/vendor/rack-cache/doc/index.markdown +118 -0
  739. data/vendor/rack-cache/doc/layout.html.erb +34 -0
  740. data/vendor/rack-cache/doc/license.markdown +24 -0
  741. data/vendor/rack-cache/doc/rack-cache.css +362 -0
  742. data/vendor/rack-cache/doc/server.ru +34 -0
  743. data/vendor/rack-cache/doc/storage.markdown +162 -0
  744. data/vendor/rack-cache/example/sinatra/app.rb +25 -0
  745. data/vendor/rack-cache/example/sinatra/views/index.erb +44 -0
  746. data/vendor/rack-cache/lib/rack/cache.rb +45 -0
  747. data/vendor/rack-cache/lib/rack/cache/cachecontrol.rb +193 -0
  748. data/vendor/rack-cache/lib/rack/cache/context.rb +233 -0
  749. data/vendor/rack-cache/lib/rack/cache/entitystore.rb +253 -0
  750. data/vendor/rack-cache/lib/rack/cache/key.rb +52 -0
  751. data/vendor/rack-cache/lib/rack/cache/metastore.rb +328 -0
  752. data/vendor/rack-cache/lib/rack/cache/options.rb +150 -0
  753. data/vendor/rack-cache/lib/rack/cache/request.rb +33 -0
  754. data/vendor/rack-cache/lib/rack/cache/response.rb +267 -0
  755. data/vendor/rack-cache/lib/rack/cache/storage.rb +49 -0
  756. data/vendor/rack-cache/rack-cache.gemspec +69 -0
  757. data/vendor/rack-cache/test/cache_test.rb +38 -0
  758. data/vendor/rack-cache/test/cachecontrol_test.rb +139 -0
  759. data/vendor/rack-cache/test/context_test.rb +727 -0
  760. data/vendor/rack-cache/test/entitystore_test.rb +189 -0
  761. data/vendor/rack-cache/test/key_test.rb +50 -0
  762. data/vendor/rack-cache/test/metastore_test.rb +263 -0
  763. data/vendor/rack-cache/test/options_test.rb +78 -0
  764. data/vendor/rack-cache/test/pony.jpg +0 -0
  765. data/vendor/rack-cache/test/request_test.rb +19 -0
  766. data/vendor/rack-cache/test/response_test.rb +178 -0
  767. data/vendor/rack-cache/test/spec_setup.rb +202 -0
  768. data/vendor/rack-cache/test/storage_test.rb +94 -0
  769. data/vendor/radius/CHANGELOG +33 -0
  770. data/vendor/radius/Manifest.txt +21 -0
  771. data/vendor/radius/QUICKSTART.rdoc +322 -0
  772. data/vendor/radius/README.rdoc +118 -0
  773. data/vendor/radius/Rakefile +31 -0
  774. data/vendor/radius/lib/radius.rb +10 -0
  775. data/vendor/radius/lib/radius/context.rb +139 -0
  776. data/vendor/radius/lib/radius/delegating_open_struct.rb +31 -0
  777. data/vendor/radius/lib/radius/error.rb +43 -0
  778. data/vendor/radius/lib/radius/parse_tag.rb +24 -0
  779. data/vendor/radius/lib/radius/parser.rb +65 -0
  780. data/vendor/radius/lib/radius/parser/scan.rb +1247 -0
  781. data/vendor/radius/lib/radius/parser/scan.rl +123 -0
  782. data/vendor/radius/lib/radius/tag_binding.rb +71 -0
  783. data/vendor/radius/lib/radius/tag_definitions.rb +78 -0
  784. data/vendor/radius/lib/radius/utility.rb +30 -0
  785. data/vendor/radius/lib/radius/version.rb +14 -0
  786. data/vendor/radius/radius.gemspec +38 -0
  787. data/vendor/radius/tasks/scan.rake +27 -0
  788. data/vendor/radius/test/context_test.rb +61 -0
  789. data/vendor/radius/test/parser_test.rb +290 -0
  790. data/vendor/radius/test/quickstart_test.rb +153 -0
  791. data/vendor/radius/test/test_helper.rb +28 -0
  792. data/vendor/rails/actionmailer/CHANGELOG +366 -0
  793. data/vendor/rails/actionmailer/MIT-LICENSE +21 -0
  794. data/vendor/rails/actionmailer/README +149 -0
  795. data/vendor/rails/actionmailer/Rakefile +99 -0
  796. data/vendor/rails/actionmailer/install.rb +30 -0
  797. data/vendor/rails/actionmailer/lib/action_mailer.rb +62 -0
  798. data/vendor/rails/actionmailer/lib/action_mailer/adv_attr_accessor.rb +30 -0
  799. data/vendor/rails/actionmailer/lib/action_mailer/base.rb +706 -0
  800. data/vendor/rails/actionmailer/lib/action_mailer/helpers.rb +113 -0
  801. data/vendor/rails/actionmailer/lib/action_mailer/mail_helper.rb +17 -0
  802. data/vendor/rails/actionmailer/lib/action_mailer/part.rb +107 -0
  803. data/vendor/rails/actionmailer/lib/action_mailer/part_container.rb +55 -0
  804. data/vendor/rails/actionmailer/lib/action_mailer/quoting.rb +61 -0
  805. data/vendor/rails/actionmailer/lib/action_mailer/test_case.rb +64 -0
  806. data/vendor/rails/actionmailer/lib/action_mailer/test_helper.rb +68 -0
  807. data/vendor/rails/actionmailer/lib/action_mailer/utils.rb +7 -0
  808. data/vendor/rails/actionmailer/lib/action_mailer/vendor/text-format-0.6.3/text/format.rb +1466 -0
  809. data/vendor/rails/actionmailer/lib/action_mailer/vendor/text_format.rb +10 -0
  810. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail.rb +5 -0
  811. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/address.rb +426 -0
  812. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/attachments.rb +46 -0
  813. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/base64.rb +46 -0
  814. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/compat.rb +41 -0
  815. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/config.rb +67 -0
  816. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/core_extensions.rb +63 -0
  817. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/encode.rb +581 -0
  818. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/header.rb +960 -0
  819. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/index.rb +9 -0
  820. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/interface.rb +1130 -0
  821. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/loader.rb +3 -0
  822. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/mail.rb +578 -0
  823. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/mailbox.rb +495 -0
  824. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/main.rb +6 -0
  825. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/mbox.rb +3 -0
  826. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/net.rb +248 -0
  827. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/obsolete.rb +132 -0
  828. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/parser.rb +1476 -0
  829. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/port.rb +379 -0
  830. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/quoting.rb +118 -0
  831. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/require_arch.rb +58 -0
  832. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/scanner.rb +49 -0
  833. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/scanner_r.rb +261 -0
  834. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/stringio.rb +280 -0
  835. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/utils.rb +337 -0
  836. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/version.rb +39 -0
  837. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail.rb +17 -0
  838. data/vendor/rails/actionmailer/lib/action_mailer/version.rb +9 -0
  839. data/vendor/rails/actionmailer/lib/actionmailer.rb +1 -0
  840. data/vendor/rails/actionmailer/test/abstract_unit.rb +62 -0
  841. data/vendor/rails/actionmailer/test/asset_host_test.rb +54 -0
  842. data/vendor/rails/actionmailer/test/delivery_method_test.rb +51 -0
  843. data/vendor/rails/actionmailer/test/fixtures/asset_host_mailer/email_with_asset.html.erb +1 -0
  844. data/vendor/rails/actionmailer/test/fixtures/auto_layout_mailer/hello.html.erb +1 -0
  845. data/vendor/rails/actionmailer/test/fixtures/auto_layout_mailer/multipart.text.html.erb +1 -0
  846. data/vendor/rails/actionmailer/test/fixtures/auto_layout_mailer/multipart.text.plain.erb +1 -0
  847. data/vendor/rails/actionmailer/test/fixtures/explicit_layout_mailer/logout.html.erb +1 -0
  848. data/vendor/rails/actionmailer/test/fixtures/explicit_layout_mailer/signup.html.erb +1 -0
  849. data/vendor/rails/actionmailer/test/fixtures/first_mailer/share.erb +1 -0
  850. data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_example_helper.erb +1 -0
  851. data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper.erb +1 -0
  852. data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper_method.erb +1 -0
  853. data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_mail_helper.erb +5 -0
  854. data/vendor/rails/actionmailer/test/fixtures/helpers/example_helper.rb +5 -0
  855. data/vendor/rails/actionmailer/test/fixtures/layouts/auto_layout_mailer.html.erb +1 -0
  856. data/vendor/rails/actionmailer/test/fixtures/layouts/auto_layout_mailer.text.erb +1 -0
  857. data/vendor/rails/actionmailer/test/fixtures/layouts/spam.html.erb +1 -0
  858. data/vendor/rails/actionmailer/test/fixtures/path.with.dots/funky_path_mailer/multipart_with_template_path_with_dots.erb +1 -0
  859. data/vendor/rails/actionmailer/test/fixtures/raw_email +14 -0
  860. data/vendor/rails/actionmailer/test/fixtures/raw_email10 +20 -0
  861. data/vendor/rails/actionmailer/test/fixtures/raw_email12 +32 -0
  862. data/vendor/rails/actionmailer/test/fixtures/raw_email13 +29 -0
  863. data/vendor/rails/actionmailer/test/fixtures/raw_email2 +114 -0
  864. data/vendor/rails/actionmailer/test/fixtures/raw_email3 +70 -0
  865. data/vendor/rails/actionmailer/test/fixtures/raw_email4 +59 -0
  866. data/vendor/rails/actionmailer/test/fixtures/raw_email5 +19 -0
  867. data/vendor/rails/actionmailer/test/fixtures/raw_email6 +20 -0
  868. data/vendor/rails/actionmailer/test/fixtures/raw_email7 +66 -0
  869. data/vendor/rails/actionmailer/test/fixtures/raw_email8 +47 -0
  870. data/vendor/rails/actionmailer/test/fixtures/raw_email9 +28 -0
  871. data/vendor/rails/actionmailer/test/fixtures/raw_email_quoted_with_0d0a +14 -0
  872. data/vendor/rails/actionmailer/test/fixtures/raw_email_with_invalid_characters_in_content_type +104 -0
  873. data/vendor/rails/actionmailer/test/fixtures/raw_email_with_nested_attachment +100 -0
  874. data/vendor/rails/actionmailer/test/fixtures/raw_email_with_partially_quoted_subject +14 -0
  875. data/vendor/rails/actionmailer/test/fixtures/second_mailer/share.erb +1 -0
  876. data/vendor/rails/actionmailer/test/fixtures/templates/signed_up.erb +3 -0
  877. data/vendor/rails/actionmailer/test/fixtures/test_mailer/_subtemplate.text.plain.erb +1 -0
  878. data/vendor/rails/actionmailer/test/fixtures/test_mailer/body_ivar.erb +2 -0
  879. data/vendor/rails/actionmailer/test/fixtures/test_mailer/custom_templating_extension.text.html.haml +6 -0
  880. data/vendor/rails/actionmailer/test/fixtures/test_mailer/custom_templating_extension.text.plain.haml +6 -0
  881. data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.ignored.erb +1 -0
  882. data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.html.erb +10 -0
  883. data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.plain.erb +2 -0
  884. data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.yaml.erb +1 -0
  885. data/vendor/rails/actionmailer/test/fixtures/test_mailer/included_subtemplate.text.plain.erb +1 -0
  886. data/vendor/rails/actionmailer/test/fixtures/test_mailer/rxml_template.builder +2 -0
  887. data/vendor/rails/actionmailer/test/fixtures/test_mailer/rxml_template.rxml +2 -0
  888. data/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up.html.erb +3 -0
  889. data/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up_with_url.erb +5 -0
  890. data/vendor/rails/actionmailer/test/mail_helper_test.rb +95 -0
  891. data/vendor/rails/actionmailer/test/mail_layout_test.rb +123 -0
  892. data/vendor/rails/actionmailer/test/mail_render_test.rb +116 -0
  893. data/vendor/rails/actionmailer/test/mail_service_test.rb +1079 -0
  894. data/vendor/rails/actionmailer/test/quoting_test.rb +99 -0
  895. data/vendor/rails/actionmailer/test/test_helper_test.rb +129 -0
  896. data/vendor/rails/actionmailer/test/tmail_test.rb +22 -0
  897. data/vendor/rails/actionmailer/test/url_test.rb +76 -0
  898. data/vendor/rails/actionpack/CHANGELOG +5172 -0
  899. data/vendor/rails/actionpack/MIT-LICENSE +21 -0
  900. data/vendor/rails/actionpack/README +409 -0
  901. data/vendor/rails/actionpack/RUNNING_UNIT_TESTS +24 -0
  902. data/vendor/rails/actionpack/Rakefile +160 -0
  903. data/vendor/rails/actionpack/install.rb +30 -0
  904. data/vendor/rails/actionpack/lib/action_controller.rb +111 -0
  905. data/vendor/rails/actionpack/lib/action_controller/assertions/dom_assertions.rb +39 -0
  906. data/vendor/rails/actionpack/lib/action_controller/assertions/model_assertions.rb +21 -0
  907. data/vendor/rails/actionpack/lib/action_controller/assertions/response_assertions.rb +160 -0
  908. data/vendor/rails/actionpack/lib/action_controller/assertions/routing_assertions.rb +146 -0
  909. data/vendor/rails/actionpack/lib/action_controller/assertions/selector_assertions.rb +632 -0
  910. data/vendor/rails/actionpack/lib/action_controller/assertions/tag_assertions.rb +127 -0
  911. data/vendor/rails/actionpack/lib/action_controller/base.rb +1423 -0
  912. data/vendor/rails/actionpack/lib/action_controller/benchmarking.rb +107 -0
  913. data/vendor/rails/actionpack/lib/action_controller/caching.rb +70 -0
  914. data/vendor/rails/actionpack/lib/action_controller/caching/actions.rb +177 -0
  915. data/vendor/rails/actionpack/lib/action_controller/caching/fragments.rb +120 -0
  916. data/vendor/rails/actionpack/lib/action_controller/caching/pages.rb +152 -0
  917. data/vendor/rails/actionpack/lib/action_controller/caching/sweeper.rb +45 -0
  918. data/vendor/rails/actionpack/lib/action_controller/caching/sweeping.rb +55 -0
  919. data/vendor/rails/actionpack/lib/action_controller/cgi_ext.rb +15 -0
  920. data/vendor/rails/actionpack/lib/action_controller/cgi_ext/cookie.rb +112 -0
  921. data/vendor/rails/actionpack/lib/action_controller/cgi_ext/query_extension.rb +22 -0
  922. data/vendor/rails/actionpack/lib/action_controller/cgi_ext/stdinput.rb +24 -0
  923. data/vendor/rails/actionpack/lib/action_controller/cgi_process.rb +77 -0
  924. data/vendor/rails/actionpack/lib/action_controller/cookies.rb +94 -0
  925. data/vendor/rails/actionpack/lib/action_controller/dispatcher.rb +133 -0
  926. data/vendor/rails/actionpack/lib/action_controller/failsafe.rb +86 -0
  927. data/vendor/rails/actionpack/lib/action_controller/filters.rb +680 -0
  928. data/vendor/rails/actionpack/lib/action_controller/flash.rb +171 -0
  929. data/vendor/rails/actionpack/lib/action_controller/headers.rb +33 -0
  930. data/vendor/rails/actionpack/lib/action_controller/helpers.rb +225 -0
  931. data/vendor/rails/actionpack/lib/action_controller/http_authentication.rb +308 -0
  932. data/vendor/rails/actionpack/lib/action_controller/integration.rb +680 -0
  933. data/vendor/rails/actionpack/lib/action_controller/layout.rb +281 -0
  934. data/vendor/rails/actionpack/lib/action_controller/middleware_stack.rb +119 -0
  935. data/vendor/rails/actionpack/lib/action_controller/middlewares.rb +12 -0
  936. data/vendor/rails/actionpack/lib/action_controller/mime_responds.rb +193 -0
  937. data/vendor/rails/actionpack/lib/action_controller/mime_type.rb +212 -0
  938. data/vendor/rails/actionpack/lib/action_controller/mime_types.rb +21 -0
  939. data/vendor/rails/actionpack/lib/action_controller/params_parser.rb +77 -0
  940. data/vendor/rails/actionpack/lib/action_controller/performance_test.rb +15 -0
  941. data/vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb +204 -0
  942. data/vendor/rails/actionpack/lib/action_controller/record_identifier.rb +104 -0
  943. data/vendor/rails/actionpack/lib/action_controller/reloader.rb +54 -0
  944. data/vendor/rails/actionpack/lib/action_controller/request.rb +493 -0
  945. data/vendor/rails/actionpack/lib/action_controller/request_forgery_protection.rb +109 -0
  946. data/vendor/rails/actionpack/lib/action_controller/rescue.rb +183 -0
  947. data/vendor/rails/actionpack/lib/action_controller/resources.rb +682 -0
  948. data/vendor/rails/actionpack/lib/action_controller/response.rb +238 -0
  949. data/vendor/rails/actionpack/lib/action_controller/routing.rb +388 -0
  950. data/vendor/rails/actionpack/lib/action_controller/routing/builder.rb +197 -0
  951. data/vendor/rails/actionpack/lib/action_controller/routing/optimisations.rb +130 -0
  952. data/vendor/rails/actionpack/lib/action_controller/routing/recognition_optimisation.rb +167 -0
  953. data/vendor/rails/actionpack/lib/action_controller/routing/route.rb +265 -0
  954. data/vendor/rails/actionpack/lib/action_controller/routing/route_set.rb +502 -0
  955. data/vendor/rails/actionpack/lib/action_controller/routing/routing_ext.rb +49 -0
  956. data/vendor/rails/actionpack/lib/action_controller/routing/segments.rb +343 -0
  957. data/vendor/rails/actionpack/lib/action_controller/session/abstract_store.rb +181 -0
  958. data/vendor/rails/actionpack/lib/action_controller/session/cookie_store.rb +221 -0
  959. data/vendor/rails/actionpack/lib/action_controller/session/mem_cache_store.rb +51 -0
  960. data/vendor/rails/actionpack/lib/action_controller/session_management.rb +54 -0
  961. data/vendor/rails/actionpack/lib/action_controller/status_codes.rb +88 -0
  962. data/vendor/rails/actionpack/lib/action_controller/streaming.rb +181 -0
  963. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/_request_and_response.erb +24 -0
  964. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/_trace.erb +26 -0
  965. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/diagnostics.erb +11 -0
  966. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb +29 -0
  967. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/missing_template.erb +2 -0
  968. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/routing_error.erb +10 -0
  969. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/template_error.erb +21 -0
  970. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/unknown_action.erb +2 -0
  971. data/vendor/rails/actionpack/lib/action_controller/test_case.rb +204 -0
  972. data/vendor/rails/actionpack/lib/action_controller/test_process.rb +580 -0
  973. data/vendor/rails/actionpack/lib/action_controller/translation.rb +13 -0
  974. data/vendor/rails/actionpack/lib/action_controller/uploaded_file.rb +44 -0
  975. data/vendor/rails/actionpack/lib/action_controller/url_rewriter.rb +216 -0
  976. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner.rb +16 -0
  977. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/document.rb +68 -0
  978. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/node.rb +537 -0
  979. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/sanitizer.rb +173 -0
  980. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/selector.rb +828 -0
  981. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/tokenizer.rb +105 -0
  982. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/version.rb +11 -0
  983. data/vendor/rails/actionpack/lib/action_controller/verification.rb +130 -0
  984. data/vendor/rails/actionpack/lib/action_pack.rb +24 -0
  985. data/vendor/rails/actionpack/lib/action_pack/version.rb +9 -0
  986. data/vendor/rails/actionpack/lib/action_view.rb +58 -0
  987. data/vendor/rails/actionpack/lib/action_view/base.rb +357 -0
  988. data/vendor/rails/actionpack/lib/action_view/erb/util.rb +38 -0
  989. data/vendor/rails/actionpack/lib/action_view/helpers.rb +57 -0
  990. data/vendor/rails/actionpack/lib/action_view/helpers/active_record_helper.rb +305 -0
  991. data/vendor/rails/actionpack/lib/action_view/helpers/asset_tag_helper.rb +694 -0
  992. data/vendor/rails/actionpack/lib/action_view/helpers/atom_feed_helper.rb +198 -0
  993. data/vendor/rails/actionpack/lib/action_view/helpers/benchmark_helper.rb +54 -0
  994. data/vendor/rails/actionpack/lib/action_view/helpers/cache_helper.rb +39 -0
  995. data/vendor/rails/actionpack/lib/action_view/helpers/capture_helper.rb +136 -0
  996. data/vendor/rails/actionpack/lib/action_view/helpers/date_helper.rb +976 -0
  997. data/vendor/rails/actionpack/lib/action_view/helpers/debug_helper.rb +38 -0
  998. data/vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb +1053 -0
  999. data/vendor/rails/actionpack/lib/action_view/helpers/form_options_helper.rb +600 -0
  1000. data/vendor/rails/actionpack/lib/action_view/helpers/form_tag_helper.rb +487 -0
  1001. data/vendor/rails/actionpack/lib/action_view/helpers/javascript_helper.rb +208 -0
  1002. data/vendor/rails/actionpack/lib/action_view/helpers/number_helper.rb +303 -0
  1003. data/vendor/rails/actionpack/lib/action_view/helpers/prototype_helper.rb +1305 -0
  1004. data/vendor/rails/actionpack/lib/action_view/helpers/record_identification_helper.rb +20 -0
  1005. data/vendor/rails/actionpack/lib/action_view/helpers/record_tag_helper.rb +58 -0
  1006. data/vendor/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb +251 -0
  1007. data/vendor/rails/actionpack/lib/action_view/helpers/scriptaculous_helper.rb +226 -0
  1008. data/vendor/rails/actionpack/lib/action_view/helpers/tag_helper.rb +150 -0
  1009. data/vendor/rails/actionpack/lib/action_view/helpers/text_helper.rb +587 -0
  1010. data/vendor/rails/actionpack/lib/action_view/helpers/translation_helper.rb +39 -0
  1011. data/vendor/rails/actionpack/lib/action_view/helpers/url_helper.rb +638 -0
  1012. data/vendor/rails/actionpack/lib/action_view/inline_template.rb +19 -0
  1013. data/vendor/rails/actionpack/lib/action_view/locale/en.yml +114 -0
  1014. data/vendor/rails/actionpack/lib/action_view/partials.rb +240 -0
  1015. data/vendor/rails/actionpack/lib/action_view/paths.rb +69 -0
  1016. data/vendor/rails/actionpack/lib/action_view/reloadable_template.rb +117 -0
  1017. data/vendor/rails/actionpack/lib/action_view/renderable.rb +95 -0
  1018. data/vendor/rails/actionpack/lib/action_view/renderable_partial.rb +47 -0
  1019. data/vendor/rails/actionpack/lib/action_view/template.rb +246 -0
  1020. data/vendor/rails/actionpack/lib/action_view/template_error.rb +99 -0
  1021. data/vendor/rails/actionpack/lib/action_view/template_handler.rb +34 -0
  1022. data/vendor/rails/actionpack/lib/action_view/template_handlers.rb +48 -0
  1023. data/vendor/rails/actionpack/lib/action_view/template_handlers/builder.rb +17 -0
  1024. data/vendor/rails/actionpack/lib/action_view/template_handlers/erb.rb +22 -0
  1025. data/vendor/rails/actionpack/lib/action_view/template_handlers/rjs.rb +13 -0
  1026. data/vendor/rails/actionpack/lib/action_view/test_case.rb +87 -0
  1027. data/vendor/rails/actionpack/lib/actionpack.rb +1 -0
  1028. data/vendor/rails/actionpack/test/abstract_unit.rb +61 -0
  1029. data/vendor/rails/actionpack/test/active_record_unit.rb +104 -0
  1030. data/vendor/rails/actionpack/test/activerecord/active_record_store_test.rb +174 -0
  1031. data/vendor/rails/actionpack/test/activerecord/render_partial_with_record_identification_test.rb +188 -0
  1032. data/vendor/rails/actionpack/test/adv_attr_test.rb +20 -0
  1033. data/vendor/rails/actionpack/test/controller/action_pack_assertions_test.rb +543 -0
  1034. data/vendor/rails/actionpack/test/controller/addresses_render_test.rb +37 -0
  1035. data/vendor/rails/actionpack/test/controller/assert_select_test.rb +734 -0
  1036. data/vendor/rails/actionpack/test/controller/base_test.rb +217 -0
  1037. data/vendor/rails/actionpack/test/controller/benchmark_test.rb +32 -0
  1038. data/vendor/rails/actionpack/test/controller/caching_test.rb +729 -0
  1039. data/vendor/rails/actionpack/test/controller/capture_test.rb +66 -0
  1040. data/vendor/rails/actionpack/test/controller/content_type_test.rb +168 -0
  1041. data/vendor/rails/actionpack/test/controller/controller_fixtures/app/controllers/admin/user_controller.rb +0 -0
  1042. data/vendor/rails/actionpack/test/controller/controller_fixtures/app/controllers/user_controller.rb +0 -0
  1043. data/vendor/rails/actionpack/test/controller/controller_fixtures/vendor/plugins/bad_plugin/lib/plugin_controller.rb +0 -0
  1044. data/vendor/rails/actionpack/test/controller/cookie_test.rb +127 -0
  1045. data/vendor/rails/actionpack/test/controller/deprecation/deprecated_base_methods_test.rb +32 -0
  1046. data/vendor/rails/actionpack/test/controller/dispatcher_test.rb +144 -0
  1047. data/vendor/rails/actionpack/test/controller/failsafe_test.rb +60 -0
  1048. data/vendor/rails/actionpack/test/controller/fake_controllers.rb +33 -0
  1049. data/vendor/rails/actionpack/test/controller/fake_models.rb +19 -0
  1050. data/vendor/rails/actionpack/test/controller/filter_params_test.rb +51 -0
  1051. data/vendor/rails/actionpack/test/controller/filters_test.rb +885 -0
  1052. data/vendor/rails/actionpack/test/controller/flash_test.rb +147 -0
  1053. data/vendor/rails/actionpack/test/controller/header_test.rb +14 -0
  1054. data/vendor/rails/actionpack/test/controller/helper_test.rb +224 -0
  1055. data/vendor/rails/actionpack/test/controller/html-scanner/cdata_node_test.rb +15 -0
  1056. data/vendor/rails/actionpack/test/controller/html-scanner/document_test.rb +148 -0
  1057. data/vendor/rails/actionpack/test/controller/html-scanner/node_test.rb +89 -0
  1058. data/vendor/rails/actionpack/test/controller/html-scanner/sanitizer_test.rb +273 -0
  1059. data/vendor/rails/actionpack/test/controller/html-scanner/tag_node_test.rb +238 -0
  1060. data/vendor/rails/actionpack/test/controller/html-scanner/text_node_test.rb +50 -0
  1061. data/vendor/rails/actionpack/test/controller/html-scanner/tokenizer_test.rb +131 -0
  1062. data/vendor/rails/actionpack/test/controller/http_basic_authentication_test.rb +113 -0
  1063. data/vendor/rails/actionpack/test/controller/http_digest_authentication_test.rb +232 -0
  1064. data/vendor/rails/actionpack/test/controller/integration_test.rb +445 -0
  1065. data/vendor/rails/actionpack/test/controller/layout_test.rb +204 -0
  1066. data/vendor/rails/actionpack/test/controller/logging_test.rb +46 -0
  1067. data/vendor/rails/actionpack/test/controller/middleware_stack_test.rb +90 -0
  1068. data/vendor/rails/actionpack/test/controller/mime_responds_test.rb +536 -0
  1069. data/vendor/rails/actionpack/test/controller/mime_type_test.rb +93 -0
  1070. data/vendor/rails/actionpack/test/controller/polymorphic_routes_test.rb +293 -0
  1071. data/vendor/rails/actionpack/test/controller/rack_test.rb +311 -0
  1072. data/vendor/rails/actionpack/test/controller/record_identifier_test.rb +139 -0
  1073. data/vendor/rails/actionpack/test/controller/redirect_test.rb +285 -0
  1074. data/vendor/rails/actionpack/test/controller/reloader_test.rb +124 -0
  1075. data/vendor/rails/actionpack/test/controller/render_test.rb +1762 -0
  1076. data/vendor/rails/actionpack/test/controller/request/json_params_parsing_test.rb +65 -0
  1077. data/vendor/rails/actionpack/test/controller/request/multipart_params_parsing_test.rb +162 -0
  1078. data/vendor/rails/actionpack/test/controller/request/query_string_parsing_test.rb +120 -0
  1079. data/vendor/rails/actionpack/test/controller/request/test_request_test.rb +35 -0
  1080. data/vendor/rails/actionpack/test/controller/request/url_encoded_params_parsing_test.rb +146 -0
  1081. data/vendor/rails/actionpack/test/controller/request/xml_params_parsing_test.rb +103 -0
  1082. data/vendor/rails/actionpack/test/controller/request_forgery_protection_test.rb +247 -0
  1083. data/vendor/rails/actionpack/test/controller/request_test.rb +395 -0
  1084. data/vendor/rails/actionpack/test/controller/rescue_test.rb +536 -0
  1085. data/vendor/rails/actionpack/test/controller/resources_test.rb +1393 -0
  1086. data/vendor/rails/actionpack/test/controller/routing_test.rb +2583 -0
  1087. data/vendor/rails/actionpack/test/controller/selector_test.rb +628 -0
  1088. data/vendor/rails/actionpack/test/controller/send_file_test.rb +171 -0
  1089. data/vendor/rails/actionpack/test/controller/session/cookie_store_test.rb +216 -0
  1090. data/vendor/rails/actionpack/test/controller/session/mem_cache_store_test.rb +127 -0
  1091. data/vendor/rails/actionpack/test/controller/session/test_session_test.rb +58 -0
  1092. data/vendor/rails/actionpack/test/controller/test_test.rb +700 -0
  1093. data/vendor/rails/actionpack/test/controller/translation_test.rb +26 -0
  1094. data/vendor/rails/actionpack/test/controller/url_rewriter_test.rb +385 -0
  1095. data/vendor/rails/actionpack/test/controller/verification_test.rb +270 -0
  1096. data/vendor/rails/actionpack/test/controller/view_paths_test.rb +141 -0
  1097. data/vendor/rails/actionpack/test/controller/webservice_test.rb +260 -0
  1098. data/vendor/rails/actionpack/test/fixtures/_top_level_partial.html.erb +1 -0
  1099. data/vendor/rails/actionpack/test/fixtures/_top_level_partial_only.erb +1 -0
  1100. data/vendor/rails/actionpack/test/fixtures/addresses/list.erb +1 -0
  1101. data/vendor/rails/actionpack/test/fixtures/alternate_helpers/foo_helper.rb +3 -0
  1102. data/vendor/rails/actionpack/test/fixtures/bad_customers/_bad_customer.html.erb +1 -0
  1103. data/vendor/rails/actionpack/test/fixtures/companies.yml +24 -0
  1104. data/vendor/rails/actionpack/test/fixtures/company.rb +10 -0
  1105. data/vendor/rails/actionpack/test/fixtures/content_type/render_default_content_types_for_respond_to.rhtml +1 -0
  1106. data/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rhtml.rhtml +1 -0
  1107. data/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rjs.rjs +1 -0
  1108. data/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rxml.rxml +1 -0
  1109. data/vendor/rails/actionpack/test/fixtures/customers/_customer.html.erb +1 -0
  1110. data/vendor/rails/actionpack/test/fixtures/db_definitions/sqlite.sql +49 -0
  1111. data/vendor/rails/actionpack/test/fixtures/developer.rb +9 -0
  1112. data/vendor/rails/actionpack/test/fixtures/developers.yml +21 -0
  1113. data/vendor/rails/actionpack/test/fixtures/developers/_developer.erb +1 -0
  1114. data/vendor/rails/actionpack/test/fixtures/developers_projects.yml +13 -0
  1115. data/vendor/rails/actionpack/test/fixtures/failsafe/500.html +1 -0
  1116. data/vendor/rails/actionpack/test/fixtures/fun/games/_game.erb +1 -0
  1117. data/vendor/rails/actionpack/test/fixtures/fun/games/hello_world.erb +1 -0
  1118. data/vendor/rails/actionpack/test/fixtures/fun/serious/games/_game.erb +1 -0
  1119. data/vendor/rails/actionpack/test/fixtures/functional_caching/_partial.erb +3 -0
  1120. data/vendor/rails/actionpack/test/fixtures/functional_caching/formatted_fragment_cached.html.erb +3 -0
  1121. data/vendor/rails/actionpack/test/fixtures/functional_caching/formatted_fragment_cached.js.rjs +6 -0
  1122. data/vendor/rails/actionpack/test/fixtures/functional_caching/formatted_fragment_cached.xml.builder +5 -0
  1123. data/vendor/rails/actionpack/test/fixtures/functional_caching/fragment_cached.html.erb +2 -0
  1124. data/vendor/rails/actionpack/test/fixtures/functional_caching/html_fragment_cached_with_partial.html.erb +1 -0
  1125. data/vendor/rails/actionpack/test/fixtures/functional_caching/inline_fragment_cached.html.erb +2 -0
  1126. data/vendor/rails/actionpack/test/fixtures/functional_caching/js_fragment_cached_with_partial.js.rjs +1 -0
  1127. data/vendor/rails/actionpack/test/fixtures/good_customers/_good_customer.html.erb +1 -0
  1128. data/vendor/rails/actionpack/test/fixtures/helpers/abc_helper.rb +5 -0
  1129. data/vendor/rails/actionpack/test/fixtures/helpers/fun/games_helper.rb +3 -0
  1130. data/vendor/rails/actionpack/test/fixtures/helpers/fun/pdf_helper.rb +3 -0
  1131. data/vendor/rails/actionpack/test/fixtures/layout_tests/alt/hello.rhtml +1 -0
  1132. data/vendor/rails/actionpack/test/fixtures/layout_tests/alt/layouts/alt.rhtml +0 -0
  1133. data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/controller_name_space/nested.rhtml +1 -0
  1134. data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/item.rhtml +1 -0
  1135. data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/layout_test.rhtml +1 -0
  1136. data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/multiple_extensions.html.erb +1 -0
  1137. data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/third_party_template_library.mab +1 -0
  1138. data/vendor/rails/actionpack/test/fixtures/layout_tests/views/hello.rhtml +1 -0
  1139. data/vendor/rails/actionpack/test/fixtures/layouts/_column.html.erb +2 -0
  1140. data/vendor/rails/actionpack/test/fixtures/layouts/block_with_layout.erb +3 -0
  1141. data/vendor/rails/actionpack/test/fixtures/layouts/builder.builder +3 -0
  1142. data/vendor/rails/actionpack/test/fixtures/layouts/default_html.html.erb +1 -0
  1143. data/vendor/rails/actionpack/test/fixtures/layouts/partial_with_layout.erb +3 -0
  1144. data/vendor/rails/actionpack/test/fixtures/layouts/standard.erb +1 -0
  1145. data/vendor/rails/actionpack/test/fixtures/layouts/talk_from_action.erb +2 -0
  1146. data/vendor/rails/actionpack/test/fixtures/layouts/xhr.html.erb +2 -0
  1147. data/vendor/rails/actionpack/test/fixtures/layouts/yield.erb +2 -0
  1148. data/vendor/rails/actionpack/test/fixtures/mascot.rb +3 -0
  1149. data/vendor/rails/actionpack/test/fixtures/mascots.yml +4 -0
  1150. data/vendor/rails/actionpack/test/fixtures/mascots/_mascot.html.erb +1 -0
  1151. data/vendor/rails/actionpack/test/fixtures/multipart/binary_file +0 -0
  1152. data/vendor/rails/actionpack/test/fixtures/multipart/boundary_problem_file +10 -0
  1153. data/vendor/rails/actionpack/test/fixtures/multipart/bracketed_param +5 -0
  1154. data/vendor/rails/actionpack/test/fixtures/multipart/empty +10 -0
  1155. data/vendor/rails/actionpack/test/fixtures/multipart/hello.txt +1 -0
  1156. data/vendor/rails/actionpack/test/fixtures/multipart/large_text_file +10 -0
  1157. data/vendor/rails/actionpack/test/fixtures/multipart/mixed_files +0 -0
  1158. data/vendor/rails/actionpack/test/fixtures/multipart/mona_lisa.jpg +0 -0
  1159. data/vendor/rails/actionpack/test/fixtures/multipart/none +9 -0
  1160. data/vendor/rails/actionpack/test/fixtures/multipart/single_parameter +5 -0
  1161. data/vendor/rails/actionpack/test/fixtures/multipart/text_file +10 -0
  1162. data/vendor/rails/actionpack/test/fixtures/override/test/hello_world.erb +1 -0
  1163. data/vendor/rails/actionpack/test/fixtures/override2/layouts/test/sub.erb +1 -0
  1164. data/vendor/rails/actionpack/test/fixtures/post_test/layouts/post.html.erb +1 -0
  1165. data/vendor/rails/actionpack/test/fixtures/post_test/layouts/super_post.iphone.erb +1 -0
  1166. data/vendor/rails/actionpack/test/fixtures/post_test/post/index.html.erb +1 -0
  1167. data/vendor/rails/actionpack/test/fixtures/post_test/post/index.iphone.erb +1 -0
  1168. data/vendor/rails/actionpack/test/fixtures/post_test/super_post/index.html.erb +1 -0
  1169. data/vendor/rails/actionpack/test/fixtures/post_test/super_post/index.iphone.erb +1 -0
  1170. data/vendor/rails/actionpack/test/fixtures/project.rb +3 -0
  1171. data/vendor/rails/actionpack/test/fixtures/projects.yml +7 -0
  1172. data/vendor/rails/actionpack/test/fixtures/projects/_project.erb +1 -0
  1173. data/vendor/rails/actionpack/test/fixtures/public/404.html +1 -0
  1174. data/vendor/rails/actionpack/test/fixtures/public/500.da.html +1 -0
  1175. data/vendor/rails/actionpack/test/fixtures/public/500.html +1 -0
  1176. data/vendor/rails/actionpack/test/fixtures/public/absolute/test.css +23 -0
  1177. data/vendor/rails/actionpack/test/fixtures/public/absolute/test.js +63 -0
  1178. data/vendor/rails/actionpack/test/fixtures/public/images/rails.png +0 -0
  1179. data/vendor/rails/actionpack/test/fixtures/public/javascripts/application.js +1 -0
  1180. data/vendor/rails/actionpack/test/fixtures/public/javascripts/bank.js +1 -0
  1181. data/vendor/rails/actionpack/test/fixtures/public/javascripts/controls.js +1 -0
  1182. data/vendor/rails/actionpack/test/fixtures/public/javascripts/dragdrop.js +1 -0
  1183. data/vendor/rails/actionpack/test/fixtures/public/javascripts/effects.js +1 -0
  1184. data/vendor/rails/actionpack/test/fixtures/public/javascripts/prototype.js +1 -0
  1185. data/vendor/rails/actionpack/test/fixtures/public/javascripts/robber.js +1 -0
  1186. data/vendor/rails/actionpack/test/fixtures/public/javascripts/subdir/subdir.js +1 -0
  1187. data/vendor/rails/actionpack/test/fixtures/public/javascripts/version.1.0.js +1 -0
  1188. data/vendor/rails/actionpack/test/fixtures/public/stylesheets/bank.css +1 -0
  1189. data/vendor/rails/actionpack/test/fixtures/public/stylesheets/robber.css +1 -0
  1190. data/vendor/rails/actionpack/test/fixtures/public/stylesheets/subdir/subdir.css +1 -0
  1191. data/vendor/rails/actionpack/test/fixtures/public/stylesheets/version.1.0.css +1 -0
  1192. data/vendor/rails/actionpack/test/fixtures/quiz/questions/_question.html.erb +1 -0
  1193. data/vendor/rails/actionpack/test/fixtures/replies.yml +15 -0
  1194. data/vendor/rails/actionpack/test/fixtures/replies/_reply.erb +1 -0
  1195. data/vendor/rails/actionpack/test/fixtures/reply.rb +7 -0
  1196. data/vendor/rails/actionpack/test/fixtures/respond_to/all_types_with_layout.html.erb +1 -0
  1197. data/vendor/rails/actionpack/test/fixtures/respond_to/all_types_with_layout.js.rjs +1 -0
  1198. data/vendor/rails/actionpack/test/fixtures/respond_to/custom_constant_handling_without_block.mobile.erb +1 -0
  1199. data/vendor/rails/actionpack/test/fixtures/respond_to/iphone_with_html_response_type.html.erb +1 -0
  1200. data/vendor/rails/actionpack/test/fixtures/respond_to/iphone_with_html_response_type.iphone.erb +1 -0
  1201. data/vendor/rails/actionpack/test/fixtures/respond_to/layouts/missing.html.erb +1 -0
  1202. data/vendor/rails/actionpack/test/fixtures/respond_to/layouts/standard.html.erb +1 -0
  1203. data/vendor/rails/actionpack/test/fixtures/respond_to/layouts/standard.iphone.erb +1 -0
  1204. data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.html.erb +1 -0
  1205. data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.js.rjs +1 -0
  1206. data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.xml.builder +1 -0
  1207. data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.html.erb +1 -0
  1208. data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.js.rjs +1 -0
  1209. data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.xml.builder +1 -0
  1210. data/vendor/rails/actionpack/test/fixtures/scope/test/modgreet.erb +1 -0
  1211. data/vendor/rails/actionpack/test/fixtures/shared.html.erb +1 -0
  1212. data/vendor/rails/actionpack/test/fixtures/symlink_parent/symlinked_layout.erb +5 -0
  1213. data/vendor/rails/actionpack/test/fixtures/test/_counter.html.erb +1 -0
  1214. data/vendor/rails/actionpack/test/fixtures/test/_customer.erb +1 -0
  1215. data/vendor/rails/actionpack/test/fixtures/test/_customer_counter.erb +1 -0
  1216. data/vendor/rails/actionpack/test/fixtures/test/_customer_greeting.erb +1 -0
  1217. data/vendor/rails/actionpack/test/fixtures/test/_customer_with_var.erb +1 -0
  1218. data/vendor/rails/actionpack/test/fixtures/test/_form.erb +1 -0
  1219. data/vendor/rails/actionpack/test/fixtures/test/_hash_greeting.erb +1 -0
  1220. data/vendor/rails/actionpack/test/fixtures/test/_hash_object.erb +2 -0
  1221. data/vendor/rails/actionpack/test/fixtures/test/_hello.builder +1 -0
  1222. data/vendor/rails/actionpack/test/fixtures/test/_labelling_form.erb +1 -0
  1223. data/vendor/rails/actionpack/test/fixtures/test/_layout_for_block_with_args.html.erb +3 -0
  1224. data/vendor/rails/actionpack/test/fixtures/test/_layout_for_partial.html.erb +3 -0
  1225. data/vendor/rails/actionpack/test/fixtures/test/_local_inspector.html.erb +1 -0
  1226. data/vendor/rails/actionpack/test/fixtures/test/_one.html.erb +1 -0
  1227. data/vendor/rails/actionpack/test/fixtures/test/_partial.erb +1 -0
  1228. data/vendor/rails/actionpack/test/fixtures/test/_partial.html.erb +1 -0
  1229. data/vendor/rails/actionpack/test/fixtures/test/_partial.js.erb +1 -0
  1230. data/vendor/rails/actionpack/test/fixtures/test/_partial_for_use_in_layout.html.erb +1 -0
  1231. data/vendor/rails/actionpack/test/fixtures/test/_partial_only.erb +1 -0
  1232. data/vendor/rails/actionpack/test/fixtures/test/_partial_with_only_html_version.html.erb +1 -0
  1233. data/vendor/rails/actionpack/test/fixtures/test/_person.erb +2 -0
  1234. data/vendor/rails/actionpack/test/fixtures/test/_raise.html.erb +1 -0
  1235. data/vendor/rails/actionpack/test/fixtures/test/_two.html.erb +1 -0
  1236. data/vendor/rails/actionpack/test/fixtures/test/action_talk_to_layout.erb +2 -0
  1237. data/vendor/rails/actionpack/test/fixtures/test/calling_partial_with_layout.html.erb +1 -0
  1238. data/vendor/rails/actionpack/test/fixtures/test/capturing.erb +4 -0
  1239. data/vendor/rails/actionpack/test/fixtures/test/content_for.erb +2 -0
  1240. data/vendor/rails/actionpack/test/fixtures/test/content_for_concatenated.erb +3 -0
  1241. data/vendor/rails/actionpack/test/fixtures/test/content_for_with_parameter.erb +2 -0
  1242. data/vendor/rails/actionpack/test/fixtures/test/delete_with_js.rjs +2 -0
  1243. data/vendor/rails/actionpack/test/fixtures/test/dont_pick_me +1 -0
  1244. data/vendor/rails/actionpack/test/fixtures/test/dot.directory/render_file_with_ivar.erb +1 -0
  1245. data/vendor/rails/actionpack/test/fixtures/test/enum_rjs_test.rjs +6 -0
  1246. data/vendor/rails/actionpack/test/fixtures/test/formatted_html_erb.html.erb +1 -0
  1247. data/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.builder +1 -0
  1248. data/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.html.erb +1 -0
  1249. data/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.xml.erb +1 -0
  1250. data/vendor/rails/actionpack/test/fixtures/test/greeting.erb +1 -0
  1251. data/vendor/rails/actionpack/test/fixtures/test/greeting.js.rjs +1 -0
  1252. data/vendor/rails/actionpack/test/fixtures/test/hello.builder +4 -0
  1253. data/vendor/rails/actionpack/test/fixtures/test/hello_world.da.html.erb +1 -0
  1254. data/vendor/rails/actionpack/test/fixtures/test/hello_world.erb +1 -0
  1255. data/vendor/rails/actionpack/test/fixtures/test/hello_world.pt-BR.html.erb +1 -0
  1256. data/vendor/rails/actionpack/test/fixtures/test/hello_world_container.builder +3 -0
  1257. data/vendor/rails/actionpack/test/fixtures/test/hello_world_from_rxml.builder +4 -0
  1258. data/vendor/rails/actionpack/test/fixtures/test/hello_world_with_layout_false.erb +1 -0
  1259. data/vendor/rails/actionpack/test/fixtures/test/hello_xml_world.builder +11 -0
  1260. data/vendor/rails/actionpack/test/fixtures/test/hyphen-ated.erb +1 -0
  1261. data/vendor/rails/actionpack/test/fixtures/test/implicit_content_type.atom.builder +2 -0
  1262. data/vendor/rails/actionpack/test/fixtures/test/list.erb +1 -0
  1263. data/vendor/rails/actionpack/test/fixtures/test/nested_layout.erb +3 -0
  1264. data/vendor/rails/actionpack/test/fixtures/test/non_erb_block_content_for.builder +4 -0
  1265. data/vendor/rails/actionpack/test/fixtures/test/potential_conflicts.erb +4 -0
  1266. data/vendor/rails/actionpack/test/fixtures/test/render_explicit_html_template.js.rjs +1 -0
  1267. data/vendor/rails/actionpack/test/fixtures/test/render_file_from_template.html.erb +1 -0
  1268. data/vendor/rails/actionpack/test/fixtures/test/render_file_with_ivar.erb +1 -0
  1269. data/vendor/rails/actionpack/test/fixtures/test/render_file_with_locals.erb +1 -0
  1270. data/vendor/rails/actionpack/test/fixtures/test/render_implicit_html_template.js.rjs +1 -0
  1271. data/vendor/rails/actionpack/test/fixtures/test/render_implicit_html_template_from_xhr_request.da.html.erb +1 -0
  1272. data/vendor/rails/actionpack/test/fixtures/test/render_implicit_html_template_from_xhr_request.html.erb +1 -0
  1273. data/vendor/rails/actionpack/test/fixtures/test/render_implicit_js_template_without_layout.js.erb +1 -0
  1274. data/vendor/rails/actionpack/test/fixtures/test/render_to_string_test.erb +1 -0
  1275. data/vendor/rails/actionpack/test/fixtures/test/sub_template_raise.html.erb +1 -0
  1276. data/vendor/rails/actionpack/test/fixtures/test/template.erb +1 -0
  1277. data/vendor/rails/actionpack/test/fixtures/test/update_element_with_capture.erb +9 -0
  1278. data/vendor/rails/actionpack/test/fixtures/test/using_layout_around_block.html.erb +1 -0
  1279. data/vendor/rails/actionpack/test/fixtures/test/using_layout_around_block_with_args.html.erb +1 -0
  1280. data/vendor/rails/actionpack/test/fixtures/test/utf8.html.erb +2 -0
  1281. data/vendor/rails/actionpack/test/fixtures/topic.rb +3 -0
  1282. data/vendor/rails/actionpack/test/fixtures/topics.yml +22 -0
  1283. data/vendor/rails/actionpack/test/fixtures/topics/_topic.html.erb +1 -0
  1284. data/vendor/rails/actionpack/test/template/active_record_helper_i18n_test.rb +44 -0
  1285. data/vendor/rails/actionpack/test/template/active_record_helper_test.rb +302 -0
  1286. data/vendor/rails/actionpack/test/template/asset_tag_helper_test.rb +759 -0
  1287. data/vendor/rails/actionpack/test/template/atom_feed_helper_test.rb +315 -0
  1288. data/vendor/rails/actionpack/test/template/benchmark_helper_test.rb +86 -0
  1289. data/vendor/rails/actionpack/test/template/compiled_templates_test.rb +203 -0
  1290. data/vendor/rails/actionpack/test/template/date_helper_i18n_test.rb +120 -0
  1291. data/vendor/rails/actionpack/test/template/date_helper_test.rb +2469 -0
  1292. data/vendor/rails/actionpack/test/template/erb_util_test.rb +24 -0
  1293. data/vendor/rails/actionpack/test/template/form_helper_test.rb +1313 -0
  1294. data/vendor/rails/actionpack/test/template/form_options_helper_i18n_test.rb +27 -0
  1295. data/vendor/rails/actionpack/test/template/form_options_helper_test.rb +807 -0
  1296. data/vendor/rails/actionpack/test/template/form_tag_helper_test.rb +344 -0
  1297. data/vendor/rails/actionpack/test/template/javascript_helper_test.rb +106 -0
  1298. data/vendor/rails/actionpack/test/template/number_helper_i18n_test.rb +69 -0
  1299. data/vendor/rails/actionpack/test/template/number_helper_test.rb +128 -0
  1300. data/vendor/rails/actionpack/test/template/prototype_helper_test.rb +639 -0
  1301. data/vendor/rails/actionpack/test/template/record_tag_helper_test.rb +58 -0
  1302. data/vendor/rails/actionpack/test/template/render_test.rb +290 -0
  1303. data/vendor/rails/actionpack/test/template/sanitize_helper_test.rb +48 -0
  1304. data/vendor/rails/actionpack/test/template/scriptaculous_helper_test.rb +90 -0
  1305. data/vendor/rails/actionpack/test/template/tag_helper_test.rb +97 -0
  1306. data/vendor/rails/actionpack/test/template/template_test.rb +32 -0
  1307. data/vendor/rails/actionpack/test/template/test_test.rb +54 -0
  1308. data/vendor/rails/actionpack/test/template/text_helper_test.rb +543 -0
  1309. data/vendor/rails/actionpack/test/template/translation_helper_test.rb +32 -0
  1310. data/vendor/rails/actionpack/test/template/url_helper_test.rb +622 -0
  1311. data/vendor/rails/actionpack/test/testing_sandbox.rb +15 -0
  1312. data/vendor/rails/actionpack/test/view/test_case_test.rb +8 -0
  1313. data/vendor/rails/activerecord/CHANGELOG +5850 -0
  1314. data/vendor/rails/activerecord/README +351 -0
  1315. data/vendor/rails/activerecord/RUNNING_UNIT_TESTS +36 -0
  1316. data/vendor/rails/activerecord/Rakefile +270 -0
  1317. data/vendor/rails/activerecord/examples/associations.png +0 -0
  1318. data/vendor/rails/activerecord/examples/performance.rb +162 -0
  1319. data/vendor/rails/activerecord/install.rb +30 -0
  1320. data/vendor/rails/activerecord/lib/active_record.rb +84 -0
  1321. data/vendor/rails/activerecord/lib/active_record/aggregations.rb +261 -0
  1322. data/vendor/rails/activerecord/lib/active_record/association_preload.rb +389 -0
  1323. data/vendor/rails/activerecord/lib/active_record/associations.rb +2238 -0
  1324. data/vendor/rails/activerecord/lib/active_record/associations/association_collection.rb +475 -0
  1325. data/vendor/rails/activerecord/lib/active_record/associations/association_proxy.rb +279 -0
  1326. data/vendor/rails/activerecord/lib/active_record/associations/belongs_to_association.rb +76 -0
  1327. data/vendor/rails/activerecord/lib/active_record/associations/belongs_to_polymorphic_association.rb +53 -0
  1328. data/vendor/rails/activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb +143 -0
  1329. data/vendor/rails/activerecord/lib/active_record/associations/has_many_association.rb +122 -0
  1330. data/vendor/rails/activerecord/lib/active_record/associations/has_many_through_association.rb +266 -0
  1331. data/vendor/rails/activerecord/lib/active_record/associations/has_one_association.rb +124 -0
  1332. data/vendor/rails/activerecord/lib/active_record/associations/has_one_through_association.rb +37 -0
  1333. data/vendor/rails/activerecord/lib/active_record/attribute_methods.rb +388 -0
  1334. data/vendor/rails/activerecord/lib/active_record/autosave_association.rb +355 -0
  1335. data/vendor/rails/activerecord/lib/active_record/base.rb +3158 -0
  1336. data/vendor/rails/activerecord/lib/active_record/batches.rb +81 -0
  1337. data/vendor/rails/activerecord/lib/active_record/calculations.rb +311 -0
  1338. data/vendor/rails/activerecord/lib/active_record/callbacks.rb +360 -0
  1339. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb +371 -0
  1340. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb +139 -0
  1341. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb +289 -0
  1342. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb +94 -0
  1343. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/quoting.rb +69 -0
  1344. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb +722 -0
  1345. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +434 -0
  1346. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb +241 -0
  1347. data/vendor/rails/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb +626 -0
  1348. data/vendor/rails/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb +1113 -0
  1349. data/vendor/rails/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb +34 -0
  1350. data/vendor/rails/activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb +453 -0
  1351. data/vendor/rails/activerecord/lib/active_record/dirty.rb +183 -0
  1352. data/vendor/rails/activerecord/lib/active_record/dynamic_finder_match.rb +41 -0
  1353. data/vendor/rails/activerecord/lib/active_record/dynamic_scope_match.rb +25 -0
  1354. data/vendor/rails/activerecord/lib/active_record/fixtures.rb +996 -0
  1355. data/vendor/rails/activerecord/lib/active_record/i18n_interpolation_deprecation.rb +26 -0
  1356. data/vendor/rails/activerecord/lib/active_record/locale/en.yml +58 -0
  1357. data/vendor/rails/activerecord/lib/active_record/locking/optimistic.rb +181 -0
  1358. data/vendor/rails/activerecord/lib/active_record/locking/pessimistic.rb +77 -0
  1359. data/vendor/rails/activerecord/lib/active_record/migration.rb +566 -0
  1360. data/vendor/rails/activerecord/lib/active_record/named_scope.rb +192 -0
  1361. data/vendor/rails/activerecord/lib/active_record/nested_attributes.rb +329 -0
  1362. data/vendor/rails/activerecord/lib/active_record/observer.rb +197 -0
  1363. data/vendor/rails/activerecord/lib/active_record/query_cache.rb +33 -0
  1364. data/vendor/rails/activerecord/lib/active_record/reflection.rb +320 -0
  1365. data/vendor/rails/activerecord/lib/active_record/schema.rb +51 -0
  1366. data/vendor/rails/activerecord/lib/active_record/schema_dumper.rb +182 -0
  1367. data/vendor/rails/activerecord/lib/active_record/serialization.rb +101 -0
  1368. data/vendor/rails/activerecord/lib/active_record/serializers/json_serializer.rb +91 -0
  1369. data/vendor/rails/activerecord/lib/active_record/serializers/xml_serializer.rb +357 -0
  1370. data/vendor/rails/activerecord/lib/active_record/session_store.rb +326 -0
  1371. data/vendor/rails/activerecord/lib/active_record/test_case.rb +66 -0
  1372. data/vendor/rails/activerecord/lib/active_record/timestamp.rb +71 -0
  1373. data/vendor/rails/activerecord/lib/active_record/transactions.rb +235 -0
  1374. data/vendor/rails/activerecord/lib/active_record/validations.rb +1135 -0
  1375. data/vendor/rails/activerecord/lib/active_record/version.rb +9 -0
  1376. data/vendor/rails/activerecord/lib/activerecord.rb +1 -0
  1377. data/vendor/rails/activerecord/test/assets/example.log +1 -0
  1378. data/vendor/rails/activerecord/test/assets/flowers.jpg +0 -0
  1379. data/vendor/rails/activerecord/test/cases/aaa_create_tables_test.rb +24 -0
  1380. data/vendor/rails/activerecord/test/cases/active_schema_test_mysql.rb +100 -0
  1381. data/vendor/rails/activerecord/test/cases/active_schema_test_postgresql.rb +24 -0
  1382. data/vendor/rails/activerecord/test/cases/adapter_test.rb +145 -0
  1383. data/vendor/rails/activerecord/test/cases/aggregations_test.rb +167 -0
  1384. data/vendor/rails/activerecord/test/cases/ar_schema_test.rb +32 -0
  1385. data/vendor/rails/activerecord/test/cases/associations/belongs_to_associations_test.rb +425 -0
  1386. data/vendor/rails/activerecord/test/cases/associations/callbacks_test.rb +161 -0
  1387. data/vendor/rails/activerecord/test/cases/associations/cascaded_eager_loading_test.rb +131 -0
  1388. data/vendor/rails/activerecord/test/cases/associations/eager_load_includes_full_sti_class_test.rb +36 -0
  1389. data/vendor/rails/activerecord/test/cases/associations/eager_load_nested_include_test.rb +130 -0
  1390. data/vendor/rails/activerecord/test/cases/associations/eager_singularization_test.rb +145 -0
  1391. data/vendor/rails/activerecord/test/cases/associations/eager_test.rb +834 -0
  1392. data/vendor/rails/activerecord/test/cases/associations/extension_test.rb +62 -0
  1393. data/vendor/rails/activerecord/test/cases/associations/habtm_join_table_test.rb +56 -0
  1394. data/vendor/rails/activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb +822 -0
  1395. data/vendor/rails/activerecord/test/cases/associations/has_many_associations_test.rb +1122 -0
  1396. data/vendor/rails/activerecord/test/cases/associations/has_many_through_associations_test.rb +324 -0
  1397. data/vendor/rails/activerecord/test/cases/associations/has_one_associations_test.rb +309 -0
  1398. data/vendor/rails/activerecord/test/cases/associations/has_one_through_associations_test.rb +209 -0
  1399. data/vendor/rails/activerecord/test/cases/associations/inner_join_association_test.rb +93 -0
  1400. data/vendor/rails/activerecord/test/cases/associations/join_model_test.rb +712 -0
  1401. data/vendor/rails/activerecord/test/cases/associations_test.rb +262 -0
  1402. data/vendor/rails/activerecord/test/cases/attribute_methods_test.rb +305 -0
  1403. data/vendor/rails/activerecord/test/cases/autosave_association_test.rb +923 -0
  1404. data/vendor/rails/activerecord/test/cases/base_test.rb +2152 -0
  1405. data/vendor/rails/activerecord/test/cases/batches_test.rb +61 -0
  1406. data/vendor/rails/activerecord/test/cases/binary_test.rb +30 -0
  1407. data/vendor/rails/activerecord/test/cases/calculations_test.rb +348 -0
  1408. data/vendor/rails/activerecord/test/cases/callbacks_observers_test.rb +38 -0
  1409. data/vendor/rails/activerecord/test/cases/callbacks_test.rb +438 -0
  1410. data/vendor/rails/activerecord/test/cases/class_inheritable_attributes_test.rb +32 -0
  1411. data/vendor/rails/activerecord/test/cases/column_alias_test.rb +17 -0
  1412. data/vendor/rails/activerecord/test/cases/column_definition_test.rb +70 -0
  1413. data/vendor/rails/activerecord/test/cases/connection_pool_test.rb +25 -0
  1414. data/vendor/rails/activerecord/test/cases/connection_test_firebird.rb +8 -0
  1415. data/vendor/rails/activerecord/test/cases/connection_test_mysql.rb +56 -0
  1416. data/vendor/rails/activerecord/test/cases/copy_table_test_sqlite.rb +80 -0
  1417. data/vendor/rails/activerecord/test/cases/database_statements_test.rb +12 -0
  1418. data/vendor/rails/activerecord/test/cases/datatype_test_postgresql.rb +204 -0
  1419. data/vendor/rails/activerecord/test/cases/date_time_test.rb +37 -0
  1420. data/vendor/rails/activerecord/test/cases/default_test_firebird.rb +16 -0
  1421. data/vendor/rails/activerecord/test/cases/defaults_test.rb +111 -0
  1422. data/vendor/rails/activerecord/test/cases/deprecated_finder_test.rb +30 -0
  1423. data/vendor/rails/activerecord/test/cases/dirty_test.rb +316 -0
  1424. data/vendor/rails/activerecord/test/cases/finder_respond_to_test.rb +76 -0
  1425. data/vendor/rails/activerecord/test/cases/finder_test.rb +1054 -0
  1426. data/vendor/rails/activerecord/test/cases/fixtures_test.rb +656 -0
  1427. data/vendor/rails/activerecord/test/cases/helper.rb +68 -0
  1428. data/vendor/rails/activerecord/test/cases/i18n_test.rb +46 -0
  1429. data/vendor/rails/activerecord/test/cases/inheritance_test.rb +262 -0
  1430. data/vendor/rails/activerecord/test/cases/invalid_date_test.rb +24 -0
  1431. data/vendor/rails/activerecord/test/cases/json_serialization_test.rb +205 -0
  1432. data/vendor/rails/activerecord/test/cases/lifecycle_test.rb +193 -0
  1433. data/vendor/rails/activerecord/test/cases/locking_test.rb +322 -0
  1434. data/vendor/rails/activerecord/test/cases/method_scoping_test.rb +704 -0
  1435. data/vendor/rails/activerecord/test/cases/migration_test.rb +1523 -0
  1436. data/vendor/rails/activerecord/test/cases/migration_test_firebird.rb +124 -0
  1437. data/vendor/rails/activerecord/test/cases/mixin_test.rb +96 -0
  1438. data/vendor/rails/activerecord/test/cases/modules_test.rb +81 -0
  1439. data/vendor/rails/activerecord/test/cases/multiple_db_test.rb +85 -0
  1440. data/vendor/rails/activerecord/test/cases/named_scope_test.rb +361 -0
  1441. data/vendor/rails/activerecord/test/cases/nested_attributes_test.rb +509 -0
  1442. data/vendor/rails/activerecord/test/cases/pk_test.rb +119 -0
  1443. data/vendor/rails/activerecord/test/cases/pooled_connections_test.rb +103 -0
  1444. data/vendor/rails/activerecord/test/cases/query_cache_test.rb +123 -0
  1445. data/vendor/rails/activerecord/test/cases/readonly_test.rb +107 -0
  1446. data/vendor/rails/activerecord/test/cases/reflection_test.rb +194 -0
  1447. data/vendor/rails/activerecord/test/cases/reload_models_test.rb +22 -0
  1448. data/vendor/rails/activerecord/test/cases/repair_helper.rb +50 -0
  1449. data/vendor/rails/activerecord/test/cases/reserved_word_test_mysql.rb +176 -0
  1450. data/vendor/rails/activerecord/test/cases/sanitize_test.rb +25 -0
  1451. data/vendor/rails/activerecord/test/cases/schema_authorization_test_postgresql.rb +75 -0
  1452. data/vendor/rails/activerecord/test/cases/schema_dumper_test.rb +211 -0
  1453. data/vendor/rails/activerecord/test/cases/schema_test_postgresql.rb +178 -0
  1454. data/vendor/rails/activerecord/test/cases/serialization_test.rb +47 -0
  1455. data/vendor/rails/activerecord/test/cases/synonym_test_oracle.rb +17 -0
  1456. data/vendor/rails/activerecord/test/cases/timestamp_test.rb +75 -0
  1457. data/vendor/rails/activerecord/test/cases/transactions_test.rb +522 -0
  1458. data/vendor/rails/activerecord/test/cases/unconnected_test.rb +32 -0
  1459. data/vendor/rails/activerecord/test/cases/validations_i18n_test.rb +947 -0
  1460. data/vendor/rails/activerecord/test/cases/validations_test.rb +1612 -0
  1461. data/vendor/rails/activerecord/test/cases/xml_serialization_test.rb +240 -0
  1462. data/vendor/rails/activerecord/test/config.rb +5 -0
  1463. data/vendor/rails/activerecord/test/connections/jdbc_jdbcderby/connection.rb +18 -0
  1464. data/vendor/rails/activerecord/test/connections/jdbc_jdbch2/connection.rb +18 -0
  1465. data/vendor/rails/activerecord/test/connections/jdbc_jdbchsqldb/connection.rb +18 -0
  1466. data/vendor/rails/activerecord/test/connections/jdbc_jdbcmysql/connection.rb +26 -0
  1467. data/vendor/rails/activerecord/test/connections/jdbc_jdbcpostgresql/connection.rb +26 -0
  1468. data/vendor/rails/activerecord/test/connections/jdbc_jdbcsqlite3/connection.rb +25 -0
  1469. data/vendor/rails/activerecord/test/connections/native_db2/connection.rb +25 -0
  1470. data/vendor/rails/activerecord/test/connections/native_firebird/connection.rb +26 -0
  1471. data/vendor/rails/activerecord/test/connections/native_frontbase/connection.rb +27 -0
  1472. data/vendor/rails/activerecord/test/connections/native_mysql/connection.rb +25 -0
  1473. data/vendor/rails/activerecord/test/connections/native_openbase/connection.rb +21 -0
  1474. data/vendor/rails/activerecord/test/connections/native_oracle/connection.rb +27 -0
  1475. data/vendor/rails/activerecord/test/connections/native_postgresql/connection.rb +21 -0
  1476. data/vendor/rails/activerecord/test/connections/native_sqlite/connection.rb +25 -0
  1477. data/vendor/rails/activerecord/test/connections/native_sqlite3/connection.rb +25 -0
  1478. data/vendor/rails/activerecord/test/connections/native_sqlite3/in_memory_connection.rb +18 -0
  1479. data/vendor/rails/activerecord/test/connections/native_sybase/connection.rb +23 -0
  1480. data/vendor/rails/activerecord/test/fixtures/accounts.yml +28 -0
  1481. data/vendor/rails/activerecord/test/fixtures/all/developers.yml +0 -0
  1482. data/vendor/rails/activerecord/test/fixtures/all/people.csv +0 -0
  1483. data/vendor/rails/activerecord/test/fixtures/all/tasks.yml +0 -0
  1484. data/vendor/rails/activerecord/test/fixtures/author_addresses.yml +5 -0
  1485. data/vendor/rails/activerecord/test/fixtures/author_favorites.yml +4 -0
  1486. data/vendor/rails/activerecord/test/fixtures/authors.yml +9 -0
  1487. data/vendor/rails/activerecord/test/fixtures/binaries.yml +132 -0
  1488. data/vendor/rails/activerecord/test/fixtures/books.yml +7 -0
  1489. data/vendor/rails/activerecord/test/fixtures/categories.yml +14 -0
  1490. data/vendor/rails/activerecord/test/fixtures/categories/special_categories.yml +9 -0
  1491. data/vendor/rails/activerecord/test/fixtures/categories/subsubdir/arbitrary_filename.yml +4 -0
  1492. data/vendor/rails/activerecord/test/fixtures/categories_ordered.yml +7 -0
  1493. data/vendor/rails/activerecord/test/fixtures/categories_posts.yml +23 -0
  1494. data/vendor/rails/activerecord/test/fixtures/categorizations.yml +17 -0
  1495. data/vendor/rails/activerecord/test/fixtures/clubs.yml +6 -0
  1496. data/vendor/rails/activerecord/test/fixtures/comments.yml +59 -0
  1497. data/vendor/rails/activerecord/test/fixtures/companies.yml +56 -0
  1498. data/vendor/rails/activerecord/test/fixtures/computers.yml +4 -0
  1499. data/vendor/rails/activerecord/test/fixtures/courses.yml +7 -0
  1500. data/vendor/rails/activerecord/test/fixtures/customers.yml +26 -0
  1501. data/vendor/rails/activerecord/test/fixtures/developers.yml +21 -0
  1502. data/vendor/rails/activerecord/test/fixtures/developers_projects.yml +17 -0
  1503. data/vendor/rails/activerecord/test/fixtures/edges.yml +6 -0
  1504. data/vendor/rails/activerecord/test/fixtures/entrants.yml +14 -0
  1505. data/vendor/rails/activerecord/test/fixtures/fixture_database.sqlite +0 -0
  1506. data/vendor/rails/activerecord/test/fixtures/fixture_database.sqlite3 +0 -0
  1507. data/vendor/rails/activerecord/test/fixtures/fixture_database_2.sqlite +0 -0
  1508. data/vendor/rails/activerecord/test/fixtures/fixture_database_2.sqlite3 +0 -0
  1509. data/vendor/rails/activerecord/test/fixtures/fk_test_has_fk.yml +3 -0
  1510. data/vendor/rails/activerecord/test/fixtures/fk_test_has_pk.yml +2 -0
  1511. data/vendor/rails/activerecord/test/fixtures/funny_jokes.yml +10 -0
  1512. data/vendor/rails/activerecord/test/fixtures/items.yml +4 -0
  1513. data/vendor/rails/activerecord/test/fixtures/jobs.yml +7 -0
  1514. data/vendor/rails/activerecord/test/fixtures/legacy_things.yml +3 -0
  1515. data/vendor/rails/activerecord/test/fixtures/mateys.yml +4 -0
  1516. data/vendor/rails/activerecord/test/fixtures/member_types.yml +6 -0
  1517. data/vendor/rails/activerecord/test/fixtures/members.yml +6 -0
  1518. data/vendor/rails/activerecord/test/fixtures/memberships.yml +20 -0
  1519. data/vendor/rails/activerecord/test/fixtures/minimalistics.yml +2 -0
  1520. data/vendor/rails/activerecord/test/fixtures/mixed_case_monkeys.yml +6 -0
  1521. data/vendor/rails/activerecord/test/fixtures/mixins.yml +29 -0
  1522. data/vendor/rails/activerecord/test/fixtures/movies.yml +7 -0
  1523. data/vendor/rails/activerecord/test/fixtures/naked/csv/accounts.csv +1 -0
  1524. data/vendor/rails/activerecord/test/fixtures/naked/yml/accounts.yml +1 -0
  1525. data/vendor/rails/activerecord/test/fixtures/naked/yml/companies.yml +1 -0
  1526. data/vendor/rails/activerecord/test/fixtures/naked/yml/courses.yml +1 -0
  1527. data/vendor/rails/activerecord/test/fixtures/organizations.yml +5 -0
  1528. data/vendor/rails/activerecord/test/fixtures/owners.yml +7 -0
  1529. data/vendor/rails/activerecord/test/fixtures/parrots.yml +27 -0
  1530. data/vendor/rails/activerecord/test/fixtures/parrots_pirates.yml +7 -0
  1531. data/vendor/rails/activerecord/test/fixtures/people.yml +15 -0
  1532. data/vendor/rails/activerecord/test/fixtures/pets.yml +14 -0
  1533. data/vendor/rails/activerecord/test/fixtures/pirates.yml +9 -0
  1534. data/vendor/rails/activerecord/test/fixtures/posts.yml +52 -0
  1535. data/vendor/rails/activerecord/test/fixtures/price_estimates.yml +7 -0
  1536. data/vendor/rails/activerecord/test/fixtures/projects.yml +7 -0
  1537. data/vendor/rails/activerecord/test/fixtures/readers.yml +9 -0
  1538. data/vendor/rails/activerecord/test/fixtures/references.yml +17 -0
  1539. data/vendor/rails/activerecord/test/fixtures/reserved_words/distinct.yml +5 -0
  1540. data/vendor/rails/activerecord/test/fixtures/reserved_words/distincts_selects.yml +11 -0
  1541. data/vendor/rails/activerecord/test/fixtures/reserved_words/group.yml +14 -0
  1542. data/vendor/rails/activerecord/test/fixtures/reserved_words/select.yml +8 -0
  1543. data/vendor/rails/activerecord/test/fixtures/reserved_words/values.yml +7 -0
  1544. data/vendor/rails/activerecord/test/fixtures/ships.yml +5 -0
  1545. data/vendor/rails/activerecord/test/fixtures/sponsors.yml +9 -0
  1546. data/vendor/rails/activerecord/test/fixtures/subscribers.yml +7 -0
  1547. data/vendor/rails/activerecord/test/fixtures/subscriptions.yml +12 -0
  1548. data/vendor/rails/activerecord/test/fixtures/taggings.yml +28 -0
  1549. data/vendor/rails/activerecord/test/fixtures/tags.yml +7 -0
  1550. data/vendor/rails/activerecord/test/fixtures/tasks.yml +7 -0
  1551. data/vendor/rails/activerecord/test/fixtures/topics.yml +42 -0
  1552. data/vendor/rails/activerecord/test/fixtures/toys.yml +4 -0
  1553. data/vendor/rails/activerecord/test/fixtures/treasures.yml +10 -0
  1554. data/vendor/rails/activerecord/test/fixtures/vertices.yml +4 -0
  1555. data/vendor/rails/activerecord/test/fixtures/warehouse-things.yml +3 -0
  1556. data/vendor/rails/activerecord/test/migrations/broken/100_migration_that_raises_exception.rb +10 -0
  1557. data/vendor/rails/activerecord/test/migrations/decimal/1_give_me_big_numbers.rb +15 -0
  1558. data/vendor/rails/activerecord/test/migrations/duplicate/1_people_have_last_names.rb +9 -0
  1559. data/vendor/rails/activerecord/test/migrations/duplicate/2_we_need_reminders.rb +12 -0
  1560. data/vendor/rails/activerecord/test/migrations/duplicate/3_foo.rb +7 -0
  1561. data/vendor/rails/activerecord/test/migrations/duplicate/3_innocent_jointable.rb +12 -0
  1562. data/vendor/rails/activerecord/test/migrations/duplicate_names/20080507052938_chunky.rb +7 -0
  1563. data/vendor/rails/activerecord/test/migrations/duplicate_names/20080507053028_chunky.rb +7 -0
  1564. data/vendor/rails/activerecord/test/migrations/interleaved/pass_1/3_innocent_jointable.rb +12 -0
  1565. data/vendor/rails/activerecord/test/migrations/interleaved/pass_2/1_people_have_last_names.rb +9 -0
  1566. data/vendor/rails/activerecord/test/migrations/interleaved/pass_2/3_innocent_jointable.rb +12 -0
  1567. data/vendor/rails/activerecord/test/migrations/interleaved/pass_3/1_people_have_last_names.rb +9 -0
  1568. data/vendor/rails/activerecord/test/migrations/interleaved/pass_3/2_i_raise_on_down.rb +8 -0
  1569. data/vendor/rails/activerecord/test/migrations/interleaved/pass_3/3_innocent_jointable.rb +12 -0
  1570. data/vendor/rails/activerecord/test/migrations/missing/1000_people_have_middle_names.rb +9 -0
  1571. data/vendor/rails/activerecord/test/migrations/missing/1_people_have_last_names.rb +9 -0
  1572. data/vendor/rails/activerecord/test/migrations/missing/3_we_need_reminders.rb +12 -0
  1573. data/vendor/rails/activerecord/test/migrations/missing/4_innocent_jointable.rb +12 -0
  1574. data/vendor/rails/activerecord/test/migrations/valid/1_people_have_last_names.rb +9 -0
  1575. data/vendor/rails/activerecord/test/migrations/valid/2_we_need_reminders.rb +12 -0
  1576. data/vendor/rails/activerecord/test/migrations/valid/3_innocent_jointable.rb +12 -0
  1577. data/vendor/rails/activerecord/test/models/author.rb +146 -0
  1578. data/vendor/rails/activerecord/test/models/auto_id.rb +4 -0
  1579. data/vendor/rails/activerecord/test/models/binary.rb +2 -0
  1580. data/vendor/rails/activerecord/test/models/bird.rb +3 -0
  1581. data/vendor/rails/activerecord/test/models/book.rb +4 -0
  1582. data/vendor/rails/activerecord/test/models/categorization.rb +5 -0
  1583. data/vendor/rails/activerecord/test/models/category.rb +34 -0
  1584. data/vendor/rails/activerecord/test/models/citation.rb +6 -0
  1585. data/vendor/rails/activerecord/test/models/club.rb +13 -0
  1586. data/vendor/rails/activerecord/test/models/column_name.rb +3 -0
  1587. data/vendor/rails/activerecord/test/models/comment.rb +29 -0
  1588. data/vendor/rails/activerecord/test/models/company.rb +161 -0
  1589. data/vendor/rails/activerecord/test/models/company_in_module.rb +61 -0
  1590. data/vendor/rails/activerecord/test/models/computer.rb +3 -0
  1591. data/vendor/rails/activerecord/test/models/contact.rb +16 -0
  1592. data/vendor/rails/activerecord/test/models/contract.rb +5 -0
  1593. data/vendor/rails/activerecord/test/models/course.rb +3 -0
  1594. data/vendor/rails/activerecord/test/models/customer.rb +73 -0
  1595. data/vendor/rails/activerecord/test/models/default.rb +2 -0
  1596. data/vendor/rails/activerecord/test/models/developer.rb +101 -0
  1597. data/vendor/rails/activerecord/test/models/edge.rb +5 -0
  1598. data/vendor/rails/activerecord/test/models/entrant.rb +3 -0
  1599. data/vendor/rails/activerecord/test/models/essay.rb +3 -0
  1600. data/vendor/rails/activerecord/test/models/event.rb +3 -0
  1601. data/vendor/rails/activerecord/test/models/guid.rb +2 -0
  1602. data/vendor/rails/activerecord/test/models/item.rb +7 -0
  1603. data/vendor/rails/activerecord/test/models/job.rb +5 -0
  1604. data/vendor/rails/activerecord/test/models/joke.rb +3 -0
  1605. data/vendor/rails/activerecord/test/models/keyboard.rb +3 -0
  1606. data/vendor/rails/activerecord/test/models/legacy_thing.rb +3 -0
  1607. data/vendor/rails/activerecord/test/models/matey.rb +4 -0
  1608. data/vendor/rails/activerecord/test/models/member.rb +12 -0
  1609. data/vendor/rails/activerecord/test/models/member_detail.rb +5 -0
  1610. data/vendor/rails/activerecord/test/models/member_type.rb +3 -0
  1611. data/vendor/rails/activerecord/test/models/membership.rb +9 -0
  1612. data/vendor/rails/activerecord/test/models/minimalistic.rb +2 -0
  1613. data/vendor/rails/activerecord/test/models/mixed_case_monkey.rb +3 -0
  1614. data/vendor/rails/activerecord/test/models/movie.rb +5 -0
  1615. data/vendor/rails/activerecord/test/models/order.rb +4 -0
  1616. data/vendor/rails/activerecord/test/models/organization.rb +6 -0
  1617. data/vendor/rails/activerecord/test/models/owner.rb +5 -0
  1618. data/vendor/rails/activerecord/test/models/parrot.rb +16 -0
  1619. data/vendor/rails/activerecord/test/models/person.rb +16 -0
  1620. data/vendor/rails/activerecord/test/models/pet.rb +5 -0
  1621. data/vendor/rails/activerecord/test/models/pirate.rb +63 -0
  1622. data/vendor/rails/activerecord/test/models/post.rb +100 -0
  1623. data/vendor/rails/activerecord/test/models/price_estimate.rb +3 -0
  1624. data/vendor/rails/activerecord/test/models/project.rb +30 -0
  1625. data/vendor/rails/activerecord/test/models/reader.rb +4 -0
  1626. data/vendor/rails/activerecord/test/models/reference.rb +4 -0
  1627. data/vendor/rails/activerecord/test/models/reply.rb +46 -0
  1628. data/vendor/rails/activerecord/test/models/ship.rb +10 -0
  1629. data/vendor/rails/activerecord/test/models/ship_part.rb +5 -0
  1630. data/vendor/rails/activerecord/test/models/sponsor.rb +4 -0
  1631. data/vendor/rails/activerecord/test/models/subject.rb +4 -0
  1632. data/vendor/rails/activerecord/test/models/subscriber.rb +8 -0
  1633. data/vendor/rails/activerecord/test/models/subscription.rb +4 -0
  1634. data/vendor/rails/activerecord/test/models/tag.rb +7 -0
  1635. data/vendor/rails/activerecord/test/models/tagging.rb +10 -0
  1636. data/vendor/rails/activerecord/test/models/task.rb +3 -0
  1637. data/vendor/rails/activerecord/test/models/topic.rb +80 -0
  1638. data/vendor/rails/activerecord/test/models/toy.rb +6 -0
  1639. data/vendor/rails/activerecord/test/models/treasure.rb +6 -0
  1640. data/vendor/rails/activerecord/test/models/vertex.rb +9 -0
  1641. data/vendor/rails/activerecord/test/models/warehouse_thing.rb +5 -0
  1642. data/vendor/rails/activerecord/test/schema/mysql_specific_schema.rb +12 -0
  1643. data/vendor/rails/activerecord/test/schema/postgresql_specific_schema.rb +114 -0
  1644. data/vendor/rails/activerecord/test/schema/schema.rb +492 -0
  1645. data/vendor/rails/activerecord/test/schema/schema2.rb +6 -0
  1646. data/vendor/rails/activerecord/test/schema/sqlite_specific_schema.rb +25 -0
  1647. data/vendor/rails/activeresource/CHANGELOG +283 -0
  1648. data/vendor/rails/activeresource/README +165 -0
  1649. data/vendor/rails/activeresource/Rakefile +139 -0
  1650. data/vendor/rails/activeresource/lib/active_resource.rb +44 -0
  1651. data/vendor/rails/activeresource/lib/active_resource/base.rb +1157 -0
  1652. data/vendor/rails/activeresource/lib/active_resource/connection.rb +283 -0
  1653. data/vendor/rails/activeresource/lib/active_resource/custom_methods.rb +120 -0
  1654. data/vendor/rails/activeresource/lib/active_resource/exceptions.rb +66 -0
  1655. data/vendor/rails/activeresource/lib/active_resource/formats.rb +14 -0
  1656. data/vendor/rails/activeresource/lib/active_resource/formats/json_format.rb +23 -0
  1657. data/vendor/rails/activeresource/lib/active_resource/formats/xml_format.rb +34 -0
  1658. data/vendor/rails/activeresource/lib/active_resource/http_mock.rb +207 -0
  1659. data/vendor/rails/activeresource/lib/active_resource/validations.rb +290 -0
  1660. data/vendor/rails/activeresource/lib/active_resource/version.rb +9 -0
  1661. data/vendor/rails/activeresource/lib/activeresource.rb +1 -0
  1662. data/vendor/rails/activeresource/test/abstract_unit.rb +21 -0
  1663. data/vendor/rails/activeresource/test/authorization_test.rb +122 -0
  1664. data/vendor/rails/activeresource/test/base/custom_methods_test.rb +100 -0
  1665. data/vendor/rails/activeresource/test/base/equality_test.rb +52 -0
  1666. data/vendor/rails/activeresource/test/base/load_test.rb +161 -0
  1667. data/vendor/rails/activeresource/test/base_errors_test.rb +85 -0
  1668. data/vendor/rails/activeresource/test/base_test.rb +1038 -0
  1669. data/vendor/rails/activeresource/test/connection_test.rb +238 -0
  1670. data/vendor/rails/activeresource/test/debug.log +7974 -0
  1671. data/vendor/rails/activeresource/test/fixtures/beast.rb +14 -0
  1672. data/vendor/rails/activeresource/test/fixtures/customer.rb +3 -0
  1673. data/vendor/rails/activeresource/test/fixtures/person.rb +3 -0
  1674. data/vendor/rails/activeresource/test/fixtures/proxy.rb +4 -0
  1675. data/vendor/rails/activeresource/test/fixtures/street_address.rb +4 -0
  1676. data/vendor/rails/activeresource/test/format_test.rb +112 -0
  1677. data/vendor/rails/activeresource/test/setter_trap.rb +26 -0
  1678. data/vendor/rails/activesupport/CHANGELOG +1322 -0
  1679. data/vendor/rails/activesupport/README +43 -0
  1680. data/vendor/rails/activesupport/lib/active_support.rb +59 -0
  1681. data/vendor/rails/activesupport/lib/active_support/all.rb +8 -0
  1682. data/vendor/rails/activesupport/lib/active_support/backtrace_cleaner.rb +72 -0
  1683. data/vendor/rails/activesupport/lib/active_support/base64.rb +33 -0
  1684. data/vendor/rails/activesupport/lib/active_support/basic_object.rb +24 -0
  1685. data/vendor/rails/activesupport/lib/active_support/buffered_logger.rb +127 -0
  1686. data/vendor/rails/activesupport/lib/active_support/cache.rb +241 -0
  1687. data/vendor/rails/activesupport/lib/active_support/cache/compressed_mem_cache_store.rb +20 -0
  1688. data/vendor/rails/activesupport/lib/active_support/cache/drb_store.rb +14 -0
  1689. data/vendor/rails/activesupport/lib/active_support/cache/file_store.rb +72 -0
  1690. data/vendor/rails/activesupport/lib/active_support/cache/mem_cache_store.rb +138 -0
  1691. data/vendor/rails/activesupport/lib/active_support/cache/memory_store.rb +52 -0
  1692. data/vendor/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb +104 -0
  1693. data/vendor/rails/activesupport/lib/active_support/cache/synchronized_memory_store.rb +47 -0
  1694. data/vendor/rails/activesupport/lib/active_support/callbacks.rb +279 -0
  1695. data/vendor/rails/activesupport/lib/active_support/core_ext.rb +4 -0
  1696. data/vendor/rails/activesupport/lib/active_support/core_ext/array.rb +15 -0
  1697. data/vendor/rails/activesupport/lib/active_support/core_ext/array/access.rb +53 -0
  1698. data/vendor/rails/activesupport/lib/active_support/core_ext/array/conversions.rb +197 -0
  1699. data/vendor/rails/activesupport/lib/active_support/core_ext/array/extract_options.rb +20 -0
  1700. data/vendor/rails/activesupport/lib/active_support/core_ext/array/grouping.rb +106 -0
  1701. data/vendor/rails/activesupport/lib/active_support/core_ext/array/random_access.rb +12 -0
  1702. data/vendor/rails/activesupport/lib/active_support/core_ext/array/wrapper.rb +24 -0
  1703. data/vendor/rails/activesupport/lib/active_support/core_ext/base64.rb +4 -0
  1704. data/vendor/rails/activesupport/lib/active_support/core_ext/base64/encoding.rb +16 -0
  1705. data/vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb +19 -0
  1706. data/vendor/rails/activesupport/lib/active_support/core_ext/bigdecimal.rb +6 -0
  1707. data/vendor/rails/activesupport/lib/active_support/core_ext/bigdecimal/conversions.rb +37 -0
  1708. data/vendor/rails/activesupport/lib/active_support/core_ext/blank.rb +58 -0
  1709. data/vendor/rails/activesupport/lib/active_support/core_ext/cgi.rb +5 -0
  1710. data/vendor/rails/activesupport/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb +23 -0
  1711. data/vendor/rails/activesupport/lib/active_support/core_ext/class.rb +4 -0
  1712. data/vendor/rails/activesupport/lib/active_support/core_ext/class/attribute_accessors.rb +54 -0
  1713. data/vendor/rails/activesupport/lib/active_support/core_ext/class/delegating_attributes.rb +47 -0
  1714. data/vendor/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb +140 -0
  1715. data/vendor/rails/activesupport/lib/active_support/core_ext/class/removal.rb +50 -0
  1716. data/vendor/rails/activesupport/lib/active_support/core_ext/date.rb +10 -0
  1717. data/vendor/rails/activesupport/lib/active_support/core_ext/date/behavior.rb +42 -0
  1718. data/vendor/rails/activesupport/lib/active_support/core_ext/date/calculations.rb +231 -0
  1719. data/vendor/rails/activesupport/lib/active_support/core_ext/date/conversions.rb +107 -0
  1720. data/vendor/rails/activesupport/lib/active_support/core_ext/date_time.rb +12 -0
  1721. data/vendor/rails/activesupport/lib/active_support/core_ext/date_time/calculations.rb +126 -0
  1722. data/vendor/rails/activesupport/lib/active_support/core_ext/date_time/conversions.rb +96 -0
  1723. data/vendor/rails/activesupport/lib/active_support/core_ext/duplicable.rb +43 -0
  1724. data/vendor/rails/activesupport/lib/active_support/core_ext/enumerable.rb +114 -0
  1725. data/vendor/rails/activesupport/lib/active_support/core_ext/exception.rb +45 -0
  1726. data/vendor/rails/activesupport/lib/active_support/core_ext/file.rb +5 -0
  1727. data/vendor/rails/activesupport/lib/active_support/core_ext/file/atomic.rb +46 -0
  1728. data/vendor/rails/activesupport/lib/active_support/core_ext/float.rb +7 -0
  1729. data/vendor/rails/activesupport/lib/active_support/core_ext/float/rounding.rb +24 -0
  1730. data/vendor/rails/activesupport/lib/active_support/core_ext/float/time.rb +27 -0
  1731. data/vendor/rails/activesupport/lib/active_support/core_ext/hash.rb +14 -0
  1732. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/conversions.rb +247 -0
  1733. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/deep_merge.rb +23 -0
  1734. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/diff.rb +19 -0
  1735. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/except.rb +25 -0
  1736. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb +143 -0
  1737. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/keys.rb +52 -0
  1738. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/reverse_merge.rb +35 -0
  1739. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/slice.rb +40 -0
  1740. data/vendor/rails/activesupport/lib/active_support/core_ext/integer.rb +9 -0
  1741. data/vendor/rails/activesupport/lib/active_support/core_ext/integer/even_odd.rb +29 -0
  1742. data/vendor/rails/activesupport/lib/active_support/core_ext/integer/inflections.rb +20 -0
  1743. data/vendor/rails/activesupport/lib/active_support/core_ext/integer/time.rb +45 -0
  1744. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel.rb +5 -0
  1745. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/agnostics.rb +11 -0
  1746. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/daemonizing.rb +7 -0
  1747. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/debugger.rb +15 -0
  1748. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/reporting.rb +59 -0
  1749. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/requires.rb +24 -0
  1750. data/vendor/rails/activesupport/lib/active_support/core_ext/load_error.rb +38 -0
  1751. data/vendor/rails/activesupport/lib/active_support/core_ext/logger.rb +145 -0
  1752. data/vendor/rails/activesupport/lib/active_support/core_ext/module.rb +23 -0
  1753. data/vendor/rails/activesupport/lib/active_support/core_ext/module/aliasing.rb +74 -0
  1754. data/vendor/rails/activesupport/lib/active_support/core_ext/module/attr_accessor_with_default.rb +31 -0
  1755. data/vendor/rails/activesupport/lib/active_support/core_ext/module/attr_internal.rb +32 -0
  1756. data/vendor/rails/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb +60 -0
  1757. data/vendor/rails/activesupport/lib/active_support/core_ext/module/delegation.rb +135 -0
  1758. data/vendor/rails/activesupport/lib/active_support/core_ext/module/inclusion.rb +30 -0
  1759. data/vendor/rails/activesupport/lib/active_support/core_ext/module/introspection.rb +90 -0
  1760. data/vendor/rails/activesupport/lib/active_support/core_ext/module/loading.rb +23 -0
  1761. data/vendor/rails/activesupport/lib/active_support/core_ext/module/model_naming.rb +25 -0
  1762. data/vendor/rails/activesupport/lib/active_support/core_ext/module/synchronization.rb +39 -0
  1763. data/vendor/rails/activesupport/lib/active_support/core_ext/name_error.rb +17 -0
  1764. data/vendor/rails/activesupport/lib/active_support/core_ext/numeric.rb +9 -0
  1765. data/vendor/rails/activesupport/lib/active_support/core_ext/numeric/bytes.rb +50 -0
  1766. data/vendor/rails/activesupport/lib/active_support/core_ext/numeric/conversions.rb +19 -0
  1767. data/vendor/rails/activesupport/lib/active_support/core_ext/numeric/time.rb +81 -0
  1768. data/vendor/rails/activesupport/lib/active_support/core_ext/object.rb +5 -0
  1769. data/vendor/rails/activesupport/lib/active_support/core_ext/object/conversions.rb +15 -0
  1770. data/vendor/rails/activesupport/lib/active_support/core_ext/object/extending.rb +80 -0
  1771. data/vendor/rails/activesupport/lib/active_support/core_ext/object/instance_variables.rb +74 -0
  1772. data/vendor/rails/activesupport/lib/active_support/core_ext/object/metaclass.rb +13 -0
  1773. data/vendor/rails/activesupport/lib/active_support/core_ext/object/misc.rb +90 -0
  1774. data/vendor/rails/activesupport/lib/active_support/core_ext/pathname.rb +7 -0
  1775. data/vendor/rails/activesupport/lib/active_support/core_ext/pathname/clean_within.rb +14 -0
  1776. data/vendor/rails/activesupport/lib/active_support/core_ext/proc.rb +12 -0
  1777. data/vendor/rails/activesupport/lib/active_support/core_ext/process.rb +1 -0
  1778. data/vendor/rails/activesupport/lib/active_support/core_ext/process/daemon.rb +25 -0
  1779. data/vendor/rails/activesupport/lib/active_support/core_ext/range.rb +11 -0
  1780. data/vendor/rails/activesupport/lib/active_support/core_ext/range/blockless_step.rb +32 -0
  1781. data/vendor/rails/activesupport/lib/active_support/core_ext/range/conversions.rb +27 -0
  1782. data/vendor/rails/activesupport/lib/active_support/core_ext/range/include_range.rb +30 -0
  1783. data/vendor/rails/activesupport/lib/active_support/core_ext/range/overlaps.rb +15 -0
  1784. data/vendor/rails/activesupport/lib/active_support/core_ext/rexml.rb +41 -0
  1785. data/vendor/rails/activesupport/lib/active_support/core_ext/string.rb +23 -0
  1786. data/vendor/rails/activesupport/lib/active_support/core_ext/string/access.rb +106 -0
  1787. data/vendor/rails/activesupport/lib/active_support/core_ext/string/behavior.rb +13 -0
  1788. data/vendor/rails/activesupport/lib/active_support/core_ext/string/bytesize.rb +5 -0
  1789. data/vendor/rails/activesupport/lib/active_support/core_ext/string/conversions.rb +28 -0
  1790. data/vendor/rails/activesupport/lib/active_support/core_ext/string/filters.rb +26 -0
  1791. data/vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb +167 -0
  1792. data/vendor/rails/activesupport/lib/active_support/core_ext/string/iterators.rb +23 -0
  1793. data/vendor/rails/activesupport/lib/active_support/core_ext/string/multibyte.rb +81 -0
  1794. data/vendor/rails/activesupport/lib/active_support/core_ext/string/starts_ends_with.rb +35 -0
  1795. data/vendor/rails/activesupport/lib/active_support/core_ext/string/xchar.rb +11 -0
  1796. data/vendor/rails/activesupport/lib/active_support/core_ext/symbol.rb +14 -0
  1797. data/vendor/rails/activesupport/lib/active_support/core_ext/time.rb +42 -0
  1798. data/vendor/rails/activesupport/lib/active_support/core_ext/time/behavior.rb +13 -0
  1799. data/vendor/rails/activesupport/lib/active_support/core_ext/time/calculations.rb +303 -0
  1800. data/vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb +90 -0
  1801. data/vendor/rails/activesupport/lib/active_support/core_ext/time/zones.rb +86 -0
  1802. data/vendor/rails/activesupport/lib/active_support/core_ext/try.rb +36 -0
  1803. data/vendor/rails/activesupport/lib/active_support/core_ext/uri.rb +16 -0
  1804. data/vendor/rails/activesupport/lib/active_support/dependencies.rb +625 -0
  1805. data/vendor/rails/activesupport/lib/active_support/deprecation.rb +196 -0
  1806. data/vendor/rails/activesupport/lib/active_support/duration.rb +100 -0
  1807. data/vendor/rails/activesupport/lib/active_support/gzip.rb +25 -0
  1808. data/vendor/rails/activesupport/lib/active_support/inflections.rb +56 -0
  1809. data/vendor/rails/activesupport/lib/active_support/inflector.rb +406 -0
  1810. data/vendor/rails/activesupport/lib/active_support/json.rb +2 -0
  1811. data/vendor/rails/activesupport/lib/active_support/json/backends/jsongem.rb +38 -0
  1812. data/vendor/rails/activesupport/lib/active_support/json/backends/yaml.rb +88 -0
  1813. data/vendor/rails/activesupport/lib/active_support/json/decoding.rb +33 -0
  1814. data/vendor/rails/activesupport/lib/active_support/json/encoders/date.rb +22 -0
  1815. data/vendor/rails/activesupport/lib/active_support/json/encoders/date_time.rb +22 -0
  1816. data/vendor/rails/activesupport/lib/active_support/json/encoders/enumerable.rb +17 -0
  1817. data/vendor/rails/activesupport/lib/active_support/json/encoders/false_class.rb +7 -0
  1818. data/vendor/rails/activesupport/lib/active_support/json/encoders/hash.rb +56 -0
  1819. data/vendor/rails/activesupport/lib/active_support/json/encoders/nil_class.rb +7 -0
  1820. data/vendor/rails/activesupport/lib/active_support/json/encoders/numeric.rb +21 -0
  1821. data/vendor/rails/activesupport/lib/active_support/json/encoders/object.rb +10 -0
  1822. data/vendor/rails/activesupport/lib/active_support/json/encoders/regexp.rb +9 -0
  1823. data/vendor/rails/activesupport/lib/active_support/json/encoders/string.rb +9 -0
  1824. data/vendor/rails/activesupport/lib/active_support/json/encoders/symbol.rb +5 -0
  1825. data/vendor/rails/activesupport/lib/active_support/json/encoders/time.rb +22 -0
  1826. data/vendor/rails/activesupport/lib/active_support/json/encoders/true_class.rb +7 -0
  1827. data/vendor/rails/activesupport/lib/active_support/json/encoding.rb +102 -0
  1828. data/vendor/rails/activesupport/lib/active_support/json/variable.rb +10 -0
  1829. data/vendor/rails/activesupport/lib/active_support/locale/en.yml +33 -0
  1830. data/vendor/rails/activesupport/lib/active_support/memoizable.rb +100 -0
  1831. data/vendor/rails/activesupport/lib/active_support/message_encryptor.rb +70 -0
  1832. data/vendor/rails/activesupport/lib/active_support/message_verifier.rb +59 -0
  1833. data/vendor/rails/activesupport/lib/active_support/multibyte.rb +57 -0
  1834. data/vendor/rails/activesupport/lib/active_support/multibyte/chars.rb +707 -0
  1835. data/vendor/rails/activesupport/lib/active_support/multibyte/exceptions.rb +8 -0
  1836. data/vendor/rails/activesupport/lib/active_support/multibyte/unicode_database.rb +71 -0
  1837. data/vendor/rails/activesupport/lib/active_support/multibyte/utils.rb +61 -0
  1838. data/vendor/rails/activesupport/lib/active_support/option_merger.rb +23 -0
  1839. data/vendor/rails/activesupport/lib/active_support/ordered_hash.rb +134 -0
  1840. data/vendor/rails/activesupport/lib/active_support/ordered_options.rb +19 -0
  1841. data/vendor/rails/activesupport/lib/active_support/rescuable.rb +108 -0
  1842. data/vendor/rails/activesupport/lib/active_support/secure_random.rb +199 -0
  1843. data/vendor/rails/activesupport/lib/active_support/string_inquirer.rb +21 -0
  1844. data/vendor/rails/activesupport/lib/active_support/test_case.rb +40 -0
  1845. data/vendor/rails/activesupport/lib/active_support/testing/assertions.rb +65 -0
  1846. data/vendor/rails/activesupport/lib/active_support/testing/declarative.rb +21 -0
  1847. data/vendor/rails/activesupport/lib/active_support/testing/default.rb +9 -0
  1848. data/vendor/rails/activesupport/lib/active_support/testing/deprecation.rb +57 -0
  1849. data/vendor/rails/activesupport/lib/active_support/testing/performance.rb +452 -0
  1850. data/vendor/rails/activesupport/lib/active_support/testing/setup_and_teardown.rb +91 -0
  1851. data/vendor/rails/activesupport/lib/active_support/time_with_zone.rb +335 -0
  1852. data/vendor/rails/activesupport/lib/active_support/values/time_zone.rb +404 -0
  1853. data/vendor/rails/activesupport/lib/active_support/values/unicode_tables.dat +0 -0
  1854. data/vendor/rails/activesupport/lib/active_support/vendor.rb +28 -0
  1855. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/blankslate.rb +113 -0
  1856. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder.rb +13 -0
  1857. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/blankslate.rb +20 -0
  1858. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/css.rb +250 -0
  1859. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xchar.rb +115 -0
  1860. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlbase.rb +139 -0
  1861. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlevents.rb +63 -0
  1862. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlmarkup.rb +328 -0
  1863. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/MIT-LICENSE +20 -0
  1864. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/README.textile +20 -0
  1865. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/Rakefile +5 -0
  1866. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/i18n.gemspec +27 -0
  1867. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/lib/i18n.rb +199 -0
  1868. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/lib/i18n/backend/simple.rb +214 -0
  1869. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/lib/i18n/exceptions.rb +53 -0
  1870. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/all.rb +5 -0
  1871. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/i18n_exceptions_test.rb +99 -0
  1872. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/i18n_test.rb +124 -0
  1873. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/locale/en.rb +1 -0
  1874. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/locale/en.yml +3 -0
  1875. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/simple_backend_test.rb +567 -0
  1876. data/vendor/rails/activesupport/lib/active_support/vendor/memcache-client-1.7.4/memcache.rb +1107 -0
  1877. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo.rb +33 -0
  1878. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/data_timezone.rb +47 -0
  1879. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/data_timezone_info.rb +228 -0
  1880. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Algiers.rb +55 -0
  1881. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Cairo.rb +219 -0
  1882. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Casablanca.rb +40 -0
  1883. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Harare.rb +18 -0
  1884. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Johannesburg.rb +25 -0
  1885. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Monrovia.rb +22 -0
  1886. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Nairobi.rb +23 -0
  1887. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/Buenos_Aires.rb +166 -0
  1888. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/San_Juan.rb +86 -0
  1889. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Bogota.rb +23 -0
  1890. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Caracas.rb +23 -0
  1891. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Chicago.rb +283 -0
  1892. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Chihuahua.rb +136 -0
  1893. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Denver.rb +204 -0
  1894. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Godthab.rb +161 -0
  1895. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Guatemala.rb +27 -0
  1896. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Halifax.rb +274 -0
  1897. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Indiana/Indianapolis.rb +149 -0
  1898. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Juneau.rb +194 -0
  1899. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/La_Paz.rb +22 -0
  1900. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Lima.rb +35 -0
  1901. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Los_Angeles.rb +232 -0
  1902. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Mazatlan.rb +139 -0
  1903. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Mexico_City.rb +144 -0
  1904. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Monterrey.rb +131 -0
  1905. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/New_York.rb +282 -0
  1906. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Phoenix.rb +30 -0
  1907. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Regina.rb +74 -0
  1908. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Santiago.rb +205 -0
  1909. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Sao_Paulo.rb +171 -0
  1910. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/St_Johns.rb +288 -0
  1911. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Tijuana.rb +196 -0
  1912. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Almaty.rb +67 -0
  1913. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Baghdad.rb +73 -0
  1914. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Baku.rb +161 -0
  1915. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Bangkok.rb +20 -0
  1916. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Chongqing.rb +33 -0
  1917. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Colombo.rb +30 -0
  1918. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Dhaka.rb +27 -0
  1919. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Hong_Kong.rb +87 -0
  1920. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Irkutsk.rb +165 -0
  1921. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Jakarta.rb +30 -0
  1922. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Jerusalem.rb +163 -0
  1923. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kabul.rb +20 -0
  1924. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kamchatka.rb +163 -0
  1925. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Karachi.rb +30 -0
  1926. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Katmandu.rb +20 -0
  1927. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kolkata.rb +25 -0
  1928. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Krasnoyarsk.rb +163 -0
  1929. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kuala_Lumpur.rb +31 -0
  1930. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kuwait.rb +18 -0
  1931. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Magadan.rb +163 -0
  1932. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Muscat.rb +18 -0
  1933. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Novosibirsk.rb +164 -0
  1934. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Rangoon.rb +24 -0
  1935. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Riyadh.rb +18 -0
  1936. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Seoul.rb +34 -0
  1937. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Shanghai.rb +35 -0
  1938. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Singapore.rb +33 -0
  1939. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Taipei.rb +59 -0
  1940. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tashkent.rb +47 -0
  1941. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tbilisi.rb +78 -0
  1942. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tehran.rb +121 -0
  1943. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tokyo.rb +30 -0
  1944. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Ulaanbaatar.rb +65 -0
  1945. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Urumqi.rb +33 -0
  1946. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Vladivostok.rb +164 -0
  1947. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yakutsk.rb +163 -0
  1948. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yekaterinburg.rb +165 -0
  1949. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yerevan.rb +165 -0
  1950. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/Azores.rb +270 -0
  1951. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/Cape_Verde.rb +23 -0
  1952. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/South_Georgia.rb +18 -0
  1953. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Adelaide.rb +187 -0
  1954. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Brisbane.rb +35 -0
  1955. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Darwin.rb +29 -0
  1956. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Hobart.rb +193 -0
  1957. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Melbourne.rb +185 -0
  1958. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Perth.rb +37 -0
  1959. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Sydney.rb +185 -0
  1960. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Etc/UTC.rb +16 -0
  1961. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Amsterdam.rb +228 -0
  1962. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Athens.rb +185 -0
  1963. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Belgrade.rb +163 -0
  1964. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Berlin.rb +188 -0
  1965. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Bratislava.rb +13 -0
  1966. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Brussels.rb +232 -0
  1967. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Bucharest.rb +181 -0
  1968. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Budapest.rb +197 -0
  1969. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Copenhagen.rb +179 -0
  1970. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Dublin.rb +276 -0
  1971. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Helsinki.rb +163 -0
  1972. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Istanbul.rb +218 -0
  1973. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Kiev.rb +168 -0
  1974. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Lisbon.rb +268 -0
  1975. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Ljubljana.rb +13 -0
  1976. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/London.rb +288 -0
  1977. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Madrid.rb +211 -0
  1978. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Minsk.rb +170 -0
  1979. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Moscow.rb +181 -0
  1980. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Paris.rb +232 -0
  1981. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Prague.rb +187 -0
  1982. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Riga.rb +176 -0
  1983. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Rome.rb +215 -0
  1984. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Sarajevo.rb +13 -0
  1985. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Skopje.rb +13 -0
  1986. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Sofia.rb +173 -0
  1987. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Stockholm.rb +165 -0
  1988. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Tallinn.rb +172 -0
  1989. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Vienna.rb +183 -0
  1990. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Vilnius.rb +170 -0
  1991. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Warsaw.rb +212 -0
  1992. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Zagreb.rb +13 -0
  1993. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Auckland.rb +202 -0
  1994. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Fiji.rb +23 -0
  1995. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Guam.rb +22 -0
  1996. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Honolulu.rb +28 -0
  1997. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Majuro.rb +20 -0
  1998. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Midway.rb +25 -0
  1999. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Noumea.rb +25 -0
  2000. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Pago_Pago.rb +26 -0
  2001. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Port_Moresby.rb +20 -0
  2002. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Tongatapu.rb +27 -0
  2003. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/info_timezone.rb +52 -0
  2004. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/linked_timezone.rb +51 -0
  2005. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/linked_timezone_info.rb +44 -0
  2006. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/offset_rationals.rb +98 -0
  2007. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/ruby_core_support.rb +56 -0
  2008. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/time_or_datetime.rb +292 -0
  2009. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone.rb +508 -0
  2010. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_definition.rb +56 -0
  2011. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_info.rb +40 -0
  2012. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_offset_info.rb +94 -0
  2013. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_period.rb +198 -0
  2014. data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_transition_info.rb +129 -0
  2015. data/vendor/rails/activesupport/lib/active_support/version.rb +9 -0
  2016. data/vendor/rails/activesupport/lib/active_support/whiny_nil.rb +58 -0
  2017. data/vendor/rails/activesupport/lib/active_support/xml_mini.rb +31 -0
  2018. data/vendor/rails/activesupport/lib/active_support/xml_mini/jdom.rb +162 -0
  2019. data/vendor/rails/activesupport/lib/active_support/xml_mini/libxml.rb +133 -0
  2020. data/vendor/rails/activesupport/lib/active_support/xml_mini/nokogiri.rb +77 -0
  2021. data/vendor/rails/activesupport/lib/active_support/xml_mini/rexml.rb +108 -0
  2022. data/vendor/rails/activesupport/lib/activesupport.rb +1 -0
  2023. data/vendor/rails/railties/CHANGELOG +2166 -0
  2024. data/vendor/rails/railties/MIT-LICENSE +20 -0
  2025. data/vendor/rails/railties/README +243 -0
  2026. data/vendor/rails/railties/Rakefile +368 -0
  2027. data/vendor/rails/railties/bin/about +4 -0
  2028. data/vendor/rails/railties/bin/console +3 -0
  2029. data/vendor/rails/railties/bin/dbconsole +3 -0
  2030. data/vendor/rails/railties/bin/destroy +3 -0
  2031. data/vendor/rails/railties/bin/generate +3 -0
  2032. data/vendor/rails/railties/bin/performance/benchmarker +3 -0
  2033. data/vendor/rails/railties/bin/performance/profiler +3 -0
  2034. data/vendor/rails/railties/bin/plugin +3 -0
  2035. data/vendor/rails/railties/bin/rails +20 -0
  2036. data/vendor/rails/railties/bin/runner +3 -0
  2037. data/vendor/rails/railties/bin/server +3 -0
  2038. data/vendor/rails/railties/builtin/rails_info/rails/info.rb +131 -0
  2039. data/vendor/rails/railties/builtin/rails_info/rails/info_controller.rb +9 -0
  2040. data/vendor/rails/railties/builtin/rails_info/rails/info_helper.rb +2 -0
  2041. data/vendor/rails/railties/builtin/rails_info/rails_info_controller.rb +2 -0
  2042. data/vendor/rails/railties/configs/databases/frontbase.yml +28 -0
  2043. data/vendor/rails/railties/configs/databases/ibm_db.yml +62 -0
  2044. data/vendor/rails/railties/configs/databases/mysql.yml +60 -0
  2045. data/vendor/rails/railties/configs/databases/oracle.yml +39 -0
  2046. data/vendor/rails/railties/configs/databases/postgresql.yml +51 -0
  2047. data/vendor/rails/railties/configs/databases/sqlite2.yml +19 -0
  2048. data/vendor/rails/railties/configs/databases/sqlite3.yml +22 -0
  2049. data/vendor/rails/railties/configs/empty.log +0 -0
  2050. data/vendor/rails/railties/configs/initializers/backtrace_silencers.rb +7 -0
  2051. data/vendor/rails/railties/configs/initializers/inflections.rb +10 -0
  2052. data/vendor/rails/railties/configs/initializers/mime_types.rb +5 -0
  2053. data/vendor/rails/railties/configs/initializers/new_rails_defaults.rb +21 -0
  2054. data/vendor/rails/railties/configs/initializers/session_store.rb +15 -0
  2055. data/vendor/rails/railties/configs/locales/en.yml +5 -0
  2056. data/vendor/rails/railties/configs/routes.rb +43 -0
  2057. data/vendor/rails/railties/configs/seeds.rb +7 -0
  2058. data/vendor/rails/railties/dispatches/config.ru +7 -0
  2059. data/vendor/rails/railties/dispatches/dispatch.fcgi +24 -0
  2060. data/vendor/rails/railties/dispatches/dispatch.rb +10 -0
  2061. data/vendor/rails/railties/dispatches/gateway.cgi +97 -0
  2062. data/vendor/rails/railties/doc/README_FOR_APP +2 -0
  2063. data/vendor/rails/railties/environments/boot.rb +110 -0
  2064. data/vendor/rails/railties/environments/development.rb +17 -0
  2065. data/vendor/rails/railties/environments/environment.rb +41 -0
  2066. data/vendor/rails/railties/environments/production.rb +28 -0
  2067. data/vendor/rails/railties/environments/test.rb +28 -0
  2068. data/vendor/rails/railties/fresh_rakefile +10 -0
  2069. data/vendor/rails/railties/guides/files/javascripts/code_highlighter.js +188 -0
  2070. data/vendor/rails/railties/guides/files/javascripts/guides.js +8 -0
  2071. data/vendor/rails/railties/guides/files/javascripts/highlighters.js +90 -0
  2072. data/vendor/rails/railties/guides/files/stylesheets/main.css +441 -0
  2073. data/vendor/rails/railties/guides/files/stylesheets/print.css +52 -0
  2074. data/vendor/rails/railties/guides/files/stylesheets/reset.css +43 -0
  2075. data/vendor/rails/railties/guides/files/stylesheets/style.css +13 -0
  2076. data/vendor/rails/railties/guides/files/stylesheets/syntax.css +31 -0
  2077. data/vendor/rails/railties/guides/images/belongs_to.png +0 -0
  2078. data/vendor/rails/railties/guides/images/book_icon.gif +0 -0
  2079. data/vendor/rails/railties/guides/images/bullet.gif +0 -0
  2080. data/vendor/rails/railties/guides/images/chapters_icon.gif +0 -0
  2081. data/vendor/rails/railties/guides/images/check_bullet.gif +0 -0
  2082. data/vendor/rails/railties/guides/images/credits_pic_blank.gif +0 -0
  2083. data/vendor/rails/railties/guides/images/csrf.png +0 -0
  2084. data/vendor/rails/railties/guides/images/customized_error_messages.png +0 -0
  2085. data/vendor/rails/railties/guides/images/error_messages.png +0 -0
  2086. data/vendor/rails/railties/guides/images/feature_tile.gif +0 -0
  2087. data/vendor/rails/railties/guides/images/footer_tile.gif +0 -0
  2088. data/vendor/rails/railties/guides/images/fxn.jpg +0 -0
  2089. data/vendor/rails/railties/guides/images/grey_bullet.gif +0 -0
  2090. data/vendor/rails/railties/guides/images/habtm.png +0 -0
  2091. data/vendor/rails/railties/guides/images/has_many.png +0 -0
  2092. data/vendor/rails/railties/guides/images/has_many_through.png +0 -0
  2093. data/vendor/rails/railties/guides/images/has_one.png +0 -0
  2094. data/vendor/rails/railties/guides/images/has_one_through.png +0 -0
  2095. data/vendor/rails/railties/guides/images/header_backdrop.png +0 -0
  2096. data/vendor/rails/railties/guides/images/header_tile.gif +0 -0
  2097. data/vendor/rails/railties/guides/images/i18n/demo_localized_pirate.png +0 -0
  2098. data/vendor/rails/railties/guides/images/i18n/demo_translated_en.png +0 -0
  2099. data/vendor/rails/railties/guides/images/i18n/demo_translated_pirate.png +0 -0
  2100. data/vendor/rails/railties/guides/images/i18n/demo_translation_missing.png +0 -0
  2101. data/vendor/rails/railties/guides/images/i18n/demo_untranslated.png +0 -0
  2102. data/vendor/rails/railties/guides/images/icons/README +5 -0
  2103. data/vendor/rails/railties/guides/images/icons/callouts/1.png +0 -0
  2104. data/vendor/rails/railties/guides/images/icons/callouts/10.png +0 -0
  2105. data/vendor/rails/railties/guides/images/icons/callouts/11.png +0 -0
  2106. data/vendor/rails/railties/guides/images/icons/callouts/12.png +0 -0
  2107. data/vendor/rails/railties/guides/images/icons/callouts/13.png +0 -0
  2108. data/vendor/rails/railties/guides/images/icons/callouts/14.png +0 -0
  2109. data/vendor/rails/railties/guides/images/icons/callouts/15.png +0 -0
  2110. data/vendor/rails/railties/guides/images/icons/callouts/2.png +0 -0
  2111. data/vendor/rails/railties/guides/images/icons/callouts/3.png +0 -0
  2112. data/vendor/rails/railties/guides/images/icons/callouts/4.png +0 -0
  2113. data/vendor/rails/railties/guides/images/icons/callouts/5.png +0 -0
  2114. data/vendor/rails/railties/guides/images/icons/callouts/6.png +0 -0
  2115. data/vendor/rails/railties/guides/images/icons/callouts/7.png +0 -0
  2116. data/vendor/rails/railties/guides/images/icons/callouts/8.png +0 -0
  2117. data/vendor/rails/railties/guides/images/icons/callouts/9.png +0 -0
  2118. data/vendor/rails/railties/guides/images/icons/caution.png +0 -0
  2119. data/vendor/rails/railties/guides/images/icons/example.png +0 -0
  2120. data/vendor/rails/railties/guides/images/icons/home.png +0 -0
  2121. data/vendor/rails/railties/guides/images/icons/important.png +0 -0
  2122. data/vendor/rails/railties/guides/images/icons/next.png +0 -0
  2123. data/vendor/rails/railties/guides/images/icons/note.png +0 -0
  2124. data/vendor/rails/railties/guides/images/icons/prev.png +0 -0
  2125. data/vendor/rails/railties/guides/images/icons/tip.png +0 -0
  2126. data/vendor/rails/railties/guides/images/icons/up.png +0 -0
  2127. data/vendor/rails/railties/guides/images/icons/warning.png +0 -0
  2128. data/vendor/rails/railties/guides/images/nav_arrow.gif +0 -0
  2129. data/vendor/rails/railties/guides/images/polymorphic.png +0 -0
  2130. data/vendor/rails/railties/guides/images/posts_index.png +0 -0
  2131. data/vendor/rails/railties/guides/images/rails_guides_logo.gif +0 -0
  2132. data/vendor/rails/railties/guides/images/rails_logo_remix.gif +0 -0
  2133. data/vendor/rails/railties/guides/images/rails_welcome.png +0 -0
  2134. data/vendor/rails/railties/guides/images/session_fixation.png +0 -0
  2135. data/vendor/rails/railties/guides/images/tab_grey.gif +0 -0
  2136. data/vendor/rails/railties/guides/images/tab_info.gif +0 -0
  2137. data/vendor/rails/railties/guides/images/tab_note.gif +0 -0
  2138. data/vendor/rails/railties/guides/images/tab_red.gif +0 -0
  2139. data/vendor/rails/railties/guides/images/tab_yellow.gif +0 -0
  2140. data/vendor/rails/railties/guides/images/tab_yellow.png +0 -0
  2141. data/vendor/rails/railties/guides/images/validation_error_messages.png +0 -0
  2142. data/vendor/rails/railties/guides/rails_guides.rb +42 -0
  2143. data/vendor/rails/railties/guides/rails_guides/generator.rb +138 -0
  2144. data/vendor/rails/railties/guides/rails_guides/helpers.rb +34 -0
  2145. data/vendor/rails/railties/guides/rails_guides/indexer.rb +55 -0
  2146. data/vendor/rails/railties/guides/rails_guides/textile_extensions.rb +41 -0
  2147. data/vendor/rails/railties/guides/source/2_2_release_notes.textile +422 -0
  2148. data/vendor/rails/railties/guides/source/2_3_release_notes.textile +610 -0
  2149. data/vendor/rails/railties/guides/source/action_controller_overview.textile +776 -0
  2150. data/vendor/rails/railties/guides/source/action_mailer_basics.textile +424 -0
  2151. data/vendor/rails/railties/guides/source/active_record_basics.textile +135 -0
  2152. data/vendor/rails/railties/guides/source/active_record_querying.textile +969 -0
  2153. data/vendor/rails/railties/guides/source/activerecord_validations_callbacks.textile +1086 -0
  2154. data/vendor/rails/railties/guides/source/association_basics.textile +1781 -0
  2155. data/vendor/rails/railties/guides/source/caching_with_rails.textile +524 -0
  2156. data/vendor/rails/railties/guides/source/command_line.textile +589 -0
  2157. data/vendor/rails/railties/guides/source/configuring.textile +234 -0
  2158. data/vendor/rails/railties/guides/source/contribute.textile +71 -0
  2159. data/vendor/rails/railties/guides/source/contributing_to_rails.textile +239 -0
  2160. data/vendor/rails/railties/guides/source/credits.erb.textile +52 -0
  2161. data/vendor/rails/railties/guides/source/debugging_rails_applications.textile +709 -0
  2162. data/vendor/rails/railties/guides/source/form_helpers.textile +766 -0
  2163. data/vendor/rails/railties/guides/source/getting_started.textile +1297 -0
  2164. data/vendor/rails/railties/guides/source/i18n.textile +912 -0
  2165. data/vendor/rails/railties/guides/source/index.erb.textile +124 -0
  2166. data/vendor/rails/railties/guides/source/layout.html.erb +103 -0
  2167. data/vendor/rails/railties/guides/source/layouts_and_rendering.textile +979 -0
  2168. data/vendor/rails/railties/guides/source/migrations.textile +591 -0
  2169. data/vendor/rails/railties/guides/source/nested_model_forms.textile +222 -0
  2170. data/vendor/rails/railties/guides/source/performance_testing.textile +531 -0
  2171. data/vendor/rails/railties/guides/source/plugins.textile +1512 -0
  2172. data/vendor/rails/railties/guides/source/rails_on_rack.textile +309 -0
  2173. data/vendor/rails/railties/guides/source/routing.textile +903 -0
  2174. data/vendor/rails/railties/guides/source/security.textile +986 -0
  2175. data/vendor/rails/railties/guides/source/testing.textile +951 -0
  2176. data/vendor/rails/railties/helpers/application_controller.rb +10 -0
  2177. data/vendor/rails/railties/helpers/application_helper.rb +3 -0
  2178. data/vendor/rails/railties/helpers/performance_test.rb +9 -0
  2179. data/vendor/rails/railties/helpers/test_helper.rb +38 -0
  2180. data/vendor/rails/railties/html/404.html +30 -0
  2181. data/vendor/rails/railties/html/422.html +30 -0
  2182. data/vendor/rails/railties/html/500.html +30 -0
  2183. data/vendor/rails/railties/html/favicon.ico +0 -0
  2184. data/vendor/rails/railties/html/images/rails.png +0 -0
  2185. data/vendor/rails/railties/html/index.html +275 -0
  2186. data/vendor/rails/railties/html/javascripts/application.js +2 -0
  2187. data/vendor/rails/railties/html/javascripts/controls.js +963 -0
  2188. data/vendor/rails/railties/html/javascripts/dragdrop.js +973 -0
  2189. data/vendor/rails/railties/html/javascripts/effects.js +1128 -0
  2190. data/vendor/rails/railties/html/javascripts/prototype.js +4320 -0
  2191. data/vendor/rails/railties/html/robots.txt +5 -0
  2192. data/vendor/rails/railties/lib/code_statistics.rb +107 -0
  2193. data/vendor/rails/railties/lib/commands.rb +17 -0
  2194. data/vendor/rails/railties/lib/commands/about.rb +3 -0
  2195. data/vendor/rails/railties/lib/commands/console.rb +45 -0
  2196. data/vendor/rails/railties/lib/commands/dbconsole.rb +87 -0
  2197. data/vendor/rails/railties/lib/commands/destroy.rb +6 -0
  2198. data/vendor/rails/railties/lib/commands/generate.rb +6 -0
  2199. data/vendor/rails/railties/lib/commands/ncgi/listener +86 -0
  2200. data/vendor/rails/railties/lib/commands/ncgi/tracker +69 -0
  2201. data/vendor/rails/railties/lib/commands/performance/benchmarker.rb +24 -0
  2202. data/vendor/rails/railties/lib/commands/performance/profiler.rb +50 -0
  2203. data/vendor/rails/railties/lib/commands/plugin.rb +968 -0
  2204. data/vendor/rails/railties/lib/commands/runner.rb +54 -0
  2205. data/vendor/rails/railties/lib/commands/server.rb +114 -0
  2206. data/vendor/rails/railties/lib/commands/update.rb +4 -0
  2207. data/vendor/rails/railties/lib/console_app.rb +30 -0
  2208. data/vendor/rails/railties/lib/console_sandbox.rb +6 -0
  2209. data/vendor/rails/railties/lib/console_with_helpers.rb +5 -0
  2210. data/vendor/rails/railties/lib/dispatcher.rb +24 -0
  2211. data/vendor/rails/railties/lib/fcgi_handler.rb +239 -0
  2212. data/vendor/rails/railties/lib/initializer.rb +1128 -0
  2213. data/vendor/rails/railties/lib/performance_test_help.rb +5 -0
  2214. data/vendor/rails/railties/lib/rails/backtrace_cleaner.rb +54 -0
  2215. data/vendor/rails/railties/lib/rails/gem_builder.rb +21 -0
  2216. data/vendor/rails/railties/lib/rails/gem_dependency.rb +311 -0
  2217. data/vendor/rails/railties/lib/rails/plugin.rb +179 -0
  2218. data/vendor/rails/railties/lib/rails/plugin/loader.rb +198 -0
  2219. data/vendor/rails/railties/lib/rails/plugin/locator.rb +100 -0
  2220. data/vendor/rails/railties/lib/rails/rack.rb +8 -0
  2221. data/vendor/rails/railties/lib/rails/rack/debugger.rb +21 -0
  2222. data/vendor/rails/railties/lib/rails/rack/log_tailer.rb +35 -0
  2223. data/vendor/rails/railties/lib/rails/rack/metal.rb +51 -0
  2224. data/vendor/rails/railties/lib/rails/rack/static.rb +46 -0
  2225. data/vendor/rails/railties/lib/rails/vendor_gem_source_index.rb +140 -0
  2226. data/vendor/rails/railties/lib/rails/version.rb +9 -0
  2227. data/vendor/rails/railties/lib/rails_generator.rb +43 -0
  2228. data/vendor/rails/railties/lib/rails_generator/base.rb +266 -0
  2229. data/vendor/rails/railties/lib/rails_generator/commands.rb +621 -0
  2230. data/vendor/rails/railties/lib/rails_generator/generated_attribute.rb +46 -0
  2231. data/vendor/rails/railties/lib/rails_generator/generators/applications/app/USAGE +9 -0
  2232. data/vendor/rails/railties/lib/rails_generator/generators/applications/app/app_generator.rb +263 -0
  2233. data/vendor/rails/railties/lib/rails_generator/generators/applications/app/scm/scm.rb +8 -0
  2234. data/vendor/rails/railties/lib/rails_generator/generators/applications/app/scm/svn.rb +7 -0
  2235. data/vendor/rails/railties/lib/rails_generator/generators/applications/app/template_runner.rb +401 -0
  2236. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/USAGE +30 -0
  2237. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/controller_generator.rb +43 -0
  2238. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/controller.rb +7 -0
  2239. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/functional_test.rb +8 -0
  2240. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/helper.rb +2 -0
  2241. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/helper_test.rb +4 -0
  2242. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/view.html.erb +2 -0
  2243. data/vendor/rails/railties/lib/rails_generator/generators/components/helper/USAGE +24 -0
  2244. data/vendor/rails/railties/lib/rails_generator/generators/components/helper/helper_generator.rb +25 -0
  2245. data/vendor/rails/railties/lib/rails_generator/generators/components/helper/templates/helper.rb +2 -0
  2246. data/vendor/rails/railties/lib/rails_generator/generators/components/helper/templates/helper_test.rb +4 -0
  2247. data/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/USAGE +8 -0
  2248. data/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/integration_test_generator.rb +16 -0
  2249. data/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/templates/integration_test.rb +10 -0
  2250. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/USAGE +16 -0
  2251. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/mailer_generator.rb +30 -0
  2252. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/fixture.erb +3 -0
  2253. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/fixture.rhtml +0 -0
  2254. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/mailer.rb +15 -0
  2255. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/unit_test.rb +20 -0
  2256. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/view.erb +3 -0
  2257. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/view.rhtml +0 -0
  2258. data/vendor/rails/railties/lib/rails_generator/generators/components/metal/USAGE +8 -0
  2259. data/vendor/rails/railties/lib/rails_generator/generators/components/metal/metal_generator.rb +8 -0
  2260. data/vendor/rails/railties/lib/rails_generator/generators/components/metal/templates/metal.rb +12 -0
  2261. data/vendor/rails/railties/lib/rails_generator/generators/components/migration/USAGE +29 -0
  2262. data/vendor/rails/railties/lib/rails_generator/generators/components/migration/migration_generator.rb +20 -0
  2263. data/vendor/rails/railties/lib/rails_generator/generators/components/migration/templates/migration.rb +11 -0
  2264. data/vendor/rails/railties/lib/rails_generator/generators/components/model/USAGE +27 -0
  2265. data/vendor/rails/railties/lib/rails_generator/generators/components/model/model_generator.rb +52 -0
  2266. data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/fixtures.yml +19 -0
  2267. data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/migration.rb +16 -0
  2268. data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/model.rb +5 -0
  2269. data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/unit_test.rb +8 -0
  2270. data/vendor/rails/railties/lib/rails_generator/generators/components/observer/USAGE +13 -0
  2271. data/vendor/rails/railties/lib/rails_generator/generators/components/observer/observer_generator.rb +16 -0
  2272. data/vendor/rails/railties/lib/rails_generator/generators/components/observer/templates/observer.rb +2 -0
  2273. data/vendor/rails/railties/lib/rails_generator/generators/components/observer/templates/unit_test.rb +8 -0
  2274. data/vendor/rails/railties/lib/rails_generator/generators/components/performance_test/USAGE +8 -0
  2275. data/vendor/rails/railties/lib/rails_generator/generators/components/performance_test/performance_test_generator.rb +16 -0
  2276. data/vendor/rails/railties/lib/rails_generator/generators/components/performance_test/templates/performance_test.rb +9 -0
  2277. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/USAGE +25 -0
  2278. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/plugin_generator.rb +39 -0
  2279. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/MIT-LICENSE +20 -0
  2280. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/README +13 -0
  2281. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/Rakefile +23 -0
  2282. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/USAGE +8 -0
  2283. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/generator.rb +8 -0
  2284. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/init.rb +1 -0
  2285. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/install.rb +1 -0
  2286. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/plugin.rb +1 -0
  2287. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/tasks.rake +4 -0
  2288. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/test_helper.rb +3 -0
  2289. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/uninstall.rb +1 -0
  2290. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/unit_test.rb +8 -0
  2291. data/vendor/rails/railties/lib/rails_generator/generators/components/resource/USAGE +23 -0
  2292. data/vendor/rails/railties/lib/rails_generator/generators/components/resource/resource_generator.rb +76 -0
  2293. data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/controller.rb +2 -0
  2294. data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/functional_test.rb +8 -0
  2295. data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/helper.rb +2 -0
  2296. data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/helper_test.rb +4 -0
  2297. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/USAGE +29 -0
  2298. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/scaffold_generator.rb +103 -0
  2299. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/controller.rb +85 -0
  2300. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/functional_test.rb +45 -0
  2301. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/helper.rb +2 -0
  2302. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/helper_test.rb +4 -0
  2303. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/layout.html.erb +17 -0
  2304. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/style.css +54 -0
  2305. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_edit.html.erb +18 -0
  2306. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_index.html.erb +24 -0
  2307. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_new.html.erb +17 -0
  2308. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_show.html.erb +10 -0
  2309. data/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/USAGE +10 -0
  2310. data/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/session_migration_generator.rb +18 -0
  2311. data/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/templates/migration.rb +16 -0
  2312. data/vendor/rails/railties/lib/rails_generator/lookup.rb +249 -0
  2313. data/vendor/rails/railties/lib/rails_generator/manifest.rb +53 -0
  2314. data/vendor/rails/railties/lib/rails_generator/options.rb +150 -0
  2315. data/vendor/rails/railties/lib/rails_generator/scripts.rb +89 -0
  2316. data/vendor/rails/railties/lib/rails_generator/scripts/destroy.rb +29 -0
  2317. data/vendor/rails/railties/lib/rails_generator/scripts/generate.rb +7 -0
  2318. data/vendor/rails/railties/lib/rails_generator/scripts/update.rb +12 -0
  2319. data/vendor/rails/railties/lib/rails_generator/secret_key_generator.rb +24 -0
  2320. data/vendor/rails/railties/lib/rails_generator/simple_logger.rb +46 -0
  2321. data/vendor/rails/railties/lib/rails_generator/spec.rb +44 -0
  2322. data/vendor/rails/railties/lib/railties_path.rb +1 -0
  2323. data/vendor/rails/railties/lib/ruby_version_check.rb +17 -0
  2324. data/vendor/rails/railties/lib/rubyprof_ext.rb +35 -0
  2325. data/vendor/rails/railties/lib/source_annotation_extractor.rb +102 -0
  2326. data/vendor/rails/railties/lib/tasks/annotations.rake +20 -0
  2327. data/vendor/rails/railties/lib/tasks/databases.rake +436 -0
  2328. data/vendor/rails/railties/lib/tasks/documentation.rake +88 -0
  2329. data/vendor/rails/railties/lib/tasks/framework.rake +143 -0
  2330. data/vendor/rails/railties/lib/tasks/gems.rake +78 -0
  2331. data/vendor/rails/railties/lib/tasks/log.rake +9 -0
  2332. data/vendor/rails/railties/lib/tasks/middleware.rake +7 -0
  2333. data/vendor/rails/railties/lib/tasks/misc.rake +63 -0
  2334. data/vendor/rails/railties/lib/tasks/rails.rb +8 -0
  2335. data/vendor/rails/railties/lib/tasks/routes.rake +18 -0
  2336. data/vendor/rails/railties/lib/tasks/statistics.rake +17 -0
  2337. data/vendor/rails/railties/lib/tasks/testing.rake +139 -0
  2338. data/vendor/rails/railties/lib/test_help.rb +38 -0
  2339. data/vendor/rails/railties/lib/webrick_server.rb +156 -0
  2340. data/vendor/redcloth/Rakefile +196 -0
  2341. data/vendor/redcloth/bin/redcloth +3 -0
  2342. data/vendor/redcloth/doc/CHANGELOG +160 -0
  2343. data/vendor/redcloth/doc/COPYING +25 -0
  2344. data/vendor/redcloth/doc/README +106 -0
  2345. data/vendor/redcloth/doc/REFERENCE +216 -0
  2346. data/vendor/redcloth/doc/make.rb +359 -0
  2347. data/vendor/redcloth/lib/rctodb.rb +1107 -0
  2348. data/vendor/redcloth/lib/redcloth.rb +1130 -0
  2349. data/vendor/redcloth/run-tests.rb +28 -0
  2350. data/vendor/redcloth/setup.rb +1376 -0
  2351. data/vendor/redcloth/tests/code.yml +105 -0
  2352. data/vendor/redcloth/tests/images.yml +171 -0
  2353. data/vendor/redcloth/tests/instiki.yml +39 -0
  2354. data/vendor/redcloth/tests/links.yml +155 -0
  2355. data/vendor/redcloth/tests/lists.yml +77 -0
  2356. data/vendor/redcloth/tests/markdown.yml +218 -0
  2357. data/vendor/redcloth/tests/poignant.yml +64 -0
  2358. data/vendor/redcloth/tests/table.yml +198 -0
  2359. data/vendor/redcloth/tests/textism.yml +406 -0
  2360. metadata +2474 -0
@@ -0,0 +1,198 @@
1
+ require 'set'
2
+
3
+ # Adds easy defaults to writing Atom feeds with the Builder template engine (this does not work on ERb or any other
4
+ # template languages).
5
+ module ActionView
6
+ module Helpers #:nodoc:
7
+ module AtomFeedHelper
8
+ # Full usage example:
9
+ #
10
+ # config/routes.rb:
11
+ # ActionController::Routing::Routes.draw do |map|
12
+ # map.resources :posts
13
+ # map.root :controller => "posts"
14
+ # end
15
+ #
16
+ # app/controllers/posts_controller.rb:
17
+ # class PostsController < ApplicationController::Base
18
+ # # GET /posts.html
19
+ # # GET /posts.atom
20
+ # def index
21
+ # @posts = Post.find(:all)
22
+ #
23
+ # respond_to do |format|
24
+ # format.html
25
+ # format.atom
26
+ # end
27
+ # end
28
+ # end
29
+ #
30
+ # app/views/posts/index.atom.builder:
31
+ # atom_feed do |feed|
32
+ # feed.title("My great blog!")
33
+ # feed.updated(@posts.first.created_at)
34
+ #
35
+ # for post in @posts
36
+ # feed.entry(post) do |entry|
37
+ # entry.title(post.title)
38
+ # entry.content(post.body, :type => 'html')
39
+ #
40
+ # entry.author do |author|
41
+ # author.name("DHH")
42
+ # end
43
+ # end
44
+ # end
45
+ # end
46
+ #
47
+ # The options for atom_feed are:
48
+ #
49
+ # * <tt>:language</tt>: Defaults to "en-US".
50
+ # * <tt>:root_url</tt>: The HTML alternative that this feed is doubling for. Defaults to / on the current host.
51
+ # * <tt>:url</tt>: The URL for this feed. Defaults to the current URL.
52
+ # * <tt>:id</tt>: The id for this feed. Defaults to "tag:#{request.host},#{options[:schema_date]}:#{request.request_uri.split(".")[0]}"
53
+ # * <tt>:schema_date</tt>: The date at which the tag scheme for the feed was first used. A good default is the year you
54
+ # created the feed. See http://feedvalidator.org/docs/error/InvalidTAG.html for more information. If not specified,
55
+ # 2005 is used (as an "I don't care" value).
56
+ # * <tt>:instruct</tt>: Hash of XML processing instructions in the form {target => {attribute => value, }} or {target => [{attribute => value, }, ]}
57
+ #
58
+ # Other namespaces can be added to the root element:
59
+ #
60
+ # app/views/posts/index.atom.builder:
61
+ # atom_feed({'xmlns:app' => 'http://www.w3.org/2007/app',
62
+ # 'xmlns:openSearch' => 'http://a9.com/-/spec/opensearch/1.1/'}) do |feed|
63
+ # feed.title("My great blog!")
64
+ # feed.updated((@posts.first.created_at))
65
+ # feed.tag!(openSearch:totalResults, 10)
66
+ #
67
+ # for post in @posts
68
+ # feed.entry(post) do |entry|
69
+ # entry.title(post.title)
70
+ # entry.content(post.body, :type => 'html')
71
+ # entry.tag!('app:edited', Time.now)
72
+ #
73
+ # entry.author do |author|
74
+ # author.name("DHH")
75
+ # end
76
+ # end
77
+ # end
78
+ # end
79
+ #
80
+ # The Atom spec defines five elements (content rights title subtitle
81
+ # summary) which may directly contain xhtml content if :type => 'xhtml'
82
+ # is specified as an attribute. If so, this helper will take care of
83
+ # the enclosing div and xhtml namespace declaration. Example usage:
84
+ #
85
+ # entry.summary :type => 'xhtml' do |xhtml|
86
+ # xhtml.p pluralize(order.line_items.count, "line item")
87
+ # xhtml.p "Shipped to #{order.address}"
88
+ # xhtml.p "Paid by #{order.pay_type}"
89
+ # end
90
+ #
91
+ #
92
+ # atom_feed yields an AtomFeedBuilder instance. Nested elements yield
93
+ # an AtomBuilder instance.
94
+ def atom_feed(options = {}, &block)
95
+ if options[:schema_date]
96
+ options[:schema_date] = options[:schema_date].strftime("%Y-%m-%d") if options[:schema_date].respond_to?(:strftime)
97
+ else
98
+ options[:schema_date] = "2005" # The Atom spec copyright date
99
+ end
100
+
101
+ xml = options.delete(:xml) || eval("xml", block.binding)
102
+ xml.instruct!
103
+ if options[:instruct]
104
+ options[:instruct].each do |target,attrs|
105
+ if attrs.respond_to?(:keys)
106
+ xml.instruct!(target, attrs)
107
+ elsif attrs.respond_to?(:each)
108
+ attrs.each { |attr_group| xml.instruct!(target, attr_group) }
109
+ end
110
+ end
111
+ end
112
+
113
+ feed_opts = {"xml:lang" => options[:language] || "en-US", "xmlns" => 'http://www.w3.org/2005/Atom'}
114
+ feed_opts.merge!(options).reject!{|k,v| !k.to_s.match(/^xml/)}
115
+
116
+ xml.feed(feed_opts) do
117
+ xml.id(options[:id] || "tag:#{request.host},#{options[:schema_date]}:#{request.request_uri.split(".")[0]}")
118
+ xml.link(:rel => 'alternate', :type => 'text/html', :href => options[:root_url] || (request.protocol + request.host_with_port))
119
+ xml.link(:rel => 'self', :type => 'application/atom+xml', :href => options[:url] || request.url)
120
+
121
+ yield AtomFeedBuilder.new(xml, self, options)
122
+ end
123
+ end
124
+
125
+ class AtomBuilder
126
+ XHTML_TAG_NAMES = %w(content rights title subtitle summary).to_set
127
+
128
+ def initialize(xml)
129
+ @xml = xml
130
+ end
131
+
132
+ private
133
+ # Delegate to xml builder, first wrapping the element in a xhtml
134
+ # namespaced div element if the method and arguments indicate
135
+ # that an xhtml_block? is desired.
136
+ def method_missing(method, *arguments, &block)
137
+ if xhtml_block?(method, arguments)
138
+ @xml.__send__(method, *arguments) do
139
+ @xml.div(:xmlns => 'http://www.w3.org/1999/xhtml') do |xhtml|
140
+ block.call(xhtml)
141
+ end
142
+ end
143
+ else
144
+ @xml.__send__(method, *arguments, &block)
145
+ end
146
+ end
147
+
148
+ # True if the method name matches one of the five elements defined
149
+ # in the Atom spec as potentially containing XHTML content and
150
+ # if :type => 'xhtml' is, in fact, specified.
151
+ def xhtml_block?(method, arguments)
152
+ if XHTML_TAG_NAMES.include?(method.to_s)
153
+ last = arguments.last
154
+ last.is_a?(Hash) && last[:type].to_s == 'xhtml'
155
+ end
156
+ end
157
+ end
158
+
159
+ class AtomFeedBuilder < AtomBuilder
160
+ def initialize(xml, view, feed_options = {})
161
+ @xml, @view, @feed_options = xml, view, feed_options
162
+ end
163
+
164
+ # Accepts a Date or Time object and inserts it in the proper format. If nil is passed, current time in UTC is used.
165
+ def updated(date_or_time = nil)
166
+ @xml.updated((date_or_time || Time.now.utc).xmlschema)
167
+ end
168
+
169
+ # Creates an entry tag for a specific record and prefills the id using class and id.
170
+ #
171
+ # Options:
172
+ #
173
+ # * <tt>:published</tt>: Time first published. Defaults to the created_at attribute on the record if one such exists.
174
+ # * <tt>:updated</tt>: Time of update. Defaults to the updated_at attribute on the record if one such exists.
175
+ # * <tt>:url</tt>: The URL for this entry. Defaults to the polymorphic_url for the record.
176
+ # * <tt>:id</tt>: The ID for this entry. Defaults to "tag:#{@view.request.host},#{@feed_options[:schema_date]}:#{record.class}/#{record.id}"
177
+ def entry(record, options = {})
178
+ @xml.entry do
179
+ @xml.id(options[:id] || "tag:#{@view.request.host},#{@feed_options[:schema_date]}:#{record.class}/#{record.id}")
180
+
181
+ if options[:published] || (record.respond_to?(:created_at) && record.created_at)
182
+ @xml.published((options[:published] || record.created_at).xmlschema)
183
+ end
184
+
185
+ if options[:updated] || (record.respond_to?(:updated_at) && record.updated_at)
186
+ @xml.updated((options[:updated] || record.updated_at).xmlschema)
187
+ end
188
+
189
+ @xml.link(:rel => 'alternate', :type => 'text/html', :href => options[:url] || @view.polymorphic_url(record))
190
+
191
+ yield AtomBuilder.new(@xml)
192
+ end
193
+ end
194
+ end
195
+
196
+ end
197
+ end
198
+ end
@@ -0,0 +1,54 @@
1
+ require 'benchmark'
2
+
3
+ module ActionView
4
+ module Helpers
5
+ # This helper offers a method to measure the execution time of a block
6
+ # in a template.
7
+ module BenchmarkHelper
8
+ # Allows you to measure the execution time of a block
9
+ # in a template and records the result to the log. Wrap this block around
10
+ # expensive operations or possible bottlenecks to get a time reading
11
+ # for the operation. For example, let's say you thought your file
12
+ # processing method was taking too long; you could wrap it in a benchmark block.
13
+ #
14
+ # <% benchmark "Process data files" do %>
15
+ # <%= expensive_files_operation %>
16
+ # <% end %>
17
+ #
18
+ # That would add something like "Process data files (345.2ms)" to the log,
19
+ # which you can then use to compare timings when optimizing your code.
20
+ #
21
+ # You may give an optional logger level as the :level option.
22
+ # (:debug, :info, :warn, :error); the default value is :info.
23
+ #
24
+ # <% benchmark "Low-level files", :level => :debug do %>
25
+ # <%= lowlevel_files_operation %>
26
+ # <% end %>
27
+ #
28
+ # Finally, you can pass true as the third argument to silence all log activity
29
+ # inside the block. This is great for boiling down a noisy block to just a single statement:
30
+ #
31
+ # <% benchmark "Process data files", :level => :info, :silence => true do %>
32
+ # <%= expensive_and_chatty_files_operation %>
33
+ # <% end %>
34
+ def benchmark(message = "Benchmarking", options = {})
35
+ if controller.logger
36
+ if options.is_a?(Symbol)
37
+ ActiveSupport::Deprecation.warn("use benchmark('#{message}', :level => :#{options}) instead", caller)
38
+ options = { :level => options, :silence => false }
39
+ else
40
+ options.assert_valid_keys(:level, :silence)
41
+ options[:level] ||= :info
42
+ end
43
+
44
+ result = nil
45
+ ms = Benchmark.ms { result = options[:silence] ? controller.logger.silence { yield } : yield }
46
+ controller.logger.send(options[:level], '%s (%.1fms)' % [ message, ms ])
47
+ result
48
+ else
49
+ yield
50
+ end
51
+ end
52
+ end
53
+ end
54
+ end
@@ -0,0 +1,39 @@
1
+ module ActionView
2
+ module Helpers
3
+ # This helper to exposes a method for caching of view fragments.
4
+ # See ActionController::Caching::Fragments for usage instructions.
5
+ module CacheHelper
6
+ # A method for caching fragments of a view rather than an entire
7
+ # action or page. This technique is useful caching pieces like
8
+ # menus, lists of news topics, static HTML fragments, and so on.
9
+ # This method takes a block that contains the content you wish
10
+ # to cache. See ActionController::Caching::Fragments for more
11
+ # information.
12
+ #
13
+ # ==== Examples
14
+ # If you wanted to cache a navigation menu, you could do the
15
+ # following.
16
+ #
17
+ # <% cache do %>
18
+ # <%= render :partial => "menu" %>
19
+ # <% end %>
20
+ #
21
+ # You can also cache static content...
22
+ #
23
+ # <% cache do %>
24
+ # <p>Hello users! Welcome to our website!</p>
25
+ # <% end %>
26
+ #
27
+ # ...and static content mixed with RHTML content.
28
+ #
29
+ # <% cache do %>
30
+ # Topics:
31
+ # <%= render :partial => "topics", :collection => @topic_list %>
32
+ # <i>Topics listed alphabetically</i>
33
+ # <% end %>
34
+ def cache(name = {}, options = nil, &block)
35
+ @controller.fragment_for(output_buffer, name, options, &block)
36
+ end
37
+ end
38
+ end
39
+ end
@@ -0,0 +1,136 @@
1
+ module ActionView
2
+ module Helpers
3
+ # CaptureHelper exposes methods to let you extract generated markup which
4
+ # can be used in other parts of a template or layout file.
5
+ # It provides a method to capture blocks into variables through capture and
6
+ # a way to capture a block of markup for use in a layout through content_for.
7
+ module CaptureHelper
8
+ # The capture method allows you to extract part of a template into a
9
+ # variable. You can then use this variable anywhere in your templates or layout.
10
+ #
11
+ # ==== Examples
12
+ # The capture method can be used in ERb templates...
13
+ #
14
+ # <% @greeting = capture do %>
15
+ # Welcome to my shiny new web page! The date and time is
16
+ # <%= Time.now %>
17
+ # <% end %>
18
+ #
19
+ # ...and Builder (RXML) templates.
20
+ #
21
+ # @timestamp = capture do
22
+ # "The current timestamp is #{Time.now}."
23
+ # end
24
+ #
25
+ # You can then use that variable anywhere else. For example:
26
+ #
27
+ # <html>
28
+ # <head><title><%= @greeting %></title></head>
29
+ # <body>
30
+ # <b><%= @greeting %></b>
31
+ # </body></html>
32
+ #
33
+ def capture(*args, &block)
34
+ # Return captured buffer in erb.
35
+ if block_called_from_erb?(block)
36
+ with_output_buffer { block.call(*args) }
37
+ else
38
+ # Return block result otherwise, but protect buffer also.
39
+ with_output_buffer { return block.call(*args) }
40
+ end
41
+ end
42
+
43
+ # Calling content_for stores a block of markup in an identifier for later use.
44
+ # You can make subsequent calls to the stored content in other templates or the layout
45
+ # by passing the identifier as an argument to <tt>yield</tt>.
46
+ #
47
+ # ==== Examples
48
+ #
49
+ # <% content_for :not_authorized do %>
50
+ # alert('You are not authorized to do that!')
51
+ # <% end %>
52
+ #
53
+ # You can then use <tt>yield :not_authorized</tt> anywhere in your templates.
54
+ #
55
+ # <%= yield :not_authorized if current_user.nil? %>
56
+ #
57
+ # You can also use this syntax alongside an existing call to <tt>yield</tt> in a layout. For example:
58
+ #
59
+ # <%# This is the layout %>
60
+ # <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
61
+ # <head>
62
+ # <title>My Website</title>
63
+ # <%= yield :script %>
64
+ # </head>
65
+ # <body>
66
+ # <%= yield %>
67
+ # </body>
68
+ # </html>
69
+ #
70
+ # And now, we'll create a view that has a content_for call that
71
+ # creates the <tt>script</tt> identifier.
72
+ #
73
+ # <%# This is our view %>
74
+ # Please login!
75
+ #
76
+ # <% content_for :script do %>
77
+ # <script type="text/javascript">alert('You are not authorized to view this page!')</script>
78
+ # <% end %>
79
+ #
80
+ # Then, in another view, you could to do something like this:
81
+ #
82
+ # <%= link_to_remote 'Logout', :action => 'logout' %>
83
+ #
84
+ # <% content_for :script do %>
85
+ # <%= javascript_include_tag :defaults %>
86
+ # <% end %>
87
+ #
88
+ # That will place <script> tags for Prototype, Scriptaculous, and application.js (if it exists)
89
+ # on the page; this technique is useful if you'll only be using these scripts in a few views.
90
+ #
91
+ # Note that content_for concatenates the blocks it is given for a particular
92
+ # identifier in order. For example:
93
+ #
94
+ # <% content_for :navigation do %>
95
+ # <li><%= link_to 'Home', :action => 'index' %></li>
96
+ # <% end %>
97
+ #
98
+ # <%# Add some other content, or use a different template: %>
99
+ #
100
+ # <% content_for :navigation do %>
101
+ # <li><%= link_to 'Login', :action => 'login' %></li>
102
+ # <% end %>
103
+ #
104
+ # Then, in another template or layout, this code would render both links in order:
105
+ #
106
+ # <ul><%= yield :navigation %></ul>
107
+ #
108
+ # Lastly, simple content can be passed as a parameter:
109
+ #
110
+ # <% content_for :script, javascript_include_tag(:defaults) %>
111
+ #
112
+ # WARNING: content_for is ignored in caches. So you shouldn't use it
113
+ # for elements that will be fragment cached.
114
+ #
115
+ # The deprecated way of accessing a content_for block is to use an instance variable
116
+ # named <tt>@content_for_#{name_of_the_content_block}</tt>. The preferred usage is now
117
+ # <tt><%= yield :footer %></tt>.
118
+ def content_for(name, content = nil, &block)
119
+ ivar = "@content_for_#{name}"
120
+ content = capture(&block) if block_given?
121
+ instance_variable_set(ivar, "#{instance_variable_get(ivar)}#{content}")
122
+ nil
123
+ end
124
+
125
+ # Use an alternate output buffer for the duration of the block.
126
+ # Defaults to a new empty string.
127
+ def with_output_buffer(buf = '') #:nodoc:
128
+ self.output_buffer, old_buffer = buf, output_buffer
129
+ yield
130
+ output_buffer
131
+ ensure
132
+ self.output_buffer = old_buffer
133
+ end
134
+ end
135
+ end
136
+ end
@@ -0,0 +1,976 @@
1
+ require "date"
2
+ require 'action_view/helpers/tag_helper'
3
+
4
+ module ActionView
5
+ module Helpers
6
+ # The Date Helper primarily creates select/option tags for different kinds of dates and date elements. All of the
7
+ # select-type methods share a number of common options that are as follows:
8
+ #
9
+ # * <tt>:prefix</tt> - overwrites the default prefix of "date" used for the select names. So specifying "birthday"
10
+ # would give birthday[month] instead of date[month] if passed to the select_month method.
11
+ # * <tt>:include_blank</tt> - set to true if it should be possible to set an empty date.
12
+ # * <tt>:discard_type</tt> - set to true if you want to discard the type part of the select name. If set to true,
13
+ # the select_month method would use simply "date" (which can be overwritten using <tt>:prefix</tt>) instead of
14
+ # "date[month]".
15
+ module DateHelper
16
+ # Reports the approximate distance in time between two Time or Date objects or integers as seconds.
17
+ # Set <tt>include_seconds</tt> to true if you want more detailed approximations when distance < 1 min, 29 secs
18
+ # Distances are reported based on the following table:
19
+ #
20
+ # 0 <-> 29 secs # => less than a minute
21
+ # 30 secs <-> 1 min, 29 secs # => 1 minute
22
+ # 1 min, 30 secs <-> 44 mins, 29 secs # => [2..44] minutes
23
+ # 44 mins, 30 secs <-> 89 mins, 29 secs # => about 1 hour
24
+ # 89 mins, 29 secs <-> 23 hrs, 59 mins, 29 secs # => about [2..24] hours
25
+ # 23 hrs, 59 mins, 29 secs <-> 47 hrs, 59 mins, 29 secs # => 1 day
26
+ # 47 hrs, 59 mins, 29 secs <-> 29 days, 23 hrs, 59 mins, 29 secs # => [2..29] days
27
+ # 29 days, 23 hrs, 59 mins, 30 secs <-> 59 days, 23 hrs, 59 mins, 29 secs # => about 1 month
28
+ # 59 days, 23 hrs, 59 mins, 30 secs <-> 1 yr minus 1 sec # => [2..12] months
29
+ # 1 yr <-> 2 yrs minus 1 secs # => about 1 year
30
+ # 2 yrs <-> max time or date # => over [2..X] years
31
+ #
32
+ # With <tt>include_seconds</tt> = true and the difference < 1 minute 29 seconds:
33
+ # 0-4 secs # => less than 5 seconds
34
+ # 5-9 secs # => less than 10 seconds
35
+ # 10-19 secs # => less than 20 seconds
36
+ # 20-39 secs # => half a minute
37
+ # 40-59 secs # => less than a minute
38
+ # 60-89 secs # => 1 minute
39
+ #
40
+ # ==== Examples
41
+ # from_time = Time.now
42
+ # distance_of_time_in_words(from_time, from_time + 50.minutes) # => about 1 hour
43
+ # distance_of_time_in_words(from_time, 50.minutes.from_now) # => about 1 hour
44
+ # distance_of_time_in_words(from_time, from_time + 15.seconds) # => less than a minute
45
+ # distance_of_time_in_words(from_time, from_time + 15.seconds, true) # => less than 20 seconds
46
+ # distance_of_time_in_words(from_time, 3.years.from_now) # => over 3 years
47
+ # distance_of_time_in_words(from_time, from_time + 60.hours) # => about 3 days
48
+ # distance_of_time_in_words(from_time, from_time + 45.seconds, true) # => less than a minute
49
+ # distance_of_time_in_words(from_time, from_time - 45.seconds, true) # => less than a minute
50
+ # distance_of_time_in_words(from_time, 76.seconds.from_now) # => 1 minute
51
+ # distance_of_time_in_words(from_time, from_time + 1.year + 3.days) # => about 1 year
52
+ # distance_of_time_in_words(from_time, from_time + 4.years + 9.days + 30.minutes + 5.seconds) # => over 4 years
53
+ #
54
+ # to_time = Time.now + 6.years + 19.days
55
+ # distance_of_time_in_words(from_time, to_time, true) # => over 6 years
56
+ # distance_of_time_in_words(to_time, from_time, true) # => over 6 years
57
+ # distance_of_time_in_words(Time.now, Time.now) # => less than a minute
58
+ #
59
+ def distance_of_time_in_words(from_time, to_time = 0, include_seconds = false, options = {})
60
+ from_time = from_time.to_time if from_time.respond_to?(:to_time)
61
+ to_time = to_time.to_time if to_time.respond_to?(:to_time)
62
+ distance_in_minutes = (((to_time - from_time).abs)/60).round
63
+ distance_in_seconds = ((to_time - from_time).abs).round
64
+
65
+ I18n.with_options :locale => options[:locale], :scope => :'datetime.distance_in_words' do |locale|
66
+ case distance_in_minutes
67
+ when 0..1
68
+ return distance_in_minutes == 0 ?
69
+ locale.t(:less_than_x_minutes, :count => 1) :
70
+ locale.t(:x_minutes, :count => distance_in_minutes) unless include_seconds
71
+
72
+ case distance_in_seconds
73
+ when 0..4 then locale.t :less_than_x_seconds, :count => 5
74
+ when 5..9 then locale.t :less_than_x_seconds, :count => 10
75
+ when 10..19 then locale.t :less_than_x_seconds, :count => 20
76
+ when 20..39 then locale.t :half_a_minute
77
+ when 40..59 then locale.t :less_than_x_minutes, :count => 1
78
+ else locale.t :x_minutes, :count => 1
79
+ end
80
+
81
+ when 2..44 then locale.t :x_minutes, :count => distance_in_minutes
82
+ when 45..89 then locale.t :about_x_hours, :count => 1
83
+ when 90..1439 then locale.t :about_x_hours, :count => (distance_in_minutes.to_f / 60.0).round
84
+ when 1440..2879 then locale.t :x_days, :count => 1
85
+ when 2880..43199 then locale.t :x_days, :count => (distance_in_minutes / 1440).round
86
+ when 43200..86399 then locale.t :about_x_months, :count => 1
87
+ when 86400..525599 then locale.t :x_months, :count => (distance_in_minutes / 43200).round
88
+ when 525600..1051199 then locale.t :about_x_years, :count => 1
89
+ else locale.t :over_x_years, :count => (distance_in_minutes / 525600).round
90
+ end
91
+ end
92
+ end
93
+
94
+ # Like distance_of_time_in_words, but where <tt>to_time</tt> is fixed to <tt>Time.now</tt>.
95
+ #
96
+ # ==== Examples
97
+ # time_ago_in_words(3.minutes.from_now) # => 3 minutes
98
+ # time_ago_in_words(Time.now - 15.hours) # => 15 hours
99
+ # time_ago_in_words(Time.now) # => less than a minute
100
+ #
101
+ # from_time = Time.now - 3.days - 14.minutes - 25.seconds # => 3 days
102
+ def time_ago_in_words(from_time, include_seconds = false)
103
+ distance_of_time_in_words(from_time, Time.now, include_seconds)
104
+ end
105
+
106
+ alias_method :distance_of_time_in_words_to_now, :time_ago_in_words
107
+
108
+ # Returns a set of select tags (one for year, month, and day) pre-selected for accessing a specified date-based
109
+ # attribute (identified by +method+) on an object assigned to the template (identified by +object+). You can
110
+ # the output in the +options+ hash.
111
+ #
112
+ # ==== Options
113
+ # * <tt>:use_month_numbers</tt> - Set to true if you want to use month numbers rather than month names (e.g.
114
+ # "2" instead of "February").
115
+ # * <tt>:use_short_month</tt> - Set to true if you want to use the abbreviated month name instead of the full
116
+ # name (e.g. "Feb" instead of "February").
117
+ # * <tt>:add_month_number</tt> - Set to true if you want to show both, the month's number and name (e.g.
118
+ # "2 - February" instead of "February").
119
+ # * <tt>:use_month_names</tt> - Set to an array with 12 month names if you want to customize month names.
120
+ # Note: You can also use Rails' new i18n functionality for this.
121
+ # * <tt>:date_separator</tt> - Specifies a string to separate the date fields. Default is "" (i.e. nothing).
122
+ # * <tt>:start_year</tt> - Set the start year for the year select. Default is <tt>Time.now.year - 5</tt>.
123
+ # * <tt>:end_year</tt> - Set the end year for the year select. Default is <tt>Time.now.year + 5</tt>.
124
+ # * <tt>:discard_day</tt> - Set to true if you don't want to show a day select. This includes the day
125
+ # as a hidden field instead of showing a select field. Also note that this implicitly sets the day to be the
126
+ # first of the given month in order to not create invalid dates like 31 February.
127
+ # * <tt>:discard_month</tt> - Set to true if you don't want to show a month select. This includes the month
128
+ # as a hidden field instead of showing a select field. Also note that this implicitly sets :discard_day to true.
129
+ # * <tt>:discard_year</tt> - Set to true if you don't want to show a year select. This includes the year
130
+ # as a hidden field instead of showing a select field.
131
+ # * <tt>:order</tt> - Set to an array containing <tt>:day</tt>, <tt>:month</tt> and <tt>:year</tt> do
132
+ # customize the order in which the select fields are shown. If you leave out any of the symbols, the respective
133
+ # select will not be shown (like when you set <tt>:discard_xxx => true</tt>. Defaults to the order defined in
134
+ # the respective locale (e.g. [:year, :month, :day] in the en locale that ships with Rails).
135
+ # * <tt>:include_blank</tt> - Include a blank option in every select field so it's possible to set empty
136
+ # dates.
137
+ # * <tt>:default</tt> - Set a default date if the affected date isn't set or is nil.
138
+ # * <tt>:disabled</tt> - Set to true if you want show the select fields as disabled.
139
+ # * <tt>:prompt</tt> - Set to true (for a generic prompt), a prompt string or a hash of prompt strings
140
+ # for <tt>:year</tt>, <tt>:month</tt>, <tt>:day</tt>, <tt>:hour</tt>, <tt>:minute</tt> and <tt>:second</tt>.
141
+ # Setting this option prepends a select option with a generic prompt (Day, Month, Year, Hour, Minute, Seconds)
142
+ # or the given prompt string.
143
+ #
144
+ # If anything is passed in the +html_options+ hash it will be applied to every select tag in the set.
145
+ #
146
+ # NOTE: Discarded selects will default to 1. So if no month select is available, January will be assumed.
147
+ #
148
+ # ==== Examples
149
+ # # Generates a date select that when POSTed is stored in the post variable, in the written_on attribute
150
+ # date_select("post", "written_on")
151
+ #
152
+ # # Generates a date select that when POSTed is stored in the post variable, in the written_on attribute,
153
+ # # with the year in the year drop down box starting at 1995.
154
+ # date_select("post", "written_on", :start_year => 1995)
155
+ #
156
+ # # Generates a date select that when POSTed is stored in the post variable, in the written_on attribute,
157
+ # # with the year in the year drop down box starting at 1995, numbers used for months instead of words,
158
+ # # and without a day select box.
159
+ # date_select("post", "written_on", :start_year => 1995, :use_month_numbers => true,
160
+ # :discard_day => true, :include_blank => true)
161
+ #
162
+ # # Generates a date select that when POSTed is stored in the post variable, in the written_on attribute
163
+ # # with the fields ordered as day, month, year rather than month, day, year.
164
+ # date_select("post", "written_on", :order => [:day, :month, :year])
165
+ #
166
+ # # Generates a date select that when POSTed is stored in the user variable, in the birthday attribute
167
+ # # lacking a year field.
168
+ # date_select("user", "birthday", :order => [:month, :day])
169
+ #
170
+ # # Generates a date select that when POSTed is stored in the user variable, in the birthday attribute
171
+ # # which is initially set to the date 3 days from the current date
172
+ # date_select("post", "written_on", :default => 3.days.from_now)
173
+ #
174
+ # # Generates a date select that when POSTed is stored in the credit_card variable, in the bill_due attribute
175
+ # # that will have a default day of 20.
176
+ # date_select("credit_card", "bill_due", :default => { :day => 20 })
177
+ #
178
+ # # Generates a date select with custom prompts
179
+ # date_select("post", "written_on", :prompt => { :day => 'Select day', :month => 'Select month', :year => 'Select year' })
180
+ #
181
+ # The selects are prepared for multi-parameter assignment to an Active Record object.
182
+ #
183
+ # Note: If the day is not included as an option but the month is, the day will be set to the 1st to ensure that
184
+ # all month choices are valid.
185
+ def date_select(object_name, method, options = {}, html_options = {})
186
+ InstanceTag.new(object_name, method, self, options.delete(:object)).to_date_select_tag(options, html_options)
187
+ end
188
+
189
+ # Returns a set of select tags (one for hour, minute and optionally second) pre-selected for accessing a
190
+ # specified time-based attribute (identified by +method+) on an object assigned to the template (identified by
191
+ # +object+). You can include the seconds with <tt>:include_seconds</tt>.
192
+ #
193
+ # This method will also generate 3 input hidden tags, for the actual year, month and day unless the option
194
+ # <tt>:ignore_date</tt> is set to +true+.
195
+ #
196
+ # If anything is passed in the html_options hash it will be applied to every select tag in the set.
197
+ #
198
+ # ==== Examples
199
+ # # Creates a time select tag that, when POSTed, will be stored in the post variable in the sunrise attribute
200
+ # time_select("post", "sunrise")
201
+ #
202
+ # # Creates a time select tag that, when POSTed, will be stored in the order variable in the submitted
203
+ # # attribute
204
+ # time_select("order", "submitted")
205
+ #
206
+ # # Creates a time select tag that, when POSTed, will be stored in the mail variable in the sent_at attribute
207
+ # time_select("mail", "sent_at")
208
+ #
209
+ # # Creates a time select tag with a seconds field that, when POSTed, will be stored in the post variables in
210
+ # # the sunrise attribute.
211
+ # time_select("post", "start_time", :include_seconds => true)
212
+ #
213
+ # # Creates a time select tag with a seconds field that, when POSTed, will be stored in the entry variables in
214
+ # # the submission_time attribute.
215
+ # time_select("entry", "submission_time", :include_seconds => true)
216
+ #
217
+ # # You can set the :minute_step to 15 which will give you: 00, 15, 30 and 45.
218
+ # time_select 'game', 'game_time', {:minute_step => 15}
219
+ #
220
+ # # Creates a time select tag with a custom prompt. Use :prompt => true for generic prompts.
221
+ # time_select("post", "written_on", :prompt => {:hour => 'Choose hour', :minute => 'Choose minute', :second => 'Choose seconds'})
222
+ # time_select("post", "written_on", :prompt => {:hour => true}) # generic prompt for hours
223
+ # time_select("post", "written_on", :prompt => true) # generic prompts for all
224
+ #
225
+ # The selects are prepared for multi-parameter assignment to an Active Record object.
226
+ #
227
+ # Note: If the day is not included as an option but the month is, the day will be set to the 1st to ensure that
228
+ # all month choices are valid.
229
+ def time_select(object_name, method, options = {}, html_options = {})
230
+ InstanceTag.new(object_name, method, self, options.delete(:object)).to_time_select_tag(options, html_options)
231
+ end
232
+
233
+ # Returns a set of select tags (one for year, month, day, hour, and minute) pre-selected for accessing a
234
+ # specified datetime-based attribute (identified by +method+) on an object assigned to the template (identified
235
+ # by +object+). Examples:
236
+ #
237
+ # If anything is passed in the html_options hash it will be applied to every select tag in the set.
238
+ #
239
+ # ==== Examples
240
+ # # Generates a datetime select that, when POSTed, will be stored in the post variable in the written_on
241
+ # # attribute
242
+ # datetime_select("post", "written_on")
243
+ #
244
+ # # Generates a datetime select with a year select that starts at 1995 that, when POSTed, will be stored in the
245
+ # # post variable in the written_on attribute.
246
+ # datetime_select("post", "written_on", :start_year => 1995)
247
+ #
248
+ # # Generates a datetime select with a default value of 3 days from the current time that, when POSTed, will
249
+ # # be stored in the trip variable in the departing attribute.
250
+ # datetime_select("trip", "departing", :default => 3.days.from_now)
251
+ #
252
+ # # Generates a datetime select that discards the type that, when POSTed, will be stored in the post variable
253
+ # # as the written_on attribute.
254
+ # datetime_select("post", "written_on", :discard_type => true)
255
+ #
256
+ # # Generates a datetime select with a custom prompt. Use :prompt=>true for generic prompts.
257
+ # datetime_select("post", "written_on", :prompt => {:day => 'Choose day', :month => 'Choose month', :year => 'Choose year'})
258
+ # datetime_select("post", "written_on", :prompt => {:hour => true}) # generic prompt for hours
259
+ # datetime_select("post", "written_on", :prompt => true) # generic prompts for all
260
+ #
261
+ # The selects are prepared for multi-parameter assignment to an Active Record object.
262
+ def datetime_select(object_name, method, options = {}, html_options = {})
263
+ InstanceTag.new(object_name, method, self, options.delete(:object)).to_datetime_select_tag(options, html_options)
264
+ end
265
+
266
+ # Returns a set of html select-tags (one for year, month, day, hour, and minute) pre-selected with the
267
+ # +datetime+. It's also possible to explicitly set the order of the tags using the <tt>:order</tt> option with
268
+ # an array of symbols <tt>:year</tt>, <tt>:month</tt> and <tt>:day</tt> in the desired order. If you do not
269
+ # supply a Symbol, it will be appended onto the <tt>:order</tt> passed in. You can also add
270
+ # <tt>:date_separator</tt>, <tt>:datetime_separator</tt> and <tt>:time_separator</tt> keys to the +options+ to
271
+ # control visual display of the elements.
272
+ #
273
+ # If anything is passed in the html_options hash it will be applied to every select tag in the set.
274
+ #
275
+ # ==== Examples
276
+ # my_date_time = Time.now + 4.days
277
+ #
278
+ # # Generates a datetime select that defaults to the datetime in my_date_time (four days after today)
279
+ # select_datetime(my_date_time)
280
+ #
281
+ # # Generates a datetime select that defaults to today (no specified datetime)
282
+ # select_datetime()
283
+ #
284
+ # # Generates a datetime select that defaults to the datetime in my_date_time (four days after today)
285
+ # # with the fields ordered year, month, day rather than month, day, year.
286
+ # select_datetime(my_date_time, :order => [:year, :month, :day])
287
+ #
288
+ # # Generates a datetime select that defaults to the datetime in my_date_time (four days after today)
289
+ # # with a '/' between each date field.
290
+ # select_datetime(my_date_time, :date_separator => '/')
291
+ #
292
+ # # Generates a datetime select that defaults to the datetime in my_date_time (four days after today)
293
+ # # with a date fields separated by '/', time fields separated by '' and the date and time fields
294
+ # # separated by a comma (',').
295
+ # select_datetime(my_date_time, :date_separator => '/', :time_separator => '', :datetime_separator => ',')
296
+ #
297
+ # # Generates a datetime select that discards the type of the field and defaults to the datetime in
298
+ # # my_date_time (four days after today)
299
+ # select_datetime(my_date_time, :discard_type => true)
300
+ #
301
+ # # Generates a datetime select that defaults to the datetime in my_date_time (four days after today)
302
+ # # prefixed with 'payday' rather than 'date'
303
+ # select_datetime(my_date_time, :prefix => 'payday')
304
+ #
305
+ # # Generates a datetime select with a custom prompt. Use :prompt=>true for generic prompts.
306
+ # select_datetime(my_date_time, :prompt => {:day => 'Choose day', :month => 'Choose month', :year => 'Choose year'})
307
+ # select_datetime(my_date_time, :prompt => {:hour => true}) # generic prompt for hours
308
+ # select_datetime(my_date_time, :prompt => true) # generic prompts for all
309
+ #
310
+ def select_datetime(datetime = Time.current, options = {}, html_options = {})
311
+ DateTimeSelector.new(datetime, options, html_options).select_datetime
312
+ end
313
+
314
+ # Returns a set of html select-tags (one for year, month, and day) pre-selected with the +date+.
315
+ # It's possible to explicitly set the order of the tags using the <tt>:order</tt> option with an array of
316
+ # symbols <tt>:year</tt>, <tt>:month</tt> and <tt>:day</tt> in the desired order. If you do not supply a Symbol,
317
+ # it will be appended onto the <tt>:order</tt> passed in.
318
+ #
319
+ # If anything is passed in the html_options hash it will be applied to every select tag in the set.
320
+ #
321
+ # ==== Examples
322
+ # my_date = Time.today + 6.days
323
+ #
324
+ # # Generates a date select that defaults to the date in my_date (six days after today)
325
+ # select_date(my_date)
326
+ #
327
+ # # Generates a date select that defaults to today (no specified date)
328
+ # select_date()
329
+ #
330
+ # # Generates a date select that defaults to the date in my_date (six days after today)
331
+ # # with the fields ordered year, month, day rather than month, day, year.
332
+ # select_date(my_date, :order => [:year, :month, :day])
333
+ #
334
+ # # Generates a date select that discards the type of the field and defaults to the date in
335
+ # # my_date (six days after today)
336
+ # select_date(my_date, :discard_type => true)
337
+ #
338
+ # # Generates a date select that defaults to the date in my_date,
339
+ # # which has fields separated by '/'
340
+ # select_date(my_date, :date_separator => '/')
341
+ #
342
+ # # Generates a date select that defaults to the datetime in my_date (six days after today)
343
+ # # prefixed with 'payday' rather than 'date'
344
+ # select_date(my_date, :prefix => 'payday')
345
+ #
346
+ # # Generates a date select with a custom prompt. Use :prompt=>true for generic prompts.
347
+ # select_date(my_date, :prompt => {:day => 'Choose day', :month => 'Choose month', :year => 'Choose year'})
348
+ # select_date(my_date, :prompt => {:hour => true}) # generic prompt for hours
349
+ # select_date(my_date, :prompt => true) # generic prompts for all
350
+ #
351
+ def select_date(date = Date.current, options = {}, html_options = {})
352
+ DateTimeSelector.new(date, options, html_options).select_date
353
+ end
354
+
355
+ # Returns a set of html select-tags (one for hour and minute)
356
+ # You can set <tt>:time_separator</tt> key to format the output, and
357
+ # the <tt>:include_seconds</tt> option to include an input for seconds.
358
+ #
359
+ # If anything is passed in the html_options hash it will be applied to every select tag in the set.
360
+ #
361
+ # ==== Examples
362
+ # my_time = Time.now + 5.days + 7.hours + 3.minutes + 14.seconds
363
+ #
364
+ # # Generates a time select that defaults to the time in my_time
365
+ # select_time(my_time)
366
+ #
367
+ # # Generates a time select that defaults to the current time (no specified time)
368
+ # select_time()
369
+ #
370
+ # # Generates a time select that defaults to the time in my_time,
371
+ # # which has fields separated by ':'
372
+ # select_time(my_time, :time_separator => ':')
373
+ #
374
+ # # Generates a time select that defaults to the time in my_time,
375
+ # # that also includes an input for seconds
376
+ # select_time(my_time, :include_seconds => true)
377
+ #
378
+ # # Generates a time select that defaults to the time in my_time, that has fields
379
+ # # separated by ':' and includes an input for seconds
380
+ # select_time(my_time, :time_separator => ':', :include_seconds => true)
381
+ #
382
+ # # Generates a time select with a custom prompt. Use :prompt=>true for generic prompts.
383
+ # select_time(my_time, :prompt => {:day => 'Choose day', :month => 'Choose month', :year => 'Choose year'})
384
+ # select_time(my_time, :prompt => {:hour => true}) # generic prompt for hours
385
+ # select_time(my_time, :prompt => true) # generic prompts for all
386
+ #
387
+ def select_time(datetime = Time.current, options = {}, html_options = {})
388
+ DateTimeSelector.new(datetime, options, html_options).select_time
389
+ end
390
+
391
+ # Returns a select tag with options for each of the seconds 0 through 59 with the current second selected.
392
+ # The <tt>second</tt> can also be substituted for a second number.
393
+ # Override the field name using the <tt>:field_name</tt> option, 'second' by default.
394
+ #
395
+ # ==== Examples
396
+ # my_time = Time.now + 16.minutes
397
+ #
398
+ # # Generates a select field for seconds that defaults to the seconds for the time in my_time
399
+ # select_second(my_time)
400
+ #
401
+ # # Generates a select field for seconds that defaults to the number given
402
+ # select_second(33)
403
+ #
404
+ # # Generates a select field for seconds that defaults to the seconds for the time in my_time
405
+ # # that is named 'interval' rather than 'second'
406
+ # select_second(my_time, :field_name => 'interval')
407
+ #
408
+ # # Generates a select field for seconds with a custom prompt. Use :prompt=>true for a
409
+ # # generic prompt.
410
+ # select_minute(14, :prompt => 'Choose seconds')
411
+ #
412
+ def select_second(datetime, options = {}, html_options = {})
413
+ DateTimeSelector.new(datetime, options, html_options).select_second
414
+ end
415
+
416
+ # Returns a select tag with options for each of the minutes 0 through 59 with the current minute selected.
417
+ # Also can return a select tag with options by <tt>minute_step</tt> from 0 through 59 with the 00 minute
418
+ # selected. The <tt>minute</tt> can also be substituted for a minute number.
419
+ # Override the field name using the <tt>:field_name</tt> option, 'minute' by default.
420
+ #
421
+ # ==== Examples
422
+ # my_time = Time.now + 6.hours
423
+ #
424
+ # # Generates a select field for minutes that defaults to the minutes for the time in my_time
425
+ # select_minute(my_time)
426
+ #
427
+ # # Generates a select field for minutes that defaults to the number given
428
+ # select_minute(14)
429
+ #
430
+ # # Generates a select field for minutes that defaults to the minutes for the time in my_time
431
+ # # that is named 'stride' rather than 'second'
432
+ # select_minute(my_time, :field_name => 'stride')
433
+ #
434
+ # # Generates a select field for minutes with a custom prompt. Use :prompt=>true for a
435
+ # # generic prompt.
436
+ # select_minute(14, :prompt => 'Choose minutes')
437
+ #
438
+ def select_minute(datetime, options = {}, html_options = {})
439
+ DateTimeSelector.new(datetime, options, html_options).select_minute
440
+ end
441
+
442
+ # Returns a select tag with options for each of the hours 0 through 23 with the current hour selected.
443
+ # The <tt>hour</tt> can also be substituted for a hour number.
444
+ # Override the field name using the <tt>:field_name</tt> option, 'hour' by default.
445
+ #
446
+ # ==== Examples
447
+ # my_time = Time.now + 6.hours
448
+ #
449
+ # # Generates a select field for hours that defaults to the hour for the time in my_time
450
+ # select_hour(my_time)
451
+ #
452
+ # # Generates a select field for hours that defaults to the number given
453
+ # select_hour(13)
454
+ #
455
+ # # Generates a select field for hours that defaults to the minutes for the time in my_time
456
+ # # that is named 'stride' rather than 'second'
457
+ # select_hour(my_time, :field_name => 'stride')
458
+ #
459
+ # # Generates a select field for hours with a custom prompt. Use :prompt => true for a
460
+ # # generic prompt.
461
+ # select_hour(13, :prompt =>'Choose hour')
462
+ #
463
+ def select_hour(datetime, options = {}, html_options = {})
464
+ DateTimeSelector.new(datetime, options, html_options).select_hour
465
+ end
466
+
467
+ # Returns a select tag with options for each of the days 1 through 31 with the current day selected.
468
+ # The <tt>date</tt> can also be substituted for a hour number.
469
+ # Override the field name using the <tt>:field_name</tt> option, 'day' by default.
470
+ #
471
+ # ==== Examples
472
+ # my_date = Time.today + 2.days
473
+ #
474
+ # # Generates a select field for days that defaults to the day for the date in my_date
475
+ # select_day(my_time)
476
+ #
477
+ # # Generates a select field for days that defaults to the number given
478
+ # select_day(5)
479
+ #
480
+ # # Generates a select field for days that defaults to the day for the date in my_date
481
+ # # that is named 'due' rather than 'day'
482
+ # select_day(my_time, :field_name => 'due')
483
+ #
484
+ # # Generates a select field for days with a custom prompt. Use :prompt => true for a
485
+ # # generic prompt.
486
+ # select_day(5, :prompt => 'Choose day')
487
+ #
488
+ def select_day(date, options = {}, html_options = {})
489
+ DateTimeSelector.new(date, options, html_options).select_day
490
+ end
491
+
492
+ # Returns a select tag with options for each of the months January through December with the current month
493
+ # selected. The month names are presented as keys (what's shown to the user) and the month numbers (1-12) are
494
+ # used as values (what's submitted to the server). It's also possible to use month numbers for the presentation
495
+ # instead of names -- set the <tt>:use_month_numbers</tt> key in +options+ to true for this to happen. If you
496
+ # want both numbers and names, set the <tt>:add_month_numbers</tt> key in +options+ to true. If you would prefer
497
+ # to show month names as abbreviations, set the <tt>:use_short_month</tt> key in +options+ to true. If you want
498
+ # to use your own month names, set the <tt>:use_month_names</tt> key in +options+ to an array of 12 month names.
499
+ # Override the field name using the <tt>:field_name</tt> option, 'month' by default.
500
+ #
501
+ # ==== Examples
502
+ # # Generates a select field for months that defaults to the current month that
503
+ # # will use keys like "January", "March".
504
+ # select_month(Date.today)
505
+ #
506
+ # # Generates a select field for months that defaults to the current month that
507
+ # # is named "start" rather than "month"
508
+ # select_month(Date.today, :field_name => 'start')
509
+ #
510
+ # # Generates a select field for months that defaults to the current month that
511
+ # # will use keys like "1", "3".
512
+ # select_month(Date.today, :use_month_numbers => true)
513
+ #
514
+ # # Generates a select field for months that defaults to the current month that
515
+ # # will use keys like "1 - January", "3 - March".
516
+ # select_month(Date.today, :add_month_numbers => true)
517
+ #
518
+ # # Generates a select field for months that defaults to the current month that
519
+ # # will use keys like "Jan", "Mar".
520
+ # select_month(Date.today, :use_short_month => true)
521
+ #
522
+ # # Generates a select field for months that defaults to the current month that
523
+ # # will use keys like "Januar", "Marts."
524
+ # select_month(Date.today, :use_month_names => %w(Januar Februar Marts ...))
525
+ #
526
+ # # Generates a select field for months with a custom prompt. Use :prompt => true for a
527
+ # # generic prompt.
528
+ # select_month(14, :prompt => 'Choose month')
529
+ #
530
+ def select_month(date, options = {}, html_options = {})
531
+ DateTimeSelector.new(date, options, html_options).select_month
532
+ end
533
+
534
+ # Returns a select tag with options for each of the five years on each side of the current, which is selected.
535
+ # The five year radius can be changed using the <tt>:start_year</tt> and <tt>:end_year</tt> keys in the
536
+ # +options+. Both ascending and descending year lists are supported by making <tt>:start_year</tt> less than or
537
+ # greater than <tt>:end_year</tt>. The <tt>date</tt> can also be substituted for a year given as a number.
538
+ # Override the field name using the <tt>:field_name</tt> option, 'year' by default.
539
+ #
540
+ # ==== Examples
541
+ # # Generates a select field for years that defaults to the current year that
542
+ # # has ascending year values
543
+ # select_year(Date.today, :start_year => 1992, :end_year => 2007)
544
+ #
545
+ # # Generates a select field for years that defaults to the current year that
546
+ # # is named 'birth' rather than 'year'
547
+ # select_year(Date.today, :field_name => 'birth')
548
+ #
549
+ # # Generates a select field for years that defaults to the current year that
550
+ # # has descending year values
551
+ # select_year(Date.today, :start_year => 2005, :end_year => 1900)
552
+ #
553
+ # # Generates a select field for years that defaults to the year 2006 that
554
+ # # has ascending year values
555
+ # select_year(2006, :start_year => 2000, :end_year => 2010)
556
+ #
557
+ # # Generates a select field for years with a custom prompt. Use :prompt => true for a
558
+ # # generic prompt.
559
+ # select_year(14, :prompt => 'Choose year')
560
+ #
561
+ def select_year(date, options = {}, html_options = {})
562
+ DateTimeSelector.new(date, options, html_options).select_year
563
+ end
564
+ end
565
+
566
+ class DateTimeSelector #:nodoc:
567
+ extend ActiveSupport::Memoizable
568
+ include ActionView::Helpers::TagHelper
569
+
570
+ DEFAULT_PREFIX = 'date'.freeze unless const_defined?('DEFAULT_PREFIX')
571
+ POSITION = {
572
+ :year => 1, :month => 2, :day => 3, :hour => 4, :minute => 5, :second => 6
573
+ }.freeze unless const_defined?('POSITION')
574
+
575
+ def initialize(datetime, options = {}, html_options = {})
576
+ @options = options.dup
577
+ @html_options = html_options.dup
578
+ @datetime = datetime
579
+ end
580
+
581
+ def select_datetime
582
+ # TODO: Remove tag conditional
583
+ # Ideally we could just join select_date and select_date for the tag case
584
+ if @options[:tag] && @options[:ignore_date]
585
+ select_time
586
+ elsif @options[:tag]
587
+ order = date_order.dup
588
+ order -= [:hour, :minute, :second]
589
+
590
+ @options[:discard_year] ||= true unless order.include?(:year)
591
+ @options[:discard_month] ||= true unless order.include?(:month)
592
+ @options[:discard_day] ||= true if @options[:discard_month] || !order.include?(:day)
593
+ @options[:discard_minute] ||= true if @options[:discard_hour]
594
+ @options[:discard_second] ||= true unless @options[:include_seconds] && !@options[:discard_minute]
595
+
596
+ # If the day is hidden and the month is visible, the day should be set to the 1st so all month choices are
597
+ # valid (otherwise it could be 31 and february wouldn't be a valid date)
598
+ if @datetime && @options[:discard_day] && !@options[:discard_month]
599
+ @datetime = @datetime.change(:day => 1)
600
+ end
601
+
602
+ [:day, :month, :year].each { |o| order.unshift(o) unless order.include?(o) }
603
+ order += [:hour, :minute, :second] unless @options[:discard_hour]
604
+
605
+ build_selects_from_types(order)
606
+ else
607
+ "#{select_date}#{@options[:datetime_separator]}#{select_time}"
608
+ end
609
+ end
610
+
611
+ def select_date
612
+ order = date_order.dup
613
+
614
+ # TODO: Remove tag conditional
615
+ if @options[:tag]
616
+ @options[:discard_hour] = true
617
+ @options[:discard_minute] = true
618
+ @options[:discard_second] = true
619
+
620
+ @options[:discard_year] ||= true unless order.include?(:year)
621
+ @options[:discard_month] ||= true unless order.include?(:month)
622
+ @options[:discard_day] ||= true if @options[:discard_month] || !order.include?(:day)
623
+
624
+ # If the day is hidden and the month is visible, the day should be set to the 1st so all month choices are
625
+ # valid (otherwise it could be 31 and february wouldn't be a valid date)
626
+ if @datetime && @options[:discard_day] && !@options[:discard_month]
627
+ @datetime = @datetime.change(:day => 1)
628
+ end
629
+ end
630
+
631
+ [:day, :month, :year].each { |o| order.unshift(o) unless order.include?(o) }
632
+
633
+ build_selects_from_types(order)
634
+ end
635
+
636
+ def select_time
637
+ order = []
638
+
639
+ # TODO: Remove tag conditional
640
+ if @options[:tag]
641
+ @options[:discard_month] = true
642
+ @options[:discard_year] = true
643
+ @options[:discard_day] = true
644
+ @options[:discard_second] ||= true unless @options[:include_seconds]
645
+
646
+ order += [:year, :month, :day] unless @options[:ignore_date]
647
+ end
648
+
649
+ order += [:hour, :minute]
650
+ order << :second if @options[:include_seconds]
651
+
652
+ build_selects_from_types(order)
653
+ end
654
+
655
+ def select_second
656
+ if @options[:use_hidden] || @options[:discard_second]
657
+ build_hidden(:second, sec) if @options[:include_seconds]
658
+ else
659
+ build_options_and_select(:second, sec)
660
+ end
661
+ end
662
+
663
+ def select_minute
664
+ if @options[:use_hidden] || @options[:discard_minute]
665
+ build_hidden(:minute, min)
666
+ else
667
+ build_options_and_select(:minute, min, :step => @options[:minute_step])
668
+ end
669
+ end
670
+
671
+ def select_hour
672
+ if @options[:use_hidden] || @options[:discard_hour]
673
+ build_hidden(:hour, hour)
674
+ else
675
+ build_options_and_select(:hour, hour, :end => 23)
676
+ end
677
+ end
678
+
679
+ def select_day
680
+ if @options[:use_hidden] || @options[:discard_day]
681
+ build_hidden(:day, day)
682
+ else
683
+ build_options_and_select(:day, day, :start => 1, :end => 31, :leading_zeros => false)
684
+ end
685
+ end
686
+
687
+ def select_month
688
+ if @options[:use_hidden] || @options[:discard_month]
689
+ build_hidden(:month, month)
690
+ else
691
+ month_options = []
692
+ 1.upto(12) do |month_number|
693
+ options = { :value => month_number }
694
+ options[:selected] = "selected" if month == month_number
695
+ month_options << content_tag(:option, month_name(month_number), options) + "\n"
696
+ end
697
+ build_select(:month, month_options.join)
698
+ end
699
+ end
700
+
701
+ def select_year
702
+ if !@datetime || @datetime == 0
703
+ val = ''
704
+ middle_year = Date.today.year
705
+ else
706
+ val = middle_year = year
707
+ end
708
+
709
+ if @options[:use_hidden] || @options[:discard_year]
710
+ build_hidden(:year, val)
711
+ else
712
+ options = {}
713
+ options[:start] = @options[:start_year] || middle_year - 5
714
+ options[:end] = @options[:end_year] || middle_year + 5
715
+ options[:step] = options[:start] < options[:end] ? 1 : -1
716
+ options[:leading_zeros] = false
717
+
718
+ build_options_and_select(:year, val, options)
719
+ end
720
+ end
721
+
722
+ private
723
+ %w( sec min hour day month year ).each do |method|
724
+ define_method(method) do
725
+ @datetime.kind_of?(Fixnum) ? @datetime : @datetime.send(method) if @datetime
726
+ end
727
+ end
728
+
729
+ # Returns translated month names, but also ensures that a custom month
730
+ # name array has a leading nil element
731
+ def month_names
732
+ month_names = @options[:use_month_names] || translated_month_names
733
+ month_names.unshift(nil) if month_names.size < 13
734
+ month_names
735
+ end
736
+ memoize :month_names
737
+
738
+ # Returns translated month names
739
+ # => [nil, "January", "February", "March",
740
+ # "April", "May", "June", "July",
741
+ # "August", "September", "October",
742
+ # "November", "December"]
743
+ #
744
+ # If :use_short_month option is set
745
+ # => [nil, "Jan", "Feb", "Mar", "Apr", "May", "Jun",
746
+ # "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
747
+ def translated_month_names
748
+ begin
749
+ key = @options[:use_short_month] ? :'date.abbr_month_names' : :'date.month_names'
750
+ I18n.translate(key, :locale => @options[:locale])
751
+ end
752
+ end
753
+
754
+ # Lookup month name for number
755
+ # month_name(1) => "January"
756
+ #
757
+ # If :use_month_numbers option is passed
758
+ # month_name(1) => 1
759
+ #
760
+ # If :add_month_numbers option is passed
761
+ # month_name(1) => "1 - January"
762
+ def month_name(number)
763
+ if @options[:use_month_numbers]
764
+ number
765
+ elsif @options[:add_month_numbers]
766
+ "#{number} - #{month_names[number]}"
767
+ else
768
+ month_names[number]
769
+ end
770
+ end
771
+
772
+ def date_order
773
+ @options[:order] || translated_date_order
774
+ end
775
+ memoize :date_order
776
+
777
+ def translated_date_order
778
+ begin
779
+ I18n.translate(:'date.order', :locale => @options[:locale]) || []
780
+ end
781
+ end
782
+
783
+ # Build full select tag from date type and options
784
+ def build_options_and_select(type, selected, options = {})
785
+ build_select(type, build_options(selected, options))
786
+ end
787
+
788
+ # Build select option html from date value and options
789
+ # build_options(15, :start => 1, :end => 31)
790
+ # => "<option value="1">1</option>
791
+ # <option value=\"2\">2</option>
792
+ # <option value=\"3\">3</option>..."
793
+ def build_options(selected, options = {})
794
+ start = options.delete(:start) || 0
795
+ stop = options.delete(:end) || 59
796
+ step = options.delete(:step) || 1
797
+ leading_zeros = options.delete(:leading_zeros).nil? ? true : false
798
+
799
+ select_options = []
800
+ start.step(stop, step) do |i|
801
+ value = leading_zeros ? sprintf("%02d", i) : i
802
+ tag_options = { :value => value }
803
+ tag_options[:selected] = "selected" if selected == i
804
+ select_options << content_tag(:option, value, tag_options)
805
+ end
806
+ select_options.join("\n") + "\n"
807
+ end
808
+
809
+ # Builds select tag from date type and html select options
810
+ # build_select(:month, "<option value="1">January</option>...")
811
+ # => "<select id="post_written_on_2i" name="post[written_on(2i)]">
812
+ # <option value="1">January</option>...
813
+ # </select>"
814
+ def build_select(type, select_options_as_html)
815
+ select_options = {
816
+ :id => input_id_from_type(type),
817
+ :name => input_name_from_type(type)
818
+ }.merge(@html_options)
819
+ select_options.merge!(:disabled => 'disabled') if @options[:disabled]
820
+
821
+ select_html = "\n"
822
+ select_html << content_tag(:option, '', :value => '') + "\n" if @options[:include_blank]
823
+ select_html << prompt_option_tag(type, @options[:prompt]) + "\n" if @options[:prompt]
824
+ select_html << select_options_as_html.to_s
825
+
826
+ content_tag(:select, select_html, select_options) + "\n"
827
+ end
828
+
829
+ # Builds a prompt option tag with supplied options or from default options
830
+ # prompt_option_tag(:month, :prompt => 'Select month')
831
+ # => "<option value="">Select month</option>"
832
+ def prompt_option_tag(type, options)
833
+ default_options = {:year => false, :month => false, :day => false, :hour => false, :minute => false, :second => false}
834
+
835
+ case options
836
+ when Hash
837
+ prompt = default_options.merge(options)[type.to_sym]
838
+ when String
839
+ prompt = options
840
+ else
841
+ prompt = I18n.translate(('datetime.prompts.' + type.to_s).to_sym, :locale => @options[:locale])
842
+ end
843
+
844
+ prompt ? content_tag(:option, prompt, :value => '') : ''
845
+ end
846
+
847
+ # Builds hidden input tag for date part and value
848
+ # build_hidden(:year, 2008)
849
+ # => "<input id="post_written_on_1i" name="post[written_on(1i)]" type="hidden" value="2008" />"
850
+ def build_hidden(type, value)
851
+ tag(:input, {
852
+ :type => "hidden",
853
+ :id => input_id_from_type(type),
854
+ :name => input_name_from_type(type),
855
+ :value => value
856
+ }) + "\n"
857
+ end
858
+
859
+ # Returns the name attribute for the input tag
860
+ # => post[written_on(1i)]
861
+ def input_name_from_type(type)
862
+ prefix = @options[:prefix] || ActionView::Helpers::DateTimeSelector::DEFAULT_PREFIX
863
+ prefix += "[#{@options[:index]}]" if @options.has_key?(:index)
864
+
865
+ field_name = @options[:field_name] || type
866
+ if @options[:include_position]
867
+ field_name += "(#{ActionView::Helpers::DateTimeSelector::POSITION[type]}i)"
868
+ end
869
+
870
+ @options[:discard_type] ? prefix : "#{prefix}[#{field_name}]"
871
+ end
872
+
873
+ # Returns the id attribute for the input tag
874
+ # => "post_written_on_1i"
875
+ def input_id_from_type(type)
876
+ input_name_from_type(type).gsub(/([\[\(])|(\]\[)/, '_').gsub(/[\]\)]/, '')
877
+ end
878
+
879
+ # Given an ordering of datetime components, create the selection HTML
880
+ # and join them with their appropriate separators.
881
+ def build_selects_from_types(order)
882
+ select = ''
883
+ order.reverse.each do |type|
884
+ separator = separator(type) unless type == order.first # don't add on last field
885
+ select.insert(0, separator.to_s + send("select_#{type}").to_s)
886
+ end
887
+ select
888
+ end
889
+
890
+ # Returns the separator for a given datetime component
891
+ def separator(type)
892
+ case type
893
+ when :month, :day
894
+ @options[:date_separator]
895
+ when :hour
896
+ (@options[:discard_year] && @options[:discard_day]) ? "" : @options[:datetime_separator]
897
+ when :minute
898
+ @options[:time_separator]
899
+ when :second
900
+ @options[:include_seconds] ? @options[:time_separator] : ""
901
+ end
902
+ end
903
+ end
904
+
905
+ class InstanceTag #:nodoc:
906
+ def to_date_select_tag(options = {}, html_options = {})
907
+ datetime_selector(options, html_options).select_date
908
+ end
909
+
910
+ def to_time_select_tag(options = {}, html_options = {})
911
+ datetime_selector(options, html_options).select_time
912
+ end
913
+
914
+ def to_datetime_select_tag(options = {}, html_options = {})
915
+ datetime_selector(options, html_options).select_datetime
916
+ end
917
+
918
+ private
919
+ def datetime_selector(options, html_options)
920
+ datetime = value(object) || default_datetime(options)
921
+
922
+ options = options.dup
923
+ options[:field_name] = @method_name
924
+ options[:include_position] = true
925
+ options[:prefix] ||= @object_name
926
+ options[:index] = @auto_index if @auto_index && !options.has_key?(:index)
927
+ options[:datetime_separator] ||= ' &mdash; '
928
+ options[:time_separator] ||= ' : '
929
+
930
+ DateTimeSelector.new(datetime, options.merge(:tag => true), html_options)
931
+ end
932
+
933
+ def default_datetime(options)
934
+ return if options[:include_blank] || options[:prompt]
935
+
936
+ case options[:default]
937
+ when nil
938
+ Time.current
939
+ when Date, Time
940
+ options[:default]
941
+ else
942
+ default = options[:default].dup
943
+
944
+ # Rename :minute and :second to :min and :sec
945
+ default[:min] ||= default[:minute]
946
+ default[:sec] ||= default[:second]
947
+
948
+ time = Time.current
949
+
950
+ [:year, :month, :day, :hour, :min, :sec].each do |key|
951
+ default[key] ||= time.send(key)
952
+ end
953
+
954
+ Time.utc_time(
955
+ default[:year], default[:month], default[:day],
956
+ default[:hour], default[:min], default[:sec]
957
+ )
958
+ end
959
+ end
960
+ end
961
+
962
+ class FormBuilder
963
+ def date_select(method, options = {}, html_options = {})
964
+ @template.date_select(@object_name, method, objectify_options(options), html_options)
965
+ end
966
+
967
+ def time_select(method, options = {}, html_options = {})
968
+ @template.time_select(@object_name, method, objectify_options(options), html_options)
969
+ end
970
+
971
+ def datetime_select(method, options = {}, html_options = {})
972
+ @template.datetime_select(@object_name, method, objectify_options(options), html_options)
973
+ end
974
+ end
975
+ end
976
+ end