spree 0.0.8 → 0.0.9

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of spree might be problematic. Click here for more details.

Files changed (1960) hide show
  1. data/CHANGELOG +47 -0
  2. data/CONTRIBUTORS +27 -0
  3. data/INSTALL +27 -0
  4. data/{starter-app/vendor/plugins/spree/LICENSE → LICENSE} +0 -0
  5. data/{README.txt → README} +0 -0
  6. data/Rakefile +11 -4
  7. data/{starter-app/vendor/plugins/spree/app → app}/controllers/account_controller.rb +0 -0
  8. data/{starter-app/vendor/plugins/spree/app → app}/controllers/admin/base_controller.rb +0 -0
  9. data/{starter-app/vendor/plugins/spree/app → app}/controllers/admin/categories_controller.rb +0 -0
  10. data/{starter-app/vendor/plugins/spree/app → app}/controllers/admin/images_controller.rb +0 -0
  11. data/app/controllers/admin/inventory_units_controller.rb +27 -0
  12. data/{starter-app/vendor/plugins/spree/app → app}/controllers/admin/option_types_controller.rb +0 -0
  13. data/app/controllers/admin/orders_controller.rb +272 -0
  14. data/{starter-app/vendor/plugins/spree/app → app}/controllers/admin/overview_controller.rb +0 -0
  15. data/app/controllers/admin/products_controller.rb +169 -0
  16. data/{starter-app/vendor/plugins/spree/app → app}/controllers/admin/reports_controller.rb +0 -0
  17. data/{starter-app/vendor/plugins/spree/app → app}/controllers/admin/users_controller.rb +0 -0
  18. data/app/controllers/application.rb +24 -0
  19. data/app/controllers/cart_controller.rb +44 -0
  20. data/app/controllers/checkout_controller.rb +180 -0
  21. data/app/controllers/spree/base_controller.rb +47 -0
  22. data/{starter-app/vendor/plugins/spree/app → app}/controllers/store_controller.rb +0 -0
  23. data/{starter-app/vendor/plugins/spree/app → app}/helpers/account_helper.rb +0 -0
  24. data/{starter-app/vendor/plugins/spree/app → app}/helpers/admin/base_helper.rb +0 -0
  25. data/{starter-app/vendor/plugins/spree/app → app}/helpers/admin/categories_helper.rb +0 -0
  26. data/{starter-app/vendor/plugins/spree/app → app}/helpers/admin/option_values_helper.rb +0 -0
  27. data/{starter-app/vendor/plugins/spree/app → app}/helpers/admin/orders_helper.rb +0 -0
  28. data/{starter-app/vendor/plugins/spree/app → app}/helpers/admin/overview_helper.rb +0 -0
  29. data/{starter-app/vendor/plugins/spree/app → app}/helpers/admin/products_helper.rb +0 -0
  30. data/{starter-app/vendor/plugins/spree/app → app}/helpers/admin/users_helper.rb +0 -0
  31. data/app/helpers/application_helper.rb +9 -0
  32. data/{starter-app/vendor/plugins/spree/app → app}/helpers/cart_helper.rb +0 -0
  33. data/app/helpers/checkout_helper.rb +14 -0
  34. data/{starter-app/vendor/plugins/spree/app → app}/helpers/search_helper.rb +0 -0
  35. data/app/helpers/spree/base_helper.rb +105 -0
  36. data/{starter-app/vendor/plugins/spree/app → app}/helpers/store_helper.rb +0 -0
  37. data/{starter-app/vendor/plugins/spree/app → app}/models/address.rb +0 -0
  38. data/{starter-app/vendor/plugins/spree/app → app}/models/cart.rb +0 -0
  39. data/app/models/cart_item.rb +29 -0
  40. data/{starter-app/vendor/plugins/spree/app → app}/models/category.rb +0 -0
  41. data/{starter-app/vendor/plugins/spree/app → app}/models/country.rb +0 -0
  42. data/{starter-app/vendor/plugins/spree/app → app}/models/credit_card.rb +0 -0
  43. data/app/models/image.rb +13 -0
  44. data/app/models/inventory_level.rb +19 -0
  45. data/app/models/inventory_unit.rb +49 -0
  46. data/{starter-app/vendor/plugins/spree/app → app}/models/line_item.rb +0 -0
  47. data/{starter-app/vendor/plugins/spree/app → app}/models/option_type.rb +0 -0
  48. data/{starter-app/vendor/plugins/spree/app → app}/models/option_value.rb +0 -0
  49. data/app/models/order.rb +88 -0
  50. data/{starter-app/vendor/plugins/spree/app → app}/models/order_mailer.rb +0 -0
  51. data/{starter-app/vendor/plugins/spree/app → app}/models/order_operation.rb +0 -0
  52. data/{starter-app/vendor/plugins/spree/app → app}/models/payment.rb +0 -0
  53. data/app/models/product.rb +64 -0
  54. data/{starter-app/vendor/plugins/spree/app → app}/models/product_option_type.rb +0 -0
  55. data/{starter-app/app → app}/models/role.rb +0 -0
  56. data/{starter-app/vendor/plugins/spree/app → app}/models/search_criteria.rb +0 -0
  57. data/{starter-app/vendor/plugins/spree/app → app}/models/state.rb +0 -0
  58. data/{starter-app/vendor/plugins/spree/app → app}/models/tax_treatment.rb +0 -0
  59. data/{starter-app/vendor/plugins/spree/app → app}/models/txn.rb +0 -0
  60. data/{starter-app/app → app}/models/user.rb +0 -0
  61. data/app/models/variant.rb +11 -0
  62. data/{starter-app/vendor/plugins/spree/app → app}/views/account/index.rhtml +0 -0
  63. data/{starter-app/vendor/plugins/spree/app → app}/views/account/login.rhtml +0 -0
  64. data/{starter-app/vendor/plugins/spree/app → app}/views/account/signup.rhtml +0 -0
  65. data/{starter-app/vendor/plugins/spree/app → app}/views/admin/categories/_form.rhtml +0 -0
  66. data/{starter-app/vendor/plugins/spree/app → app}/views/admin/categories/edit.rhtml +0 -0
  67. data/{starter-app/vendor/plugins/spree/app → app}/views/admin/categories/list.rhtml +0 -0
  68. data/{starter-app/vendor/plugins/spree/app → app}/views/admin/categories/new.rhtml +0 -0
  69. data/{starter-app/vendor/plugins/spree/app → app}/views/admin/images/new.html.erb +0 -0
  70. data/app/views/admin/inventory_units/adjust.html.erb +32 -0
  71. data/{starter-app/vendor/plugins/spree/app → app}/views/admin/option_types/_form.rhtml +0 -0
  72. data/{starter-app/vendor/plugins/spree/app → app}/views/admin/option_types/_new_option_value.rhtml +0 -0
  73. data/{starter-app/vendor/plugins/spree/app → app}/views/admin/option_types/_option_values.rhtml +0 -0
  74. data/{starter-app/vendor/plugins/spree/app → app}/views/admin/option_types/edit.rhtml +0 -0
  75. data/{starter-app/vendor/plugins/spree/app → app}/views/admin/option_types/index.rhtml +0 -0
  76. data/{starter-app/vendor/plugins/spree/app → app}/views/admin/option_types/new.rhtml +0 -0
  77. data/{starter-app/vendor/plugins/spree/app → app}/views/admin/option_types/select.rhtml +0 -0
  78. data/{starter-app/vendor/plugins/spree/app → app}/views/admin/orders/_address.rhtml +0 -0
  79. data/{starter-app/vendor/plugins/spree/app → app}/views/admin/orders/index.rhtml +0 -0
  80. data/{starter-app/vendor/plugins/spree/app → app}/views/admin/orders/show.rhtml +0 -0
  81. data/{starter-app/vendor/plugins/spree/app → app}/views/admin/overview/index.rhtml +0 -0
  82. data/app/views/admin/products/_form.rhtml +70 -0
  83. data/{starter-app/vendor/plugins/spree/app → app}/views/admin/products/_menu.rhtml +0 -0
  84. data/{starter-app/vendor/plugins/spree/app → app}/views/admin/products/_new_variant.rhtml +0 -0
  85. data/app/views/admin/products/_option_types.rhtml +42 -0
  86. data/app/views/admin/products/_variants.rhtml +50 -0
  87. data/{starter-app/vendor/plugins/spree/app → app}/views/admin/products/edit.rhtml +0 -0
  88. data/app/views/admin/products/index.rhtml +62 -0
  89. data/{starter-app/vendor/plugins/spree/app → app}/views/admin/products/new.rhtml +0 -0
  90. data/{starter-app/vendor/plugins/spree/app → app}/views/admin/reports/index.rhtml +0 -0
  91. data/{starter-app/vendor/plugins/spree/app → app}/views/admin/reports/sales_total.rhtml +0 -0
  92. data/{starter-app/vendor/plugins/spree/app → app}/views/admin/users/_form.rhtml +0 -0
  93. data/{starter-app/vendor/plugins/spree/app → app}/views/admin/users/_menu.rhtml +0 -0
  94. data/{starter-app/vendor/plugins/spree/app → app}/views/admin/users/edit.rhtml +0 -0
  95. data/{starter-app/vendor/plugins/spree/app → app}/views/admin/users/index.rhtml +0 -0
  96. data/{starter-app/vendor/plugins/spree/app → app}/views/admin/users/new.rhtml +0 -0
  97. data/{starter-app/vendor/plugins/spree/app → app}/views/admin/users/show.rhtml +0 -0
  98. data/app/views/cart/index.rhtml +49 -0
  99. data/{starter-app/vendor/plugins/spree/app → app}/views/checkout/_address.rhtml +0 -0
  100. data/{starter-app/vendor/plugins/spree/app → app}/views/checkout/_address_ro.rhtml +0 -0
  101. data/{starter-app/vendor/plugins/spree/app → app}/views/checkout/_cart_item.rhtml +0 -0
  102. data/{starter-app/vendor/plugins/spree/app → app}/views/checkout/_extra.rhtml +0 -0
  103. data/{starter-app/vendor/plugins/spree/app → app}/views/checkout/addresses.rhtml +0 -0
  104. data/{starter-app/vendor/plugins/spree/app → app}/views/checkout/cvv.rhtml +0 -0
  105. data/{starter-app/vendor/plugins/spree/app → app}/views/checkout/empty_cart.rhtml +0 -0
  106. data/{starter-app/vendor/plugins/spree/app → app}/views/checkout/final_confirmation.rhtml +0 -0
  107. data/{starter-app/vendor/plugins/spree/app → app}/views/checkout/incomplete.rhtml +0 -0
  108. data/{starter-app/vendor/plugins/spree/app → app}/views/checkout/thank_you.rhtml +0 -0
  109. data/app/views/layouts/admin.rhtml +70 -0
  110. data/app/views/layouts/application.rhtml +50 -0
  111. data/app/views/layouts/products.rhtml +19 -0
  112. data/{starter-app/vendor/plugins/spree/app → app}/views/layouts/simple.rhtml +0 -0
  113. data/app/views/order_mailer/cancel.rhtml +15 -0
  114. data/app/views/order_mailer/confirm.rhtml +18 -0
  115. data/{starter-app/vendor/plugins/spree/app → app}/views/shared/_images.html.erb +0 -0
  116. data/{starter-app/vendor/plugins/spree/app → app}/views/shared/_order_details.rhtml +0 -0
  117. data/{starter-app/vendor/plugins/spree/app → app}/views/shared/_paginate.rhtml +0 -0
  118. data/{starter-app/vendor/plugins/spree/app → app}/views/shared/_report_criteria.rhtml +0 -0
  119. data/{starter-app/app → app}/views/shared/_store_menu.rhtml +0 -0
  120. data/{starter-app/vendor/plugins/spree/app → app}/views/shared/_tax_treatments.rhtml +0 -0
  121. data/{starter-app/vendor/plugins/spree/app → app}/views/store/_image.html.erb +0 -0
  122. data/{starter-app/vendor/plugins/spree/app → app}/views/store/_products.rhtml +0 -0
  123. data/{starter-app/vendor/plugins/spree/app → app}/views/store/_thumbnails.html.erb +0 -0
  124. data/app/views/store/list.rhtml +14 -0
  125. data/app/views/store/show.rhtml +60 -0
  126. data/bin/spree +35 -144
  127. data/config/boot.rb +148 -0
  128. data/{starter-app/config → config}/database.yml +0 -0
  129. data/config/environment.rb +143 -0
  130. data/config/environments/development.rb +24 -0
  131. data/{starter-app/config → config}/environments/production.rb +0 -0
  132. data/{starter-app/config → config}/environments/test.rb +0 -0
  133. data/config/routes.rb +31 -0
  134. data/db/development_structure.sql +267 -0
  135. data/{starter-app/vendor/plugins/spree/db → db}/migrate/001_create_addresses.rb +0 -0
  136. data/{starter-app/vendor/plugins/spree/db → db}/migrate/002_create_cart_items.rb +0 -0
  137. data/{starter-app/vendor/plugins/spree/db → db}/migrate/003_create_carts.rb +0 -0
  138. data/{starter-app/vendor/plugins/spree/db → db}/migrate/004_create_categories.rb +0 -0
  139. data/{starter-app/vendor/plugins/spree/db → db}/migrate/005_create_categories_products.rb +0 -0
  140. data/{starter-app/vendor/plugins/spree/db → db}/migrate/006_create_line_items.rb +0 -0
  141. data/{starter-app/vendor/plugins/spree/db → db}/migrate/007_create_option_values.rb +0 -0
  142. data/db/migrate/008_create_orders.rb +23 -0
  143. data/db/migrate/009_create_products.rb +16 -0
  144. data/{starter-app/vendor/plugins/spree/db → db}/migrate/010_create_txns.rb +0 -0
  145. data/db/migrate/011_create_variants.rb +12 -0
  146. data/{starter-app/vendor/plugins/spree/db → db}/migrate/012_create_tax_treatments.rb +0 -0
  147. data/{starter-app/vendor/plugins/spree/db/migrate/014_create_countries.rb → db/migrate/013_create_countries.rb} +0 -0
  148. data/{starter-app/vendor/plugins/spree/db/migrate/015_create_states.rb → db/migrate/014_create_states.rb} +0 -0
  149. data/{starter-app/vendor/plugins/spree/db/migrate/016_create_option_types.rb → db/migrate/015_create_option_types.rb} +0 -0
  150. data/{starter-app/vendor/plugins/spree/db/migrate/017_create_product_option_types.rb → db/migrate/016_create_product_option_types.rb} +0 -0
  151. data/{starter-app/vendor/plugins/spree/db/migrate/018_create_option_values_variants.rb → db/migrate/017_create_option_values_variants.rb} +0 -0
  152. data/db/migrate/018_create_images.rb +20 -0
  153. data/{starter-app/vendor/plugins/spree/db/migrate/020_create_credit_cards.rb → db/migrate/019_create_credit_cards.rb} +0 -0
  154. data/{starter-app/vendor/plugins/spree/db/migrate/021_create_order_operations.rb → db/migrate/020_create_order_operations.rb} +0 -0
  155. data/db/migrate/021_create_inventory_units.rb +15 -0
  156. data/{starter-app/db/migrate/001_create_users.rb → db/migrate/022_create_users.rb} +0 -0
  157. data/{starter-app/db/migrate/002_create_roles.rb → db/migrate/023_create_roles.rb} +0 -0
  158. data/{starter-app/db → db}/sample/addresses.yml +0 -0
  159. data/{starter-app/db → db}/sample/categories.yml +0 -0
  160. data/{starter-app/db → db}/sample/countries.yml +0 -0
  161. data/db/sample/credit_cards.yml +12 -0
  162. data/db/sample/images.yml +300 -0
  163. data/{starter-app/vendor/plugins/spree/assets/images/products → db/sample/images}/ror_bag.jpg +0 -0
  164. data/{starter-app/vendor/plugins/spree/assets/images/products → db/sample/images}/ror_baseball_jersey.jpg +0 -0
  165. data/{starter-app/vendor/plugins/spree/assets/images/products → db/sample/images}/ror_jr_spaghetti.jpg +0 -0
  166. data/{starter-app/vendor/plugins/spree/assets/images/products → db/sample/images}/ror_mug.jpg +0 -0
  167. data/{starter-app/vendor/plugins/spree/assets/images/products → db/sample/images}/ror_ringer_tshirt.jpg +0 -0
  168. data/{starter-app/vendor/plugins/spree/assets/images/products → db/sample/images}/ror_stein.jpg +0 -0
  169. data/{starter-app/vendor/plugins/spree/assets/images/products → db/sample/images}/ror_tote.jpg +0 -0
  170. data/db/sample/inventory_units.yml +98 -0
  171. data/db/sample/line_items.yml +25 -0
  172. data/{starter-app/db → db}/sample/option_types.yml +0 -0
  173. data/{starter-app/db → db}/sample/option_values.yml +0 -0
  174. data/db/sample/orders.yml +15 -0
  175. data/{starter-app/db → db}/sample/product_option_types.yml +0 -0
  176. data/{starter-app/db → db}/sample/products.yml +0 -0
  177. data/{starter-app/db → db}/sample/roles.yml +0 -0
  178. data/{starter-app/db → db}/sample/states.yml +0 -0
  179. data/{starter-app/db → db}/sample/txns.yml +0 -0
  180. data/{starter-app/db → db}/sample/users.yml +0 -0
  181. data/db/sample/variants.yml +61 -0
  182. data/{starter-app/lib → lib}/authenticated_system.rb +0 -0
  183. data/{starter-app/lib → lib}/authenticated_test_helper.rb +0 -0
  184. data/{starter-app/lib → lib}/custom_fixtures.rb +0 -0
  185. data/{starter-app/vendor/plugins/spree/lib/shipping → lib}/flat_rate.rb +0 -0
  186. data/{starter-app/vendor/plugins/spree/lib → lib}/format.rb +0 -0
  187. data/lib/generators/instance/instance_generator.rb +129 -0
  188. data/lib/generators/instance/templates/databases/mysql.yml +47 -0
  189. data/lib/generators/instance/templates/databases/postgresql.yml +44 -0
  190. data/lib/generators/instance/templates/databases/sqlite3.yml +16 -0
  191. data/lib/generators/instance/templates/databases/sqlserver.yml +20 -0
  192. data/lib/generators/instance/templates/demo_mongrel_cluster.yml +7 -0
  193. data/lib/generators/instance/templates/demo_robots.txt +2 -0
  194. data/lib/generators/instance/templates/instance_boot.rb +148 -0
  195. data/lib/generators/instance/templates/instance_environment.rb +136 -0
  196. data/lib/generators/instance/templates/instance_generate +16 -0
  197. data/lib/generators/instance/templates/instance_rakefile +3 -0
  198. data/lib/generators/instance/templates/instance_routes.rb +1 -0
  199. data/{starter-app/lib → lib}/hijacker.rb +0 -0
  200. data/lib/plugins/extension_patches/init.rb +7 -0
  201. data/lib/plugins/extension_patches/lib/fixture_loading_extension.rb +80 -0
  202. data/lib/plugins/extension_patches/lib/mailer_hack.rb +8 -0
  203. data/lib/plugins/extension_patches/lib/routing_extension.rb +37 -0
  204. data/{starter-app/vendor → lib}/plugins/paginating_find/CHANGELOG +0 -0
  205. data/{starter-app/vendor → lib}/plugins/paginating_find/README +0 -0
  206. data/{starter-app/vendor → lib}/plugins/paginating_find/init.rb +0 -0
  207. data/{starter-app/vendor → lib}/plugins/paginating_find/lib/paginating_find.rb +0 -0
  208. data/{starter-app/vendor → lib}/plugins/paginating_find/lib/paging_enumerator.rb +0 -0
  209. data/{starter-app/vendor → lib}/plugins/paginating_find/lib/paging_helper.rb +0 -0
  210. data/{starter-app → lib/plugins/paginating_find/test_app}/Rakefile +0 -0
  211. data/{starter-app/vendor → lib}/plugins/paginating_find/test_app/app/controllers/application.rb +0 -0
  212. data/{starter-app/vendor → lib}/plugins/paginating_find/test_app/config/boot.rb +0 -0
  213. data/{starter-app/vendor → lib}/plugins/paginating_find/test_app/config/database.yml +0 -0
  214. data/{starter-app/vendor → lib}/plugins/paginating_find/test_app/config/environment.rb +0 -0
  215. data/{starter-app/vendor → lib}/plugins/paginating_find/test_app/config/environments/test.rb +0 -0
  216. data/{starter-app/vendor → lib}/plugins/paginating_find/test_app/config/routes.rb +0 -0
  217. data/{starter-app → lib/plugins/paginating_find/test_app}/script/breakpointer +0 -0
  218. data/{starter-app → lib/plugins/paginating_find/test_app}/script/console +0 -0
  219. data/{starter-app/vendor → lib}/plugins/paginating_find/test_app/test/fixtures/articles.yml +0 -0
  220. data/{starter-app/vendor → lib}/plugins/paginating_find/test_app/test/fixtures/authors.yml +0 -0
  221. data/{starter-app/vendor → lib}/plugins/paginating_find/test_app/test/fixtures/edits.yml +0 -0
  222. data/{starter-app/vendor → lib}/plugins/paginating_find/test_app/test/fixtures/models.rb +0 -0
  223. data/{starter-app/vendor → lib}/plugins/paginating_find/test_app/test/test_helper.rb +0 -0
  224. data/{starter-app/vendor → lib}/plugins/paginating_find/test_app/test/unit/abstract_test.rb +0 -0
  225. data/{starter-app/vendor → lib}/plugins/paginating_find/test_app/test/unit/group_test.rb +0 -0
  226. data/{starter-app/vendor → lib}/plugins/paginating_find/test_app/test/unit/paginating_find_test.rb +0 -0
  227. data/{starter-app/vendor → lib}/plugins/paginating_find/test_app/test/unit/paging_enumerator_test.rb +0 -0
  228. data/{starter-app/lib → lib}/role_requirement_system.rb +0 -0
  229. data/{starter-app/lib → lib}/role_requirement_test_helper.rb +0 -0
  230. data/lib/sales_tax.rb +26 -0
  231. data/lib/spree.rb +22 -0
  232. data/{starter-app/vendor/plugins/spree/lib/gateway → lib/spree}/bogus_gateway.rb +0 -0
  233. data/lib/spree/initializer.rb +154 -0
  234. data/lib/spree/setup.rb +146 -0
  235. data/lib/tasks/database.rake +35 -0
  236. data/lib/tasks/environments.rake +11 -0
  237. data/lib/tasks/instance.rake +26 -0
  238. data/lib/tasks/release.rake +98 -0
  239. data/{starter-app/lib → lib}/tasks/sample/products/0000/0001/ror_tote.jpeg +0 -0
  240. data/{starter-app/lib → lib}/tasks/sample/products/0000/0001/ror_tote_mini.jpeg +0 -0
  241. data/{starter-app/lib → lib}/tasks/sample/products/0000/0001/ror_tote_product.jpeg +0 -0
  242. data/{starter-app/lib → lib}/tasks/sample/products/0000/0001/ror_tote_small.jpeg +0 -0
  243. data/{starter-app/lib → lib}/tasks/sample/products/0000/0002/ror_tote_back.jpeg +0 -0
  244. data/{starter-app/lib → lib}/tasks/sample/products/0000/0002/ror_tote_back_mini.jpeg +0 -0
  245. data/{starter-app/lib → lib}/tasks/sample/products/0000/0002/ror_tote_back_product.jpeg +0 -0
  246. data/{starter-app/lib → lib}/tasks/sample/products/0000/0002/ror_tote_back_small.jpeg +0 -0
  247. data/{starter-app/lib → lib}/tasks/sample/products/0000/0003/ror_bag.jpeg +0 -0
  248. data/{starter-app/lib → lib}/tasks/sample/products/0000/0003/ror_bag_mini.jpeg +0 -0
  249. data/{starter-app/lib → lib}/tasks/sample/products/0000/0003/ror_bag_product.jpeg +0 -0
  250. data/{starter-app/lib → lib}/tasks/sample/products/0000/0003/ror_bag_small.jpeg +0 -0
  251. data/{starter-app/lib → lib}/tasks/sample/products/0000/0004/ror_baseball.jpeg +0 -0
  252. data/{starter-app/lib → lib}/tasks/sample/products/0000/0004/ror_baseball_mini.jpeg +0 -0
  253. data/{starter-app/lib → lib}/tasks/sample/products/0000/0004/ror_baseball_product.jpeg +0 -0
  254. data/{starter-app/lib → lib}/tasks/sample/products/0000/0004/ror_baseball_small.jpeg +0 -0
  255. data/{starter-app/lib → lib}/tasks/sample/products/0000/0005/ror_baseball_back.jpeg +0 -0
  256. data/{starter-app/lib → lib}/tasks/sample/products/0000/0005/ror_baseball_back_mini.jpeg +0 -0
  257. data/{starter-app/lib → lib}/tasks/sample/products/0000/0005/ror_baseball_back_product.jpeg +0 -0
  258. data/{starter-app/lib → lib}/tasks/sample/products/0000/0005/ror_baseball_back_small.jpeg +0 -0
  259. data/{starter-app/lib → lib}/tasks/sample/products/0000/0006/ror_jr_spaghetti.jpeg +0 -0
  260. data/{starter-app/lib → lib}/tasks/sample/products/0000/0006/ror_jr_spaghetti_mini.jpeg +0 -0
  261. data/{starter-app/lib → lib}/tasks/sample/products/0000/0006/ror_jr_spaghetti_product.jpeg +0 -0
  262. data/{starter-app/lib → lib}/tasks/sample/products/0000/0006/ror_jr_spaghetti_small.jpeg +0 -0
  263. data/{starter-app/lib → lib}/tasks/sample/products/0000/0007/ror_mug.jpeg +0 -0
  264. data/{starter-app/lib → lib}/tasks/sample/products/0000/0007/ror_mug_mini.jpeg +0 -0
  265. data/{starter-app/lib → lib}/tasks/sample/products/0000/0007/ror_mug_product.jpeg +0 -0
  266. data/{starter-app/lib → lib}/tasks/sample/products/0000/0007/ror_mug_small.jpeg +0 -0
  267. data/{starter-app/lib → lib}/tasks/sample/products/0000/0008/ror_mug_back.jpeg +0 -0
  268. data/{starter-app/lib → lib}/tasks/sample/products/0000/0008/ror_mug_back_mini.jpeg +0 -0
  269. data/{starter-app/lib → lib}/tasks/sample/products/0000/0008/ror_mug_back_product.jpeg +0 -0
  270. data/{starter-app/lib → lib}/tasks/sample/products/0000/0008/ror_mug_back_small.jpeg +0 -0
  271. data/{starter-app/lib → lib}/tasks/sample/products/0000/0009/ror_ringer.jpeg +0 -0
  272. data/{starter-app/lib → lib}/tasks/sample/products/0000/0009/ror_ringer_mini.jpeg +0 -0
  273. data/{starter-app/lib → lib}/tasks/sample/products/0000/0009/ror_ringer_product.jpeg +0 -0
  274. data/{starter-app/lib → lib}/tasks/sample/products/0000/0009/ror_ringer_small.jpeg +0 -0
  275. data/{starter-app/lib → lib}/tasks/sample/products/0000/0010/ror_ringer_back.jpeg +0 -0
  276. data/{starter-app/lib → lib}/tasks/sample/products/0000/0010/ror_ringer_back_mini.jpeg +0 -0
  277. data/{starter-app/lib → lib}/tasks/sample/products/0000/0010/ror_ringer_back_product.jpeg +0 -0
  278. data/{starter-app/lib → lib}/tasks/sample/products/0000/0010/ror_ringer_back_small.jpeg +0 -0
  279. data/{starter-app/lib → lib}/tasks/sample/products/0000/0011/ror_stein.jpeg +0 -0
  280. data/{starter-app/lib → lib}/tasks/sample/products/0000/0011/ror_stein_mini.jpeg +0 -0
  281. data/{starter-app/lib → lib}/tasks/sample/products/0000/0011/ror_stein_product.jpeg +0 -0
  282. data/{starter-app/lib → lib}/tasks/sample/products/0000/0011/ror_stein_small.jpeg +0 -0
  283. data/{starter-app/lib → lib}/tasks/sample/products/0000/0012/ror_stein_back.jpeg +0 -0
  284. data/{starter-app/lib → lib}/tasks/sample/products/0000/0012/ror_stein_back_mini.jpeg +0 -0
  285. data/{starter-app/lib → lib}/tasks/sample/products/0000/0012/ror_stein_back_product.jpeg +0 -0
  286. data/{starter-app/lib → lib}/tasks/sample/products/0000/0012/ror_stein_back_small.jpeg +0 -0
  287. data/{starter-app/lib → lib}/tasks/spree_sample_data.rake +0 -0
  288. data/{starter-app/log → log}/README +0 -0
  289. data/{starter-app/public → public}/.htaccess +0 -0
  290. data/{starter-app/public → public}/404.html +0 -0
  291. data/{starter-app/public → public}/500.html +0 -0
  292. data/{starter-app/public → public}/dispatch.cgi +0 -0
  293. data/{starter-app/public → public}/dispatch.fcgi +0 -0
  294. data/{starter-app/public → public}/dispatch.rb +0 -0
  295. data/{starter-app/public → public}/favicon.ico +0 -0
  296. data/{starter-app/vendor/plugins/spree/assets → public}/images/amex_cid.gif +0 -0
  297. data/{starter-app/vendor/plugins/calendar_date_select/public → public}/images/calendar_date_select/calendar.gif +0 -0
  298. data/{starter-app/vendor/plugins/spree/assets → public}/images/creditcard.gif +0 -0
  299. data/{starter-app/vendor/plugins/spree/assets → public}/images/discover_cid.gif +0 -0
  300. data/{starter-app/vendor/plugins/spree/assets → public}/images/master_cid.jpg +0 -0
  301. data/{starter-app/public → public}/images/rails.png +0 -0
  302. data/{starter-app/vendor/plugins/spree/assets → public}/images/spinner.gif +0 -0
  303. data/{starter-app/public → public}/images/spree.jpg +0 -0
  304. data/{starter-app/vendor/plugins/spree/assets → public}/images/spree/progress.gif +0 -0
  305. data/{starter-app/vendor/plugins/spree/assets → public}/images/spree/spinner.gif +0 -0
  306. data/{starter-app/vendor/plugins/spree/assets → public}/images/spree/spree.jpg +0 -0
  307. data/{starter-app/vendor/plugins/spree/assets → public}/images/visa_cid.gif +0 -0
  308. data/{starter-app/public → public}/javascripts/application.js +0 -0
  309. data/{starter-app/vendor/plugins/calendar_date_select/public → public}/javascripts/calendar_date_select/calendar_date_select.js +0 -0
  310. data/{starter-app/vendor/plugins/calendar_date_select/public → public}/javascripts/calendar_date_select/format_american.js +0 -0
  311. data/{starter-app/vendor/plugins/calendar_date_select/public → public}/javascripts/calendar_date_select/format_euro_24hr.js +0 -0
  312. data/{starter-app/vendor/plugins/calendar_date_select/public → public}/javascripts/calendar_date_select/format_finnish.js +0 -0
  313. data/{starter-app/vendor/plugins/calendar_date_select/public → public}/javascripts/calendar_date_select/format_hyphen_ampm.js +0 -0
  314. data/{starter-app/vendor/plugins/calendar_date_select/public → public}/javascripts/calendar_date_select/format_italian.js +0 -0
  315. data/{starter-app/public → public}/javascripts/controls.js +0 -0
  316. data/{starter-app/public → public}/javascripts/dragdrop.js +0 -0
  317. data/{starter-app/public → public}/javascripts/effects.js +0 -0
  318. data/{starter-app/public → public}/javascripts/prototype.js +0 -0
  319. data/public/plugin_assets/README +5 -0
  320. data/public/plugin_assets/calendar_date_select/images/calendar_date_select/calendar.gif +0 -0
  321. data/public/plugin_assets/calendar_date_select/javascripts/calendar_date_select/calendar_date_select.js +439 -0
  322. data/public/plugin_assets/calendar_date_select/javascripts/calendar_date_select/format_american.js +34 -0
  323. data/public/plugin_assets/calendar_date_select/javascripts/calendar_date_select/format_euro_24hr.js +7 -0
  324. data/public/plugin_assets/calendar_date_select/javascripts/calendar_date_select/format_finnish.js +24 -0
  325. data/public/plugin_assets/calendar_date_select/javascripts/calendar_date_select/format_hyphen_ampm.js +36 -0
  326. data/public/plugin_assets/calendar_date_select/javascripts/calendar_date_select/format_italian.js +24 -0
  327. data/{starter-app/vendor/plugins/calendar_date_select/public → public/plugin_assets/calendar_date_select}/javascripts/calendar_date_select/locale/fi.js +0 -0
  328. data/{starter-app/vendor/plugins/calendar_date_select/public → public/plugin_assets/calendar_date_select}/stylesheets/calendar_date_select/blue.css +0 -0
  329. data/{starter-app/vendor/plugins/calendar_date_select/public → public/plugin_assets/calendar_date_select}/stylesheets/calendar_date_select/default.css +0 -0
  330. data/{starter-app/vendor/plugins/calendar_date_select/public → public/plugin_assets/calendar_date_select}/stylesheets/calendar_date_select/plain.css +0 -0
  331. data/{starter-app/vendor/plugins/calendar_date_select/public → public/plugin_assets/calendar_date_select}/stylesheets/calendar_date_select/red.css +0 -0
  332. data/{starter-app/vendor/plugins/calendar_date_select/public → public/plugin_assets/calendar_date_select}/stylesheets/calendar_date_select/silver.css +0 -0
  333. data/{starter-app/vendor/plugins/spree/assets → public/plugin_assets/spree}/404.html +0 -0
  334. data/{starter-app/vendor/plugins/spree/assets → public/plugin_assets/spree}/500.html +0 -0
  335. data/{starter-app/vendor/plugins/spree/assets → public/plugin_assets/spree}/dispatch.cgi +0 -0
  336. data/{starter-app/vendor/plugins/spree/assets → public/plugin_assets/spree}/dispatch.fcgi +0 -0
  337. data/{starter-app/vendor/plugins/spree/assets → public/plugin_assets/spree}/dispatch.rb +0 -0
  338. data/{starter-app/vendor/plugins/spree/assets → public/plugin_assets/spree}/favicon.ico +0 -0
  339. data/public/plugin_assets/spree/images/amex_cid.gif +0 -0
  340. data/public/plugin_assets/spree/images/creditcard.gif +0 -0
  341. data/public/plugin_assets/spree/images/discover_cid.gif +0 -0
  342. data/public/plugin_assets/spree/images/master_cid.jpg +0 -0
  343. data/public/plugin_assets/spree/images/products/ror_bag.jpg +0 -0
  344. data/public/plugin_assets/spree/images/products/ror_baseball_jersey.jpg +0 -0
  345. data/public/plugin_assets/spree/images/products/ror_jr_spaghetti.jpg +0 -0
  346. data/public/plugin_assets/spree/images/products/ror_mug.jpg +0 -0
  347. data/public/plugin_assets/spree/images/products/ror_ringer_tshirt.jpg +0 -0
  348. data/public/plugin_assets/spree/images/products/ror_stein.jpg +0 -0
  349. data/public/plugin_assets/spree/images/products/ror_tote.jpg +0 -0
  350. data/{starter-app/vendor/plugins/attachment_fu/test/fixtures/files → public/plugin_assets/spree/images}/rails.png +0 -0
  351. data/public/plugin_assets/spree/images/spinner.gif +0 -0
  352. data/public/plugin_assets/spree/images/spree/progress.gif +0 -0
  353. data/public/plugin_assets/spree/images/spree/spinner.gif +0 -0
  354. data/public/plugin_assets/spree/images/spree/spree.jpg +0 -0
  355. data/public/plugin_assets/spree/images/spree/spree_logo142x65.gif +0 -0
  356. data/public/plugin_assets/spree/images/spree/spree_logo245x112.gif +0 -0
  357. data/public/plugin_assets/spree/images/visa_cid.gif +0 -0
  358. data/{starter-app/vendor/plugins/spree/assets → public/plugin_assets/spree}/javascripts/application.js +0 -0
  359. data/{starter-app/vendor/plugins/spree/assets → public/plugin_assets/spree}/javascripts/controls.js +0 -0
  360. data/{starter-app/vendor/plugins/spree/assets → public/plugin_assets/spree}/javascripts/dragdrop.js +0 -0
  361. data/{starter-app/vendor/plugins/spree/assets → public/plugin_assets/spree}/javascripts/effects.js +0 -0
  362. data/{starter-app/vendor/plugins/spree/assets → public/plugin_assets/spree}/javascripts/lowpro.js +0 -0
  363. data/{starter-app/vendor/plugins/spree/assets → public/plugin_assets/spree}/javascripts/prototype.js +0 -0
  364. data/{starter-app/public → public/plugin_assets/spree}/robots.txt +0 -0
  365. data/{starter-app/vendor/plugins/spree/assets → public/plugin_assets/spree}/stylesheets/cart/_controller.css +0 -0
  366. data/{starter-app/vendor/plugins/spree/assets → public/plugin_assets/spree}/stylesheets/checkout/_controller.css +0 -0
  367. data/{starter-app/vendor/plugins/spree/assets → public/plugin_assets/spree}/stylesheets/fullscreen.css +0 -0
  368. data/{starter-app/vendor/plugins/spree/assets → public/plugin_assets/spree}/stylesheets/orders/_controller.css +0 -0
  369. data/{starter-app/vendor/plugins/spree/assets → public/plugin_assets/spree}/stylesheets/products/_controller.css +0 -0
  370. data/public/plugin_assets/spree/stylesheets/spree-admin.css +355 -0
  371. data/{starter-app/vendor/plugins/spree/assets → public/plugin_assets/spree}/stylesheets/spree.css +0 -0
  372. data/{starter-app/vendor/plugins/spree/assets → public/plugin_assets/spree}/stylesheets/store/_controller.css +0 -0
  373. data/{starter-app/vendor/plugins/spree/assets → public}/robots.txt +0 -0
  374. data/{starter-app/public → public}/stylesheets/application.css +0 -0
  375. data/public/stylesheets/calendar_date_select/blue.css +130 -0
  376. data/public/stylesheets/calendar_date_select/default.css +135 -0
  377. data/public/stylesheets/calendar_date_select/plain.css +128 -0
  378. data/public/stylesheets/calendar_date_select/red.css +135 -0
  379. data/public/stylesheets/calendar_date_select/silver.css +133 -0
  380. data/public/stylesheets/cart/_controller.css +71 -0
  381. data/{starter-app/public/stylesheets/checkout/_controller.css → public/stylesheets/checkout/_controller-override.css} +0 -0
  382. data/public/stylesheets/checkout/_controller.css +31 -0
  383. data/public/stylesheets/fullscreen.css +63 -0
  384. data/public/stylesheets/orders/_controller.css +3 -0
  385. data/public/stylesheets/products/_controller.css +38 -0
  386. data/public/stylesheets/spree-admin.css +355 -0
  387. data/public/stylesheets/spree.css +66 -0
  388. data/public/stylesheets/store/_controller.css +23 -0
  389. data/{starter-app/script → script}/about +0 -0
  390. data/{starter-app/vendor/plugins/paginating_find/test_app/script → script}/breakpointer +0 -0
  391. data/{starter-app/vendor/plugins/paginating_find/test_app/script → script}/console +0 -0
  392. data/script/destroy +2 -13
  393. data/script/generate +2 -13
  394. data/{starter-app/script → script}/performance/benchmarker +0 -0
  395. data/{starter-app/script → script}/performance/profiler +0 -0
  396. data/{starter-app/script → script}/plugin +0 -0
  397. data/{starter-app/script → script}/process/inspector +0 -0
  398. data/{starter-app/script → script}/process/reaper +0 -0
  399. data/{starter-app/script → script}/process/spawner +0 -0
  400. data/{starter-app/script → script}/runner +0 -0
  401. data/{starter-app/script → script}/server +0 -0
  402. data/{starter-app/script → script}/spec +0 -0
  403. data/{starter-app/script → script}/spec_server +0 -0
  404. data/spec/helpers/spree/base_helper_spec.rb +6 -0
  405. data/{starter-app/spec → spec}/models/cart_item_spec.rb +0 -0
  406. data/{starter-app/spec → spec}/models/cart_spec.rb +0 -0
  407. data/spec/models/inventory_unit_spec.rb +18 -0
  408. data/{starter-app/spec → spec}/models/line_item_spec.rb +0 -0
  409. data/spec/models/product_spec.rb +48 -0
  410. data/{starter-app/spec → spec}/rcov.opts +0 -0
  411. data/{starter-app/spec → spec}/spec.opts +0 -0
  412. data/{starter-app/spec → spec}/spec_helper.rb +0 -0
  413. data/spree.tmproj +444 -0
  414. data/{starter-app/stories → stories}/all.rb +0 -0
  415. data/{starter-app/stories → stories}/helper.rb +0 -0
  416. data/vendor/extensions/bogus_gateway/LICENSE +26 -0
  417. data/{starter-app/vendor → vendor}/plugins/acts_as_list/README +0 -0
  418. data/{starter-app/vendor → vendor}/plugins/acts_as_list/init.rb +0 -0
  419. data/{starter-app/vendor → vendor}/plugins/acts_as_list/lib/active_record/acts/list.rb +0 -0
  420. data/{starter-app/vendor → vendor}/plugins/acts_as_list/test/list_test.rb +0 -0
  421. data/{starter-app/vendor → vendor}/plugins/acts_as_tree/README +0 -0
  422. data/{starter-app/vendor → vendor}/plugins/acts_as_tree/Rakefile +0 -0
  423. data/{starter-app/vendor → vendor}/plugins/acts_as_tree/init.rb +0 -0
  424. data/{starter-app/vendor → vendor}/plugins/acts_as_tree/lib/active_record/acts/tree.rb +0 -0
  425. data/{starter-app/vendor → vendor}/plugins/acts_as_tree/test/abstract_unit.rb +0 -0
  426. data/{starter-app/vendor → vendor}/plugins/acts_as_tree/test/acts_as_tree_test.rb +0 -0
  427. data/{starter-app/vendor → vendor}/plugins/acts_as_tree/test/database.yml +0 -0
  428. data/{starter-app/vendor → vendor}/plugins/acts_as_tree/test/fixtures/mixin.rb +0 -0
  429. data/{starter-app/vendor → vendor}/plugins/acts_as_tree/test/fixtures/mixins.yml +0 -0
  430. data/{starter-app/vendor → vendor}/plugins/acts_as_tree/test/schema.rb +0 -0
  431. data/{starter-app/vendor → vendor}/plugins/attachment_fu/CHANGELOG +0 -0
  432. data/{starter-app/vendor → vendor}/plugins/attachment_fu/README +0 -0
  433. data/{starter-app/vendor → vendor}/plugins/attachment_fu/Rakefile +0 -0
  434. data/{starter-app/vendor → vendor}/plugins/attachment_fu/amazon_s3.yml.tpl +0 -0
  435. data/{starter-app/vendor → vendor}/plugins/attachment_fu/init.rb +0 -0
  436. data/{starter-app/vendor → vendor}/plugins/attachment_fu/install.rb +0 -0
  437. data/{starter-app/vendor → vendor}/plugins/attachment_fu/lib/geometry.rb +0 -0
  438. data/{starter-app/vendor → vendor}/plugins/attachment_fu/lib/technoweenie/attachment_fu.rb +0 -0
  439. data/{starter-app/vendor → vendor}/plugins/attachment_fu/lib/technoweenie/attachment_fu/backends/db_file_backend.rb +0 -0
  440. data/{starter-app/vendor → vendor}/plugins/attachment_fu/lib/technoweenie/attachment_fu/backends/file_system_backend.rb +0 -0
  441. data/{starter-app/vendor → vendor}/plugins/attachment_fu/lib/technoweenie/attachment_fu/backends/s3_backend.rb +0 -0
  442. data/{starter-app/vendor → vendor}/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/image_science_processor.rb +0 -0
  443. data/{starter-app/vendor → vendor}/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/mini_magick_processor.rb +0 -0
  444. data/{starter-app/vendor → vendor}/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/rmagick_processor.rb +0 -0
  445. data/{starter-app/vendor → vendor}/plugins/attachment_fu/test/amazon_s3.yml +0 -0
  446. data/{starter-app/vendor → vendor}/plugins/attachment_fu/test/backends/db_file_test.rb +0 -0
  447. data/{starter-app/vendor → vendor}/plugins/attachment_fu/test/backends/file_system_test.rb +0 -0
  448. data/{starter-app/vendor → vendor}/plugins/attachment_fu/test/backends/remote/s3_test.rb +0 -0
  449. data/{starter-app/vendor → vendor}/plugins/attachment_fu/test/base_attachment_tests.rb +0 -0
  450. data/{starter-app/vendor → vendor}/plugins/attachment_fu/test/basic_test.rb +0 -0
  451. data/{starter-app/vendor → vendor}/plugins/attachment_fu/test/database.yml +0 -0
  452. data/{starter-app/vendor → vendor}/plugins/attachment_fu/test/extra_attachment_test.rb +0 -0
  453. data/{starter-app/vendor → vendor}/plugins/attachment_fu/test/fixtures/attachment.rb +0 -0
  454. data/{starter-app/vendor → vendor}/plugins/attachment_fu/test/fixtures/files/fake/rails.png +0 -0
  455. data/{starter-app/vendor → vendor}/plugins/attachment_fu/test/fixtures/files/foo.txt +0 -0
  456. data/{starter-app/vendor/plugins/spree/assets/images → vendor/plugins/attachment_fu/test/fixtures/files}/rails.png +0 -0
  457. data/{starter-app/vendor → vendor}/plugins/attachment_fu/test/geometry_test.rb +0 -0
  458. data/{starter-app/vendor → vendor}/plugins/attachment_fu/test/processors/image_science_test.rb +0 -0
  459. data/{starter-app/vendor → vendor}/plugins/attachment_fu/test/processors/mini_magick_test.rb +0 -0
  460. data/{starter-app/vendor → vendor}/plugins/attachment_fu/test/processors/rmagick_test.rb +0 -0
  461. data/{starter-app/vendor → vendor}/plugins/attachment_fu/test/schema.rb +0 -0
  462. data/{starter-app/vendor → vendor}/plugins/attachment_fu/test/test_helper.rb +0 -0
  463. data/{starter-app/vendor → vendor}/plugins/attachment_fu/test/validation_test.rb +0 -0
  464. data/{starter-app/vendor → vendor}/plugins/calendar_date_select/CHANGELOG +0 -0
  465. data/{starter-app/vendor → vendor}/plugins/calendar_date_select/MIT-LICENSE +0 -0
  466. data/{starter-app/vendor → vendor}/plugins/calendar_date_select/README +0 -0
  467. data/{starter-app/vendor → vendor}/plugins/calendar_date_select/init.rb +0 -0
  468. data/{starter-app/vendor → vendor}/plugins/calendar_date_select/js_test/functional/cds_test.html +0 -0
  469. data/{starter-app/vendor → vendor}/plugins/calendar_date_select/js_test/prototype.js +0 -0
  470. data/{starter-app/vendor → vendor}/plugins/calendar_date_select/js_test/test.css +0 -0
  471. data/{starter-app/vendor → vendor}/plugins/calendar_date_select/js_test/unit/cds_helper_methods.html +0 -0
  472. data/{starter-app/vendor → vendor}/plugins/calendar_date_select/js_test/unittest.js +0 -0
  473. data/{starter-app/vendor → vendor}/plugins/calendar_date_select/lib/calendar_date_select.rb +0 -0
  474. data/{starter-app/vendor → vendor}/plugins/calendar_date_select/lib/includes_helper.rb +0 -0
  475. data/vendor/plugins/calendar_date_select/public/images/calendar_date_select/calendar.gif +0 -0
  476. data/vendor/plugins/calendar_date_select/public/javascripts/calendar_date_select/calendar_date_select.js +439 -0
  477. data/vendor/plugins/calendar_date_select/public/javascripts/calendar_date_select/format_american.js +34 -0
  478. data/vendor/plugins/calendar_date_select/public/javascripts/calendar_date_select/format_euro_24hr.js +7 -0
  479. data/vendor/plugins/calendar_date_select/public/javascripts/calendar_date_select/format_finnish.js +24 -0
  480. data/vendor/plugins/calendar_date_select/public/javascripts/calendar_date_select/format_hyphen_ampm.js +36 -0
  481. data/vendor/plugins/calendar_date_select/public/javascripts/calendar_date_select/format_italian.js +24 -0
  482. data/vendor/plugins/calendar_date_select/public/javascripts/calendar_date_select/locale/fi.js +10 -0
  483. data/vendor/plugins/calendar_date_select/public/stylesheets/calendar_date_select/blue.css +130 -0
  484. data/vendor/plugins/calendar_date_select/public/stylesheets/calendar_date_select/default.css +135 -0
  485. data/vendor/plugins/calendar_date_select/public/stylesheets/calendar_date_select/plain.css +128 -0
  486. data/vendor/plugins/calendar_date_select/public/stylesheets/calendar_date_select/red.css +135 -0
  487. data/vendor/plugins/calendar_date_select/public/stylesheets/calendar_date_select/silver.css +133 -0
  488. data/{starter-app/vendor → vendor}/plugins/calendar_date_select/test/functional/calendar_date_select_test.rb +0 -0
  489. data/{starter-app/vendor → vendor}/plugins/calendar_date_select/test/functional/helper_methods_test.rb +0 -0
  490. data/{starter-app/vendor → vendor}/plugins/calendar_date_select/test/test_helper.rb +0 -0
  491. data/vendor/plugins/enumerable_constants/README +4 -0
  492. data/vendor/plugins/enumerable_constants/Rakefile +22 -0
  493. data/vendor/plugins/enumerable_constants/init.rb +1 -0
  494. data/{starter-app/vendor/plugins/rspec_on_rails/generators/rspec/templates/previous_failures.txt → vendor/plugins/enumerable_constants/install.rb} +0 -0
  495. data/vendor/plugins/enumerable_constants/lib/enumerable_constants.rb +204 -0
  496. data/vendor/plugins/enumerable_constants/tasks/enumerable_constants_tasks.rake +4 -0
  497. data/vendor/plugins/enumerable_constants/test/enumerable_constants_test.rb +8 -0
  498. data/{starter-app/vendor → vendor}/plugins/in_place_editing/README +0 -0
  499. data/{starter-app/vendor → vendor}/plugins/in_place_editing/Rakefile +0 -0
  500. data/{starter-app/vendor → vendor}/plugins/in_place_editing/init.rb +0 -0
  501. data/{starter-app/vendor → vendor}/plugins/in_place_editing/lib/in_place_editing.rb +0 -0
  502. data/{starter-app/vendor → vendor}/plugins/in_place_editing/lib/in_place_macros_helper.rb +0 -0
  503. data/{starter-app/vendor → vendor}/plugins/in_place_editing/test/in_place_editing_test.rb +0 -0
  504. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/MIT-LICENSE +0 -0
  505. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/README +0 -0
  506. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/Rakefile +0 -0
  507. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/generators/rspec/CHANGES +0 -0
  508. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/generators/rspec/rspec_generator.rb +0 -0
  509. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/generators/rspec/templates/all_stories.rb +0 -0
  510. data/{starter-app/vendor/plugins/rspec_on_rails/spec_resources/views/controller_spec/_partial.rhtml → vendor/plugins/rspec_on_rails/generators/rspec/templates/previous_failures.txt} +0 -0
  511. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/generators/rspec/templates/rcov.opts +0 -0
  512. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/generators/rspec/templates/script/spec +0 -0
  513. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/generators/rspec/templates/script/spec_server +0 -0
  514. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/generators/rspec/templates/spec.opts +0 -0
  515. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/generators/rspec/templates/spec_helper.rb +0 -0
  516. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/generators/rspec/templates/stories_helper.rb +0 -0
  517. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/generators/rspec_controller/USAGE +0 -0
  518. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/generators/rspec_controller/rspec_controller_generator.rb +0 -0
  519. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/generators/rspec_controller/templates/controller_spec.rb +0 -0
  520. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/generators/rspec_controller/templates/helper_spec.rb +0 -0
  521. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/generators/rspec_controller/templates/view_spec.rb +0 -0
  522. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/generators/rspec_model/USAGE +0 -0
  523. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/generators/rspec_model/rspec_model_generator.rb +0 -0
  524. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/generators/rspec_model/templates/model_spec.rb +0 -0
  525. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/generators/rspec_scaffold/rspec_scaffold_generator.rb +0 -0
  526. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/generators/rspec_scaffold/templates/controller_spec.rb +0 -0
  527. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/generators/rspec_scaffold/templates/edit_erb_spec.rb +0 -0
  528. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/generators/rspec_scaffold/templates/helper_spec.rb +0 -0
  529. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/generators/rspec_scaffold/templates/index_erb_spec.rb +0 -0
  530. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/generators/rspec_scaffold/templates/new_erb_spec.rb +0 -0
  531. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/generators/rspec_scaffold/templates/routing_spec.rb +0 -0
  532. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/generators/rspec_scaffold/templates/show_erb_spec.rb +0 -0
  533. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/init.rb +0 -0
  534. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/lib/autotest/discover.rb +0 -0
  535. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/lib/autotest/rails_rspec.rb +0 -0
  536. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/lib/spec/rails.rb +0 -0
  537. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/lib/spec/rails/example.rb +0 -0
  538. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/lib/spec/rails/example/assigns_hash_proxy.rb +0 -0
  539. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/lib/spec/rails/example/controller_example_group.rb +0 -0
  540. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/lib/spec/rails/example/functional_example_group.rb +0 -0
  541. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/lib/spec/rails/example/helper_example_group.rb +0 -0
  542. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/lib/spec/rails/example/ivar_proxy.rb +0 -0
  543. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/lib/spec/rails/example/model_example_group.rb +0 -0
  544. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/lib/spec/rails/example/rails_example_group.rb +0 -0
  545. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/lib/spec/rails/example/render_observer.rb +0 -0
  546. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/lib/spec/rails/example/view_example_group.rb +0 -0
  547. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/lib/spec/rails/extensions.rb +0 -0
  548. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/lib/spec/rails/extensions/action_controller/base.rb +0 -0
  549. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/lib/spec/rails/extensions/action_controller/rescue.rb +0 -0
  550. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/lib/spec/rails/extensions/action_controller/test_response.rb +0 -0
  551. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/lib/spec/rails/extensions/action_view/base.rb +0 -0
  552. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/lib/spec/rails/extensions/active_record/base.rb +0 -0
  553. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/lib/spec/rails/extensions/object.rb +0 -0
  554. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/lib/spec/rails/extensions/spec/example/configuration.rb +0 -0
  555. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/lib/spec/rails/extensions/spec/matchers/have.rb +0 -0
  556. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/lib/spec/rails/matchers.rb +0 -0
  557. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/lib/spec/rails/matchers/assert_select.rb +0 -0
  558. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/lib/spec/rails/matchers/have_text.rb +0 -0
  559. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/lib/spec/rails/matchers/redirect_to.rb +0 -0
  560. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/lib/spec/rails/matchers/render_template.rb +0 -0
  561. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/lib/spec/rails/story_adapter.rb +0 -0
  562. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/lib/spec/rails/version.rb +0 -0
  563. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec/rails/autotest/mappings_spec.rb +0 -0
  564. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec/rails/autotest/rails_rspec_spec.rb +0 -0
  565. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec/rails/example/assigns_hash_proxy_spec.rb +0 -0
  566. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec/rails/example/configuration_spec.rb +0 -0
  567. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec/rails/example/controller_isolation_spec.rb +0 -0
  568. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec/rails/example/controller_spec_spec.rb +0 -0
  569. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec/rails/example/example_group_factory_spec.rb +0 -0
  570. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec/rails/example/helper_spec_spec.rb +0 -0
  571. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec/rails/example/ivar_proxy_spec.rb +0 -0
  572. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec/rails/example/model_spec_spec.rb +0 -0
  573. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec/rails/example/shared_behaviour_spec.rb +0 -0
  574. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec/rails/example/test_unit_assertion_accessibility_spec.rb +0 -0
  575. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec/rails/example/view_spec_spec.rb +0 -0
  576. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec/rails/extensions/action_controller_rescue_action_spec.rb +0 -0
  577. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec/rails/extensions/action_view_base_spec.rb +0 -0
  578. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec/rails/extensions/active_record_spec.rb +0 -0
  579. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec/rails/matchers/assert_select_spec.rb +0 -0
  580. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec/rails/matchers/description_generation_spec.rb +0 -0
  581. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec/rails/matchers/errors_on_spec.rb +0 -0
  582. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec/rails/matchers/have_text_spec.rb +0 -0
  583. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec/rails/matchers/redirect_to_spec.rb +0 -0
  584. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec/rails/matchers/render_spec.rb +0 -0
  585. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec/rails/mocks/mock_model_spec.rb +0 -0
  586. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec/rails/sample_spec.rb +0 -0
  587. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec/rails/spec_server_spec.rb +0 -0
  588. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec/rails/spec_spec.rb +0 -0
  589. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec/rails_suite.rb +0 -0
  590. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec/spec_helper.rb +0 -0
  591. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/controllers/action_view_base_spec_controller.rb +0 -0
  592. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/controllers/controller_spec_controller.rb +0 -0
  593. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/controllers/redirect_spec_controller.rb +0 -0
  594. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/controllers/render_spec_controller.rb +0 -0
  595. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/controllers/rjs_spec_controller.rb +0 -0
  596. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/helpers/explicit_helper.rb +0 -0
  597. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/helpers/more_explicit_helper.rb +0 -0
  598. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/helpers/plugin_application_helper.rb +0 -0
  599. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/helpers/view_spec_helper.rb +0 -0
  600. data/{starter-app/vendor/plugins/rspec_on_rails/spec_resources/views/controller_spec/action_setting_the_assigns_hash.rhtml → vendor/plugins/rspec_on_rails/spec_resources/views/controller_spec/_partial.rhtml} +0 -0
  601. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/controller_spec/action_setting_flash_after_session_reset.rhtml +0 -0
  602. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/controller_spec/action_setting_flash_before_session_reset.rhtml +0 -0
  603. data/{starter-app/vendor/plugins/rspec_on_rails/spec_resources/views/render_spec/_a_partial.rhtml → vendor/plugins/rspec_on_rails/spec_resources/views/controller_spec/action_setting_the_assigns_hash.rhtml} +0 -0
  604. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/controller_spec/action_with_errors_in_template.rhtml +0 -0
  605. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/controller_spec/action_with_template.rhtml +0 -0
  606. data/{starter-app/vendor/plugins/rspec_on_rails/spec_resources/views/render_spec/some_action.rhtml → vendor/plugins/rspec_on_rails/spec_resources/views/render_spec/_a_partial.rhtml} +0 -0
  607. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/render_spec/some_action.js.rjs +0 -0
  608. data/{starter-app/vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/_partial_used_twice.rhtml → vendor/plugins/rspec_on_rails/spec_resources/views/render_spec/some_action.rhtml} +0 -0
  609. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/render_spec/some_action.rjs +0 -0
  610. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/rjs_spec/_replacement_partial.rhtml +0 -0
  611. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/rjs_spec/hide_div.rjs +0 -0
  612. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/rjs_spec/hide_page_element.rjs +0 -0
  613. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/rjs_spec/insert_html.rjs +0 -0
  614. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/rjs_spec/replace.rjs +0 -0
  615. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/rjs_spec/replace_html.rjs +0 -0
  616. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/rjs_spec/replace_html_with_partial.rjs +0 -0
  617. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/rjs_spec/visual_effect.rjs +0 -0
  618. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/rjs_spec/visual_toggle_effect.rjs +0 -0
  619. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/tag_spec/no_tags.rhtml +0 -0
  620. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/tag_spec/single_div_with_no_attributes.rhtml +0 -0
  621. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/tag_spec/single_div_with_one_attribute.rhtml +0 -0
  622. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/view_spec/_partial.rhtml +0 -0
  623. data/vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/_partial_used_twice.rhtml +0 -0
  624. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/view_spec/_partial_with_local_variable.rhtml +0 -0
  625. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/view_spec/_partial_with_sub_partial.rhtml +0 -0
  626. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/view_spec/_spacer.rhtml +0 -0
  627. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/view_spec/accessor.rhtml +0 -0
  628. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/view_spec/entry_form.rhtml +0 -0
  629. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/view_spec/explicit_helper.rhtml +0 -0
  630. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/view_spec/foo/show.rhtml +0 -0
  631. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/view_spec/implicit_helper.rhtml +0 -0
  632. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/view_spec/multiple_helpers.rhtml +0 -0
  633. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/view_spec/template_with_partial.rhtml +0 -0
  634. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/view_spec/template_with_partial_using_collection.rhtml +0 -0
  635. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/spec_resources/views/view_spec/template_with_partial_with_array.rhtml +0 -0
  636. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/stories/all.rb +0 -0
  637. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/stories/helper.rb +0 -0
  638. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/stories/steps/people.rb +0 -0
  639. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/stories/transactions_should_rollback +0 -0
  640. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/stories/transactions_should_rollback.rb +0 -0
  641. data/{starter-app/vendor → vendor}/plugins/rspec_on_rails/tasks/rspec.rake +0 -0
  642. data/vendor/rails/TAG_rel_2-0-2 +0 -0
  643. data/vendor/rails/actionmailer/CHANGELOG +325 -0
  644. data/vendor/rails/actionmailer/MIT-LICENSE +21 -0
  645. data/vendor/rails/actionmailer/README +145 -0
  646. data/vendor/rails/actionmailer/Rakefile +96 -0
  647. data/vendor/rails/actionmailer/install.rb +30 -0
  648. data/vendor/rails/actionmailer/lib/action_mailer.rb +52 -0
  649. data/vendor/rails/actionmailer/lib/action_mailer/adv_attr_accessor.rb +30 -0
  650. data/vendor/rails/actionmailer/lib/action_mailer/base.rb +603 -0
  651. data/vendor/rails/actionmailer/lib/action_mailer/helpers.rb +111 -0
  652. data/vendor/rails/actionmailer/lib/action_mailer/mail_helper.rb +19 -0
  653. data/vendor/rails/actionmailer/lib/action_mailer/part.rb +110 -0
  654. data/vendor/rails/actionmailer/lib/action_mailer/part_container.rb +51 -0
  655. data/vendor/rails/actionmailer/lib/action_mailer/quoting.rb +59 -0
  656. data/vendor/rails/actionmailer/lib/action_mailer/test_case.rb +59 -0
  657. data/vendor/rails/actionmailer/lib/action_mailer/test_helper.rb +67 -0
  658. data/vendor/rails/actionmailer/lib/action_mailer/utils.rb +8 -0
  659. data/vendor/rails/actionmailer/lib/action_mailer/vendor.rb +14 -0
  660. data/vendor/rails/actionmailer/lib/action_mailer/vendor/text-format-0.6.3/text/format.rb +1466 -0
  661. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail.rb +4 -0
  662. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/Makefile +19 -0
  663. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/address.rb +245 -0
  664. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/attachments.rb +47 -0
  665. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/base64.rb +52 -0
  666. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/compat.rb +39 -0
  667. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/config.rb +71 -0
  668. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/core_extensions.rb +67 -0
  669. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/encode.rb +481 -0
  670. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/facade.rb +552 -0
  671. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/header.rb +931 -0
  672. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/info.rb +35 -0
  673. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/interface.rb +540 -0
  674. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/loader.rb +1 -0
  675. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/mail.rb +462 -0
  676. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/mailbox.rb +435 -0
  677. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/mbox.rb +1 -0
  678. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/net.rb +282 -0
  679. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/obsolete.rb +137 -0
  680. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/parser.rb +1475 -0
  681. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/parser.y +381 -0
  682. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/port.rb +379 -0
  683. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/quoting.rb +142 -0
  684. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/scanner.rb +43 -0
  685. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/scanner_r.rb +263 -0
  686. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/stringio.rb +279 -0
  687. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/tmail.rb +1 -0
  688. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/utils.rb +281 -0
  689. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/version.rb +38 -0
  690. data/vendor/rails/actionmailer/lib/action_mailer/version.rb +9 -0
  691. data/vendor/rails/actionmailer/lib/actionmailer.rb +1 -0
  692. data/vendor/rails/actionmailer/test/abstract_unit.rb +49 -0
  693. data/vendor/rails/actionmailer/test/delivery_method_test.rb +51 -0
  694. data/vendor/rails/actionmailer/test/fixtures/first_mailer/share.erb +1 -0
  695. data/vendor/rails/actionmailer/test/fixtures/first_mailer/share.rhtml +0 -0
  696. data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_example_helper.erb +1 -0
  697. data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_example_helper.rhtml +0 -0
  698. data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper.erb +1 -0
  699. data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper.rhtml +0 -0
  700. data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper_method.erb +1 -0
  701. data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper_method.rhtml +0 -0
  702. data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_mail_helper.erb +5 -0
  703. data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_mail_helper.rhtml +0 -0
  704. data/vendor/rails/actionmailer/test/fixtures/helpers/example_helper.rb +5 -0
  705. data/vendor/rails/actionmailer/test/fixtures/path.with.dots/funky_path_mailer/multipart_with_template_path_with_dots.erb +1 -0
  706. data/vendor/rails/actionmailer/test/fixtures/path.with.dots/funky_path_mailer/multipart_with_template_path_with_dots.rhtml +0 -0
  707. data/vendor/rails/actionmailer/test/fixtures/path.with.dots/multipart_with_template_path_with_dots.rhtml +0 -0
  708. data/vendor/rails/actionmailer/test/fixtures/raw_base64_decoded_string +0 -0
  709. data/vendor/rails/actionmailer/test/fixtures/raw_base64_encoded_string +1 -0
  710. data/vendor/rails/actionmailer/test/fixtures/raw_email +14 -0
  711. data/vendor/rails/actionmailer/test/fixtures/raw_email10 +20 -0
  712. data/vendor/rails/actionmailer/test/fixtures/raw_email12 +32 -0
  713. data/vendor/rails/actionmailer/test/fixtures/raw_email13 +29 -0
  714. data/vendor/rails/actionmailer/test/fixtures/raw_email2 +114 -0
  715. data/vendor/rails/actionmailer/test/fixtures/raw_email3 +70 -0
  716. data/vendor/rails/actionmailer/test/fixtures/raw_email4 +59 -0
  717. data/vendor/rails/actionmailer/test/fixtures/raw_email5 +19 -0
  718. data/vendor/rails/actionmailer/test/fixtures/raw_email6 +20 -0
  719. data/vendor/rails/actionmailer/test/fixtures/raw_email7 +66 -0
  720. data/vendor/rails/actionmailer/test/fixtures/raw_email8 +47 -0
  721. data/vendor/rails/actionmailer/test/fixtures/raw_email9 +28 -0
  722. data/vendor/rails/actionmailer/test/fixtures/raw_email_quoted_with_0d0a +14 -0
  723. data/vendor/rails/actionmailer/test/fixtures/raw_email_with_invalid_characters_in_content_type +104 -0
  724. data/vendor/rails/actionmailer/test/fixtures/raw_email_with_nested_attachment +100 -0
  725. data/vendor/rails/actionmailer/test/fixtures/raw_email_with_partially_quoted_subject +14 -0
  726. data/vendor/rails/actionmailer/test/fixtures/second_mailer/share.erb +1 -0
  727. data/vendor/rails/actionmailer/test/fixtures/second_mailer/share.rhtml +0 -0
  728. data/vendor/rails/actionmailer/test/fixtures/templates/signed_up.erb +3 -0
  729. data/vendor/rails/actionmailer/test/fixtures/templates/signed_up.rhtml +0 -0
  730. data/vendor/rails/actionmailer/test/fixtures/test_mailer/_subtemplate.text.plain.erb +1 -0
  731. data/vendor/rails/actionmailer/test/fixtures/test_mailer/custom_templating_extension.text.html.haml +6 -0
  732. data/vendor/rails/actionmailer/test/fixtures/test_mailer/custom_templating_extension.text.plain.haml +6 -0
  733. data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.ignored.erb +1 -0
  734. data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.ignored.rhtml +0 -0
  735. data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.html.erb +10 -0
  736. data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.html.rhtml +0 -0
  737. data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.plain.erb +2 -0
  738. data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.plain.rhtml +0 -0
  739. data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.yaml.erb +1 -0
  740. data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.yaml.rhtml +0 -0
  741. data/vendor/rails/actionmailer/test/fixtures/test_mailer/included_subtemplate.text.plain.erb +1 -0
  742. data/vendor/rails/actionmailer/test/fixtures/test_mailer/rxml_template.builder +2 -0
  743. data/vendor/rails/actionmailer/test/fixtures/test_mailer/rxml_template.rxml +2 -0
  744. data/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up.erb +3 -0
  745. data/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up.rhtml +0 -0
  746. data/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up_with_url.erb +5 -0
  747. data/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up_with_url.rhtml +0 -0
  748. data/vendor/rails/actionmailer/test/mail_helper_test.rb +95 -0
  749. data/vendor/rails/actionmailer/test/mail_render_test.rb +122 -0
  750. data/vendor/rails/actionmailer/test/mail_service_test.rb +939 -0
  751. data/vendor/rails/actionmailer/test/quoting_test.rb +111 -0
  752. data/vendor/rails/actionmailer/test/test_helper_test.rb +117 -0
  753. data/vendor/rails/actionmailer/test/tmail_test.rb +22 -0
  754. data/vendor/rails/actionmailer/test/url_test.rb +76 -0
  755. data/vendor/rails/actionpack/CHANGELOG +4606 -0
  756. data/vendor/rails/actionpack/MIT-LICENSE +21 -0
  757. data/vendor/rails/actionpack/README +469 -0
  758. data/vendor/rails/actionpack/RUNNING_UNIT_TESTS +24 -0
  759. data/vendor/rails/actionpack/Rakefile +153 -0
  760. data/vendor/rails/actionpack/install.rb +30 -0
  761. data/vendor/rails/actionpack/lib/action_controller.rb +79 -0
  762. data/vendor/rails/actionpack/lib/action_controller/assertions.rb +69 -0
  763. data/vendor/rails/actionpack/lib/action_controller/assertions/dom_assertions.rb +39 -0
  764. data/vendor/rails/actionpack/lib/action_controller/assertions/model_assertions.rb +19 -0
  765. data/vendor/rails/actionpack/lib/action_controller/assertions/response_assertions.rb +166 -0
  766. data/vendor/rails/actionpack/lib/action_controller/assertions/routing_assertions.rb +143 -0
  767. data/vendor/rails/actionpack/lib/action_controller/assertions/selector_assertions.rb +640 -0
  768. data/vendor/rails/actionpack/lib/action_controller/assertions/tag_assertions.rb +130 -0
  769. data/vendor/rails/actionpack/lib/action_controller/base.rb +1295 -0
  770. data/vendor/rails/actionpack/lib/action_controller/benchmarking.rb +94 -0
  771. data/vendor/rails/actionpack/lib/action_controller/caching.rb +683 -0
  772. data/vendor/rails/actionpack/lib/action_controller/cgi_ext.rb +16 -0
  773. data/vendor/rails/actionpack/lib/action_controller/cgi_ext/cookie.rb +106 -0
  774. data/vendor/rails/actionpack/lib/action_controller/cgi_ext/query_extension.rb +22 -0
  775. data/vendor/rails/actionpack/lib/action_controller/cgi_ext/session.rb +73 -0
  776. data/vendor/rails/actionpack/lib/action_controller/cgi_ext/stdinput.rb +23 -0
  777. data/vendor/rails/actionpack/lib/action_controller/cgi_process.rb +221 -0
  778. data/vendor/rails/actionpack/lib/action_controller/components.rb +165 -0
  779. data/vendor/rails/actionpack/lib/action_controller/cookies.rb +84 -0
  780. data/vendor/rails/actionpack/lib/action_controller/dispatcher.rb +195 -0
  781. data/vendor/rails/actionpack/lib/action_controller/filters.rb +767 -0
  782. data/vendor/rails/actionpack/lib/action_controller/flash.rb +177 -0
  783. data/vendor/rails/actionpack/lib/action_controller/helpers.rb +204 -0
  784. data/vendor/rails/actionpack/lib/action_controller/http_authentication.rb +126 -0
  785. data/vendor/rails/actionpack/lib/action_controller/integration.rb +581 -0
  786. data/vendor/rails/actionpack/lib/action_controller/layout.rb +326 -0
  787. data/vendor/rails/actionpack/lib/action_controller/mime_responds.rb +170 -0
  788. data/vendor/rails/actionpack/lib/action_controller/mime_type.rb +163 -0
  789. data/vendor/rails/actionpack/lib/action_controller/mime_types.rb +20 -0
  790. data/vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb +88 -0
  791. data/vendor/rails/actionpack/lib/action_controller/record_identifier.rb +91 -0
  792. data/vendor/rails/actionpack/lib/action_controller/request.rb +730 -0
  793. data/vendor/rails/actionpack/lib/action_controller/request_forgery_protection.rb +132 -0
  794. data/vendor/rails/actionpack/lib/action_controller/request_profiler.rb +138 -0
  795. data/vendor/rails/actionpack/lib/action_controller/rescue.rb +258 -0
  796. data/vendor/rails/actionpack/lib/action_controller/resources.rb +529 -0
  797. data/vendor/rails/actionpack/lib/action_controller/response.rb +76 -0
  798. data/vendor/rails/actionpack/lib/action_controller/routing.rb +1499 -0
  799. data/vendor/rails/actionpack/lib/action_controller/routing_optimisation.rb +119 -0
  800. data/vendor/rails/actionpack/lib/action_controller/session/active_record_store.rb +336 -0
  801. data/vendor/rails/actionpack/lib/action_controller/session/cookie_store.rb +164 -0
  802. data/vendor/rails/actionpack/lib/action_controller/session/drb_server.rb +32 -0
  803. data/vendor/rails/actionpack/lib/action_controller/session/drb_store.rb +35 -0
  804. data/vendor/rails/actionpack/lib/action_controller/session/mem_cache_store.rb +98 -0
  805. data/vendor/rails/actionpack/lib/action_controller/session_management.rb +151 -0
  806. data/vendor/rails/actionpack/lib/action_controller/status_codes.rb +88 -0
  807. data/vendor/rails/actionpack/lib/action_controller/streaming.rb +141 -0
  808. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/_request_and_response.erb +24 -0
  809. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/_trace.erb +26 -0
  810. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/diagnostics.erb +11 -0
  811. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb +29 -0
  812. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/missing_template.erb +2 -0
  813. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/routing_error.erb +10 -0
  814. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/template_error.erb +21 -0
  815. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/unknown_action.erb +2 -0
  816. data/vendor/rails/actionpack/lib/action_controller/test_case.rb +53 -0
  817. data/vendor/rails/actionpack/lib/action_controller/test_process.rb +520 -0
  818. data/vendor/rails/actionpack/lib/action_controller/url_rewriter.rb +135 -0
  819. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/document.rb +68 -0
  820. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/node.rb +530 -0
  821. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/sanitizer.rb +173 -0
  822. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/selector.rb +828 -0
  823. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/tokenizer.rb +105 -0
  824. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/version.rb +11 -0
  825. data/vendor/rails/actionpack/lib/action_controller/verification.rb +114 -0
  826. data/vendor/rails/actionpack/lib/action_pack.rb +24 -0
  827. data/vendor/rails/actionpack/lib/action_pack/version.rb +9 -0
  828. data/vendor/rails/actionpack/lib/action_view.rb +37 -0
  829. data/vendor/rails/actionpack/lib/action_view/base.rb +642 -0
  830. data/vendor/rails/actionpack/lib/action_view/compiled_templates.rb +69 -0
  831. data/vendor/rails/actionpack/lib/action_view/helpers/active_record_helper.rb +255 -0
  832. data/vendor/rails/actionpack/lib/action_view/helpers/asset_tag_helper.rb +548 -0
  833. data/vendor/rails/actionpack/lib/action_view/helpers/atom_feed_helper.rb +111 -0
  834. data/vendor/rails/actionpack/lib/action_view/helpers/benchmark_helper.rb +31 -0
  835. data/vendor/rails/actionpack/lib/action_view/helpers/cache_helper.rb +39 -0
  836. data/vendor/rails/actionpack/lib/action_view/helpers/capture_helper.rb +162 -0
  837. data/vendor/rails/actionpack/lib/action_view/helpers/date_helper.rb +689 -0
  838. data/vendor/rails/actionpack/lib/action_view/helpers/debug_helper.rb +31 -0
  839. data/vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb +689 -0
  840. data/vendor/rails/actionpack/lib/action_view/helpers/form_options_helper.rb +425 -0
  841. data/vendor/rails/actionpack/lib/action_view/helpers/form_tag_helper.rb +432 -0
  842. data/vendor/rails/actionpack/lib/action_view/helpers/javascript_helper.rb +217 -0
  843. data/vendor/rails/actionpack/lib/action_view/helpers/javascripts/controls.js +963 -0
  844. data/vendor/rails/actionpack/lib/action_view/helpers/javascripts/dragdrop.js +972 -0
  845. data/vendor/rails/actionpack/lib/action_view/helpers/javascripts/effects.js +1120 -0
  846. data/vendor/rails/actionpack/lib/action_view/helpers/javascripts/prototype.js +4225 -0
  847. data/vendor/rails/actionpack/lib/action_view/helpers/number_helper.rb +179 -0
  848. data/vendor/rails/actionpack/lib/action_view/helpers/prototype_helper.rb +1268 -0
  849. data/vendor/rails/actionpack/lib/action_view/helpers/record_identification_helper.rb +20 -0
  850. data/vendor/rails/actionpack/lib/action_view/helpers/record_tag_helper.rb +59 -0
  851. data/vendor/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb +223 -0
  852. data/vendor/rails/actionpack/lib/action_view/helpers/scriptaculous_helper.rb +199 -0
  853. data/vendor/rails/actionpack/lib/action_view/helpers/tag_helper.rb +133 -0
  854. data/vendor/rails/actionpack/lib/action_view/helpers/text_helper.rb +479 -0
  855. data/vendor/rails/actionpack/lib/action_view/helpers/url_helper.rb +524 -0
  856. data/vendor/rails/actionpack/lib/action_view/partials.rb +200 -0
  857. data/vendor/rails/actionpack/lib/action_view/template_error.rb +102 -0
  858. data/vendor/rails/actionpack/lib/action_view/template_handler.rb +17 -0
  859. data/vendor/rails/actionpack/lib/action_view/template_handlers/builder.rb +19 -0
  860. data/vendor/rails/actionpack/lib/action_view/template_handlers/erb.rb +21 -0
  861. data/vendor/rails/actionpack/lib/action_view/template_handlers/rjs.rb +14 -0
  862. data/vendor/rails/actionpack/lib/actionpack.rb +1 -0
  863. data/vendor/rails/actionpack/test/abstract_unit.rb +36 -0
  864. data/vendor/rails/actionpack/test/action_view_test.rb +44 -0
  865. data/vendor/rails/actionpack/test/active_record_unit.rb +108 -0
  866. data/vendor/rails/actionpack/test/activerecord/active_record_store_test.rb +142 -0
  867. data/vendor/rails/actionpack/test/activerecord/render_partial_with_record_identification_test.rb +74 -0
  868. data/vendor/rails/actionpack/test/controller/action_pack_assertions_test.rb +492 -0
  869. data/vendor/rails/actionpack/test/controller/addresses_render_test.rb +43 -0
  870. data/vendor/rails/actionpack/test/controller/assert_select_test.rb +682 -0
  871. data/vendor/rails/actionpack/test/controller/base_test.rb +134 -0
  872. data/vendor/rails/actionpack/test/controller/benchmark_test.rb +33 -0
  873. data/vendor/rails/actionpack/test/controller/caching_test.rb +349 -0
  874. data/vendor/rails/actionpack/test/controller/capture_test.rb +89 -0
  875. data/vendor/rails/actionpack/test/controller/cgi_test.rb +115 -0
  876. data/vendor/rails/actionpack/test/controller/components_test.rb +140 -0
  877. data/vendor/rails/actionpack/test/controller/content_type_test.rb +139 -0
  878. data/vendor/rails/actionpack/test/controller/controller_fixtures/app/controllers/admin/user_controller.rb +0 -0
  879. data/vendor/rails/actionpack/test/controller/controller_fixtures/app/controllers/user_controller.rb +0 -0
  880. data/vendor/rails/actionpack/test/controller/controller_fixtures/vendor/plugins/bad_plugin/lib/plugin_controller.rb +0 -0
  881. data/vendor/rails/actionpack/test/controller/cookie_test.rb +135 -0
  882. data/vendor/rails/actionpack/test/controller/custom_handler_test.rb +41 -0
  883. data/vendor/rails/actionpack/test/controller/deprecation/deprecated_base_methods_test.rb +37 -0
  884. data/vendor/rails/actionpack/test/controller/dispatcher_test.rb +123 -0
  885. data/vendor/rails/actionpack/test/controller/fake_controllers.rb +16 -0
  886. data/vendor/rails/actionpack/test/controller/fake_models.rb +5 -0
  887. data/vendor/rails/actionpack/test/controller/filter_params_test.rb +43 -0
  888. data/vendor/rails/actionpack/test/controller/filters_test.rb +856 -0
  889. data/vendor/rails/actionpack/test/controller/flash_test.rb +146 -0
  890. data/vendor/rails/actionpack/test/controller/fragment_store_setting_test.rb +47 -0
  891. data/vendor/rails/actionpack/test/controller/helper_test.rb +206 -0
  892. data/vendor/rails/actionpack/test/controller/html-scanner/document_test.rb +124 -0
  893. data/vendor/rails/actionpack/test/controller/html-scanner/node_test.rb +69 -0
  894. data/vendor/rails/actionpack/test/controller/html-scanner/sanitizer_test.rb +250 -0
  895. data/vendor/rails/actionpack/test/controller/html-scanner/tag_node_test.rb +239 -0
  896. data/vendor/rails/actionpack/test/controller/html-scanner/text_node_test.rb +51 -0
  897. data/vendor/rails/actionpack/test/controller/html-scanner/tokenizer_test.rb +125 -0
  898. data/vendor/rails/actionpack/test/controller/http_authentication_test.rb +54 -0
  899. data/vendor/rails/actionpack/test/controller/integration_test.rb +255 -0
  900. data/vendor/rails/actionpack/test/controller/layout_test.rb +239 -0
  901. data/vendor/rails/actionpack/test/controller/mime_responds_test.rb +506 -0
  902. data/vendor/rails/actionpack/test/controller/mime_type_test.rb +55 -0
  903. data/vendor/rails/actionpack/test/controller/new_render_test.rb +832 -0
  904. data/vendor/rails/actionpack/test/controller/polymorphic_routes_test.rb +98 -0
  905. data/vendor/rails/actionpack/test/controller/record_identifier_test.rb +103 -0
  906. data/vendor/rails/actionpack/test/controller/redirect_test.rb +258 -0
  907. data/vendor/rails/actionpack/test/controller/render_test.rb +464 -0
  908. data/vendor/rails/actionpack/test/controller/request_forgery_protection_test.rb +217 -0
  909. data/vendor/rails/actionpack/test/controller/request_test.rb +836 -0
  910. data/vendor/rails/actionpack/test/controller/rescue_test.rb +501 -0
  911. data/vendor/rails/actionpack/test/controller/resources_test.rb +787 -0
  912. data/vendor/rails/actionpack/test/controller/routing_test.rb +2203 -0
  913. data/vendor/rails/actionpack/test/controller/selector_test.rb +628 -0
  914. data/vendor/rails/actionpack/test/controller/send_file_test.rb +127 -0
  915. data/vendor/rails/actionpack/test/controller/session/cookie_store_test.rb +246 -0
  916. data/vendor/rails/actionpack/test/controller/session/mem_cache_store_test.rb +182 -0
  917. data/vendor/rails/actionpack/test/controller/session_fixation_test.rb +89 -0
  918. data/vendor/rails/actionpack/test/controller/session_management_test.rb +156 -0
  919. data/vendor/rails/actionpack/test/controller/test_test.rb +623 -0
  920. data/vendor/rails/actionpack/test/controller/url_rewriter_test.rb +246 -0
  921. data/vendor/rails/actionpack/test/controller/verification_test.rb +253 -0
  922. data/vendor/rails/actionpack/test/controller/view_paths_test.rb +137 -0
  923. data/vendor/rails/actionpack/test/controller/webservice_test.rb +184 -0
  924. data/vendor/rails/actionpack/test/fixtures/addresses/list.erb +1 -0
  925. data/vendor/rails/actionpack/test/fixtures/companies.yml +24 -0
  926. data/vendor/rails/actionpack/test/fixtures/company.rb +9 -0
  927. data/vendor/rails/actionpack/test/fixtures/content_type/render_default_content_types_for_respond_to.rhtml +1 -0
  928. data/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rhtml.rhtml +1 -0
  929. data/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rjs.rjs +1 -0
  930. data/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rxml.rxml +1 -0
  931. data/vendor/rails/actionpack/test/fixtures/db_definitions/sqlite.sql +43 -0
  932. data/vendor/rails/actionpack/test/fixtures/developer.rb +9 -0
  933. data/vendor/rails/actionpack/test/fixtures/developers.yml +21 -0
  934. data/vendor/rails/actionpack/test/fixtures/developers_projects.yml +13 -0
  935. data/vendor/rails/actionpack/test/fixtures/fun/games/hello_world.erb +1 -0
  936. data/vendor/rails/actionpack/test/fixtures/helpers/abc_helper.rb +5 -0
  937. data/vendor/rails/actionpack/test/fixtures/helpers/fun/games_helper.rb +3 -0
  938. data/vendor/rails/actionpack/test/fixtures/helpers/fun/pdf_helper.rb +3 -0
  939. data/vendor/rails/actionpack/test/fixtures/layout_tests/alt/hello.rhtml +1 -0
  940. data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/controller_name_space/nested.rhtml +1 -0
  941. data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/item.rhtml +1 -0
  942. data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/layout_test.rhtml +1 -0
  943. data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/multiple_extensions.html.erb +1 -0
  944. data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/third_party_template_library.mab +1 -0
  945. data/vendor/rails/actionpack/test/fixtures/layout_tests/views/hello.rhtml +1 -0
  946. data/vendor/rails/actionpack/test/fixtures/layouts/builder.builder +3 -0
  947. data/vendor/rails/actionpack/test/fixtures/layouts/standard.erb +1 -0
  948. data/vendor/rails/actionpack/test/fixtures/layouts/talk_from_action.erb +2 -0
  949. data/vendor/rails/actionpack/test/fixtures/layouts/yield.erb +2 -0
  950. data/vendor/rails/actionpack/test/fixtures/multipart/binary_file +0 -0
  951. data/vendor/rails/actionpack/test/fixtures/multipart/bracketed_param +5 -0
  952. data/vendor/rails/actionpack/test/fixtures/multipart/large_text_file +10 -0
  953. data/vendor/rails/actionpack/test/fixtures/multipart/mixed_files +0 -0
  954. data/vendor/rails/actionpack/test/fixtures/multipart/mona_lisa.jpg +0 -0
  955. data/vendor/rails/actionpack/test/fixtures/multipart/single_parameter +5 -0
  956. data/vendor/rails/actionpack/test/fixtures/multipart/text_file +10 -0
  957. data/vendor/rails/actionpack/test/fixtures/override/test/hello_world.erb +1 -0
  958. data/vendor/rails/actionpack/test/fixtures/override2/layouts/test/sub.erb +1 -0
  959. data/vendor/rails/actionpack/test/fixtures/post_test/layouts/post.html.erb +1 -0
  960. data/vendor/rails/actionpack/test/fixtures/post_test/layouts/super_post.iphone.erb +1 -0
  961. data/vendor/rails/actionpack/test/fixtures/post_test/post/index.html.erb +1 -0
  962. data/vendor/rails/actionpack/test/fixtures/post_test/post/index.iphone.erb +1 -0
  963. data/vendor/rails/actionpack/test/fixtures/post_test/super_post/index.html.erb +1 -0
  964. data/vendor/rails/actionpack/test/fixtures/post_test/super_post/index.iphone.erb +1 -0
  965. data/vendor/rails/actionpack/test/fixtures/project.rb +3 -0
  966. data/vendor/rails/actionpack/test/fixtures/projects.yml +7 -0
  967. data/vendor/rails/actionpack/test/fixtures/public/404.html +1 -0
  968. data/vendor/rails/actionpack/test/fixtures/public/500.html +1 -0
  969. data/vendor/rails/actionpack/test/fixtures/public/images/rails.png +0 -0
  970. data/vendor/rails/actionpack/test/fixtures/public/javascripts/application.js +0 -0
  971. data/vendor/rails/actionpack/test/fixtures/public/javascripts/bank.js +1 -0
  972. data/vendor/rails/actionpack/test/fixtures/public/javascripts/robber.js +1 -0
  973. data/vendor/rails/actionpack/test/fixtures/public/stylesheets/bank.css +1 -0
  974. data/vendor/rails/actionpack/test/fixtures/public/stylesheets/robber.css +1 -0
  975. data/vendor/rails/actionpack/test/fixtures/replies.yml +15 -0
  976. data/vendor/rails/actionpack/test/fixtures/reply.rb +6 -0
  977. data/vendor/rails/actionpack/test/fixtures/respond_to/all_types_with_layout.html.erb +1 -0
  978. data/vendor/rails/actionpack/test/fixtures/respond_to/all_types_with_layout.js.rjs +1 -0
  979. data/vendor/rails/actionpack/test/fixtures/respond_to/custom_constant_handling_without_block.mobile.erb +1 -0
  980. data/vendor/rails/actionpack/test/fixtures/respond_to/iphone_with_html_response_type.html.erb +1 -0
  981. data/vendor/rails/actionpack/test/fixtures/respond_to/iphone_with_html_response_type.iphone.erb +1 -0
  982. data/vendor/rails/actionpack/test/fixtures/respond_to/layouts/missing.html.erb +1 -0
  983. data/vendor/rails/actionpack/test/fixtures/respond_to/layouts/standard.html.erb +1 -0
  984. data/vendor/rails/actionpack/test/fixtures/respond_to/layouts/standard.iphone.erb +1 -0
  985. data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.html.erb +1 -0
  986. data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.js.rjs +1 -0
  987. data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.xml.builder +1 -0
  988. data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.html.erb +1 -0
  989. data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.js.rjs +1 -0
  990. data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.xml.builder +1 -0
  991. data/vendor/rails/actionpack/test/fixtures/scope/test/modgreet.erb +1 -0
  992. data/vendor/rails/actionpack/test/fixtures/test/_customer.erb +1 -0
  993. data/vendor/rails/actionpack/test/fixtures/test/_customer_greeting.erb +1 -0
  994. data/vendor/rails/actionpack/test/fixtures/test/_hash_greeting.erb +1 -0
  995. data/vendor/rails/actionpack/test/fixtures/test/_hash_object.erb +2 -0
  996. data/vendor/rails/actionpack/test/fixtures/test/_hello.builder +1 -0
  997. data/vendor/rails/actionpack/test/fixtures/test/_layout_for_partial.html.erb +3 -0
  998. data/vendor/rails/actionpack/test/fixtures/test/_partial.erb +1 -0
  999. data/vendor/rails/actionpack/test/fixtures/test/_partial.html.erb +1 -0
  1000. data/vendor/rails/actionpack/test/fixtures/test/_partial.js.erb +1 -0
  1001. data/vendor/rails/actionpack/test/fixtures/test/_partial_for_use_in_layout.html.erb +1 -0
  1002. data/vendor/rails/actionpack/test/fixtures/test/_partial_only.erb +1 -0
  1003. data/vendor/rails/actionpack/test/fixtures/test/_person.erb +2 -0
  1004. data/vendor/rails/actionpack/test/fixtures/test/action_talk_to_layout.erb +2 -0
  1005. data/vendor/rails/actionpack/test/fixtures/test/block_content_for.erb +2 -0
  1006. data/vendor/rails/actionpack/test/fixtures/test/calling_partial_with_layout.html.erb +1 -0
  1007. data/vendor/rails/actionpack/test/fixtures/test/capturing.erb +4 -0
  1008. data/vendor/rails/actionpack/test/fixtures/test/content_for.erb +2 -0
  1009. data/vendor/rails/actionpack/test/fixtures/test/content_for_concatenated.erb +3 -0
  1010. data/vendor/rails/actionpack/test/fixtures/test/content_for_with_parameter.erb +2 -0
  1011. data/vendor/rails/actionpack/test/fixtures/test/delete_with_js.rjs +2 -0
  1012. data/vendor/rails/actionpack/test/fixtures/test/dot.directory/render_file_with_ivar.erb +1 -0
  1013. data/vendor/rails/actionpack/test/fixtures/test/enum_rjs_test.rjs +6 -0
  1014. data/vendor/rails/actionpack/test/fixtures/test/erb_content_for.erb +2 -0
  1015. data/vendor/rails/actionpack/test/fixtures/test/formatted_html_erb.html.erb +1 -0
  1016. data/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.builder +1 -0
  1017. data/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.html.erb +1 -0
  1018. data/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.xml.erb +1 -0
  1019. data/vendor/rails/actionpack/test/fixtures/test/greeting.erb +1 -0
  1020. data/vendor/rails/actionpack/test/fixtures/test/hello.builder +4 -0
  1021. data/vendor/rails/actionpack/test/fixtures/test/hello_world.erb +1 -0
  1022. data/vendor/rails/actionpack/test/fixtures/test/hello_world_container.builder +3 -0
  1023. data/vendor/rails/actionpack/test/fixtures/test/hello_world_from_rxml.builder +4 -0
  1024. data/vendor/rails/actionpack/test/fixtures/test/hello_world_with_layout_false.erb +1 -0
  1025. data/vendor/rails/actionpack/test/fixtures/test/hello_xml_world.builder +11 -0
  1026. data/vendor/rails/actionpack/test/fixtures/test/list.erb +1 -0
  1027. data/vendor/rails/actionpack/test/fixtures/test/non_erb_block_content_for.builder +4 -0
  1028. data/vendor/rails/actionpack/test/fixtures/test/potential_conflicts.erb +4 -0
  1029. data/vendor/rails/actionpack/test/fixtures/test/render_file_with_ivar.erb +1 -0
  1030. data/vendor/rails/actionpack/test/fixtures/test/render_file_with_locals.erb +1 -0
  1031. data/vendor/rails/actionpack/test/fixtures/test/render_to_string_test.erb +1 -0
  1032. data/vendor/rails/actionpack/test/fixtures/test/update_element_with_capture.erb +9 -0
  1033. data/vendor/rails/actionpack/test/fixtures/test/using_layout_around_block.html.erb +1 -0
  1034. data/vendor/rails/actionpack/test/fixtures/topic.rb +3 -0
  1035. data/vendor/rails/actionpack/test/fixtures/topics.yml +22 -0
  1036. data/vendor/rails/actionpack/test/template/active_record_helper_test.rb +251 -0
  1037. data/vendor/rails/actionpack/test/template/asset_tag_helper_test.rb +438 -0
  1038. data/vendor/rails/actionpack/test/template/atom_feed_helper_test.rb +101 -0
  1039. data/vendor/rails/actionpack/test/template/benchmark_helper_test.rb +72 -0
  1040. data/vendor/rails/actionpack/test/template/compiled_templates_test.rb +193 -0
  1041. data/vendor/rails/actionpack/test/template/date_helper_test.rb +1438 -0
  1042. data/vendor/rails/actionpack/test/template/erb_util_test.rb +56 -0
  1043. data/vendor/rails/actionpack/test/template/form_helper_test.rb +792 -0
  1044. data/vendor/rails/actionpack/test/template/form_options_helper_test.rb +1296 -0
  1045. data/vendor/rails/actionpack/test/template/form_tag_helper_test.rb +238 -0
  1046. data/vendor/rails/actionpack/test/template/javascript_helper_test.rb +115 -0
  1047. data/vendor/rails/actionpack/test/template/number_helper_test.rb +93 -0
  1048. data/vendor/rails/actionpack/test/template/prototype_helper_test.rb +627 -0
  1049. data/vendor/rails/actionpack/test/template/sanitize_helper_test.rb +49 -0
  1050. data/vendor/rails/actionpack/test/template/scriptaculous_helper_test.rb +96 -0
  1051. data/vendor/rails/actionpack/test/template/tag_helper_test.rb +80 -0
  1052. data/vendor/rails/actionpack/test/template/text_helper_test.rb +335 -0
  1053. data/vendor/rails/actionpack/test/template/url_helper_test.rb +536 -0
  1054. data/vendor/rails/actionpack/test/testing_sandbox.rb +11 -0
  1055. data/vendor/rails/activerecord/CHANGELOG +5527 -0
  1056. data/vendor/rails/activerecord/MIT-LICENSE +20 -0
  1057. data/vendor/rails/activerecord/README +346 -0
  1058. data/vendor/rails/activerecord/RUNNING_UNIT_TESTS +33 -0
  1059. data/vendor/rails/activerecord/Rakefile +248 -0
  1060. data/vendor/rails/activerecord/examples/associations.png +0 -0
  1061. data/vendor/rails/activerecord/install.rb +30 -0
  1062. data/vendor/rails/activerecord/lib/active_record.rb +76 -0
  1063. data/vendor/rails/activerecord/lib/active_record/aggregations.rb +180 -0
  1064. data/vendor/rails/activerecord/lib/active_record/associations.rb +1769 -0
  1065. data/vendor/rails/activerecord/lib/active_record/associations/association_collection.rb +240 -0
  1066. data/vendor/rails/activerecord/lib/active_record/associations/association_proxy.rb +160 -0
  1067. data/vendor/rails/activerecord/lib/active_record/associations/belongs_to_association.rb +56 -0
  1068. data/vendor/rails/activerecord/lib/active_record/associations/belongs_to_polymorphic_association.rb +50 -0
  1069. data/vendor/rails/activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb +164 -0
  1070. data/vendor/rails/activerecord/lib/active_record/associations/has_many_association.rb +174 -0
  1071. data/vendor/rails/activerecord/lib/active_record/associations/has_many_through_association.rb +284 -0
  1072. data/vendor/rails/activerecord/lib/active_record/associations/has_one_association.rb +96 -0
  1073. data/vendor/rails/activerecord/lib/active_record/attribute_methods.rb +328 -0
  1074. data/vendor/rails/activerecord/lib/active_record/base.rb +2471 -0
  1075. data/vendor/rails/activerecord/lib/active_record/calculations.rb +267 -0
  1076. data/vendor/rails/activerecord/lib/active_record/callbacks.rb +341 -0
  1077. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb +308 -0
  1078. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb +171 -0
  1079. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb +87 -0
  1080. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/quoting.rb +69 -0
  1081. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb +472 -0
  1082. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +306 -0
  1083. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb +172 -0
  1084. data/vendor/rails/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb +496 -0
  1085. data/vendor/rails/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb +847 -0
  1086. data/vendor/rails/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb +34 -0
  1087. data/vendor/rails/activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb +391 -0
  1088. data/vendor/rails/activerecord/lib/active_record/fixtures.rb +1034 -0
  1089. data/vendor/rails/activerecord/lib/active_record/locking/optimistic.rb +144 -0
  1090. data/vendor/rails/activerecord/lib/active_record/locking/pessimistic.rb +77 -0
  1091. data/vendor/rails/activerecord/lib/active_record/migration.rb +417 -0
  1092. data/vendor/rails/activerecord/lib/active_record/observer.rb +181 -0
  1093. data/vendor/rails/activerecord/lib/active_record/query_cache.rb +21 -0
  1094. data/vendor/rails/activerecord/lib/active_record/reflection.rb +219 -0
  1095. data/vendor/rails/activerecord/lib/active_record/schema.rb +58 -0
  1096. data/vendor/rails/activerecord/lib/active_record/schema_dumper.rb +171 -0
  1097. data/vendor/rails/activerecord/lib/active_record/serialization.rb +98 -0
  1098. data/vendor/rails/activerecord/lib/active_record/serializers/json_serializer.rb +71 -0
  1099. data/vendor/rails/activerecord/lib/active_record/serializers/xml_serializer.rb +315 -0
  1100. data/vendor/rails/activerecord/lib/active_record/timestamp.rb +41 -0
  1101. data/vendor/rails/activerecord/lib/active_record/transactions.rb +132 -0
  1102. data/vendor/rails/activerecord/lib/active_record/validations.rb +1025 -0
  1103. data/vendor/rails/activerecord/lib/active_record/vendor/db2.rb +362 -0
  1104. data/vendor/rails/activerecord/lib/active_record/vendor/mysql.rb +1214 -0
  1105. data/vendor/rails/activerecord/lib/active_record/version.rb +9 -0
  1106. data/vendor/rails/activerecord/lib/activerecord.rb +1 -0
  1107. data/vendor/rails/activerecord/test/aaa_create_tables_test.rb +72 -0
  1108. data/vendor/rails/activerecord/test/abstract_unit.rb +84 -0
  1109. data/vendor/rails/activerecord/test/active_schema_test_mysql.rb +43 -0
  1110. data/vendor/rails/activerecord/test/adapter_test.rb +105 -0
  1111. data/vendor/rails/activerecord/test/adapter_test_sqlserver.rb +95 -0
  1112. data/vendor/rails/activerecord/test/aggregations_test.rb +128 -0
  1113. data/vendor/rails/activerecord/test/all.sh +8 -0
  1114. data/vendor/rails/activerecord/test/ar_schema_test.rb +33 -0
  1115. data/vendor/rails/activerecord/test/association_inheritance_reload.rb +14 -0
  1116. data/vendor/rails/activerecord/test/associations/callbacks_test.rb +147 -0
  1117. data/vendor/rails/activerecord/test/associations/cascaded_eager_loading_test.rb +110 -0
  1118. data/vendor/rails/activerecord/test/associations/eager_singularization_test.rb +145 -0
  1119. data/vendor/rails/activerecord/test/associations/eager_test.rb +442 -0
  1120. data/vendor/rails/activerecord/test/associations/extension_test.rb +47 -0
  1121. data/vendor/rails/activerecord/test/associations/inner_join_association_test.rb +88 -0
  1122. data/vendor/rails/activerecord/test/associations/join_model_test.rb +559 -0
  1123. data/vendor/rails/activerecord/test/associations_test.rb +2147 -0
  1124. data/vendor/rails/activerecord/test/attribute_methods_test.rb +146 -0
  1125. data/vendor/rails/activerecord/test/base_test.rb +1745 -0
  1126. data/vendor/rails/activerecord/test/binary_test.rb +32 -0
  1127. data/vendor/rails/activerecord/test/calculations_test.rb +251 -0
  1128. data/vendor/rails/activerecord/test/callbacks_test.rb +400 -0
  1129. data/vendor/rails/activerecord/test/class_inheritable_attributes_test.rb +32 -0
  1130. data/vendor/rails/activerecord/test/column_alias_test.rb +17 -0
  1131. data/vendor/rails/activerecord/test/connection_test_firebird.rb +8 -0
  1132. data/vendor/rails/activerecord/test/connection_test_mysql.rb +30 -0
  1133. data/vendor/rails/activerecord/test/connections/native_db2/connection.rb +25 -0
  1134. data/vendor/rails/activerecord/test/connections/native_firebird/connection.rb +26 -0
  1135. data/vendor/rails/activerecord/test/connections/native_frontbase/connection.rb +27 -0
  1136. data/vendor/rails/activerecord/test/connections/native_mysql/connection.rb +27 -0
  1137. data/vendor/rails/activerecord/test/connections/native_openbase/connection.rb +21 -0
  1138. data/vendor/rails/activerecord/test/connections/native_oracle/connection.rb +27 -0
  1139. data/vendor/rails/activerecord/test/connections/native_postgresql/connection.rb +23 -0
  1140. data/vendor/rails/activerecord/test/connections/native_sqlite/connection.rb +25 -0
  1141. data/vendor/rails/activerecord/test/connections/native_sqlite3/connection.rb +25 -0
  1142. data/vendor/rails/activerecord/test/connections/native_sqlite3/in_memory_connection.rb +18 -0
  1143. data/vendor/rails/activerecord/test/connections/native_sybase/connection.rb +23 -0
  1144. data/vendor/rails/activerecord/test/copy_table_test_sqlite.rb +69 -0
  1145. data/vendor/rails/activerecord/test/datatype_test_postgresql.rb +203 -0
  1146. data/vendor/rails/activerecord/test/date_time_test.rb +37 -0
  1147. data/vendor/rails/activerecord/test/default_test_firebird.rb +16 -0
  1148. data/vendor/rails/activerecord/test/defaults_test.rb +67 -0
  1149. data/vendor/rails/activerecord/test/deprecated_finder_test.rb +30 -0
  1150. data/vendor/rails/activerecord/test/finder_test.rb +650 -0
  1151. data/vendor/rails/activerecord/test/fixtures/accounts.yml +28 -0
  1152. data/vendor/rails/activerecord/test/fixtures/all/developers.yml +0 -0
  1153. data/vendor/rails/activerecord/test/fixtures/all/people.csv +0 -0
  1154. data/vendor/rails/activerecord/test/fixtures/all/tasks.yml +0 -0
  1155. data/vendor/rails/activerecord/test/fixtures/author.rb +109 -0
  1156. data/vendor/rails/activerecord/test/fixtures/author_favorites.yml +4 -0
  1157. data/vendor/rails/activerecord/test/fixtures/authors.yml +7 -0
  1158. data/vendor/rails/activerecord/test/fixtures/auto_id.rb +4 -0
  1159. data/vendor/rails/activerecord/test/fixtures/bad_fixtures/attr_with_numeric_first_char +1 -0
  1160. data/vendor/rails/activerecord/test/fixtures/bad_fixtures/attr_with_spaces +1 -0
  1161. data/vendor/rails/activerecord/test/fixtures/bad_fixtures/blank_line +3 -0
  1162. data/vendor/rails/activerecord/test/fixtures/bad_fixtures/duplicate_attributes +3 -0
  1163. data/vendor/rails/activerecord/test/fixtures/bad_fixtures/missing_value +1 -0
  1164. data/vendor/rails/activerecord/test/fixtures/binaries.yml +132 -0
  1165. data/vendor/rails/activerecord/test/fixtures/binary.rb +2 -0
  1166. data/vendor/rails/activerecord/test/fixtures/book.rb +4 -0
  1167. data/vendor/rails/activerecord/test/fixtures/books.yml +7 -0
  1168. data/vendor/rails/activerecord/test/fixtures/categories.yml +14 -0
  1169. data/vendor/rails/activerecord/test/fixtures/categories/special_categories.yml +9 -0
  1170. data/vendor/rails/activerecord/test/fixtures/categories/subsubdir/arbitrary_filename.yml +4 -0
  1171. data/vendor/rails/activerecord/test/fixtures/categories_ordered.yml +7 -0
  1172. data/vendor/rails/activerecord/test/fixtures/categories_posts.yml +23 -0
  1173. data/vendor/rails/activerecord/test/fixtures/categorization.rb +5 -0
  1174. data/vendor/rails/activerecord/test/fixtures/categorizations.yml +17 -0
  1175. data/vendor/rails/activerecord/test/fixtures/category.rb +26 -0
  1176. data/vendor/rails/activerecord/test/fixtures/citation.rb +6 -0
  1177. data/vendor/rails/activerecord/test/fixtures/column_name.rb +3 -0
  1178. data/vendor/rails/activerecord/test/fixtures/comment.rb +23 -0
  1179. data/vendor/rails/activerecord/test/fixtures/comments.yml +59 -0
  1180. data/vendor/rails/activerecord/test/fixtures/companies.yml +55 -0
  1181. data/vendor/rails/activerecord/test/fixtures/company.rb +114 -0
  1182. data/vendor/rails/activerecord/test/fixtures/company_in_module.rb +59 -0
  1183. data/vendor/rails/activerecord/test/fixtures/computer.rb +4 -0
  1184. data/vendor/rails/activerecord/test/fixtures/computers.yml +4 -0
  1185. data/vendor/rails/activerecord/test/fixtures/contact.rb +16 -0
  1186. data/vendor/rails/activerecord/test/fixtures/course.rb +3 -0
  1187. data/vendor/rails/activerecord/test/fixtures/courses.yml +7 -0
  1188. data/vendor/rails/activerecord/test/fixtures/customer.rb +55 -0
  1189. data/vendor/rails/activerecord/test/fixtures/customers.yml +17 -0
  1190. data/vendor/rails/activerecord/test/fixtures/db_definitions/db2.drop.sql +33 -0
  1191. data/vendor/rails/activerecord/test/fixtures/db_definitions/db2.sql +235 -0
  1192. data/vendor/rails/activerecord/test/fixtures/db_definitions/db22.drop.sql +2 -0
  1193. data/vendor/rails/activerecord/test/fixtures/db_definitions/db22.sql +5 -0
  1194. data/vendor/rails/activerecord/test/fixtures/db_definitions/firebird.drop.sql +65 -0
  1195. data/vendor/rails/activerecord/test/fixtures/db_definitions/firebird.sql +310 -0
  1196. data/vendor/rails/activerecord/test/fixtures/db_definitions/firebird2.drop.sql +2 -0
  1197. data/vendor/rails/activerecord/test/fixtures/db_definitions/firebird2.sql +6 -0
  1198. data/vendor/rails/activerecord/test/fixtures/db_definitions/frontbase.drop.sql +33 -0
  1199. data/vendor/rails/activerecord/test/fixtures/db_definitions/frontbase.sql +273 -0
  1200. data/vendor/rails/activerecord/test/fixtures/db_definitions/frontbase2.drop.sql +1 -0
  1201. data/vendor/rails/activerecord/test/fixtures/db_definitions/frontbase2.sql +4 -0
  1202. data/vendor/rails/activerecord/test/fixtures/db_definitions/openbase.drop.sql +2 -0
  1203. data/vendor/rails/activerecord/test/fixtures/db_definitions/openbase.sql +318 -0
  1204. data/vendor/rails/activerecord/test/fixtures/db_definitions/openbase2.drop.sql +2 -0
  1205. data/vendor/rails/activerecord/test/fixtures/db_definitions/openbase2.sql +7 -0
  1206. data/vendor/rails/activerecord/test/fixtures/db_definitions/oracle.drop.sql +67 -0
  1207. data/vendor/rails/activerecord/test/fixtures/db_definitions/oracle.sql +330 -0
  1208. data/vendor/rails/activerecord/test/fixtures/db_definitions/oracle2.drop.sql +2 -0
  1209. data/vendor/rails/activerecord/test/fixtures/db_definitions/oracle2.sql +6 -0
  1210. data/vendor/rails/activerecord/test/fixtures/db_definitions/postgresql.drop.sql +44 -0
  1211. data/vendor/rails/activerecord/test/fixtures/db_definitions/postgresql.sql +292 -0
  1212. data/vendor/rails/activerecord/test/fixtures/db_definitions/postgresql2.drop.sql +2 -0
  1213. data/vendor/rails/activerecord/test/fixtures/db_definitions/postgresql2.sql +4 -0
  1214. data/vendor/rails/activerecord/test/fixtures/db_definitions/schema.rb +354 -0
  1215. data/vendor/rails/activerecord/test/fixtures/db_definitions/schema2.rb +11 -0
  1216. data/vendor/rails/activerecord/test/fixtures/db_definitions/sqlite.drop.sql +33 -0
  1217. data/vendor/rails/activerecord/test/fixtures/db_definitions/sqlite.sql +219 -0
  1218. data/vendor/rails/activerecord/test/fixtures/db_definitions/sqlite2.drop.sql +2 -0
  1219. data/vendor/rails/activerecord/test/fixtures/db_definitions/sqlite2.sql +5 -0
  1220. data/vendor/rails/activerecord/test/fixtures/db_definitions/sybase.drop.sql +35 -0
  1221. data/vendor/rails/activerecord/test/fixtures/db_definitions/sybase.sql +222 -0
  1222. data/vendor/rails/activerecord/test/fixtures/db_definitions/sybase2.drop.sql +4 -0
  1223. data/vendor/rails/activerecord/test/fixtures/db_definitions/sybase2.sql +5 -0
  1224. data/vendor/rails/activerecord/test/fixtures/default.rb +2 -0
  1225. data/vendor/rails/activerecord/test/fixtures/developer.rb +72 -0
  1226. data/vendor/rails/activerecord/test/fixtures/developers.yml +21 -0
  1227. data/vendor/rails/activerecord/test/fixtures/developers_projects.yml +17 -0
  1228. data/vendor/rails/activerecord/test/fixtures/developers_projects/david_action_controller +3 -0
  1229. data/vendor/rails/activerecord/test/fixtures/developers_projects/david_active_record +3 -0
  1230. data/vendor/rails/activerecord/test/fixtures/developers_projects/jamis_active_record +2 -0
  1231. data/vendor/rails/activerecord/test/fixtures/edge.rb +5 -0
  1232. data/vendor/rails/activerecord/test/fixtures/edges.yml +6 -0
  1233. data/vendor/rails/activerecord/test/fixtures/entrant.rb +3 -0
  1234. data/vendor/rails/activerecord/test/fixtures/entrants.yml +14 -0
  1235. data/vendor/rails/activerecord/test/fixtures/example.log +1 -0
  1236. data/vendor/rails/activerecord/test/fixtures/fk_test_has_fk.yml +3 -0
  1237. data/vendor/rails/activerecord/test/fixtures/fk_test_has_pk.yml +2 -0
  1238. data/vendor/rails/activerecord/test/fixtures/flowers.jpg +0 -0
  1239. data/vendor/rails/activerecord/test/fixtures/funny_jokes.yml +10 -0
  1240. data/vendor/rails/activerecord/test/fixtures/item.rb +7 -0
  1241. data/vendor/rails/activerecord/test/fixtures/items.yml +4 -0
  1242. data/vendor/rails/activerecord/test/fixtures/joke.rb +3 -0
  1243. data/vendor/rails/activerecord/test/fixtures/keyboard.rb +3 -0
  1244. data/vendor/rails/activerecord/test/fixtures/legacy_thing.rb +3 -0
  1245. data/vendor/rails/activerecord/test/fixtures/legacy_things.yml +3 -0
  1246. data/vendor/rails/activerecord/test/fixtures/matey.rb +4 -0
  1247. data/vendor/rails/activerecord/test/fixtures/mateys.yml +4 -0
  1248. data/vendor/rails/activerecord/test/fixtures/migrations/1_people_have_last_names.rb +9 -0
  1249. data/vendor/rails/activerecord/test/fixtures/migrations/2_we_need_reminders.rb +12 -0
  1250. data/vendor/rails/activerecord/test/fixtures/migrations/3_innocent_jointable.rb +12 -0
  1251. data/vendor/rails/activerecord/test/fixtures/migrations_with_decimal/1_give_me_big_numbers.rb +15 -0
  1252. data/vendor/rails/activerecord/test/fixtures/migrations_with_duplicate/1_people_have_last_names.rb +9 -0
  1253. data/vendor/rails/activerecord/test/fixtures/migrations_with_duplicate/2_we_need_reminders.rb +12 -0
  1254. data/vendor/rails/activerecord/test/fixtures/migrations_with_duplicate/3_foo.rb +7 -0
  1255. data/vendor/rails/activerecord/test/fixtures/migrations_with_duplicate/3_innocent_jointable.rb +12 -0
  1256. data/vendor/rails/activerecord/test/fixtures/migrations_with_missing_versions/1000_people_have_middle_names.rb +9 -0
  1257. data/vendor/rails/activerecord/test/fixtures/migrations_with_missing_versions/1_people_have_last_names.rb +9 -0
  1258. data/vendor/rails/activerecord/test/fixtures/migrations_with_missing_versions/3_we_need_reminders.rb +12 -0
  1259. data/vendor/rails/activerecord/test/fixtures/migrations_with_missing_versions/4_innocent_jointable.rb +12 -0
  1260. data/vendor/rails/activerecord/test/fixtures/minimalistic.rb +2 -0
  1261. data/vendor/rails/activerecord/test/fixtures/minimalistics.yml +2 -0
  1262. data/vendor/rails/activerecord/test/fixtures/mixed_case_monkey.rb +3 -0
  1263. data/vendor/rails/activerecord/test/fixtures/mixed_case_monkeys.yml +6 -0
  1264. data/vendor/rails/activerecord/test/fixtures/mixins.yml +29 -0
  1265. data/vendor/rails/activerecord/test/fixtures/movie.rb +5 -0
  1266. data/vendor/rails/activerecord/test/fixtures/movies.yml +7 -0
  1267. data/vendor/rails/activerecord/test/fixtures/naked/csv/accounts.csv +1 -0
  1268. data/vendor/rails/activerecord/test/fixtures/naked/yml/accounts.yml +1 -0
  1269. data/vendor/rails/activerecord/test/fixtures/naked/yml/companies.yml +1 -0
  1270. data/vendor/rails/activerecord/test/fixtures/naked/yml/courses.yml +1 -0
  1271. data/vendor/rails/activerecord/test/fixtures/order.rb +4 -0
  1272. data/vendor/rails/activerecord/test/fixtures/parrot.rb +13 -0
  1273. data/vendor/rails/activerecord/test/fixtures/parrots.yml +27 -0
  1274. data/vendor/rails/activerecord/test/fixtures/parrots_pirates.yml +7 -0
  1275. data/vendor/rails/activerecord/test/fixtures/people.yml +3 -0
  1276. data/vendor/rails/activerecord/test/fixtures/person.rb +4 -0
  1277. data/vendor/rails/activerecord/test/fixtures/pirate.rb +5 -0
  1278. data/vendor/rails/activerecord/test/fixtures/pirates.yml +9 -0
  1279. data/vendor/rails/activerecord/test/fixtures/post.rb +59 -0
  1280. data/vendor/rails/activerecord/test/fixtures/posts.yml +48 -0
  1281. data/vendor/rails/activerecord/test/fixtures/project.rb +28 -0
  1282. data/vendor/rails/activerecord/test/fixtures/projects.yml +7 -0
  1283. data/vendor/rails/activerecord/test/fixtures/reader.rb +4 -0
  1284. data/vendor/rails/activerecord/test/fixtures/readers.yml +4 -0
  1285. data/vendor/rails/activerecord/test/fixtures/reply.rb +37 -0
  1286. data/vendor/rails/activerecord/test/fixtures/reserved_words/distinct.yml +5 -0
  1287. data/vendor/rails/activerecord/test/fixtures/reserved_words/distincts_selects.yml +11 -0
  1288. data/vendor/rails/activerecord/test/fixtures/reserved_words/group.yml +14 -0
  1289. data/vendor/rails/activerecord/test/fixtures/reserved_words/select.yml +8 -0
  1290. data/vendor/rails/activerecord/test/fixtures/reserved_words/values.yml +7 -0
  1291. data/vendor/rails/activerecord/test/fixtures/ship.rb +3 -0
  1292. data/vendor/rails/activerecord/test/fixtures/ships.yml +5 -0
  1293. data/vendor/rails/activerecord/test/fixtures/subject.rb +4 -0
  1294. data/vendor/rails/activerecord/test/fixtures/subscriber.rb +6 -0
  1295. data/vendor/rails/activerecord/test/fixtures/subscribers/first +2 -0
  1296. data/vendor/rails/activerecord/test/fixtures/subscribers/second +2 -0
  1297. data/vendor/rails/activerecord/test/fixtures/tag.rb +7 -0
  1298. data/vendor/rails/activerecord/test/fixtures/tagging.rb +10 -0
  1299. data/vendor/rails/activerecord/test/fixtures/taggings.yml +25 -0
  1300. data/vendor/rails/activerecord/test/fixtures/tags.yml +7 -0
  1301. data/vendor/rails/activerecord/test/fixtures/task.rb +3 -0
  1302. data/vendor/rails/activerecord/test/fixtures/tasks.yml +7 -0
  1303. data/vendor/rails/activerecord/test/fixtures/topic.rb +37 -0
  1304. data/vendor/rails/activerecord/test/fixtures/topics.yml +22 -0
  1305. data/vendor/rails/activerecord/test/fixtures/treasure.rb +4 -0
  1306. data/vendor/rails/activerecord/test/fixtures/treasures.yml +10 -0
  1307. data/vendor/rails/activerecord/test/fixtures/vertex.rb +9 -0
  1308. data/vendor/rails/activerecord/test/fixtures/vertices.yml +4 -0
  1309. data/vendor/rails/activerecord/test/fixtures_test.rb +602 -0
  1310. data/vendor/rails/activerecord/test/inheritance_test.rb +211 -0
  1311. data/vendor/rails/activerecord/test/json_serialization_test.rb +180 -0
  1312. data/vendor/rails/activerecord/test/lifecycle_test.rb +137 -0
  1313. data/vendor/rails/activerecord/test/locking_test.rb +282 -0
  1314. data/vendor/rails/activerecord/test/method_scoping_test.rb +416 -0
  1315. data/vendor/rails/activerecord/test/migration_test.rb +933 -0
  1316. data/vendor/rails/activerecord/test/migration_test_firebird.rb +124 -0
  1317. data/vendor/rails/activerecord/test/mixin_test.rb +95 -0
  1318. data/vendor/rails/activerecord/test/modules_test.rb +34 -0
  1319. data/vendor/rails/activerecord/test/multiple_db_test.rb +60 -0
  1320. data/vendor/rails/activerecord/test/pk_test.rb +101 -0
  1321. data/vendor/rails/activerecord/test/query_cache_test.rb +104 -0
  1322. data/vendor/rails/activerecord/test/readonly_test.rb +107 -0
  1323. data/vendor/rails/activerecord/test/reflection_test.rb +175 -0
  1324. data/vendor/rails/activerecord/test/reserved_word_test_mysql.rb +177 -0
  1325. data/vendor/rails/activerecord/test/schema_authorization_test_postgresql.rb +75 -0
  1326. data/vendor/rails/activerecord/test/schema_dumper_test.rb +131 -0
  1327. data/vendor/rails/activerecord/test/schema_test_postgresql.rb +64 -0
  1328. data/vendor/rails/activerecord/test/serialization_test.rb +47 -0
  1329. data/vendor/rails/activerecord/test/synonym_test_oracle.rb +17 -0
  1330. data/vendor/rails/activerecord/test/table_name_test_sqlserver.rb +23 -0
  1331. data/vendor/rails/activerecord/test/threaded_connections_test.rb +48 -0
  1332. data/vendor/rails/activerecord/test/transactions_test.rb +281 -0
  1333. data/vendor/rails/activerecord/test/unconnected_test.rb +32 -0
  1334. data/vendor/rails/activerecord/test/validations_test.rb +1395 -0
  1335. data/vendor/rails/activerecord/test/xml_serialization_test.rb +202 -0
  1336. data/vendor/rails/activeresource/CHANGELOG +223 -0
  1337. data/vendor/rails/activeresource/MIT-LICENSE +20 -0
  1338. data/vendor/rails/activeresource/README +165 -0
  1339. data/vendor/rails/activeresource/Rakefile +134 -0
  1340. data/vendor/rails/activeresource/lib/active_resource.rb +47 -0
  1341. data/vendor/rails/activeresource/lib/active_resource/base.rb +872 -0
  1342. data/vendor/rails/activeresource/lib/active_resource/connection.rb +172 -0
  1343. data/vendor/rails/activeresource/lib/active_resource/custom_methods.rb +105 -0
  1344. data/vendor/rails/activeresource/lib/active_resource/formats.rb +14 -0
  1345. data/vendor/rails/activeresource/lib/active_resource/formats/json_format.rb +23 -0
  1346. data/vendor/rails/activeresource/lib/active_resource/formats/xml_format.rb +34 -0
  1347. data/vendor/rails/activeresource/lib/active_resource/http_mock.rb +147 -0
  1348. data/vendor/rails/activeresource/lib/active_resource/validations.rb +288 -0
  1349. data/vendor/rails/activeresource/lib/active_resource/version.rb +9 -0
  1350. data/vendor/rails/activeresource/lib/activeresource.rb +1 -0
  1351. data/vendor/rails/activeresource/test/abstract_unit.rb +10 -0
  1352. data/vendor/rails/activeresource/test/authorization_test.rb +82 -0
  1353. data/vendor/rails/activeresource/test/base/custom_methods_test.rb +96 -0
  1354. data/vendor/rails/activeresource/test/base/equality_test.rb +43 -0
  1355. data/vendor/rails/activeresource/test/base/load_test.rb +111 -0
  1356. data/vendor/rails/activeresource/test/base_errors_test.rb +48 -0
  1357. data/vendor/rails/activeresource/test/base_test.rb +454 -0
  1358. data/vendor/rails/activeresource/test/connection_test.rb +170 -0
  1359. data/vendor/rails/activeresource/test/fixtures/beast.rb +14 -0
  1360. data/vendor/rails/activeresource/test/fixtures/person.rb +3 -0
  1361. data/vendor/rails/activeresource/test/fixtures/street_address.rb +4 -0
  1362. data/vendor/rails/activeresource/test/format_test.rb +42 -0
  1363. data/vendor/rails/activeresource/test/setter_trap.rb +27 -0
  1364. data/vendor/rails/activesupport/CHANGELOG +986 -0
  1365. data/vendor/rails/activesupport/MIT-LICENSE +20 -0
  1366. data/vendor/rails/activesupport/README +43 -0
  1367. data/vendor/rails/activesupport/Rakefile +84 -0
  1368. data/vendor/rails/activesupport/install.rb +30 -0
  1369. data/vendor/rails/activesupport/lib/active_support.rb +49 -0
  1370. data/vendor/rails/activesupport/lib/active_support/basic_object.rb +5 -0
  1371. data/vendor/rails/activesupport/lib/active_support/buffered_logger.rb +107 -0
  1372. data/vendor/rails/activesupport/lib/active_support/clean_logger.rb +127 -0
  1373. data/vendor/rails/activesupport/lib/active_support/core_ext.rb +4 -0
  1374. data/vendor/rails/activesupport/lib/active_support/core_ext/array.rb +13 -0
  1375. data/vendor/rails/activesupport/lib/active_support/core_ext/array/access.rb +28 -0
  1376. data/vendor/rails/activesupport/lib/active_support/core_ext/array/conversions.rb +94 -0
  1377. data/vendor/rails/activesupport/lib/active_support/core_ext/array/extract_options.rb +19 -0
  1378. data/vendor/rails/activesupport/lib/active_support/core_ext/array/grouping.rb +68 -0
  1379. data/vendor/rails/activesupport/lib/active_support/core_ext/array/random_access.rb +12 -0
  1380. data/vendor/rails/activesupport/lib/active_support/core_ext/bigdecimal.rb +2 -0
  1381. data/vendor/rails/activesupport/lib/active_support/core_ext/bigdecimal/conversions.rb +6 -0
  1382. data/vendor/rails/activesupport/lib/active_support/core_ext/blank.rb +50 -0
  1383. data/vendor/rails/activesupport/lib/active_support/core_ext/cgi.rb +5 -0
  1384. data/vendor/rails/activesupport/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb +14 -0
  1385. data/vendor/rails/activesupport/lib/active_support/core_ext/class.rb +4 -0
  1386. data/vendor/rails/activesupport/lib/active_support/core_ext/class/attribute_accessors.rb +48 -0
  1387. data/vendor/rails/activesupport/lib/active_support/core_ext/class/delegating_attributes.rb +40 -0
  1388. data/vendor/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb +140 -0
  1389. data/vendor/rails/activesupport/lib/active_support/core_ext/class/removal.rb +24 -0
  1390. data/vendor/rails/activesupport/lib/active_support/core_ext/date.rb +10 -0
  1391. data/vendor/rails/activesupport/lib/active_support/core_ext/date/behavior.rb +13 -0
  1392. data/vendor/rails/activesupport/lib/active_support/core_ext/date/calculations.rb +188 -0
  1393. data/vendor/rails/activesupport/lib/active_support/core_ext/date/conversions.rb +98 -0
  1394. data/vendor/rails/activesupport/lib/active_support/core_ext/date_time.rb +10 -0
  1395. data/vendor/rails/activesupport/lib/active_support/core_ext/date_time/calculations.rb +77 -0
  1396. data/vendor/rails/activesupport/lib/active_support/core_ext/date_time/conversions.rb +74 -0
  1397. data/vendor/rails/activesupport/lib/active_support/core_ext/duplicable.rb +37 -0
  1398. data/vendor/rails/activesupport/lib/active_support/core_ext/enumerable.rb +63 -0
  1399. data/vendor/rails/activesupport/lib/active_support/core_ext/exception.rb +33 -0
  1400. data/vendor/rails/activesupport/lib/active_support/core_ext/file.rb +21 -0
  1401. data/vendor/rails/activesupport/lib/active_support/core_ext/float.rb +5 -0
  1402. data/vendor/rails/activesupport/lib/active_support/core_ext/float/rounding.rb +24 -0
  1403. data/vendor/rails/activesupport/lib/active_support/core_ext/hash.rb +13 -0
  1404. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/conversions.rb +242 -0
  1405. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/diff.rb +19 -0
  1406. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/except.rb +24 -0
  1407. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb +102 -0
  1408. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/keys.rb +54 -0
  1409. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/reverse_merge.rb +25 -0
  1410. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/slice.rb +28 -0
  1411. data/vendor/rails/activesupport/lib/active_support/core_ext/integer.rb +7 -0
  1412. data/vendor/rails/activesupport/lib/active_support/core_ext/integer/even_odd.rb +24 -0
  1413. data/vendor/rails/activesupport/lib/active_support/core_ext/integer/inflections.rb +21 -0
  1414. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel.rb +5 -0
  1415. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/agnostics.rb +11 -0
  1416. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/daemonizing.rb +15 -0
  1417. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/debugger.rb +13 -0
  1418. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/reporting.rb +51 -0
  1419. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/requires.rb +24 -0
  1420. data/vendor/rails/activesupport/lib/active_support/core_ext/load_error.rb +38 -0
  1421. data/vendor/rails/activesupport/lib/active_support/core_ext/logger.rb +16 -0
  1422. data/vendor/rails/activesupport/lib/active_support/core_ext/module.rb +8 -0
  1423. data/vendor/rails/activesupport/lib/active_support/core_ext/module/aliasing.rb +70 -0
  1424. data/vendor/rails/activesupport/lib/active_support/core_ext/module/attr_accessor_with_default.rb +31 -0
  1425. data/vendor/rails/activesupport/lib/active_support/core_ext/module/attr_internal.rb +31 -0
  1426. data/vendor/rails/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb +48 -0
  1427. data/vendor/rails/activesupport/lib/active_support/core_ext/module/delegation.rb +62 -0
  1428. data/vendor/rails/activesupport/lib/active_support/core_ext/module/inclusion.rb +11 -0
  1429. data/vendor/rails/activesupport/lib/active_support/core_ext/module/introspection.rb +35 -0
  1430. data/vendor/rails/activesupport/lib/active_support/core_ext/module/loading.rb +13 -0
  1431. data/vendor/rails/activesupport/lib/active_support/core_ext/name_error.rb +17 -0
  1432. data/vendor/rails/activesupport/lib/active_support/core_ext/numeric.rb +7 -0
  1433. data/vendor/rails/activesupport/lib/active_support/core_ext/numeric/bytes.rb +44 -0
  1434. data/vendor/rails/activesupport/lib/active_support/core_ext/numeric/time.rb +91 -0
  1435. data/vendor/rails/activesupport/lib/active_support/core_ext/object.rb +4 -0
  1436. data/vendor/rails/activesupport/lib/active_support/core_ext/object/conversions.rb +14 -0
  1437. data/vendor/rails/activesupport/lib/active_support/core_ext/object/extending.rb +58 -0
  1438. data/vendor/rails/activesupport/lib/active_support/core_ext/object/instance_variables.rb +22 -0
  1439. data/vendor/rails/activesupport/lib/active_support/core_ext/object/misc.rb +59 -0
  1440. data/vendor/rails/activesupport/lib/active_support/core_ext/pathname.rb +7 -0
  1441. data/vendor/rails/activesupport/lib/active_support/core_ext/pathname/clean_within.rb +14 -0
  1442. data/vendor/rails/activesupport/lib/active_support/core_ext/proc.rb +12 -0
  1443. data/vendor/rails/activesupport/lib/active_support/core_ext/range.rb +11 -0
  1444. data/vendor/rails/activesupport/lib/active_support/core_ext/range/blockless_step.rb +22 -0
  1445. data/vendor/rails/activesupport/lib/active_support/core_ext/range/conversions.rb +23 -0
  1446. data/vendor/rails/activesupport/lib/active_support/core_ext/range/include_range.rb +22 -0
  1447. data/vendor/rails/activesupport/lib/active_support/core_ext/range/overlaps.rb +12 -0
  1448. data/vendor/rails/activesupport/lib/active_support/core_ext/string.rb +23 -0
  1449. data/vendor/rails/activesupport/lib/active_support/core_ext/string/access.rb +58 -0
  1450. data/vendor/rails/activesupport/lib/active_support/core_ext/string/conversions.rb +28 -0
  1451. data/vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb +153 -0
  1452. data/vendor/rails/activesupport/lib/active_support/core_ext/string/iterators.rb +17 -0
  1453. data/vendor/rails/activesupport/lib/active_support/core_ext/string/starts_ends_with.rb +27 -0
  1454. data/vendor/rails/activesupport/lib/active_support/core_ext/string/unicode.rb +42 -0
  1455. data/vendor/rails/activesupport/lib/active_support/core_ext/string/xchar.rb +11 -0
  1456. data/vendor/rails/activesupport/lib/active_support/core_ext/symbol.rb +14 -0
  1457. data/vendor/rails/activesupport/lib/active_support/core_ext/test.rb +1 -0
  1458. data/vendor/rails/activesupport/lib/active_support/core_ext/test/unit/assertions.rb +62 -0
  1459. data/vendor/rails/activesupport/lib/active_support/core_ext/time.rb +19 -0
  1460. data/vendor/rails/activesupport/lib/active_support/core_ext/time/behavior.rb +13 -0
  1461. data/vendor/rails/activesupport/lib/active_support/core_ext/time/calculations.rb +224 -0
  1462. data/vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb +94 -0
  1463. data/vendor/rails/activesupport/lib/active_support/dependencies.rb +540 -0
  1464. data/vendor/rails/activesupport/lib/active_support/deprecation.rb +204 -0
  1465. data/vendor/rails/activesupport/lib/active_support/duration.rb +96 -0
  1466. data/vendor/rails/activesupport/lib/active_support/inflections.rb +53 -0
  1467. data/vendor/rails/activesupport/lib/active_support/inflector.rb +282 -0
  1468. data/vendor/rails/activesupport/lib/active_support/json.rb +31 -0
  1469. data/vendor/rails/activesupport/lib/active_support/json/decoding.rb +60 -0
  1470. data/vendor/rails/activesupport/lib/active_support/json/encoders/date.rb +5 -0
  1471. data/vendor/rails/activesupport/lib/active_support/json/encoders/date_time.rb +5 -0
  1472. data/vendor/rails/activesupport/lib/active_support/json/encoders/enumerable.rb +12 -0
  1473. data/vendor/rails/activesupport/lib/active_support/json/encoders/false_class.rb +5 -0
  1474. data/vendor/rails/activesupport/lib/active_support/json/encoders/hash.rb +50 -0
  1475. data/vendor/rails/activesupport/lib/active_support/json/encoders/nil_class.rb +5 -0
  1476. data/vendor/rails/activesupport/lib/active_support/json/encoders/numeric.rb +5 -0
  1477. data/vendor/rails/activesupport/lib/active_support/json/encoders/object.rb +6 -0
  1478. data/vendor/rails/activesupport/lib/active_support/json/encoders/regexp.rb +5 -0
  1479. data/vendor/rails/activesupport/lib/active_support/json/encoders/string.rb +30 -0
  1480. data/vendor/rails/activesupport/lib/active_support/json/encoders/symbol.rb +5 -0
  1481. data/vendor/rails/activesupport/lib/active_support/json/encoders/time.rb +5 -0
  1482. data/vendor/rails/activesupport/lib/active_support/json/encoders/true_class.rb +5 -0
  1483. data/vendor/rails/activesupport/lib/active_support/json/encoding.rb +38 -0
  1484. data/vendor/rails/activesupport/lib/active_support/json/variable.rb +10 -0
  1485. data/vendor/rails/activesupport/lib/active_support/multibyte.rb +9 -0
  1486. data/vendor/rails/activesupport/lib/active_support/multibyte/chars.rb +141 -0
  1487. data/vendor/rails/activesupport/lib/active_support/multibyte/generators/generate_tables.rb +149 -0
  1488. data/vendor/rails/activesupport/lib/active_support/multibyte/handlers/passthru_handler.rb +9 -0
  1489. data/vendor/rails/activesupport/lib/active_support/multibyte/handlers/utf8_handler.rb +564 -0
  1490. data/vendor/rails/activesupport/lib/active_support/multibyte/handlers/utf8_handler_proc.rb +43 -0
  1491. data/vendor/rails/activesupport/lib/active_support/option_merger.rb +25 -0
  1492. data/vendor/rails/activesupport/lib/active_support/ordered_options.rb +49 -0
  1493. data/vendor/rails/activesupport/lib/active_support/test_case.rb +5 -0
  1494. data/vendor/rails/activesupport/lib/active_support/testing.rb +1 -0
  1495. data/vendor/rails/activesupport/lib/active_support/testing/default.rb +12 -0
  1496. data/vendor/rails/activesupport/lib/active_support/values/time_zone.rb +181 -0
  1497. data/vendor/rails/activesupport/lib/active_support/values/unicode_tables.dat +0 -0
  1498. data/vendor/rails/activesupport/lib/active_support/vendor.rb +14 -0
  1499. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/blankslate.rb +113 -0
  1500. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder.rb +13 -0
  1501. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/blankslate.rb +20 -0
  1502. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/css.rb +250 -0
  1503. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xchar.rb +115 -0
  1504. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlbase.rb +139 -0
  1505. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlevents.rb +63 -0
  1506. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlmarkup.rb +328 -0
  1507. data/vendor/rails/activesupport/lib/active_support/vendor/xml-simple-1.0.11/xmlsimple.rb +1021 -0
  1508. data/vendor/rails/activesupport/lib/active_support/version.rb +9 -0
  1509. data/vendor/rails/activesupport/lib/active_support/whiny_nil.rb +38 -0
  1510. data/vendor/rails/activesupport/lib/activesupport.rb +1 -0
  1511. data/vendor/rails/activesupport/test/abstract_unit.rb +20 -0
  1512. data/vendor/rails/activesupport/test/autoloading_fixtures/a/b.rb +2 -0
  1513. data/vendor/rails/activesupport/test/autoloading_fixtures/a/c/d.rb +2 -0
  1514. data/vendor/rails/activesupport/test/autoloading_fixtures/a/c/e/f.rb +2 -0
  1515. data/vendor/rails/activesupport/test/autoloading_fixtures/application.rb +1 -0
  1516. data/vendor/rails/activesupport/test/autoloading_fixtures/class_folder.rb +3 -0
  1517. data/vendor/rails/activesupport/test/autoloading_fixtures/class_folder/class_folder_subclass.rb +3 -0
  1518. data/vendor/rails/activesupport/test/autoloading_fixtures/class_folder/inline_class.rb +2 -0
  1519. data/vendor/rails/activesupport/test/autoloading_fixtures/class_folder/nested_class.rb +7 -0
  1520. data/vendor/rails/activesupport/test/autoloading_fixtures/conflict.rb +1 -0
  1521. data/vendor/rails/activesupport/test/autoloading_fixtures/counting_loader.rb +5 -0
  1522. data/vendor/rails/activesupport/test/autoloading_fixtures/cross_site_dependency.rb +2 -0
  1523. data/vendor/rails/activesupport/test/autoloading_fixtures/e.rb +2 -0
  1524. data/vendor/rails/activesupport/test/autoloading_fixtures/module_folder/inline_class.rb +2 -0
  1525. data/vendor/rails/activesupport/test/autoloading_fixtures/module_folder/nested_class.rb +4 -0
  1526. data/vendor/rails/activesupport/test/autoloading_fixtures/module_folder/nested_sibling.rb +2 -0
  1527. data/vendor/rails/activesupport/test/autoloading_fixtures/module_with_custom_const_missing/a/b.rb +1 -0
  1528. data/vendor/rails/activesupport/test/autoloading_fixtures/multiple_constant_file.rb +2 -0
  1529. data/vendor/rails/activesupport/test/autoloading_fixtures/raises_name_error.rb +3 -0
  1530. data/vendor/rails/activesupport/test/autoloading_fixtures/raises_no_method_error.rb +3 -0
  1531. data/vendor/rails/activesupport/test/buffered_logger_test.rb +107 -0
  1532. data/vendor/rails/activesupport/test/clean_logger_test.rb +57 -0
  1533. data/vendor/rails/activesupport/test/core_ext/array_ext_test.rb +250 -0
  1534. data/vendor/rails/activesupport/test/core_ext/blank_test.rb +19 -0
  1535. data/vendor/rails/activesupport/test/core_ext/cgi_ext_test.rb +14 -0
  1536. data/vendor/rails/activesupport/test/core_ext/class/attribute_accessor_test.rb +31 -0
  1537. data/vendor/rails/activesupport/test/core_ext/class/class_inheritable_attributes_test.rb +224 -0
  1538. data/vendor/rails/activesupport/test/core_ext/class/delegating_attributes_test.rb +105 -0
  1539. data/vendor/rails/activesupport/test/core_ext/class_test.rb +46 -0
  1540. data/vendor/rails/activesupport/test/core_ext/date_ext_test.rb +196 -0
  1541. data/vendor/rails/activesupport/test/core_ext/date_time_ext_test.rb +230 -0
  1542. data/vendor/rails/activesupport/test/core_ext/duplicable_test.rb +22 -0
  1543. data/vendor/rails/activesupport/test/core_ext/duration_test.rb +21 -0
  1544. data/vendor/rails/activesupport/test/core_ext/enumerable_test.rb +61 -0
  1545. data/vendor/rails/activesupport/test/core_ext/exception_test.rb +64 -0
  1546. data/vendor/rails/activesupport/test/core_ext/file_test.rb +29 -0
  1547. data/vendor/rails/activesupport/test/core_ext/float_ext_test.rb +25 -0
  1548. data/vendor/rails/activesupport/test/core_ext/hash_ext_test.rb +743 -0
  1549. data/vendor/rails/activesupport/test/core_ext/integer_ext_test.rb +37 -0
  1550. data/vendor/rails/activesupport/test/core_ext/kernel_test.rb +43 -0
  1551. data/vendor/rails/activesupport/test/core_ext/load_error_tests.rb +16 -0
  1552. data/vendor/rails/activesupport/test/core_ext/module/attr_accessor_with_default_test.rb +30 -0
  1553. data/vendor/rails/activesupport/test/core_ext/module/attr_internal_test.rb +52 -0
  1554. data/vendor/rails/activesupport/test/core_ext/module/attribute_accessor_test.rb +33 -0
  1555. data/vendor/rails/activesupport/test/core_ext/module/attribute_aliasing_test.rb +58 -0
  1556. data/vendor/rails/activesupport/test/core_ext/module_test.rb +293 -0
  1557. data/vendor/rails/activesupport/test/core_ext/name_error_test.rb +24 -0
  1558. data/vendor/rails/activesupport/test/core_ext/numeric_ext_test.rb +147 -0
  1559. data/vendor/rails/activesupport/test/core_ext/object_and_class_ext_test.rb +242 -0
  1560. data/vendor/rails/activesupport/test/core_ext/pathname_test.rb +9 -0
  1561. data/vendor/rails/activesupport/test/core_ext/proc_test.rb +11 -0
  1562. data/vendor/rails/activesupport/test/core_ext/range_ext_test.rb +63 -0
  1563. data/vendor/rails/activesupport/test/core_ext/string_ext_test.rb +180 -0
  1564. data/vendor/rails/activesupport/test/core_ext/symbol_test.rb +9 -0
  1565. data/vendor/rails/activesupport/test/core_ext/time_ext_test.rb +420 -0
  1566. data/vendor/rails/activesupport/test/dependencies/check_warnings.rb +2 -0
  1567. data/vendor/rails/activesupport/test/dependencies/conflict.rb +1 -0
  1568. data/vendor/rails/activesupport/test/dependencies/cross_site_depender.rb +3 -0
  1569. data/vendor/rails/activesupport/test/dependencies/mutual_one.rb +4 -0
  1570. data/vendor/rails/activesupport/test/dependencies/mutual_two.rb +4 -0
  1571. data/vendor/rails/activesupport/test/dependencies/raises_exception.rb +3 -0
  1572. data/vendor/rails/activesupport/test/dependencies/requires_nonexistent0.rb +1 -0
  1573. data/vendor/rails/activesupport/test/dependencies/requires_nonexistent1.rb +1 -0
  1574. data/vendor/rails/activesupport/test/dependencies/service_one.rb +5 -0
  1575. data/vendor/rails/activesupport/test/dependencies/service_two.rb +2 -0
  1576. data/vendor/rails/activesupport/test/dependencies_test.rb +751 -0
  1577. data/vendor/rails/activesupport/test/deprecation_test.rb +151 -0
  1578. data/vendor/rails/activesupport/test/inflector_test.rb +248 -0
  1579. data/vendor/rails/activesupport/test/inflector_test_cases.rb +208 -0
  1580. data/vendor/rails/activesupport/test/json/decoding_test.rb +41 -0
  1581. data/vendor/rails/activesupport/test/json/encoding_test.rb +111 -0
  1582. data/vendor/rails/activesupport/test/multibyte_chars_test.rb +173 -0
  1583. data/vendor/rails/activesupport/test/multibyte_conformance.rb +141 -0
  1584. data/vendor/rails/activesupport/test/multibyte_handler_test.rb +367 -0
  1585. data/vendor/rails/activesupport/test/option_merger_test.rb +50 -0
  1586. data/vendor/rails/activesupport/test/ordered_options_test.rb +84 -0
  1587. data/vendor/rails/activesupport/test/test_test.rb +73 -0
  1588. data/vendor/rails/activesupport/test/time_zone_test.rb +98 -0
  1589. data/vendor/rails/activesupport/test/whiny_nil_test.rb +38 -0
  1590. data/vendor/rails/railties/CHANGELOG +1899 -0
  1591. data/vendor/rails/railties/MIT-LICENSE +20 -0
  1592. data/vendor/rails/railties/README +203 -0
  1593. data/vendor/rails/railties/Rakefile +358 -0
  1594. data/vendor/rails/railties/bin/about +3 -0
  1595. data/vendor/rails/railties/bin/console +3 -0
  1596. data/vendor/rails/railties/bin/destroy +3 -0
  1597. data/vendor/rails/railties/bin/generate +3 -0
  1598. data/{starter-app/vendor/plugins/spree/script → vendor/rails/railties/bin}/performance/benchmarker +0 -0
  1599. data/{starter-app/vendor/plugins/spree/script → vendor/rails/railties/bin}/performance/profiler +0 -0
  1600. data/vendor/rails/railties/bin/performance/request +3 -0
  1601. data/vendor/rails/railties/bin/plugin +3 -0
  1602. data/{starter-app/vendor/plugins/spree/script → vendor/rails/railties/bin}/process/inspector +0 -0
  1603. data/{starter-app/vendor/plugins/spree/script → vendor/rails/railties/bin}/process/reaper +0 -0
  1604. data/{starter-app/vendor/plugins/spree/script → vendor/rails/railties/bin}/process/spawner +0 -0
  1605. data/vendor/rails/railties/bin/rails +19 -0
  1606. data/vendor/rails/railties/bin/runner +3 -0
  1607. data/vendor/rails/railties/bin/server +3 -0
  1608. data/vendor/rails/railties/builtin/rails_info/rails/info.rb +123 -0
  1609. data/vendor/rails/railties/builtin/rails_info/rails/info_controller.rb +9 -0
  1610. data/vendor/rails/railties/builtin/rails_info/rails/info_helper.rb +2 -0
  1611. data/vendor/rails/railties/builtin/rails_info/rails_info_controller.rb +2 -0
  1612. data/vendor/rails/railties/configs/apache.conf +40 -0
  1613. data/vendor/rails/railties/configs/databases/frontbase.yml +28 -0
  1614. data/vendor/rails/railties/configs/databases/mysql.yml +54 -0
  1615. data/vendor/rails/railties/configs/databases/oracle.yml +39 -0
  1616. data/vendor/rails/railties/configs/databases/postgresql.yml +48 -0
  1617. data/vendor/rails/railties/configs/databases/sqlite2.yml +16 -0
  1618. data/vendor/rails/railties/configs/databases/sqlite3.yml +19 -0
  1619. data/vendor/rails/railties/configs/empty.log +0 -0
  1620. data/vendor/rails/railties/configs/initializers/inflections.rb +10 -0
  1621. data/vendor/rails/railties/configs/initializers/mime_types.rb +5 -0
  1622. data/vendor/rails/railties/configs/lighttpd.conf +54 -0
  1623. data/vendor/rails/railties/configs/routes.rb +35 -0
  1624. data/vendor/rails/railties/dispatches/dispatch.fcgi +24 -0
  1625. data/vendor/rails/railties/dispatches/dispatch.rb +10 -0
  1626. data/vendor/rails/railties/dispatches/gateway.cgi +97 -0
  1627. data/vendor/rails/railties/doc/README_FOR_APP +2 -0
  1628. data/vendor/rails/railties/environments/boot.rb +109 -0
  1629. data/vendor/rails/railties/environments/development.rb +18 -0
  1630. data/vendor/rails/railties/environments/environment.rb +59 -0
  1631. data/vendor/rails/railties/environments/production.rb +19 -0
  1632. data/vendor/rails/railties/environments/test.rb +22 -0
  1633. data/{starter-app/vendor/plugins/paginating_find/test_app/Rakefile → vendor/rails/railties/fresh_rakefile} +0 -0
  1634. data/vendor/rails/railties/helpers/application.rb +10 -0
  1635. data/{starter-app/app → vendor/rails/railties}/helpers/application_helper.rb +0 -0
  1636. data/vendor/rails/railties/helpers/test_helper.rb +38 -0
  1637. data/vendor/rails/railties/html/404.html +30 -0
  1638. data/vendor/rails/railties/html/422.html +30 -0
  1639. data/vendor/rails/railties/html/500.html +30 -0
  1640. data/vendor/rails/railties/html/favicon.ico +0 -0
  1641. data/vendor/rails/railties/html/images/rails.png +0 -0
  1642. data/vendor/rails/railties/html/index.html +277 -0
  1643. data/vendor/rails/railties/html/javascripts/application.js +2 -0
  1644. data/vendor/rails/railties/html/javascripts/controls.js +963 -0
  1645. data/vendor/rails/railties/html/javascripts/dragdrop.js +972 -0
  1646. data/vendor/rails/railties/html/javascripts/effects.js +1120 -0
  1647. data/vendor/rails/railties/html/javascripts/prototype.js +4225 -0
  1648. data/vendor/rails/railties/html/robots.txt +5 -0
  1649. data/vendor/rails/railties/lib/code_statistics.rb +107 -0
  1650. data/vendor/rails/railties/lib/commands.rb +17 -0
  1651. data/vendor/rails/railties/lib/commands/about.rb +2 -0
  1652. data/vendor/rails/railties/lib/commands/console.rb +32 -0
  1653. data/vendor/rails/railties/lib/commands/destroy.rb +6 -0
  1654. data/vendor/rails/railties/lib/commands/generate.rb +6 -0
  1655. data/vendor/rails/railties/lib/commands/ncgi/listener +86 -0
  1656. data/vendor/rails/railties/lib/commands/ncgi/tracker +69 -0
  1657. data/vendor/rails/railties/lib/commands/performance/benchmarker.rb +24 -0
  1658. data/vendor/rails/railties/lib/commands/performance/profiler.rb +50 -0
  1659. data/vendor/rails/railties/lib/commands/performance/request.rb +6 -0
  1660. data/vendor/rails/railties/lib/commands/plugin.rb +923 -0
  1661. data/vendor/rails/railties/lib/commands/process/inspector.rb +68 -0
  1662. data/vendor/rails/railties/lib/commands/process/reaper.rb +149 -0
  1663. data/vendor/rails/railties/lib/commands/process/spawner.rb +219 -0
  1664. data/vendor/rails/railties/lib/commands/process/spinner.rb +57 -0
  1665. data/vendor/rails/railties/lib/commands/runner.rb +48 -0
  1666. data/vendor/rails/railties/lib/commands/server.rb +39 -0
  1667. data/vendor/rails/railties/lib/commands/servers/base.rb +31 -0
  1668. data/vendor/rails/railties/lib/commands/servers/lighttpd.rb +94 -0
  1669. data/vendor/rails/railties/lib/commands/servers/mongrel.rb +69 -0
  1670. data/vendor/rails/railties/lib/commands/servers/webrick.rb +66 -0
  1671. data/vendor/rails/railties/lib/commands/update.rb +4 -0
  1672. data/vendor/rails/railties/lib/console_app.rb +30 -0
  1673. data/vendor/rails/railties/lib/console_sandbox.rb +6 -0
  1674. data/vendor/rails/railties/lib/console_with_helpers.rb +26 -0
  1675. data/vendor/rails/railties/lib/dispatcher.rb +24 -0
  1676. data/vendor/rails/railties/lib/fcgi_handler.rb +223 -0
  1677. data/vendor/rails/railties/lib/initializer.rb +682 -0
  1678. data/vendor/rails/railties/lib/rails/plugin.rb +84 -0
  1679. data/vendor/rails/railties/lib/rails/plugin/loader.rb +150 -0
  1680. data/vendor/rails/railties/lib/rails/plugin/locator.rb +78 -0
  1681. data/vendor/rails/railties/lib/rails/version.rb +9 -0
  1682. data/vendor/rails/railties/lib/rails_generator.rb +43 -0
  1683. data/vendor/rails/railties/lib/rails_generator/base.rb +263 -0
  1684. data/vendor/rails/railties/lib/rails_generator/commands.rb +591 -0
  1685. data/vendor/rails/railties/lib/rails_generator/generated_attribute.rb +42 -0
  1686. data/vendor/rails/railties/lib/rails_generator/generators/applications/app/USAGE +9 -0
  1687. data/vendor/rails/railties/lib/rails_generator/generators/applications/app/app_generator.rb +179 -0
  1688. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/USAGE +29 -0
  1689. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/controller_generator.rb +37 -0
  1690. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/controller.rb +10 -0
  1691. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/functional_test.rb +8 -0
  1692. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/helper.rb +2 -0
  1693. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/view.html.erb +2 -0
  1694. data/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/USAGE +8 -0
  1695. data/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/integration_test_generator.rb +16 -0
  1696. data/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/templates/integration_test.rb +10 -0
  1697. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/USAGE +16 -0
  1698. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/mailer_generator.rb +34 -0
  1699. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/fixture.erb +3 -0
  1700. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/fixture.rhtml +0 -0
  1701. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/mailer.rb +13 -0
  1702. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/unit_test.rb +21 -0
  1703. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/view.erb +3 -0
  1704. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/view.rhtml +0 -0
  1705. data/vendor/rails/railties/lib/rails_generator/generators/components/migration/USAGE +29 -0
  1706. data/vendor/rails/railties/lib/rails_generator/generators/components/migration/migration_generator.rb +20 -0
  1707. data/vendor/rails/railties/lib/rails_generator/generators/components/migration/templates/migration.rb +11 -0
  1708. data/vendor/rails/railties/lib/rails_generator/generators/components/model/USAGE +27 -0
  1709. data/vendor/rails/railties/lib/rails_generator/generators/components/model/model_generator.rb +45 -0
  1710. data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/fixtures.yml +19 -0
  1711. data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/migration.rb +16 -0
  1712. data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/model.rb +2 -0
  1713. data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/unit_test.rb +8 -0
  1714. data/vendor/rails/railties/lib/rails_generator/generators/components/observer/USAGE +13 -0
  1715. data/vendor/rails/railties/lib/rails_generator/generators/components/observer/observer_generator.rb +16 -0
  1716. data/vendor/rails/railties/lib/rails_generator/generators/components/observer/templates/observer.rb +2 -0
  1717. data/vendor/rails/railties/lib/rails_generator/generators/components/observer/templates/unit_test.rb +8 -0
  1718. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/USAGE +25 -0
  1719. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/plugin_generator.rb +39 -0
  1720. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/MIT-LICENSE +20 -0
  1721. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/README +13 -0
  1722. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/Rakefile +22 -0
  1723. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/USAGE +8 -0
  1724. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/generator.rb +8 -0
  1725. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/init.rb +1 -0
  1726. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/install.rb +1 -0
  1727. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/plugin.rb +1 -0
  1728. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/tasks.rake +4 -0
  1729. data/{starter-app/vendor/plugins/spree → vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates}/uninstall.rb +0 -0
  1730. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/unit_test.rb +8 -0
  1731. data/vendor/rails/railties/lib/rails_generator/generators/components/resource/USAGE +23 -0
  1732. data/vendor/rails/railties/lib/rails_generator/generators/components/resource/resource_generator.rb +74 -0
  1733. data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/controller.rb +2 -0
  1734. data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/functional_test.rb +8 -0
  1735. data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/helper.rb +2 -0
  1736. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/USAGE +25 -0
  1737. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/scaffold_generator.rb +92 -0
  1738. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/controller.rb +85 -0
  1739. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/functional_test.rb +45 -0
  1740. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/helper.rb +2 -0
  1741. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/layout.html.erb +17 -0
  1742. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/style.css +74 -0
  1743. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_edit.html.erb +19 -0
  1744. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_index.html.erb +24 -0
  1745. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_new.html.erb +18 -0
  1746. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_show.html.erb +10 -0
  1747. data/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/USAGE +10 -0
  1748. data/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/session_migration_generator.rb +18 -0
  1749. data/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/templates/migration.rb +16 -0
  1750. data/vendor/rails/railties/lib/rails_generator/lookup.rb +244 -0
  1751. data/vendor/rails/railties/lib/rails_generator/manifest.rb +53 -0
  1752. data/vendor/rails/railties/lib/rails_generator/options.rb +143 -0
  1753. data/vendor/rails/railties/lib/rails_generator/scripts.rb +86 -0
  1754. data/vendor/rails/railties/lib/rails_generator/scripts/destroy.rb +30 -0
  1755. data/vendor/rails/railties/lib/rails_generator/scripts/generate.rb +7 -0
  1756. data/vendor/rails/railties/lib/rails_generator/scripts/update.rb +12 -0
  1757. data/vendor/rails/railties/lib/rails_generator/secret_key_generator.rb +160 -0
  1758. data/vendor/rails/railties/lib/rails_generator/simple_logger.rb +46 -0
  1759. data/vendor/rails/railties/lib/rails_generator/spec.rb +44 -0
  1760. data/vendor/rails/railties/lib/railties_path.rb +1 -0
  1761. data/vendor/rails/railties/lib/ruby_version_check.rb +17 -0
  1762. data/vendor/rails/railties/lib/rubyprof_ext.rb +35 -0
  1763. data/vendor/rails/railties/lib/source_annotation_extractor.rb +62 -0
  1764. data/vendor/rails/railties/lib/tasks/annotations.rake +23 -0
  1765. data/vendor/rails/railties/lib/tasks/databases.rake +363 -0
  1766. data/vendor/rails/railties/lib/tasks/documentation.rake +80 -0
  1767. data/vendor/rails/railties/lib/tasks/framework.rake +118 -0
  1768. data/vendor/rails/railties/lib/tasks/log.rake +9 -0
  1769. data/vendor/rails/railties/lib/tasks/misc.rake +10 -0
  1770. data/vendor/rails/railties/lib/tasks/rails.rb +8 -0
  1771. data/vendor/rails/railties/lib/tasks/routes.rake +17 -0
  1772. data/vendor/rails/railties/lib/tasks/statistics.rake +18 -0
  1773. data/vendor/rails/railties/lib/tasks/testing.rake +118 -0
  1774. data/vendor/rails/railties/lib/tasks/tmp.rake +37 -0
  1775. data/vendor/rails/railties/lib/test_help.rb +20 -0
  1776. data/vendor/rails/railties/lib/webrick_server.rb +165 -0
  1777. data/vendor/rails/railties/test/abstract_unit.rb +24 -0
  1778. data/vendor/rails/railties/test/boot_test.rb +179 -0
  1779. data/vendor/rails/railties/test/console_app_test.rb +29 -0
  1780. data/vendor/rails/railties/test/fcgi_dispatcher_test.rb +265 -0
  1781. data/vendor/rails/railties/test/fixtures/environment_with_constant.rb +1 -0
  1782. data/vendor/rails/railties/test/fixtures/lib/generators/missing_class/missing_class_generator.rb +0 -0
  1783. data/vendor/rails/railties/test/fixtures/lib/generators/working/working_generator.rb +2 -0
  1784. data/vendor/rails/railties/test/fixtures/plugins/default/plugin_with_no_lib_dir/init.rb +0 -0
  1785. data/vendor/rails/railties/test/fixtures/plugins/default/stubby/init.rb +7 -0
  1786. data/vendor/rails/railties/test/fixtures/plugins/default/stubby/lib/stubby_mixin.rb +2 -0
  1787. data/vendor/rails/railties/test/generators/generator_test_helper.rb +195 -0
  1788. data/vendor/rails/railties/test/generators/rails_model_generator_test.rb +109 -0
  1789. data/vendor/rails/railties/test/generators/rails_resource_generator_test.rb +106 -0
  1790. data/vendor/rails/railties/test/generators/rails_scaffold_generator_test.rb +185 -0
  1791. data/vendor/rails/railties/test/initializer_test.rb +218 -0
  1792. data/vendor/rails/railties/test/mocks/routes.rb +6 -0
  1793. data/vendor/rails/railties/test/plugin_loader_test.rb +140 -0
  1794. data/vendor/rails/railties/test/plugin_locator_test.rb +69 -0
  1795. data/vendor/rails/railties/test/plugin_test.rb +141 -0
  1796. data/vendor/rails/railties/test/plugin_test_helper.rb +29 -0
  1797. data/vendor/rails/railties/test/rails_generator_test.rb +137 -0
  1798. data/vendor/rails/railties/test/rails_info_controller_test.rb +48 -0
  1799. data/vendor/rails/railties/test/rails_info_test.rb +105 -0
  1800. data/vendor/rails/railties/test/secret_key_generation_test.rb +35 -0
  1801. metadata +2304 -693
  1802. data/History.txt +0 -40
  1803. data/License.txt +0 -26
  1804. data/Manifest.txt +0 -671
  1805. data/config/hoe.rb +0 -80
  1806. data/config/requirements.rb +0 -15
  1807. data/lib/spree/version.rb +0 -9
  1808. data/script/txt2html +0 -74
  1809. data/setup.rb +0 -1585
  1810. data/starter-app/README +0 -182
  1811. data/starter-app/app/controllers/application.rb +0 -14
  1812. data/starter-app/app/models/tag.rb +0 -37
  1813. data/starter-app/app/models/tagging.rb +0 -16
  1814. data/starter-app/app/views/layouts/application.rhtml +0 -48
  1815. data/starter-app/config/boot.rb +0 -45
  1816. data/starter-app/config/environment.rb +0 -140
  1817. data/starter-app/config/environments/development.rb +0 -21
  1818. data/starter-app/config/routes.rb +0 -28
  1819. data/starter-app/db/migrate/003_create_tags_and_taggings.rb +0 -28
  1820. data/starter-app/db/migrate/004_spree_to_version_21.rb +0 -9
  1821. data/starter-app/db/sample/credit_cards.yml +0 -12
  1822. data/starter-app/db/sample/images.yml +0 -252
  1823. data/starter-app/db/sample/line_items.yml +0 -25
  1824. data/starter-app/db/sample/orders.yml +0 -15
  1825. data/starter-app/db/sample/skus.yml +0 -28
  1826. data/starter-app/db/sample/taggings.yml +0 -16
  1827. data/starter-app/db/sample/tags.yml +0 -6
  1828. data/starter-app/db/sample/variants.yml +0 -47
  1829. data/starter-app/doc/README_FOR_APP +0 -2
  1830. data/starter-app/lib/tagging_extensions.rb +0 -104
  1831. data/starter-app/public/index.html +0 -277
  1832. data/starter-app/public/stylesheets/cart/_controller.css +0 -4
  1833. data/starter-app/script/destroy +0 -3
  1834. data/starter-app/script/generate +0 -3
  1835. data/starter-app/spec/models/product_spec.rb +0 -29
  1836. data/starter-app/test/fixtures/users.yml +0 -7
  1837. data/starter-app/test/test_helper.rb +0 -28
  1838. data/starter-app/test/unit/user_test.rb +0 -8
  1839. data/starter-app/vendor/plugins/engines/CHANGELOG +0 -258
  1840. data/starter-app/vendor/plugins/engines/MIT-LICENSE +0 -21
  1841. data/starter-app/vendor/plugins/engines/README +0 -63
  1842. data/starter-app/vendor/plugins/engines/Rakefile +0 -32
  1843. data/starter-app/vendor/plugins/engines/about.yml +0 -7
  1844. data/starter-app/vendor/plugins/engines/boot.rb +0 -18
  1845. data/starter-app/vendor/plugins/engines/generators/plugin_migration/USAGE +0 -45
  1846. data/starter-app/vendor/plugins/engines/generators/plugin_migration/plugin_migration_generator.rb +0 -79
  1847. data/starter-app/vendor/plugins/engines/generators/plugin_migration/templates/plugin_migration.erb +0 -13
  1848. data/starter-app/vendor/plugins/engines/init.rb +0 -2
  1849. data/starter-app/vendor/plugins/engines/lib/engines.rb +0 -169
  1850. data/starter-app/vendor/plugins/engines/lib/engines/assets.rb +0 -38
  1851. data/starter-app/vendor/plugins/engines/lib/engines/plugin.rb +0 -125
  1852. data/starter-app/vendor/plugins/engines/lib/engines/plugin/list.rb +0 -30
  1853. data/starter-app/vendor/plugins/engines/lib/engines/plugin/loader.rb +0 -18
  1854. data/starter-app/vendor/plugins/engines/lib/engines/plugin/locator.rb +0 -11
  1855. data/starter-app/vendor/plugins/engines/lib/engines/plugin/migrator.rb +0 -60
  1856. data/starter-app/vendor/plugins/engines/lib/engines/rails_extensions/action_mailer.rb +0 -85
  1857. data/starter-app/vendor/plugins/engines/lib/engines/rails_extensions/active_record.rb +0 -24
  1858. data/starter-app/vendor/plugins/engines/lib/engines/rails_extensions/asset_helpers.rb +0 -119
  1859. data/starter-app/vendor/plugins/engines/lib/engines/rails_extensions/dependencies.rb +0 -145
  1860. data/starter-app/vendor/plugins/engines/lib/engines/rails_extensions/migrations.rb +0 -161
  1861. data/starter-app/vendor/plugins/engines/lib/engines/rails_extensions/rails.rb +0 -11
  1862. data/starter-app/vendor/plugins/engines/lib/engines/rails_extensions/routing.rb +0 -84
  1863. data/starter-app/vendor/plugins/engines/lib/engines/testing.rb +0 -87
  1864. data/starter-app/vendor/plugins/engines/tasks/engines.rake +0 -176
  1865. data/starter-app/vendor/plugins/paginating_find/test_app/db/schema.rb +0 -16
  1866. data/starter-app/vendor/plugins/spree/.rakeTasks +0 -7
  1867. data/starter-app/vendor/plugins/spree/CHANGELOG +0 -1
  1868. data/starter-app/vendor/plugins/spree/README +0 -1
  1869. data/starter-app/vendor/plugins/spree/Rakefile +0 -10
  1870. data/starter-app/vendor/plugins/spree/VERSION +0 -1
  1871. data/starter-app/vendor/plugins/spree/app/controllers/admin/orders_controller.rb +0 -247
  1872. data/starter-app/vendor/plugins/spree/app/controllers/admin/products_controller.rb +0 -207
  1873. data/starter-app/vendor/plugins/spree/app/controllers/cart_controller.rb +0 -39
  1874. data/starter-app/vendor/plugins/spree/app/controllers/checkout_controller.rb +0 -184
  1875. data/starter-app/vendor/plugins/spree/app/controllers/spree/base_controller.rb +0 -47
  1876. data/starter-app/vendor/plugins/spree/app/helpers/checkout_helper.rb +0 -17
  1877. data/starter-app/vendor/plugins/spree/app/helpers/spree/base_helper.rb +0 -101
  1878. data/starter-app/vendor/plugins/spree/app/models/cart_item.rb +0 -26
  1879. data/starter-app/vendor/plugins/spree/app/models/image.rb +0 -12
  1880. data/starter-app/vendor/plugins/spree/app/models/order.rb +0 -87
  1881. data/starter-app/vendor/plugins/spree/app/models/product.rb +0 -58
  1882. data/starter-app/vendor/plugins/spree/app/models/sku.rb +0 -7
  1883. data/starter-app/vendor/plugins/spree/app/models/variant.rb +0 -5
  1884. data/starter-app/vendor/plugins/spree/app/views/admin/products/_form.rhtml +0 -65
  1885. data/starter-app/vendor/plugins/spree/app/views/admin/products/_option_types.rhtml +0 -42
  1886. data/starter-app/vendor/plugins/spree/app/views/admin/products/_variants.rhtml +0 -43
  1887. data/starter-app/vendor/plugins/spree/app/views/admin/products/index.rhtml +0 -65
  1888. data/starter-app/vendor/plugins/spree/app/views/cart/index.rhtml +0 -49
  1889. data/starter-app/vendor/plugins/spree/app/views/layouts/admin.rhtml +0 -69
  1890. data/starter-app/vendor/plugins/spree/app/views/layouts/products.rhtml +0 -20
  1891. data/starter-app/vendor/plugins/spree/app/views/order_mailer/cancel.rhtml +0 -15
  1892. data/starter-app/vendor/plugins/spree/app/views/order_mailer/confirm.rhtml +0 -18
  1893. data/starter-app/vendor/plugins/spree/app/views/store/list.rhtml +0 -15
  1894. data/starter-app/vendor/plugins/spree/app/views/store/show.rhtml +0 -70
  1895. data/starter-app/vendor/plugins/spree/assets/.htaccess +0 -40
  1896. data/starter-app/vendor/plugins/spree/assets/stylesheets/spree-admin.css +0 -348
  1897. data/starter-app/vendor/plugins/spree/db/migrate/008_create_orders.rb +0 -24
  1898. data/starter-app/vendor/plugins/spree/db/migrate/009_create_products.rb +0 -20
  1899. data/starter-app/vendor/plugins/spree/db/migrate/011_create_variants.rb +0 -11
  1900. data/starter-app/vendor/plugins/spree/db/migrate/013_create_skus.rb +0 -13
  1901. data/starter-app/vendor/plugins/spree/db/migrate/019_create_images.rb +0 -19
  1902. data/starter-app/vendor/plugins/spree/init.rb +0 -11
  1903. data/starter-app/vendor/plugins/spree/install.rb +0 -3
  1904. data/starter-app/vendor/plugins/spree/lib/constants/enumerable_constants.rb +0 -207
  1905. data/starter-app/vendor/plugins/spree/lib/tasks/spree_bootstrap.rake +0 -24
  1906. data/starter-app/vendor/plugins/spree/lib/tax/sales_tax.rb +0 -26
  1907. data/starter-app/vendor/plugins/spree/routes.rb +0 -3
  1908. data/starter-app/vendor/plugins/spree/script/about +0 -3
  1909. data/starter-app/vendor/plugins/spree/script/breakpointer +0 -3
  1910. data/starter-app/vendor/plugins/spree/script/console +0 -3
  1911. data/starter-app/vendor/plugins/spree/script/destroy +0 -3
  1912. data/starter-app/vendor/plugins/spree/script/generate +0 -3
  1913. data/starter-app/vendor/plugins/spree/script/plugin +0 -3
  1914. data/starter-app/vendor/plugins/spree/script/runner +0 -3
  1915. data/starter-app/vendor/plugins/spree/script/server +0 -3
  1916. data/starter-app/vendor/plugins/spree/test/fixtures/addresses.yml +0 -29
  1917. data/starter-app/vendor/plugins/spree/test/fixtures/categories.yml +0 -40
  1918. data/starter-app/vendor/plugins/spree/test/fixtures/line_items.yml +0 -32
  1919. data/starter-app/vendor/plugins/spree/test/fixtures/orders.yml +0 -17
  1920. data/starter-app/vendor/plugins/spree/test/fixtures/products.yml +0 -63
  1921. data/starter-app/vendor/plugins/spree/test/fixtures/products_tags.yml +0 -10
  1922. data/starter-app/vendor/plugins/spree/test/fixtures/roles.yml +0 -6
  1923. data/starter-app/vendor/plugins/spree/test/fixtures/roles_users.yml +0 -3
  1924. data/starter-app/vendor/plugins/spree/test/fixtures/skus.yml +0 -5
  1925. data/starter-app/vendor/plugins/spree/test/fixtures/tags.yml +0 -7
  1926. data/starter-app/vendor/plugins/spree/test/fixtures/tax_treatments.yml +0 -7
  1927. data/starter-app/vendor/plugins/spree/test/fixtures/txns.yml +0 -13
  1928. data/starter-app/vendor/plugins/spree/test/fixtures/users.yml +0 -40
  1929. data/starter-app/vendor/plugins/spree/test/fixtures/variations.yml +0 -16
  1930. data/starter-app/vendor/plugins/spree/test/functional/account_controller_test.rb +0 -129
  1931. data/starter-app/vendor/plugins/spree/test/functional/admin/base_controller_test.rb +0 -18
  1932. data/starter-app/vendor/plugins/spree/test/functional/admin/option_groups_controller_test.rb +0 -18
  1933. data/starter-app/vendor/plugins/spree/test/functional/admin/option_values_controller_test.rb +0 -18
  1934. data/starter-app/vendor/plugins/spree/test/functional/admin/orders_controller_test.rb +0 -18
  1935. data/starter-app/vendor/plugins/spree/test/functional/admin/overview_controller_test.rb +0 -18
  1936. data/starter-app/vendor/plugins/spree/test/functional/admin/products_controller_test.rb +0 -125
  1937. data/starter-app/vendor/plugins/spree/test/functional/admin/users_controller_test.rb +0 -58
  1938. data/starter-app/vendor/plugins/spree/test/functional/application_controller_test.rb +0 -30
  1939. data/starter-app/vendor/plugins/spree/test/functional/cart_controller_test.rb +0 -76
  1940. data/starter-app/vendor/plugins/spree/test/functional/checkout_controller_test.rb +0 -20
  1941. data/starter-app/vendor/plugins/spree/test/integration/authentication_test.rb +0 -53
  1942. data/starter-app/vendor/plugins/spree/test/integration/product_admin_test.rb +0 -135
  1943. data/starter-app/vendor/plugins/spree/test/integration/user_stories_test.rb +0 -59
  1944. data/starter-app/vendor/plugins/spree/test/test_helper.rb +0 -45
  1945. data/starter-app/vendor/plugins/spree/test/unit/address_test.rb +0 -10
  1946. data/starter-app/vendor/plugins/spree/test/unit/category_test.rb +0 -52
  1947. data/starter-app/vendor/plugins/spree/test/unit/option_group_test.rb +0 -12
  1948. data/starter-app/vendor/plugins/spree/test/unit/order_test.rb +0 -49
  1949. data/starter-app/vendor/plugins/spree/test/unit/product_test.rb +0 -74
  1950. data/starter-app/vendor/plugins/spree/test/unit/role_test.rb +0 -10
  1951. data/starter-app/vendor/plugins/spree/test/unit/sales_tax_test.rb +0 -46
  1952. data/starter-app/vendor/plugins/spree/test/unit/sku_test.rb +0 -10
  1953. data/starter-app/vendor/plugins/spree/test/unit/tag_test.rb +0 -9
  1954. data/starter-app/vendor/plugins/spree/test/unit/tax_treatment_test.rb +0 -10
  1955. data/starter-app/vendor/plugins/spree/test/unit/txn_test.rb +0 -10
  1956. data/tasks/deployment.rake +0 -34
  1957. data/tasks/environment.rake +0 -7
  1958. data/tasks/website.rake +0 -17
  1959. data/test/test_helper.rb +0 -2
  1960. data/test/test_railscart.rb +0 -11
@@ -0,0 +1,130 @@
1
+ require 'rexml/document'
2
+ require 'html/document'
3
+
4
+ module ActionController
5
+ module Assertions
6
+ # Pair of assertions to testing elements in the HTML output of the response.
7
+ module TagAssertions
8
+ # Asserts that there is a tag/node/element in the body of the response
9
+ # that meets all of the given conditions. The +conditions+ parameter must
10
+ # be a hash of any of the following keys (all are optional):
11
+ #
12
+ # * <tt>:tag</tt>: the node type must match the corresponding value
13
+ # * <tt>:attributes</tt>: a hash. The node's attributes must match the
14
+ # corresponding values in the hash.
15
+ # * <tt>:parent</tt>: a hash. The node's parent must match the
16
+ # corresponding hash.
17
+ # * <tt>:child</tt>: a hash. At least one of the node's immediate children
18
+ # must meet the criteria described by the hash.
19
+ # * <tt>:ancestor</tt>: a hash. At least one of the node's ancestors must
20
+ # meet the criteria described by the hash.
21
+ # * <tt>:descendant</tt>: a hash. At least one of the node's descendants
22
+ # must meet the criteria described by the hash.
23
+ # * <tt>:sibling</tt>: a hash. At least one of the node's siblings must
24
+ # meet the criteria described by the hash.
25
+ # * <tt>:after</tt>: a hash. The node must be after any sibling meeting
26
+ # the criteria described by the hash, and at least one sibling must match.
27
+ # * <tt>:before</tt>: a hash. The node must be before any sibling meeting
28
+ # the criteria described by the hash, and at least one sibling must match.
29
+ # * <tt>:children</tt>: a hash, for counting children of a node. Accepts
30
+ # the keys:
31
+ # * <tt>:count</tt>: either a number or a range which must equal (or
32
+ # include) the number of children that match.
33
+ # * <tt>:less_than</tt>: the number of matching children must be less
34
+ # than this number.
35
+ # * <tt>:greater_than</tt>: the number of matching children must be
36
+ # greater than this number.
37
+ # * <tt>:only</tt>: another hash consisting of the keys to use
38
+ # to match on the children, and only matching children will be
39
+ # counted.
40
+ # * <tt>:content</tt>: the textual content of the node must match the
41
+ # given value. This will not match HTML tags in the body of a
42
+ # tag--only text.
43
+ #
44
+ # Conditions are matched using the following algorithm:
45
+ #
46
+ # * if the condition is a string, it must be a substring of the value.
47
+ # * if the condition is a regexp, it must match the value.
48
+ # * if the condition is a number, the value must match number.to_s.
49
+ # * if the condition is +true+, the value must not be +nil+.
50
+ # * if the condition is +false+ or +nil+, the value must be +nil+.
51
+ #
52
+ # === Examples
53
+ #
54
+ # # Assert that there is a "span" tag
55
+ # assert_tag :tag => "span"
56
+ #
57
+ # # Assert that there is a "span" tag with id="x"
58
+ # assert_tag :tag => "span", :attributes => { :id => "x" }
59
+ #
60
+ # # Assert that there is a "span" tag using the short-hand
61
+ # assert_tag :span
62
+ #
63
+ # # Assert that there is a "span" tag with id="x" using the short-hand
64
+ # assert_tag :span, :attributes => { :id => "x" }
65
+ #
66
+ # # Assert that there is a "span" inside of a "div"
67
+ # assert_tag :tag => "span", :parent => { :tag => "div" }
68
+ #
69
+ # # Assert that there is a "span" somewhere inside a table
70
+ # assert_tag :tag => "span", :ancestor => { :tag => "table" }
71
+ #
72
+ # # Assert that there is a "span" with at least one "em" child
73
+ # assert_tag :tag => "span", :child => { :tag => "em" }
74
+ #
75
+ # # Assert that there is a "span" containing a (possibly nested)
76
+ # # "strong" tag.
77
+ # assert_tag :tag => "span", :descendant => { :tag => "strong" }
78
+ #
79
+ # # Assert that there is a "span" containing between 2 and 4 "em" tags
80
+ # # as immediate children
81
+ # assert_tag :tag => "span",
82
+ # :children => { :count => 2..4, :only => { :tag => "em" } }
83
+ #
84
+ # # Get funky: assert that there is a "div", with an "ul" ancestor
85
+ # # and an "li" parent (with "class" = "enum"), and containing a
86
+ # # "span" descendant that contains text matching /hello world/
87
+ # assert_tag :tag => "div",
88
+ # :ancestor => { :tag => "ul" },
89
+ # :parent => { :tag => "li",
90
+ # :attributes => { :class => "enum" } },
91
+ # :descendant => { :tag => "span",
92
+ # :child => /hello world/ }
93
+ #
94
+ # <b>Please note</b>: #assert_tag and #assert_no_tag only work
95
+ # with well-formed XHTML. They recognize a few tags as implicitly self-closing
96
+ # (like br and hr and such) but will not work correctly with tags
97
+ # that allow optional closing tags (p, li, td). <em>You must explicitly
98
+ # close all of your tags to use these assertions.</em>
99
+ def assert_tag(*opts)
100
+ clean_backtrace do
101
+ opts = opts.size > 1 ? opts.last.merge({ :tag => opts.first.to_s }) : opts.first
102
+ tag = find_tag(opts)
103
+ assert tag, "expected tag, but no tag found matching #{opts.inspect} in:\n#{@response.body.inspect}"
104
+ end
105
+ end
106
+
107
+ # Identical to #assert_tag, but asserts that a matching tag does _not_
108
+ # exist. (See #assert_tag for a full discussion of the syntax.)
109
+ #
110
+ # === Examples
111
+ # # Assert that there is not a "div" containing a "p"
112
+ # assert_no_tag :tag => "div", :descendant => { :tag => "p" }
113
+ #
114
+ # # Assert that an unordered list is empty
115
+ # assert_no_tag :tag => "ul", :descendant => { :tag => "li" }
116
+ #
117
+ # # Assert that there is not a "p" tag with between 1 to 3 "img" tags
118
+ # # as immediate children
119
+ # assert_no_tag :tag => "p",
120
+ # :children => { :count => 1..3, :only => { :tag => "img" } }
121
+ def assert_no_tag(*opts)
122
+ clean_backtrace do
123
+ opts = opts.size > 1 ? opts.last.merge({ :tag => opts.first.to_s }) : opts.first
124
+ tag = find_tag(opts)
125
+ assert !tag, "expected no tag, but found tag matching #{opts.inspect} in:\n#{@response.body.inspect}"
126
+ end
127
+ end
128
+ end
129
+ end
130
+ end
@@ -0,0 +1,1295 @@
1
+ require 'action_controller/mime_type'
2
+ require 'action_controller/request'
3
+ require 'action_controller/response'
4
+ require 'action_controller/routing'
5
+ require 'action_controller/resources'
6
+ require 'action_controller/url_rewriter'
7
+ require 'action_controller/status_codes'
8
+ require 'drb'
9
+ require 'set'
10
+
11
+ module ActionController #:nodoc:
12
+ class ActionControllerError < StandardError #:nodoc:
13
+ end
14
+
15
+ class SessionRestoreError < ActionControllerError #:nodoc:
16
+ end
17
+
18
+ class MissingTemplate < ActionControllerError #:nodoc:
19
+ end
20
+
21
+ class RenderError < ActionControllerError #:nodoc:
22
+ end
23
+
24
+ class RoutingError < ActionControllerError #:nodoc:
25
+ attr_reader :failures
26
+ def initialize(message, failures=[])
27
+ super(message)
28
+ @failures = failures
29
+ end
30
+ end
31
+
32
+ class MethodNotAllowed < ActionControllerError #:nodoc:
33
+ attr_reader :allowed_methods
34
+
35
+ def initialize(*allowed_methods)
36
+ super("Only #{allowed_methods.to_sentence} requests are allowed.")
37
+ @allowed_methods = allowed_methods
38
+ end
39
+
40
+ def allowed_methods_header
41
+ allowed_methods.map { |method_symbol| method_symbol.to_s.upcase } * ', '
42
+ end
43
+
44
+ def handle_response!(response)
45
+ response.headers['Allow'] ||= allowed_methods_header
46
+ end
47
+ end
48
+
49
+ class NotImplemented < MethodNotAllowed #:nodoc:
50
+ end
51
+
52
+ class UnknownController < ActionControllerError #:nodoc:
53
+ end
54
+
55
+ class UnknownAction < ActionControllerError #:nodoc:
56
+ end
57
+
58
+ class MissingFile < ActionControllerError #:nodoc:
59
+ end
60
+
61
+ class RenderError < ActionControllerError #:nodoc:
62
+ end
63
+
64
+ class SessionOverflowError < ActionControllerError #:nodoc:
65
+ DEFAULT_MESSAGE = 'Your session data is larger than the data column in which it is to be stored. You must increase the size of your data column if you intend to store large data.'
66
+
67
+ def initialize(message = nil)
68
+ super(message || DEFAULT_MESSAGE)
69
+ end
70
+ end
71
+
72
+ class DoubleRenderError < ActionControllerError #:nodoc:
73
+ DEFAULT_MESSAGE = "Render and/or redirect were called multiple times in this action. Please note that you may only call render OR redirect, and at most once per action. Also note that neither redirect nor render terminate execution of the action, so if you want to exit an action after redirecting, you need to do something like \"redirect_to(...) and return\"."
74
+
75
+ def initialize(message = nil)
76
+ super(message || DEFAULT_MESSAGE)
77
+ end
78
+ end
79
+
80
+ class RedirectBackError < ActionControllerError #:nodoc:
81
+ DEFAULT_MESSAGE = 'No HTTP_REFERER was set in the request to this action, so redirect_to :back could not be called successfully. If this is a test, make sure to specify request.env["HTTP_REFERER"].'
82
+
83
+ def initialize(message = nil)
84
+ super(message || DEFAULT_MESSAGE)
85
+ end
86
+ end
87
+
88
+ class UnknownHttpMethod < ActionControllerError #:nodoc:
89
+ end
90
+
91
+ # Action Controllers are the core of a web request in Rails. They are made up of one or more actions that are executed
92
+ # on request and then either render a template or redirect to another action. An action is defined as a public method
93
+ # on the controller, which will automatically be made accessible to the web-server through Rails Routes.
94
+ #
95
+ # A sample controller could look like this:
96
+ #
97
+ # class GuestBookController < ActionController::Base
98
+ # def index
99
+ # @entries = Entry.find(:all)
100
+ # end
101
+ #
102
+ # def sign
103
+ # Entry.create(params[:entry])
104
+ # redirect_to :action => "index"
105
+ # end
106
+ # end
107
+ #
108
+ # Actions, by default, render a template in the <tt>app/views</tt> directory corresponding to the name of the controller and action
109
+ # after executing code in the action. For example, the +index+ action of the +GuestBookController+ would render the
110
+ # template <tt>app/views/guestbook/index.erb</tt> by default after populating the <tt>@entries</tt> instance variable.
111
+ #
112
+ # Unlike index, the sign action will not render a template. After performing its main purpose (creating a
113
+ # new entry in the guest book), it initiates a redirect instead. This redirect works by returning an external
114
+ # "302 Moved" HTTP response that takes the user to the index action.
115
+ #
116
+ # The index and sign represent the two basic action archetypes used in Action Controllers. Get-and-show and do-and-redirect.
117
+ # Most actions are variations of these themes.
118
+ #
119
+ # == Requests
120
+ #
121
+ # Requests are processed by the Action Controller framework by extracting the value of the "action" key in the request parameters.
122
+ # This value should hold the name of the action to be performed. Once the action has been identified, the remaining
123
+ # request parameters, the session (if one is available), and the full request with all the http headers are made available to
124
+ # the action through instance variables. Then the action is performed.
125
+ #
126
+ # The full request object is available with the request accessor and is primarily used to query for http headers. These queries
127
+ # are made by accessing the environment hash, like this:
128
+ #
129
+ # def server_ip
130
+ # location = request.env["SERVER_ADDR"]
131
+ # render :text => "This server hosted at #{location}"
132
+ # end
133
+ #
134
+ # == Parameters
135
+ #
136
+ # All request parameters, whether they come from a GET or POST request, or from the URL, are available through the params method
137
+ # which returns a hash. For example, an action that was performed through <tt>/weblog/list?category=All&limit=5</tt> will include
138
+ # <tt>{ "category" => "All", "limit" => 5 }</tt> in params.
139
+ #
140
+ # It's also possible to construct multi-dimensional parameter hashes by specifying keys using brackets, such as:
141
+ #
142
+ # <input type="text" name="post[name]" value="david">
143
+ # <input type="text" name="post[address]" value="hyacintvej">
144
+ #
145
+ # A request stemming from a form holding these inputs will include <tt>{ "post" => { "name" => "david", "address" => "hyacintvej" } }</tt>.
146
+ # If the address input had been named "post[address][street]", the params would have included
147
+ # <tt>{ "post" => { "address" => { "street" => "hyacintvej" } } }</tt>. There's no limit to the depth of the nesting.
148
+ #
149
+ # == Sessions
150
+ #
151
+ # Sessions allows you to store objects in between requests. This is useful for objects that are not yet ready to be persisted,
152
+ # such as a Signup object constructed in a multi-paged process, or objects that don't change much and are needed all the time, such
153
+ # as a User object for a system that requires login. The session should not be used, however, as a cache for objects where it's likely
154
+ # they could be changed unknowingly. It's usually too much work to keep it all synchronized -- something databases already excel at.
155
+ #
156
+ # You can place objects in the session by using the <tt>session</tt> method, which accesses a hash:
157
+ #
158
+ # session[:person] = Person.authenticate(user_name, password)
159
+ #
160
+ # And retrieved again through the same hash:
161
+ #
162
+ # Hello #{session[:person]}
163
+ #
164
+ # For removing objects from the session, you can either assign a single key to nil, like <tt>session[:person] = nil</tt>, or you can
165
+ # remove the entire session with reset_session.
166
+ #
167
+ # Sessions are stored in a browser cookie that's cryptographically signed, but unencrypted, by default. This prevents
168
+ # the user from tampering with the session but also allows him to see its contents.
169
+ #
170
+ # Do not put secret information in session!
171
+ #
172
+ # Other options for session storage are:
173
+ #
174
+ # ActiveRecordStore: sessions are stored in your database, which works better than PStore with multiple app servers and,
175
+ # unlike CookieStore, hides your session contents from the user. To use ActiveRecordStore, set
176
+ #
177
+ # config.action_controller.session_store = :active_record_store
178
+ #
179
+ # in your <tt>environment.rb</tt> and run <tt>rake db:sessions:create</tt>.
180
+ #
181
+ # MemCacheStore: sessions are stored as entries in your memcached cache. Set the session store type in <tt>environment.rb</tt>:
182
+ #
183
+ # config.action_controller.session_store = :mem_cache_store
184
+ #
185
+ # This assumes that memcached has been installed and configured properly. See the MemCacheStore docs for more information.
186
+ #
187
+ # == Responses
188
+ #
189
+ # Each action results in a response, which holds the headers and document to be sent to the user's browser. The actual response
190
+ # object is generated automatically through the use of renders and redirects and requires no user intervention.
191
+ #
192
+ # == Renders
193
+ #
194
+ # Action Controller sends content to the user by using one of five rendering methods. The most versatile and common is the rendering
195
+ # of a template. Included in the Action Pack is the Action View, which enables rendering of ERb templates. It's automatically configured.
196
+ # The controller passes objects to the view by assigning instance variables:
197
+ #
198
+ # def show
199
+ # @post = Post.find(params[:id])
200
+ # end
201
+ #
202
+ # Which are then automatically available to the view:
203
+ #
204
+ # Title: <%= @post.title %>
205
+ #
206
+ # You don't have to rely on the automated rendering. Especially actions that could result in the rendering of different templates will use
207
+ # the manual rendering methods:
208
+ #
209
+ # def search
210
+ # @results = Search.find(params[:query])
211
+ # case @results
212
+ # when 0 then render :action => "no_results"
213
+ # when 1 then render :action => "show"
214
+ # when 2..10 then render :action => "show_many"
215
+ # end
216
+ # end
217
+ #
218
+ # Read more about writing ERb and Builder templates in link:classes/ActionView/Base.html.
219
+ #
220
+ # == Redirects
221
+ #
222
+ # Redirects are used to move from one action to another. For example, after a <tt>create</tt> action, which stores a blog entry to a database,
223
+ # we might like to show the user the new entry. Because we're following good DRY principles (Don't Repeat Yourself), we're going to reuse (and redirect to)
224
+ # a <tt>show</tt> action that we'll assume has already been created. The code might look like this:
225
+ #
226
+ # def create
227
+ # @entry = Entry.new(params[:entry])
228
+ # if @entry.save
229
+ # # The entry was saved correctly, redirect to show
230
+ # redirect_to :action => 'show', :id => @entry.id
231
+ # else
232
+ # # things didn't go so well, do something else
233
+ # end
234
+ # end
235
+ #
236
+ # In this case, after saving our new entry to the database, the user is redirected to the <tt>show</tt> method which is then executed.
237
+ #
238
+ # == Calling multiple redirects or renders
239
+ #
240
+ # An action may contain only a single render or a single redirect. Attempting to try to do either again will result in a DoubleRenderError:
241
+ #
242
+ # def do_something
243
+ # redirect_to :action => "elsewhere"
244
+ # render :action => "overthere" # raises DoubleRenderError
245
+ # end
246
+ #
247
+ # If you need to redirect on the condition of something, then be sure to add "and return" to halt execution.
248
+ #
249
+ # def do_something
250
+ # redirect_to(:action => "elsewhere") and return if monkeys.nil?
251
+ # render :action => "overthere" # won't be called unless monkeys is nil
252
+ # end
253
+ #
254
+ class Base
255
+ DEFAULT_RENDER_STATUS_CODE = "200 OK"
256
+
257
+ include StatusCodes
258
+
259
+ # Determines whether the view has access to controller internals @request, @response, @session, and @template.
260
+ # By default, it does.
261
+ @@view_controller_internals = true
262
+ cattr_accessor :view_controller_internals
263
+
264
+ # Protected instance variable cache
265
+ @@protected_variables_cache = nil
266
+ cattr_accessor :protected_variables_cache
267
+
268
+ # Prepends all the URL-generating helpers from AssetHelper. This makes it possible to easily move javascripts, stylesheets,
269
+ # and images to a dedicated asset server away from the main web server. Example:
270
+ # ActionController::Base.asset_host = "http://assets.example.com"
271
+ @@asset_host = ""
272
+ cattr_accessor :asset_host
273
+
274
+ # All requests are considered local by default, so everyone will be exposed to detailed debugging screens on errors.
275
+ # When the application is ready to go public, this should be set to false, and the protected method <tt>local_request?</tt>
276
+ # should instead be implemented in the controller to determine when debugging screens should be shown.
277
+ @@consider_all_requests_local = true
278
+ cattr_accessor :consider_all_requests_local
279
+
280
+ # Enable or disable the collection of failure information for RoutingErrors.
281
+ # This information can be extremely useful when tweaking custom routes, but is
282
+ # pointless once routes have been tested and verified.
283
+ @@debug_routes = true
284
+ cattr_accessor :debug_routes
285
+
286
+ # Controls whether the application is thread-safe, so multi-threaded servers like WEBrick know whether to apply a mutex
287
+ # around the performance of each action. Action Pack and Active Record are by default thread-safe, but many applications
288
+ # may not be. Turned off by default.
289
+ @@allow_concurrency = false
290
+ cattr_accessor :allow_concurrency
291
+
292
+ # Modern REST web services often need to submit complex data to the web application.
293
+ # The param_parsers hash lets you register handlers which will process the http body and add parameters to the
294
+ # <tt>params</tt> hash. These handlers are invoked for post and put requests.
295
+ #
296
+ # By default application/xml is enabled. A XmlSimple class with the same param name as the root will be instantiated
297
+ # in the <tt>params</tt>. This allows XML requests to mask themselves as regular form submissions, so you can have one
298
+ # action serve both regular forms and web service requests.
299
+ #
300
+ # Example of doing your own parser for a custom content type:
301
+ #
302
+ # ActionController::Base.param_parsers[Mime::Type.lookup('application/atom+xml')] = Proc.new do |data|
303
+ # node = REXML::Document.new(post)
304
+ # { node.root.name => node.root }
305
+ # end
306
+ #
307
+ # Note: Up until release 1.1 of Rails, Action Controller would default to using XmlSimple configured to discard the
308
+ # root node for such requests. The new default is to keep the root, such that "<r><name>David</name></r>" results
309
+ # in params[:r][:name] for "David" instead of params[:name]. To get the old behavior, you can
310
+ # re-register XmlSimple as application/xml handler ike this:
311
+ #
312
+ # ActionController::Base.param_parsers[Mime::XML] =
313
+ # Proc.new { |data| XmlSimple.xml_in(data, 'ForceArray' => false) }
314
+ #
315
+ # A YAML parser is also available and can be turned on with:
316
+ #
317
+ # ActionController::Base.param_parsers[Mime::YAML] = :yaml
318
+ @@param_parsers = { Mime::MULTIPART_FORM => :multipart_form,
319
+ Mime::URL_ENCODED_FORM => :url_encoded_form,
320
+ Mime::XML => :xml_simple }
321
+ cattr_accessor :param_parsers
322
+
323
+ # Controls the default charset for all renders.
324
+ @@default_charset = "utf-8"
325
+ cattr_accessor :default_charset
326
+
327
+ # The logger is used for generating information on the action run-time (including benchmarking) if available.
328
+ # Can be set to nil for no logging. Compatible with both Ruby's own Logger and Log4r loggers.
329
+ cattr_accessor :logger
330
+
331
+ # Determines which template class should be used by ActionController.
332
+ cattr_accessor :template_class
333
+
334
+ # Turn on +ignore_missing_templates+ if you want to unit test actions without making the associated templates.
335
+ cattr_accessor :ignore_missing_templates
336
+
337
+ # Controls the resource action separator
338
+ @@resource_action_separator = "/"
339
+ cattr_accessor :resource_action_separator
340
+
341
+ # Sets the token parameter name for RequestForgery. Calling #protect_from_forgery sets it to :authenticity_token by default
342
+ cattr_accessor :request_forgery_protection_token
343
+
344
+ # Indicates whether or not optimise the generated named
345
+ # route helper methods
346
+ cattr_accessor :optimise_named_routes
347
+ self.optimise_named_routes = true
348
+
349
+ # Controls whether request forgergy protection is turned on or not. Turned off by default only in test mode.
350
+ class_inheritable_accessor :allow_forgery_protection
351
+ self.allow_forgery_protection = true
352
+
353
+ # Holds the request object that's primarily used to get environment variables through access like
354
+ # <tt>request.env["REQUEST_URI"]</tt>.
355
+ attr_internal :request
356
+
357
+ # Holds a hash of all the GET, POST, and Url parameters passed to the action. Accessed like <tt>params["post_id"]</tt>
358
+ # to get the post_id. No type casts are made, so all values are returned as strings.
359
+ attr_internal :params
360
+
361
+ # Holds the response object that's primarily used to set additional HTTP headers through access like
362
+ # <tt>response.headers["Cache-Control"] = "no-cache"</tt>. Can also be used to access the final body HTML after a template
363
+ # has been rendered through response.body -- useful for <tt>after_filter</tt>s that wants to manipulate the output,
364
+ # such as a OutputCompressionFilter.
365
+ attr_internal :response
366
+
367
+ # Holds a hash of objects in the session. Accessed like <tt>session[:person]</tt> to get the object tied to the "person"
368
+ # key. The session will hold any type of object as values, but the key should be a string or symbol.
369
+ attr_internal :session
370
+
371
+ # Holds a hash of header names and values. Accessed like <tt>headers["Cache-Control"]</tt> to get the value of the Cache-Control
372
+ # directive. Values should always be specified as strings.
373
+ attr_internal :headers
374
+
375
+ # Holds the hash of variables that are passed on to the template class to be made available to the view. This hash
376
+ # is generated by taking a snapshot of all the instance variables in the current scope just before a template is rendered.
377
+ attr_accessor :assigns
378
+
379
+ # Returns the name of the action this controller is processing.
380
+ attr_accessor :action_name
381
+
382
+ # Templates that are exempt from layouts
383
+ @@exempt_from_layout = Set.new([/\.rjs$/])
384
+
385
+ class << self
386
+ # Factory for the standard create, process loop where the controller is discarded after processing.
387
+ def process(request, response) #:nodoc:
388
+ new.process(request, response)
389
+ end
390
+
391
+ # Converts the class name from something like "OneModule::TwoModule::NeatController" to "NeatController".
392
+ def controller_class_name
393
+ @controller_class_name ||= name.demodulize
394
+ end
395
+
396
+ # Converts the class name from something like "OneModule::TwoModule::NeatController" to "neat".
397
+ def controller_name
398
+ @controller_name ||= controller_class_name.sub(/Controller$/, '').underscore
399
+ end
400
+
401
+ # Converts the class name from something like "OneModule::TwoModule::NeatController" to "one_module/two_module/neat".
402
+ def controller_path
403
+ @controller_path ||= name.gsub(/Controller$/, '').underscore
404
+ end
405
+
406
+ # Return an array containing the names of public methods that have been marked hidden from the action processor.
407
+ # By default, all methods defined in ActionController::Base and included modules are hidden.
408
+ # More methods can be hidden using <tt>hide_actions</tt>.
409
+ def hidden_actions
410
+ unless read_inheritable_attribute(:hidden_actions)
411
+ write_inheritable_attribute(:hidden_actions, ActionController::Base.public_instance_methods.map(&:to_s))
412
+ end
413
+
414
+ read_inheritable_attribute(:hidden_actions)
415
+ end
416
+
417
+ # Hide each of the given methods from being callable as actions.
418
+ def hide_action(*names)
419
+ write_inheritable_attribute(:hidden_actions, hidden_actions | names.map(&:to_s))
420
+ end
421
+
422
+ ## View load paths determine the bases from which template references can be made. So a call to
423
+ ## render("test/template") will be looked up in the view load paths array and the closest match will be
424
+ ## returned.
425
+ def view_paths
426
+ @view_paths || superclass.view_paths
427
+ end
428
+
429
+ def view_paths=(value)
430
+ @view_paths = value
431
+ end
432
+
433
+ # Adds a view_path to the front of the view_paths array.
434
+ # If the current class has no view paths, copy them from
435
+ # the superclass. This change will be visible for all future requests.
436
+ #
437
+ # ArticleController.prepend_view_path("views/default")
438
+ # ArticleController.prepend_view_path(["views/default", "views/custom"])
439
+ #
440
+ def prepend_view_path(path)
441
+ @view_paths = superclass.view_paths.dup if @view_paths.nil?
442
+ view_paths.unshift(*path)
443
+ end
444
+
445
+ # Adds a view_path to the end of the view_paths array.
446
+ # If the current class has no view paths, copy them from
447
+ # the superclass. This change will be visible for all future requests.
448
+ #
449
+ # ArticleController.append_view_path("views/default")
450
+ # ArticleController.append_view_path(["views/default", "views/custom"])
451
+ #
452
+ def append_view_path(path)
453
+ @view_paths = superclass.view_paths.dup if @view_paths.nil?
454
+ view_paths.push(*path)
455
+ end
456
+
457
+ # Replace sensitive parameter data from the request log.
458
+ # Filters parameters that have any of the arguments as a substring.
459
+ # Looks in all subhashes of the param hash for keys to filter.
460
+ # If a block is given, each key and value of the parameter hash and all
461
+ # subhashes is passed to it, the value or key
462
+ # can be replaced using String#replace or similar method.
463
+ #
464
+ # Examples:
465
+ # filter_parameter_logging
466
+ # => Does nothing, just slows the logging process down
467
+ #
468
+ # filter_parameter_logging :password
469
+ # => replaces the value to all keys matching /password/i with "[FILTERED]"
470
+ #
471
+ # filter_parameter_logging :foo, "bar"
472
+ # => replaces the value to all keys matching /foo|bar/i with "[FILTERED]"
473
+ #
474
+ # filter_parameter_logging { |k,v| v.reverse! if k =~ /secret/i }
475
+ # => reverses the value to all keys matching /secret/i
476
+ #
477
+ # filter_parameter_logging(:foo, "bar") { |k,v| v.reverse! if k =~ /secret/i }
478
+ # => reverses the value to all keys matching /secret/i, and
479
+ # replaces the value to all keys matching /foo|bar/i with "[FILTERED]"
480
+ def filter_parameter_logging(*filter_words, &block)
481
+ parameter_filter = Regexp.new(filter_words.collect{ |s| s.to_s }.join('|'), true) if filter_words.length > 0
482
+
483
+ define_method(:filter_parameters) do |unfiltered_parameters|
484
+ filtered_parameters = {}
485
+
486
+ unfiltered_parameters.each do |key, value|
487
+ if key =~ parameter_filter
488
+ filtered_parameters[key] = '[FILTERED]'
489
+ elsif value.is_a?(Hash)
490
+ filtered_parameters[key] = filter_parameters(value)
491
+ elsif block_given?
492
+ key = key.dup
493
+ value = value.dup if value
494
+ yield key, value
495
+ filtered_parameters[key] = value
496
+ else
497
+ filtered_parameters[key] = value
498
+ end
499
+ end
500
+
501
+ filtered_parameters
502
+ end
503
+ end
504
+
505
+ # Don't render layouts for templates with the given extensions.
506
+ def exempt_from_layout(*extensions)
507
+ regexps = extensions.collect do |extension|
508
+ extension.is_a?(Regexp) ? extension : /\.#{Regexp.escape(extension.to_s)}$/
509
+ end
510
+ @@exempt_from_layout.merge regexps
511
+ end
512
+ end
513
+
514
+ public
515
+ # Extracts the action_name from the request parameters and performs that action.
516
+ def process(request, response, method = :perform_action, *arguments) #:nodoc:
517
+ initialize_template_class(response)
518
+ assign_shortcuts(request, response)
519
+ initialize_current_url
520
+ assign_names
521
+ forget_variables_added_to_assigns
522
+
523
+ log_processing
524
+ send(method, *arguments)
525
+
526
+ assign_default_content_type_and_charset
527
+
528
+ response.request = request
529
+ response.prepare! unless component_request?
530
+ response
531
+ ensure
532
+ process_cleanup
533
+ end
534
+
535
+ # Returns a URL that has been rewritten according to the options hash and the defined Routes.
536
+ # (For doing a complete redirect, use redirect_to).
537
+ #  
538
+ # <tt>url_for</tt> is used to:
539
+ #  
540
+ # All keys given to url_for are forwarded to the Route module, save for the following:
541
+ # * <tt>:anchor</tt> -- specifies the anchor name to be appended to the path. For example,
542
+ # <tt>url_for :controller => 'posts', :action => 'show', :id => 10, :anchor => 'comments'</tt>
543
+ # will produce "/posts/show/10#comments".
544
+ # * <tt>:only_path</tt> -- if true, returns the relative URL (omitting the protocol, host name, and port) (<tt>false</tt> by default)
545
+ # * <tt>:trailing_slash</tt> -- if true, adds a trailing slash, as in "/archive/2005/". Note that this
546
+ # is currently not recommended since it breaks caching.
547
+ # * <tt>:host</tt> -- overrides the default (current) host if provided.
548
+ # * <tt>:protocol</tt> -- overrides the default (current) protocol if provided.
549
+ # * <tt>:port</tt> -- optionally specify the port to connect to.
550
+ # * <tt>:user</tt> -- Inline HTTP authentication (only plucked out if :password is also present).
551
+ # * <tt>:password</tt> -- Inline HTTP authentication (only plucked out if :user is also present).
552
+ # * <tt>:skip_relative_url_root</tt> -- if true, the url is not constructed using the relative_url_root of the request so the path
553
+ # will include the web server relative installation directory.
554
+ #
555
+ # The URL is generated from the remaining keys in the hash. A URL contains two key parts: the <base> and a query string.
556
+ # Routes composes a query string as the key/value pairs not included in the <base>.
557
+ #
558
+ # The default Routes setup supports a typical Rails path of "controller/action/id" where action and id are optional, with
559
+ # action defaulting to 'index' when not given. Here are some typical url_for statements and their corresponding URLs:
560
+ #
561
+ # url_for :controller => 'posts', :action => 'recent' # => 'proto://host.com/posts/recent'
562
+ # url_for :controller => 'posts', :action => 'index' # => 'proto://host.com/posts'
563
+ # url_for :controller => 'posts', :action => 'index', :port=>'8033' # => 'proto://host.com:8033/posts'
564
+ # url_for :controller => 'posts', :action => 'show', :id => 10 # => 'proto://host.com/posts/show/10'
565
+ # url_for :controller => 'posts', :user => 'd', :password => '123' # => 'proto://d:123@host.com/posts'
566
+ #
567
+ # When generating a new URL, missing values may be filled in from the current request's parameters. For example,
568
+ # <tt>url_for :action => 'some_action'</tt> will retain the current controller, as expected. This behavior extends to
569
+ # other parameters, including <tt>:controller</tt>, <tt>:id</tt>, and any other parameters that are placed into a Route's
570
+ # path.
571
+ #  
572
+ # The URL helpers such as <tt>url_for</tt> have a limited form of memory: when generating a new URL, they can look for
573
+ # missing values in the current request's parameters. Routes attempts to guess when a value should and should not be
574
+ # taken from the defaults. There are a few simple rules on how this is performed:
575
+ #
576
+ # * If the controller name begins with a slash, no defaults are used: <tt>url_for :controller => '/home'</tt>
577
+ # * If the controller changes, the action will default to index unless provided
578
+ #
579
+ # The final rule is applied while the URL is being generated and is best illustrated by an example. Let us consider the
580
+ # route given by <tt>map.connect 'people/:last/:first/:action', :action => 'bio', :controller => 'people'</tt>.
581
+ #
582
+ # Suppose that the current URL is "people/hh/david/contacts". Let's consider a few different cases of URLs which are generated
583
+ # from this page.
584
+ #
585
+ # * <tt>url_for :action => 'bio'</tt> -- During the generation of this URL, default values will be used for the first and
586
+ # last components, and the action shall change. The generated URL will be, "people/hh/david/bio".
587
+ # * <tt>url_for :first => 'davids-little-brother'</tt> This generates the URL 'people/hh/davids-little-brother' -- note
588
+ # that this URL leaves out the assumed action of 'bio'.
589
+ #
590
+ # However, you might ask why the action from the current request, 'contacts', isn't carried over into the new URL. The
591
+ # answer has to do with the order in which the parameters appear in the generated path. In a nutshell, since the
592
+ # value that appears in the slot for <tt>:first</tt> is not equal to default value for <tt>:first</tt> we stop using
593
+ # defaults. On its own, this rule can account for much of the typical Rails URL behavior.
594
+ #  
595
+ # Although a convenience, defaults can occasionally get in your way. In some cases a default persists longer than desired.
596
+ # The default may be cleared by adding <tt>:name => nil</tt> to <tt>url_for</tt>'s options.
597
+ # This is often required when writing form helpers, since the defaults in play may vary greatly depending upon where the
598
+ # helper is used from. The following line will redirect to PostController's default action, regardless of the page it is
599
+ # displayed on:
600
+ #
601
+ # url_for :controller => 'posts', :action => nil
602
+ #
603
+ # If you explicitly want to create a URL that's almost the same as the current URL, you can do so using the
604
+ # :overwrite_params options. Say for your posts you have different views for showing and printing them.
605
+ # Then, in the show view, you get the URL for the print view like this
606
+ #
607
+ # url_for :overwrite_params => { :action => 'print' }
608
+ #
609
+ # This takes the current URL as is and only exchanges the action. In contrast, <tt>url_for :action => 'print'</tt>
610
+ # would have slashed-off the path components after the changed action.
611
+ def url_for(options = nil) #:doc:
612
+ case options || {}
613
+ when String
614
+ options
615
+ when Hash
616
+ @url.rewrite(rewrite_options(options))
617
+ else
618
+ polymorphic_url(options)
619
+ end
620
+ end
621
+
622
+ # Converts the class name from something like "OneModule::TwoModule::NeatController" to "NeatController".
623
+ def controller_class_name
624
+ self.class.controller_class_name
625
+ end
626
+
627
+ # Converts the class name from something like "OneModule::TwoModule::NeatController" to "neat".
628
+ def controller_name
629
+ self.class.controller_name
630
+ end
631
+
632
+ # Converts the class name from something like "OneModule::TwoModule::NeatController" to "one_module/two_module/neat".
633
+ def controller_path
634
+ self.class.controller_path
635
+ end
636
+
637
+ def session_enabled?
638
+ request.session_options && request.session_options[:disabled] != false
639
+ end
640
+
641
+ self.view_paths = []
642
+
643
+ # View load paths for controller.
644
+ def view_paths
645
+ (@template || self.class).view_paths
646
+ end
647
+
648
+ def view_paths=(value)
649
+ (@template || self.class).view_paths = value
650
+ end
651
+
652
+ # Adds a view_path to the front of the view_paths array.
653
+ # This change affects the current request only.
654
+ #
655
+ # self.prepend_view_path("views/default")
656
+ # self.prepend_view_path(["views/default", "views/custom"])
657
+ #
658
+ def prepend_view_path(path)
659
+ (@template || self.class).prepend_view_path(path)
660
+ end
661
+
662
+ # Adds a view_path to the end of the view_paths array.
663
+ # This change affects the current request only.
664
+ #
665
+ # self.append_view_path("views/default")
666
+ # self.append_view_path(["views/default", "views/custom"])
667
+ #
668
+ def append_view_path(path)
669
+ (@template || self.class).append_view_path(path)
670
+ end
671
+
672
+ protected
673
+ # Renders the content that will be returned to the browser as the response body.
674
+ #
675
+ # === Rendering an action
676
+ #
677
+ # Action rendering is the most common form and the type used automatically by Action Controller when nothing else is
678
+ # specified. By default, actions are rendered within the current layout (if one exists).
679
+ #
680
+ # # Renders the template for the action "goal" within the current controller
681
+ # render :action => "goal"
682
+ #
683
+ # # Renders the template for the action "short_goal" within the current controller,
684
+ # # but without the current active layout
685
+ # render :action => "short_goal", :layout => false
686
+ #
687
+ # # Renders the template for the action "long_goal" within the current controller,
688
+ # # but with a custom layout
689
+ # render :action => "long_goal", :layout => "spectacular"
690
+ #
691
+ # === Rendering partials
692
+ #
693
+ # Partial rendering in a controller is most commonly used together with Ajax calls that only update one or a few elements on a page
694
+ # without reloading. Rendering of partials from the controller makes it possible to use the same partial template in
695
+ # both the full-page rendering (by calling it from within the template) and when sub-page updates happen (from the
696
+ # controller action responding to Ajax calls). By default, the current layout is not used.
697
+ #
698
+ # # Renders the same partial with a local variable.
699
+ # render :partial => "person", :locals => { :name => "david" }
700
+ #
701
+ # # Renders the partial, making @new_person available through
702
+ # # the local variable 'person'
703
+ # render :partial => "person", :object => @new_person
704
+ #
705
+ # # Renders a collection of the same partial by making each element
706
+ # # of @winners available through the local variable "person" as it
707
+ # # builds the complete response.
708
+ # render :partial => "person", :collection => @winners
709
+ #
710
+ # # Renders the same collection of partials, but also renders the
711
+ # # person_divider partial between each person partial.
712
+ # render :partial => "person", :collection => @winners, :spacer_template => "person_divider"
713
+ #
714
+ # # Renders a collection of partials located in a view subfolder
715
+ # # outside of our current controller. In this example we will be
716
+ # # rendering app/views/shared/_note.r(html|xml) Inside the partial
717
+ # # each element of @new_notes is available as the local var "note".
718
+ # render :partial => "shared/note", :collection => @new_notes
719
+ #
720
+ # # Renders the partial with a status code of 500 (internal error).
721
+ # render :partial => "broken", :status => 500
722
+ #
723
+ # Note that the partial filename must also be a valid Ruby variable name,
724
+ # so e.g. 2005 and register-user are invalid.
725
+ #
726
+ #
727
+ # == Automatic etagging
728
+ #
729
+ # Rendering will automatically insert the etag header on 200 OK responses. The etag is calculated using MD5 of the
730
+ # response body. If a request comes in that has a matching etag, the response will be changed to a 304 Not Modified
731
+ # and the response body will be set to an empty string. No etag header will be inserted if it's already set.
732
+ #
733
+ # === Rendering a template
734
+ #
735
+ # Template rendering works just like action rendering except that it takes a path relative to the template root.
736
+ # The current layout is automatically applied.
737
+ #
738
+ # # Renders the template located in [TEMPLATE_ROOT]/weblog/show.r(html|xml) (in Rails, app/views/weblog/show.erb)
739
+ # render :template => "weblog/show"
740
+ #
741
+ # === Rendering a file
742
+ #
743
+ # File rendering works just like action rendering except that it takes a filesystem path. By default, the path
744
+ # is assumed to be absolute, and the current layout is not applied.
745
+ #
746
+ # # Renders the template located at the absolute filesystem path
747
+ # render :file => "/path/to/some/template.erb"
748
+ # render :file => "c:/path/to/some/template.erb"
749
+ #
750
+ # # Renders a template within the current layout, and with a 404 status code
751
+ # render :file => "/path/to/some/template.erb", :layout => true, :status => 404
752
+ # render :file => "c:/path/to/some/template.erb", :layout => true, :status => 404
753
+ #
754
+ # # Renders a template relative to the template root and chooses the proper file extension
755
+ # render :file => "some/template", :use_full_path => true
756
+ #
757
+ # === Rendering text
758
+ #
759
+ # Rendering of text is usually used for tests or for rendering prepared content, such as a cache. By default, text
760
+ # rendering is not done within the active layout.
761
+ #
762
+ # # Renders the clear text "hello world" with status code 200
763
+ # render :text => "hello world!"
764
+ #
765
+ # # Renders the clear text "Explosion!" with status code 500
766
+ # render :text => "Explosion!", :status => 500
767
+ #
768
+ # # Renders the clear text "Hi there!" within the current active layout (if one exists)
769
+ # render :text => "Hi there!", :layout => true
770
+ #
771
+ # # Renders the clear text "Hi there!" within the layout
772
+ # # placed in "app/views/layouts/special.r(html|xml)"
773
+ # render :text => "Hi there!", :layout => "special"
774
+ #
775
+ # The :text option can also accept a Proc object, which can be used to manually control the page generation. This should
776
+ # generally be avoided, as it violates the separation between code and content, and because almost everything that can be
777
+ # done with this method can also be done more cleanly using one of the other rendering methods, most notably templates.
778
+ #
779
+ # # Renders "Hello from code!"
780
+ # render :text => proc { |response, output| output.write("Hello from code!") }
781
+ #
782
+ # === Rendering JSON
783
+ #
784
+ # Rendering JSON sets the content type to application/json and optionally wraps the JSON in a callback. It is expected
785
+ # that the response will be parsed (or eval'd) for use as a data structure.
786
+ #
787
+ # # Renders '{"name": "David"}'
788
+ # render :json => {:name => "David"}.to_json
789
+ #
790
+ # It's not necessary to call <tt>to_json</tt> on the object you want to render, since <tt>render</tt> will
791
+ # automatically do that for you:
792
+ #
793
+ # # Also renders '{"name": "David"}'
794
+ # render :json => {:name => "David"}
795
+ #
796
+ # Sometimes the result isn't handled directly by a script (such as when the request comes from a SCRIPT tag),
797
+ # so the <tt>:callback</tt> option is provided for these cases.
798
+ #
799
+ # # Renders 'show({"name": "David"})'
800
+ # render :json => {:name => "David"}.to_json, :callback => 'show'
801
+ #
802
+ # === Rendering an inline template
803
+ #
804
+ # Rendering of an inline template works as a cross between text and action rendering where the source for the template
805
+ # is supplied inline, like text, but its interpreted with ERb or Builder, like action. By default, ERb is used for rendering
806
+ # and the current layout is not used.
807
+ #
808
+ # # Renders "hello, hello, hello, again"
809
+ # render :inline => "<%= 'hello, ' * 3 + 'again' %>"
810
+ #
811
+ # # Renders "<p>Good seeing you!</p>" using Builder
812
+ # render :inline => "xml.p { 'Good seeing you!' }", :type => :builder
813
+ #
814
+ # # Renders "hello david"
815
+ # render :inline => "<%= 'hello ' + name %>", :locals => { :name => "david" }
816
+ #
817
+ # === Rendering inline JavaScriptGenerator page updates
818
+ #
819
+ # In addition to rendering JavaScriptGenerator page updates with Ajax in RJS templates (see ActionView::Base for details),
820
+ # you can also pass the <tt>:update</tt> parameter to +render+, along with a block, to render page updates inline.
821
+ #
822
+ # render :update do |page|
823
+ # page.replace_html 'user_list', :partial => 'user', :collection => @users
824
+ # page.visual_effect :highlight, 'user_list'
825
+ # end
826
+ #
827
+ # === Rendering with status and location headers
828
+ #
829
+ # All renders take the :status and :location options and turn them into headers. They can even be used together:
830
+ #
831
+ # render :xml => post.to_xml, :status => :created, :location => post_url(post)
832
+ def render(options = nil, &block) #:doc:
833
+ raise DoubleRenderError, "Can only render or redirect once per action" if performed?
834
+
835
+ if options.nil?
836
+ return render_for_file(default_template_name, nil, true)
837
+ else
838
+ if options == :update
839
+ options = { :update => true }
840
+ elsif !options.is_a?(Hash)
841
+ raise RenderError, "You called render with invalid options : #{options}"
842
+ end
843
+ end
844
+
845
+ if content_type = options[:content_type]
846
+ response.content_type = content_type.to_s
847
+ end
848
+
849
+ if location = options[:location]
850
+ response.headers["Location"] = url_for(location)
851
+ end
852
+
853
+ if text = options[:text]
854
+ render_for_text(text, options[:status])
855
+
856
+ else
857
+ if file = options[:file]
858
+ render_for_file(file, options[:status], options[:use_full_path], options[:locals] || {})
859
+
860
+ elsif template = options[:template]
861
+ render_for_file(template, options[:status], true)
862
+
863
+ elsif inline = options[:inline]
864
+ add_variables_to_assigns
865
+ render_for_text(@template.render_template(options[:type], inline, nil, options[:locals] || {}), options[:status])
866
+
867
+ elsif action_name = options[:action]
868
+ template = default_template_name(action_name.to_s)
869
+ if options[:layout] && !template_exempt_from_layout?(template)
870
+ render_with_a_layout(:file => template, :status => options[:status], :use_full_path => true, :layout => true)
871
+ else
872
+ render_with_no_layout(:file => template, :status => options[:status], :use_full_path => true)
873
+ end
874
+
875
+ elsif xml = options[:xml]
876
+ response.content_type ||= Mime::XML
877
+ render_for_text(xml.respond_to?(:to_xml) ? xml.to_xml : xml, options[:status])
878
+
879
+ elsif json = options[:json]
880
+ json = json.to_json unless json.is_a?(String)
881
+ json = "#{options[:callback]}(#{json})" unless options[:callback].blank?
882
+ response.content_type ||= Mime::JSON
883
+ render_for_text(json, options[:status])
884
+
885
+ elsif partial = options[:partial]
886
+ partial = default_template_name if partial == true
887
+ add_variables_to_assigns
888
+
889
+ if collection = options[:collection]
890
+ render_for_text(
891
+ @template.send!(:render_partial_collection, partial, collection,
892
+ options[:spacer_template], options[:locals]), options[:status]
893
+ )
894
+ else
895
+ render_for_text(
896
+ @template.send!(:render_partial, partial,
897
+ ActionView::Base::ObjectWrapper.new(options[:object]), options[:locals]), options[:status]
898
+ )
899
+ end
900
+
901
+ elsif options[:update]
902
+ add_variables_to_assigns
903
+ @template.send! :evaluate_assigns
904
+
905
+ generator = ActionView::Helpers::PrototypeHelper::JavaScriptGenerator.new(@template, &block)
906
+ response.content_type = Mime::JS
907
+ render_for_text(generator.to_s)
908
+
909
+ elsif options[:nothing]
910
+ # Safari doesn't pass the headers of the return if the response is zero length
911
+ render_for_text(" ", options[:status])
912
+
913
+ else
914
+ render_for_file(default_template_name, options[:status], true)
915
+ end
916
+ end
917
+ end
918
+
919
+ # Renders according to the same rules as <tt>render</tt>, but returns the result in a string instead
920
+ # of sending it as the response body to the browser.
921
+ def render_to_string(options = nil, &block) #:doc:
922
+ render(options, &block)
923
+ ensure
924
+ erase_render_results
925
+ forget_variables_added_to_assigns
926
+ reset_variables_added_to_assigns
927
+ end
928
+
929
+ # Return a response that has no content (merely headers). The options
930
+ # argument is interpreted to be a hash of header names and values.
931
+ # This allows you to easily return a response that consists only of
932
+ # significant headers:
933
+ #
934
+ # head :created, :location => person_path(@person)
935
+ #
936
+ # It can also be used to return exceptional conditions:
937
+ #
938
+ # return head(:method_not_allowed) unless request.post?
939
+ # return head(:bad_request) unless valid_request?
940
+ # render
941
+ def head(*args)
942
+ if args.length > 2
943
+ raise ArgumentError, "too many arguments to head"
944
+ elsif args.empty?
945
+ raise ArgumentError, "too few arguments to head"
946
+ end
947
+ options = args.extract_options!
948
+ status = interpret_status(args.shift || options.delete(:status) || :ok)
949
+
950
+ options.each do |key, value|
951
+ headers[key.to_s.dasherize.split(/-/).map { |v| v.capitalize }.join("-")] = value.to_s
952
+ end
953
+
954
+ render :nothing => true, :status => status
955
+ end
956
+
957
+
958
+ # Clears the rendered results, allowing for another render to be performed.
959
+ def erase_render_results #:nodoc:
960
+ response.body = nil
961
+ @performed_render = false
962
+ end
963
+
964
+ # Clears the redirected results from the headers, resets the status to 200 and returns
965
+ # the URL that was used to redirect or nil if there was no redirected URL
966
+ # Note that +redirect_to+ will change the body of the response to indicate a redirection.
967
+ # The response body is not reset here, see +erase_render_results+
968
+ def erase_redirect_results #:nodoc:
969
+ @performed_redirect = false
970
+ response.redirected_to = nil
971
+ response.redirected_to_method_params = nil
972
+ response.headers['Status'] = DEFAULT_RENDER_STATUS_CODE
973
+ response.headers.delete('Location')
974
+ end
975
+
976
+ # Erase both render and redirect results
977
+ def erase_results #:nodoc:
978
+ erase_render_results
979
+ erase_redirect_results
980
+ end
981
+
982
+ def rewrite_options(options) #:nodoc:
983
+ if defaults = default_url_options(options)
984
+ defaults.merge(options)
985
+ else
986
+ options
987
+ end
988
+ end
989
+
990
+ # Overwrite to implement a number of default options that all url_for-based methods will use. The default options should come in
991
+ # the form of a hash, just like the one you would use for url_for directly. Example:
992
+ #
993
+ # def default_url_options(options)
994
+ # { :project => @project.active? ? @project.url_name : "unknown" }
995
+ # end
996
+ #
997
+ # As you can infer from the example, this is mostly useful for situations where you want to centralize dynamic decisions about the
998
+ # urls as they stem from the business domain. Please note that any individual url_for call can always override the defaults set
999
+ # by this method.
1000
+ def default_url_options(options) #:doc:
1001
+ end
1002
+
1003
+ # Redirects the browser to the target specified in +options+. This parameter can take one of three forms:
1004
+ #
1005
+ # * <tt>Hash</tt> - The URL will be generated by calling url_for with the +options+.
1006
+ # * <tt>Record</tt> - The URL will be generated by calling url_for with the +options+, which will reference a named URL for that record.
1007
+ # * <tt>String starting with protocol:// (like http://)</tt> - Is passed straight through as the target for redirection.
1008
+ # * <tt>String not containing a protocol</tt> - The current protocol and host is prepended to the string.
1009
+ # * <tt>:back</tt> - Back to the page that issued the request. Useful for forms that are triggered from multiple places.
1010
+ # Short-hand for redirect_to(request.env["HTTP_REFERER"])
1011
+ #
1012
+ # Examples:
1013
+ # redirect_to :action => "show", :id => 5
1014
+ # redirect_to post
1015
+ # redirect_to "http://www.rubyonrails.org"
1016
+ # redirect_to "/images/screenshot.jpg"
1017
+ # redirect_to articles_url
1018
+ # redirect_to :back
1019
+ #
1020
+ # The redirection happens as a "302 Moved" header unless otherwise specified.
1021
+ #
1022
+ # Examples:
1023
+ # redirect_to post_url(@post), :status=>:found
1024
+ # redirect_to :action=>'atom', :status=>:moved_permanently
1025
+ # redirect_to post_url(@post), :status=>301
1026
+ # redirect_to :action=>'atom', :status=>302
1027
+ #
1028
+ # When using <tt>redirect_to :back</tt>, if there is no referrer,
1029
+ # RedirectBackError will be raised. You may specify some fallback
1030
+ # behavior for this case by rescuing RedirectBackError.
1031
+ def redirect_to(options = {}, response_status = {}) #:doc:
1032
+
1033
+ if options.is_a?(Hash) && options[:status]
1034
+ status = options.delete(:status)
1035
+ elsif response_status[:status]
1036
+ status = response_status[:status]
1037
+ else
1038
+ status = 302
1039
+ end
1040
+
1041
+ case options
1042
+ when %r{^\w+://.*}
1043
+ raise DoubleRenderError if performed?
1044
+ logger.info("Redirected to #{options}") if logger && logger.info?
1045
+ response.redirect(options, interpret_status(status))
1046
+ response.redirected_to = options
1047
+ @performed_redirect = true
1048
+
1049
+ when String
1050
+ redirect_to(request.protocol + request.host_with_port + options, :status=>status)
1051
+
1052
+ when :back
1053
+ request.env["HTTP_REFERER"] ? redirect_to(request.env["HTTP_REFERER"], :status=>status) : raise(RedirectBackError)
1054
+
1055
+ when Hash
1056
+ redirect_to(url_for(options), :status=>status)
1057
+ response.redirected_to = options
1058
+
1059
+ else
1060
+ redirect_to(url_for(options), :status=>status)
1061
+ end
1062
+ end
1063
+
1064
+ # Sets a HTTP 1.1 Cache-Control header. Defaults to issuing a "private" instruction, so that
1065
+ # intermediate caches shouldn't cache the response.
1066
+ #
1067
+ # Examples:
1068
+ # expires_in 20.minutes
1069
+ # expires_in 3.hours, :private => false
1070
+ # expires in 3.hours, 'max-stale' => 5.hours, :private => nil, :public => true
1071
+ #
1072
+ # This method will overwrite an existing Cache-Control header.
1073
+ # See http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html for more possibilities.
1074
+ def expires_in(seconds, options = {}) #:doc:
1075
+ cache_options = { 'max-age' => seconds, 'private' => true }.symbolize_keys.merge!(options.symbolize_keys)
1076
+ cache_options.delete_if { |k,v| v.nil? or v == false }
1077
+ cache_control = cache_options.map{ |k,v| v == true ? k.to_s : "#{k.to_s}=#{v.to_s}"}
1078
+ response.headers["Cache-Control"] = cache_control.join(', ')
1079
+ end
1080
+
1081
+ # Sets a HTTP 1.1 Cache-Control header of "no-cache" so no caching should occur by the browser or
1082
+ # intermediate caches (like caching proxy servers).
1083
+ def expires_now #:doc:
1084
+ response.headers["Cache-Control"] = "no-cache"
1085
+ end
1086
+
1087
+ # Resets the session by clearing out all the objects stored within and initializing a new session object.
1088
+ def reset_session #:doc:
1089
+ request.reset_session
1090
+ @_session = request.session
1091
+ response.session = @_session
1092
+ end
1093
+
1094
+
1095
+ private
1096
+ def render_for_file(template_path, status = nil, use_full_path = false, locals = {}) #:nodoc:
1097
+ add_variables_to_assigns
1098
+ assert_existence_of_template_file(template_path) if use_full_path
1099
+ logger.info("Rendering #{template_path}" + (status ? " (#{status})" : '')) if logger
1100
+ render_for_text(@template.render_file(template_path, use_full_path, locals), status)
1101
+ end
1102
+
1103
+ def render_for_text(text = nil, status = nil, append_response = false) #:nodoc:
1104
+ @performed_render = true
1105
+
1106
+ response.headers['Status'] = interpret_status(status || DEFAULT_RENDER_STATUS_CODE)
1107
+
1108
+ if append_response
1109
+ response.body ||= ''
1110
+ response.body << text.to_s
1111
+ else
1112
+ response.body = text.is_a?(Proc) ? text : text.to_s
1113
+ end
1114
+ end
1115
+
1116
+ def initialize_template_class(response)
1117
+ unless @@template_class
1118
+ raise "You must assign a template class through ActionController.template_class= before processing a request"
1119
+ end
1120
+
1121
+ response.template = ActionView::Base.new(view_paths, {}, self)
1122
+ response.template.extend self.class.master_helper_module
1123
+ response.redirected_to = nil
1124
+ @performed_render = @performed_redirect = false
1125
+ end
1126
+
1127
+ def assign_shortcuts(request, response)
1128
+ @_request, @_params, @_cookies = request, request.parameters, request.cookies
1129
+
1130
+ @_response = response
1131
+ @_response.session = request.session
1132
+
1133
+ @_session = @_response.session
1134
+ @template = @_response.template
1135
+ @assigns = @_response.template.assigns
1136
+
1137
+ @_headers = @_response.headers
1138
+ end
1139
+
1140
+ def initialize_current_url
1141
+ @url = UrlRewriter.new(request, params.clone)
1142
+ end
1143
+
1144
+ def log_processing
1145
+ if logger && logger.info?
1146
+ logger.info "\n\nProcessing #{controller_class_name}\##{action_name} (for #{request_origin}) [#{request.method.to_s.upcase}]"
1147
+ logger.info " Session ID: #{@_session.session_id}" if @_session and @_session.respond_to?(:session_id)
1148
+ logger.info " Parameters: #{respond_to?(:filter_parameters) ? filter_parameters(params).inspect : params.inspect}"
1149
+ end
1150
+ end
1151
+
1152
+ def default_render #:nodoc:
1153
+ render
1154
+ end
1155
+
1156
+ def perform_action
1157
+ if self.class.action_methods.include?(action_name)
1158
+ send(action_name)
1159
+ default_render unless performed?
1160
+ elsif respond_to? :method_missing
1161
+ method_missing action_name
1162
+ default_render unless performed?
1163
+ elsif template_exists? && template_public?
1164
+ default_render
1165
+ else
1166
+ raise UnknownAction, "No action responded to #{action_name}", caller
1167
+ end
1168
+ end
1169
+
1170
+ def performed?
1171
+ @performed_render || @performed_redirect
1172
+ end
1173
+
1174
+ def assign_names
1175
+ @action_name = (params['action'] || 'index')
1176
+ end
1177
+
1178
+ def assign_default_content_type_and_charset
1179
+ response.content_type ||= Mime::HTML
1180
+ response.charset ||= self.class.default_charset unless sending_file?
1181
+ end
1182
+
1183
+ def sending_file?
1184
+ response.headers["Content-Transfer-Encoding"] == "binary"
1185
+ end
1186
+
1187
+ def action_methods
1188
+ self.class.action_methods
1189
+ end
1190
+
1191
+ def self.action_methods
1192
+ @action_methods ||= Set.new(public_instance_methods.map(&:to_s)) - hidden_actions
1193
+ end
1194
+
1195
+ def add_variables_to_assigns
1196
+ unless @variables_added
1197
+ add_instance_variables_to_assigns
1198
+ add_class_variables_to_assigns if view_controller_internals
1199
+ @variables_added = true
1200
+ end
1201
+ end
1202
+
1203
+ def forget_variables_added_to_assigns
1204
+ @variables_added = nil
1205
+ end
1206
+
1207
+ def reset_variables_added_to_assigns
1208
+ @template.instance_variable_set("@assigns_added", nil)
1209
+ end
1210
+
1211
+ def add_instance_variables_to_assigns
1212
+ @@protected_variables_cache ||= Set.new(protected_instance_variables)
1213
+ instance_variables.each do |var|
1214
+ next if @@protected_variables_cache.include?(var)
1215
+ @assigns[var[1..-1]] = instance_variable_get(var)
1216
+ end
1217
+ end
1218
+
1219
+ def add_class_variables_to_assigns
1220
+ %w(view_paths logger template_class ignore_missing_templates).each do |cvar|
1221
+ @assigns[cvar] = self.send(cvar)
1222
+ end
1223
+ end
1224
+
1225
+ def protected_instance_variables
1226
+ if view_controller_internals
1227
+ %w(@assigns @performed_redirect @performed_render)
1228
+ else
1229
+ %w(@assigns @performed_redirect @performed_render
1230
+ @_request @request @_response @response @_params @params
1231
+ @_session @session @_cookies @cookies
1232
+ @template @request_origin @parent_controller)
1233
+ end
1234
+ end
1235
+
1236
+ def request_origin
1237
+ # this *needs* to be cached!
1238
+ # otherwise you'd get different results if calling it more than once
1239
+ @request_origin ||= "#{request.remote_ip} at #{Time.now.to_s(:db)}"
1240
+ end
1241
+
1242
+ def complete_request_uri
1243
+ "#{request.protocol}#{request.host}#{request.request_uri}"
1244
+ end
1245
+
1246
+ def close_session
1247
+ @_session.close if @_session && @_session.respond_to?(:close)
1248
+ end
1249
+
1250
+ def template_exists?(template_name = default_template_name)
1251
+ @template.file_exists?(template_name)
1252
+ end
1253
+
1254
+ def template_public?(template_name = default_template_name)
1255
+ @template.file_public?(template_name)
1256
+ end
1257
+
1258
+ def template_exempt_from_layout?(template_name = default_template_name)
1259
+ extension = @template && @template.pick_template_extension(template_name)
1260
+ name_with_extension = !template_name.include?('.') && extension ? "#{template_name}.#{extension}" : template_name
1261
+ @@exempt_from_layout.any? { |ext| name_with_extension =~ ext }
1262
+ end
1263
+
1264
+ def assert_existence_of_template_file(template_name)
1265
+ unless template_exists?(template_name) || ignore_missing_templates
1266
+ full_template_path = template_name.include?('.') ? template_name : "#{template_name}.#{@template.template_format}.erb"
1267
+ display_paths = view_paths.join(':')
1268
+ template_type = (template_name =~ /layouts/i) ? 'layout' : 'template'
1269
+ raise(MissingTemplate, "Missing #{template_type} #{full_template_path} in view path #{display_paths}")
1270
+ end
1271
+ end
1272
+
1273
+ def default_template_name(action_name = self.action_name)
1274
+ if action_name
1275
+ action_name = action_name.to_s
1276
+ if action_name.include?('/') && template_path_includes_controller?(action_name)
1277
+ action_name = strip_out_controller(action_name)
1278
+ end
1279
+ end
1280
+ "#{self.class.controller_path}/#{action_name}"
1281
+ end
1282
+
1283
+ def strip_out_controller(path)
1284
+ path.split('/', 2).last
1285
+ end
1286
+
1287
+ def template_path_includes_controller?(path)
1288
+ self.class.controller_path.split('/')[-1] == path.split('/')[0]
1289
+ end
1290
+
1291
+ def process_cleanup
1292
+ close_session
1293
+ end
1294
+ end
1295
+ end