spree 0.2.0 → 0.4.0

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 (3348) hide show
  1. data/CHANGELOG +22 -0
  2. data/CONTRIBUTORS +18 -1
  3. data/README.markdown +68 -9
  4. data/app/controllers/account_controller.rb +4 -18
  5. data/app/controllers/addresses_controller.rb +53 -0
  6. data/app/controllers/admin/base_controller.rb +0 -2
  7. data/app/controllers/admin/configurations_controller.rb +10 -0
  8. data/app/controllers/admin/images_controller.rb +10 -9
  9. data/app/controllers/admin/inventory_units_controller.rb +1 -25
  10. data/app/controllers/admin/mail_settings_controller.rb +14 -0
  11. data/app/controllers/admin/option_types_controller.rb +53 -61
  12. data/app/controllers/admin/orders_controller.rb +38 -250
  13. data/app/controllers/admin/product_properties_controller.rb +7 -0
  14. data/app/controllers/admin/products_controller.rb +38 -148
  15. data/app/controllers/admin/properties_controller.rb +25 -0
  16. data/app/controllers/admin/prototypes_controller.rb +49 -0
  17. data/app/controllers/admin/states_controller.rb +26 -0
  18. data/app/controllers/admin/tax_categories_controller.rb +11 -0
  19. data/app/controllers/admin/taxonomies_controller.rb +26 -0
  20. data/app/controllers/admin/taxons_controller.rb +137 -0
  21. data/app/controllers/admin/users_controller.rb +3 -0
  22. data/app/controllers/admin/variants_controller.rb +25 -0
  23. data/app/controllers/admin/zones_controller.rb +49 -0
  24. data/app/controllers/application.rb +9 -6
  25. data/app/controllers/countries_controller.rb +11 -0
  26. data/app/controllers/creditcard_payments_controller.rb +63 -0
  27. data/app/controllers/line_items_controller.rb +6 -0
  28. data/app/controllers/orders_controller.rb +70 -0
  29. data/app/controllers/products_controller.rb +33 -0
  30. data/app/controllers/spree/base_controller.rb +18 -23
  31. data/app/controllers/states_controller.rb +10 -0
  32. data/app/controllers/taxons_controller.rb +19 -0
  33. data/app/controllers/users_controller.rb +16 -7
  34. data/app/helpers/admin/base_helper.rb +7 -10
  35. data/app/helpers/admin/configurations_helper.rb +2 -0
  36. data/app/helpers/admin/mail_settings_helper.rb +2 -0
  37. data/app/helpers/admin/orders_helper.rb +18 -6
  38. data/app/helpers/admin/product_properties_helper.rb +13 -0
  39. data/app/helpers/admin/products_helper.rb +13 -1
  40. data/app/helpers/admin/properties_helper.rb +9 -0
  41. data/app/helpers/admin/prototypes_helper.rb +18 -0
  42. data/app/helpers/admin/taxonomies_helper.rb +62 -0
  43. data/app/helpers/admin/taxons_helper.rb +5 -0
  44. data/app/helpers/admin/variants_helper.rb +2 -0
  45. data/app/helpers/admin/zones_helper.rb +11 -0
  46. data/app/helpers/application_helper.rb +11 -0
  47. data/app/helpers/orders_helper.rb +14 -0
  48. data/app/helpers/payments_helper.rb +2 -0
  49. data/app/helpers/products_helper.rb +34 -0
  50. data/app/helpers/spree/base_helper.rb +10 -12
  51. data/app/helpers/store_helper.rb +0 -19
  52. data/app/helpers/tax_categories_helper.rb +2 -0
  53. data/app/helpers/taxons_helper.rb +31 -0
  54. data/app/models/address.rb +7 -2
  55. data/app/models/app_configuration.rb +27 -0
  56. data/app/models/configuration.rb +3 -0
  57. data/app/models/country.rb +1 -0
  58. data/app/models/creditcard.rb +6 -0
  59. data/app/models/creditcard_payment.rb +40 -0
  60. data/app/models/creditcard_txn.rb +6 -0
  61. data/app/models/image.rb +1 -2
  62. data/app/models/inventory_unit.rb +22 -9
  63. data/app/models/line_item.rb +21 -8
  64. data/app/models/option_type.rb +2 -2
  65. data/app/models/order.rb +105 -62
  66. data/app/models/order_filter.rb +25 -0
  67. data/app/models/order_mailer.rb +9 -4
  68. data/app/models/preference.rb +51 -0
  69. data/app/models/product.rb +63 -10
  70. data/app/models/product_property.rb +15 -0
  71. data/app/models/property.rb +18 -0
  72. data/app/models/prototype.rb +4 -0
  73. data/app/models/state.rb +3 -0
  74. data/app/models/state_event.rb +8 -0
  75. data/app/models/tax_category.rb +3 -0
  76. data/app/models/taxon.rb +5 -0
  77. data/app/models/taxonomy.rb +5 -0
  78. data/app/models/user.rb +10 -15
  79. data/app/models/variant.rb +38 -13
  80. data/app/models/variants.rb +2 -0
  81. data/app/models/zone.rb +37 -0
  82. data/app/models/zone_member.rb +4 -0
  83. data/app/presenters/payment_presenter.rb +4 -0
  84. data/app/views/account/login.html.erb +14 -0
  85. data/app/views/addresses/_form.html.erb +48 -0
  86. data/app/views/addresses/_states.html.erb +8 -0
  87. data/app/views/addresses/edit.html.erb +8 -0
  88. data/app/views/addresses/new.html.erb +8 -0
  89. data/app/views/admin/configurations/index.html.erb +42 -0
  90. data/app/views/admin/configurations/new.html.erb +13 -0
  91. data/app/views/admin/extensions/index.html.erb +22 -22
  92. data/app/views/admin/images/new.html.erb +3 -3
  93. data/app/views/admin/inventory_units/adjust.html.erb +27 -26
  94. data/app/views/admin/mail_settings/edit.html.erb +85 -0
  95. data/app/views/admin/mail_settings/show.html.erb +45 -0
  96. data/app/views/admin/option_types/_form.html.erb +37 -0
  97. data/app/views/admin/option_types/_option_value.html.erb +5 -0
  98. data/app/views/admin/option_types/available.html.erb +32 -0
  99. data/app/views/admin/option_types/edit.html.erb +8 -0
  100. data/app/views/admin/option_types/index.html.erb +38 -0
  101. data/app/views/admin/option_types/new.html.erb +8 -0
  102. data/app/views/admin/option_types/selected.html.erb +38 -0
  103. data/app/views/admin/orders/{_address.rhtml → _address.html.erb} +0 -0
  104. data/app/views/admin/orders/index.html.erb +95 -0
  105. data/app/views/admin/orders/show.html.erb +76 -0
  106. data/app/views/admin/overview/index.html.erb +3 -0
  107. data/app/views/admin/product_properties/_product_property.html.erb +22 -0
  108. data/app/views/admin/product_properties/index.html.erb +39 -0
  109. data/app/views/admin/products/_form.html.erb +58 -0
  110. data/app/views/admin/products/_images.html.erb +45 -0
  111. data/app/views/admin/products/{_option_types.rhtml → _option_types.html.erb} +0 -0
  112. data/app/views/admin/products/edit.html.erb +7 -0
  113. data/app/views/admin/products/index.html.erb +59 -0
  114. data/app/views/admin/products/new.html.erb +7 -0
  115. data/app/views/admin/products/show.html.erb +4 -0
  116. data/app/views/admin/properties/_form.html.erb +14 -0
  117. data/app/views/admin/properties/edit.html.erb +9 -0
  118. data/app/views/admin/properties/filtered.html.erb +1 -0
  119. data/app/views/admin/properties/index.html.erb +36 -0
  120. data/app/views/admin/properties/new.html.erb +9 -0
  121. data/app/views/admin/prototypes/_form.html.erb +21 -0
  122. data/app/views/admin/prototypes/available.html.erb +27 -0
  123. data/app/views/admin/prototypes/edit.html.erb +9 -0
  124. data/app/views/admin/prototypes/index.html.erb +34 -0
  125. data/app/views/admin/prototypes/new.html.erb +9 -0
  126. data/app/views/admin/prototypes/select.rjs +5 -0
  127. data/app/views/admin/reports/index.html.erb +28 -0
  128. data/app/views/admin/reports/sales_total.html.erb +28 -0
  129. data/app/views/admin/states/_form.html.erb +10 -0
  130. data/app/views/admin/states/_state_list.html.erb +25 -0
  131. data/app/views/admin/states/edit.html.erb +10 -0
  132. data/app/views/admin/states/index.html.erb +18 -0
  133. data/app/views/admin/states/new.html.erb +10 -0
  134. data/app/views/admin/tax_categories/_form.html.erb +11 -0
  135. data/app/views/admin/tax_categories/edit.html.erb +10 -0
  136. data/app/views/admin/tax_categories/index.html.erb +27 -0
  137. data/app/views/admin/tax_categories/new.html.erb +10 -0
  138. data/{foozah/README → app/views/admin/tax_categories/show.html.erb} +0 -0
  139. data/app/views/admin/taxonomies/_form.html.erb +9 -0
  140. data/app/views/admin/taxonomies/_list.html.erb +18 -0
  141. data/app/views/admin/taxonomies/_manage_products.rhtml +31 -0
  142. data/app/views/admin/taxonomies/_success.rhtml +1 -0
  143. data/app/views/admin/taxonomies/_yui_head.html.erb +31 -0
  144. data/app/views/admin/taxonomies/edit.html.erb +16 -0
  145. data/app/views/admin/taxonomies/index.html.erb +7 -0
  146. data/app/views/admin/taxonomies/new.html.erb +9 -0
  147. data/app/views/admin/taxons/_taxon_table.html.erb +28 -0
  148. data/app/views/admin/taxons/available.js.erb +36 -0
  149. data/app/views/admin/taxons/remove.html.erb +1 -0
  150. data/app/views/admin/taxons/select.html.erb +1 -0
  151. data/app/views/admin/taxons/selected.html.erb +24 -0
  152. data/app/views/admin/users/_form.html.erb +22 -0
  153. data/app/views/admin/users/edit.html.erb +9 -0
  154. data/app/views/admin/users/index.html.erb +21 -0
  155. data/app/views/admin/users/new.html.erb +11 -0
  156. data/app/views/admin/users/show.html.erb +11 -0
  157. data/app/views/admin/variants/_form.html.erb +32 -0
  158. data/app/views/admin/variants/edit.html.erb +9 -0
  159. data/app/views/admin/variants/index.html.erb +48 -0
  160. data/app/views/admin/variants/new.html.erb +8 -0
  161. data/app/views/admin/zones/_country.html.erb +15 -0
  162. data/app/views/admin/zones/_form.html.erb +68 -0
  163. data/app/views/admin/zones/_function.rjs +11 -0
  164. data/app/views/admin/zones/_state.html.erb +15 -0
  165. data/app/views/admin/zones/_zone.html.erb +15 -0
  166. data/app/views/admin/zones/edit.html.erb +10 -0
  167. data/app/views/admin/zones/index.html.erb +26 -0
  168. data/app/views/admin/zones/index.js.erb +1 -0
  169. data/app/views/admin/zones/new.html.erb +10 -0
  170. data/app/views/admin/zones/show.html.erb +4 -0
  171. data/app/views/countries/index.js.erb +1 -0
  172. data/app/views/creditcard_payments/_form_billing.html.erb +49 -0
  173. data/app/views/creditcard_payments/_form_credit_card.html.erb +30 -0
  174. data/app/views/creditcard_payments/_states.html.erb +8 -0
  175. data/app/views/creditcard_payments/cvv.html.erb +15 -0
  176. data/app/views/creditcard_payments/new.html.erb +17 -0
  177. data/app/views/layouts/admin.html.erb +67 -0
  178. data/app/views/layouts/application.html.erb +79 -0
  179. data/app/views/line_items/index.html.erb +1 -0
  180. data/app/views/order_mailer/cancel.html.erb +15 -0
  181. data/app/views/order_mailer/confirm.html.erb +18 -0
  182. data/app/views/orders/_form.html.erb +15 -0
  183. data/app/views/orders/_line_item.html.erb +20 -0
  184. data/app/views/orders/edit.html.erb +20 -0
  185. data/app/views/orders/new.html.erb +6 -0
  186. data/app/views/orders/show.html.erb +11 -0
  187. data/app/views/{store → products}/_image.html.erb +0 -0
  188. data/app/views/products/_products.html.erb +10 -0
  189. data/app/views/products/_thumbnails.html.erb +8 -0
  190. data/app/views/products/index.html.erb +11 -0
  191. data/app/views/products/show.html.erb +60 -0
  192. data/app/views/shared/_edit_resource_links.html.erb +1 -0
  193. data/app/views/shared/_footer.html.erb +5 -0
  194. data/app/views/shared/_new_resource_links.html.erb +1 -0
  195. data/app/views/shared/_order_details.html.erb +35 -0
  196. data/app/views/shared/_paginate.html.erb +34 -0
  197. data/app/views/shared/_product_sub_menu.html.erb +10 -0
  198. data/app/views/shared/_product_tabs.html.erb +29 -0
  199. data/app/views/shared/_products.html.erb +13 -0
  200. data/app/views/shared/_report_criteria.html.erb +33 -0
  201. data/app/views/shared/_show_resource_links.html.erb +3 -0
  202. data/app/views/shared/_store_menu.html.erb +5 -0
  203. data/app/views/shared/_taxonomies.html.erb +8 -0
  204. data/app/views/states/index.js.erb +1 -0
  205. data/app/views/taxons/_taxon.html.erb +5 -0
  206. data/app/views/taxons/show.html.erb +8 -0
  207. data/app/views/users/_form.html.erb +8 -6
  208. data/app/views/users/edit.html.erb +3 -3
  209. data/app/views/users/index.html.erb +16 -16
  210. data/app/views/users/new.html.erb +3 -5
  211. data/app/views/users/show.html.erb +3 -3
  212. data/bin/spree +9 -3
  213. data/config/boot.rb +62 -53
  214. data/config/database.yml +32 -10
  215. data/config/easy_role_permissions.yml +75 -0
  216. data/config/environment.rb +51 -72
  217. data/config/environments/development.rb +3 -1
  218. data/config/environments/staging.rb +13 -0
  219. data/config/environments/test.rb +4 -1
  220. data/config/initializers/mime_types.rb +8 -0
  221. data/config/initializers/spree.rb +40 -0
  222. data/config/routes.rb +39 -9
  223. data/db/migrate/20080620113300_create_taxonomies.rb +13 -0
  224. data/db/migrate/20080620113400_create_taxons.rb +16 -0
  225. data/db/migrate/20080622173128_drop_extension_meta.rb +13 -0
  226. data/db/migrate/20080622194800_create_prototypes.rb +13 -0
  227. data/db/migrate/20080622194830_create_properties.rb +13 -0
  228. data/db/migrate/20080622195000_create_properties_prototypes.rb +12 -0
  229. data/db/migrate/20080622195100_create_property_values.rb +14 -0
  230. data/db/migrate/20080630003326_create_zones.rb +13 -0
  231. data/db/migrate/20080630150630_create_preferences.rb +19 -0
  232. data/db/migrate/20080630152702_add_iso_country_information.rb +248 -0
  233. data/db/migrate/20080630154400_create_countries_zones.rb +12 -0
  234. data/db/migrate/20080630215310_create_zone_members.rb +13 -0
  235. data/db/migrate/20080703184654_update_country_rename_name.rb +20 -0
  236. data/db/migrate/20080704181428_create_app_configurations.rb +12 -0
  237. data/db/migrate/20080704190355_add_permalink_and_published_to_products.rb +15 -0
  238. data/db/migrate/20080706233224_create_eu_vat_zone.rb +19 -0
  239. data/db/migrate/20080707002329_create_tax_categories.rb +21 -0
  240. data/db/migrate/20080708170103_remove_login.rb +9 -0
  241. data/db/migrate/20080715014028_add_optimistic_locking_to_cart.rb +13 -0
  242. data/db/migrate/20080716155613_products_taxons.rb +12 -0
  243. data/db/migrate/20080720190623_rename_txn_table.rb +9 -0
  244. data/db/migrate/20080729213052_drop_categories.rb +8 -0
  245. data/db/migrate/20080803010846_remove_prototype_presentation.rb +13 -0
  246. data/db/migrate/20080807214829_create_product_property.rb +15 -0
  247. data/db/migrate/20080815173251_remove_cart.rb +10 -0
  248. data/db/migrate/20080830173354_add_checkout_state_to_order.rb +13 -0
  249. data/db/migrate/20080901002711_address_refactor.rb +14 -0
  250. data/db/migrate/20080902001408_create_creditcard_payments.rb +17 -0
  251. data/db/migrate/20080904150723_refactor_order_state.rb +33 -0
  252. data/db/migrate/20080904234457_create_state_events.rb +15 -0
  253. data/db/migrate/20080905012833_add_inventory_state.rb +13 -0
  254. data/db/migrate/20080906174748_change_inventory_state_type.rb +8 -0
  255. data/db/migrate/20080909100504_add_state_name_to_address.rb +9 -0
  256. data/db/migrate/20080915211650_remove_user_address.rb +10 -0
  257. data/db/migrate/20080918083321_remove_presentation_from_taxonomy.rb +11 -0
  258. data/db/migrate/20080918140438_rename_app_configuration.rb +16 -0
  259. data/db/sample/addresses.yml +8 -7
  260. data/db/sample/creditcard_payments.yml +10 -0
  261. data/db/sample/creditcard_txns.yml +7 -0
  262. data/db/sample/images.yml +51 -1
  263. data/db/sample/inventory_units.yml +19 -24
  264. data/db/sample/orders.yml +2 -4
  265. data/db/sample/product_properties.yml +136 -0
  266. data/db/sample/products.yml +26 -7
  267. data/db/sample/properties.yml +39 -0
  268. data/db/sample/prototypes.yml +9 -0
  269. data/db/sample/states.yml +52 -2
  270. data/db/sample/tax_categories.yml +6 -0
  271. data/db/sample/taxonomies.yml +4 -0
  272. data/db/sample/taxons.yml +61 -0
  273. data/db/sample/users.yml +0 -1
  274. data/db/sample/variants.yml +9 -1
  275. data/lang/ui/de-DE.yml +207 -0
  276. data/lang/ui/en-US.yml +225 -0
  277. data/lang/ui/es-ES.yml +202 -0
  278. data/lang/ui/it-IT.yml +194 -0
  279. data/lang/ui/pl-PL.yml +213 -0
  280. data/lang/ui/pt-BR.yml +219 -0
  281. data/lib/authenticated_system.rb +3 -3
  282. data/lib/authenticated_test_helper.rb +1 -1
  283. data/lib/commands/extension.rb +250 -0
  284. data/lib/easy_role_requirement_system.rb +1 -1
  285. data/lib/gateway_error.rb +1 -0
  286. data/lib/generators/extension/extension_generator.rb +11 -10
  287. data/lib/generators/extension/templates/{README → README.markdown} +0 -0
  288. data/lib/generators/extension/templates/Rakefile +0 -0
  289. data/lib/generators/extension/templates/tasks.rake +1 -12
  290. data/lib/generators/extension_controller/extension_controller_generator.rb +19 -19
  291. data/lib/generators/extension_controller/templates/{view.rhtml → view.html.erb} +0 -0
  292. data/lib/generators/instance/instance_generator.rb +24 -8
  293. data/lib/plugins/extension_patches/init.rb +2 -1
  294. data/lib/plugins/extension_patches/lib/asset_copy.rb +63 -0
  295. data/lib/plugins/extension_patches/lib/routing_extension.rb +1 -1
  296. data/lib/preference_access.rb +27 -0
  297. data/lib/profiler/add_to_cart_profiler.rb +2 -0
  298. data/lib/profiler/product_details_profiler.rb +2 -0
  299. data/lib/role_requirement_system.rb +10 -8
  300. data/lib/spree.rb +1 -1
  301. data/lib/spree/config.rb +20 -0
  302. data/lib/spree/gateway_error.rb +3 -0
  303. data/lib/spree/initializer.rb +19 -16
  304. data/lib/spree/preferences/mail_settings.rb +57 -0
  305. data/lib/spree/preferences/model_hooks.rb +290 -0
  306. data/lib/spree/preferences/preference_definition.rb +53 -0
  307. data/lib/spree/setup.rb +9 -29
  308. data/lib/spree/support/core_extensions/array.rb +23 -0
  309. data/lib/spree/support/core_extensions/string.rb +18 -0
  310. data/lib/tasks/database.rake +13 -22
  311. data/lib/tasks/extensions.rake +65 -59
  312. data/lib/tasks/framework.rake +34 -31
  313. data/lib/tasks/release.rake +4 -1
  314. data/lib/tasks/sample/products/0000/1004/apache_baseball.png +0 -0
  315. data/lib/tasks/sample/products/0000/1004/apache_baseball_mini.png +0 -0
  316. data/lib/tasks/sample/products/0000/1004/apache_baseball_product.png +0 -0
  317. data/lib/tasks/sample/products/0000/1004/apache_baseball_small.png +0 -0
  318. data/lib/tasks/sample/products/0000/1008/ruby_baseball.png +0 -0
  319. data/lib/tasks/sample/products/0000/1008/ruby_baseball_mini.png +0 -0
  320. data/lib/tasks/sample/products/0000/1008/ruby_baseball_product.png +0 -0
  321. data/lib/tasks/sample/products/0000/1008/ruby_baseball_small.png +0 -0
  322. data/public/{.htaccess → .htaccess.example} +0 -0
  323. data/public/images/breadcrumb.gif +0 -0
  324. data/public/images/flags/ad.png +0 -0
  325. data/public/images/flags/ae.png +0 -0
  326. data/public/images/flags/af.png +0 -0
  327. data/public/images/flags/ag.png +0 -0
  328. data/public/images/flags/ai.png +0 -0
  329. data/public/images/flags/al.png +0 -0
  330. data/public/images/flags/am.png +0 -0
  331. data/public/images/flags/an.png +0 -0
  332. data/public/images/flags/ao.png +0 -0
  333. data/public/images/flags/ar.png +0 -0
  334. data/public/images/flags/as.png +0 -0
  335. data/public/images/flags/at.png +0 -0
  336. data/public/images/flags/au.png +0 -0
  337. data/public/images/flags/aw.png +0 -0
  338. data/public/images/flags/ax.png +0 -0
  339. data/public/images/flags/az.png +0 -0
  340. data/public/images/flags/ba.png +0 -0
  341. data/public/images/flags/bb.png +0 -0
  342. data/public/images/flags/bd.png +0 -0
  343. data/public/images/flags/be.png +0 -0
  344. data/public/images/flags/bf.png +0 -0
  345. data/public/images/flags/bg.png +0 -0
  346. data/public/images/flags/bh.png +0 -0
  347. data/public/images/flags/bi.png +0 -0
  348. data/public/images/flags/bj.png +0 -0
  349. data/public/images/flags/bm.png +0 -0
  350. data/public/images/flags/bn.png +0 -0
  351. data/public/images/flags/bo.png +0 -0
  352. data/public/images/flags/br.png +0 -0
  353. data/public/images/flags/bs.png +0 -0
  354. data/public/images/flags/bt.png +0 -0
  355. data/public/images/flags/bv.png +0 -0
  356. data/public/images/flags/bw.png +0 -0
  357. data/public/images/flags/by.png +0 -0
  358. data/public/images/flags/bz.png +0 -0
  359. data/public/images/flags/ca.png +0 -0
  360. data/public/images/flags/catalonia.png +0 -0
  361. data/public/images/flags/cc.png +0 -0
  362. data/public/images/flags/cd.png +0 -0
  363. data/public/images/flags/cf.png +0 -0
  364. data/public/images/flags/cg.png +0 -0
  365. data/public/images/flags/ch.png +0 -0
  366. data/public/images/flags/ci.png +0 -0
  367. data/public/images/flags/ck.png +0 -0
  368. data/public/images/flags/cl.png +0 -0
  369. data/public/images/flags/cm.png +0 -0
  370. data/public/images/flags/cn.png +0 -0
  371. data/public/images/flags/co.png +0 -0
  372. data/public/images/flags/cr.png +0 -0
  373. data/public/images/flags/cs.png +0 -0
  374. data/public/images/flags/cu.png +0 -0
  375. data/public/images/flags/cv.png +0 -0
  376. data/public/images/flags/cx.png +0 -0
  377. data/public/images/flags/cy.png +0 -0
  378. data/public/images/flags/cz.png +0 -0
  379. data/public/images/flags/de.png +0 -0
  380. data/public/images/flags/dj.png +0 -0
  381. data/public/images/flags/dk.png +0 -0
  382. data/public/images/flags/dm.png +0 -0
  383. data/public/images/flags/do.png +0 -0
  384. data/public/images/flags/dz.png +0 -0
  385. data/public/images/flags/ec.png +0 -0
  386. data/public/images/flags/ee.png +0 -0
  387. data/public/images/flags/eg.png +0 -0
  388. data/public/images/flags/eh.png +0 -0
  389. data/public/images/flags/england.png +0 -0
  390. data/public/images/flags/er.png +0 -0
  391. data/public/images/flags/es.png +0 -0
  392. data/public/images/flags/et.png +0 -0
  393. data/public/images/flags/europeanunion.png +0 -0
  394. data/public/images/flags/fam.png +0 -0
  395. data/public/images/flags/fi.png +0 -0
  396. data/public/images/flags/fj.png +0 -0
  397. data/public/images/flags/fk.png +0 -0
  398. data/public/images/flags/fm.png +0 -0
  399. data/public/images/flags/fo.png +0 -0
  400. data/public/images/flags/fr.png +0 -0
  401. data/public/images/flags/ga.png +0 -0
  402. data/public/images/flags/gb.png +0 -0
  403. data/public/images/flags/gd.png +0 -0
  404. data/public/images/flags/ge.png +0 -0
  405. data/public/images/flags/gf.png +0 -0
  406. data/public/images/flags/gh.png +0 -0
  407. data/public/images/flags/gi.png +0 -0
  408. data/public/images/flags/gl.png +0 -0
  409. data/public/images/flags/gm.png +0 -0
  410. data/public/images/flags/gn.png +0 -0
  411. data/public/images/flags/gp.png +0 -0
  412. data/public/images/flags/gq.png +0 -0
  413. data/public/images/flags/gr.png +0 -0
  414. data/public/images/flags/gs.png +0 -0
  415. data/public/images/flags/gt.png +0 -0
  416. data/public/images/flags/gu.png +0 -0
  417. data/public/images/flags/gw.png +0 -0
  418. data/public/images/flags/gy.png +0 -0
  419. data/public/images/flags/hk.png +0 -0
  420. data/public/images/flags/hm.png +0 -0
  421. data/public/images/flags/hn.png +0 -0
  422. data/public/images/flags/hr.png +0 -0
  423. data/public/images/flags/ht.png +0 -0
  424. data/public/images/flags/hu.png +0 -0
  425. data/public/images/flags/id.png +0 -0
  426. data/public/images/flags/ie.png +0 -0
  427. data/public/images/flags/il.png +0 -0
  428. data/public/images/flags/in.png +0 -0
  429. data/public/images/flags/io.png +0 -0
  430. data/public/images/flags/iq.png +0 -0
  431. data/public/images/flags/ir.png +0 -0
  432. data/public/images/flags/is.png +0 -0
  433. data/public/images/flags/it.png +0 -0
  434. data/public/images/flags/jm.png +0 -0
  435. data/public/images/flags/jo.png +0 -0
  436. data/public/images/flags/jp.png +0 -0
  437. data/public/images/flags/ke.png +0 -0
  438. data/public/images/flags/kg.png +0 -0
  439. data/public/images/flags/kh.png +0 -0
  440. data/public/images/flags/ki.png +0 -0
  441. data/public/images/flags/km.png +0 -0
  442. data/public/images/flags/kn.png +0 -0
  443. data/public/images/flags/kp.png +0 -0
  444. data/public/images/flags/kr.png +0 -0
  445. data/public/images/flags/kw.png +0 -0
  446. data/public/images/flags/ky.png +0 -0
  447. data/public/images/flags/kz.png +0 -0
  448. data/public/images/flags/la.png +0 -0
  449. data/public/images/flags/lb.png +0 -0
  450. data/public/images/flags/lc.png +0 -0
  451. data/public/images/flags/li.png +0 -0
  452. data/public/images/flags/lk.png +0 -0
  453. data/public/images/flags/lr.png +0 -0
  454. data/public/images/flags/ls.png +0 -0
  455. data/public/images/flags/lt.png +0 -0
  456. data/public/images/flags/lu.png +0 -0
  457. data/public/images/flags/lv.png +0 -0
  458. data/public/images/flags/ly.png +0 -0
  459. data/public/images/flags/ma.png +0 -0
  460. data/public/images/flags/mc.png +0 -0
  461. data/public/images/flags/md.png +0 -0
  462. data/public/images/flags/me.png +0 -0
  463. data/public/images/flags/mg.png +0 -0
  464. data/public/images/flags/mh.png +0 -0
  465. data/public/images/flags/mk.png +0 -0
  466. data/public/images/flags/ml.png +0 -0
  467. data/public/images/flags/mm.png +0 -0
  468. data/public/images/flags/mn.png +0 -0
  469. data/public/images/flags/mo.png +0 -0
  470. data/public/images/flags/mp.png +0 -0
  471. data/public/images/flags/mq.png +0 -0
  472. data/public/images/flags/mr.png +0 -0
  473. data/public/images/flags/ms.png +0 -0
  474. data/public/images/flags/mt.png +0 -0
  475. data/public/images/flags/mu.png +0 -0
  476. data/public/images/flags/mv.png +0 -0
  477. data/public/images/flags/mw.png +0 -0
  478. data/public/images/flags/mx.png +0 -0
  479. data/public/images/flags/my.png +0 -0
  480. data/public/images/flags/mz.png +0 -0
  481. data/public/images/flags/na.png +0 -0
  482. data/public/images/flags/nc.png +0 -0
  483. data/public/images/flags/ne.png +0 -0
  484. data/public/images/flags/nf.png +0 -0
  485. data/public/images/flags/ng.png +0 -0
  486. data/public/images/flags/ni.png +0 -0
  487. data/public/images/flags/nl.png +0 -0
  488. data/public/images/flags/no.png +0 -0
  489. data/public/images/flags/np.png +0 -0
  490. data/public/images/flags/nr.png +0 -0
  491. data/public/images/flags/nu.png +0 -0
  492. data/public/images/flags/nz.png +0 -0
  493. data/public/images/flags/om.png +0 -0
  494. data/public/images/flags/pa.png +0 -0
  495. data/public/images/flags/pe.png +0 -0
  496. data/public/images/flags/pf.png +0 -0
  497. data/public/images/flags/pg.png +0 -0
  498. data/public/images/flags/ph.png +0 -0
  499. data/public/images/flags/pk.png +0 -0
  500. data/public/images/flags/pl.png +0 -0
  501. data/public/images/flags/pm.png +0 -0
  502. data/public/images/flags/pn.png +0 -0
  503. data/public/images/flags/pr.png +0 -0
  504. data/public/images/flags/ps.png +0 -0
  505. data/public/images/flags/pt.png +0 -0
  506. data/public/images/flags/pw.png +0 -0
  507. data/public/images/flags/py.png +0 -0
  508. data/public/images/flags/qa.png +0 -0
  509. data/public/images/flags/re.png +0 -0
  510. data/public/images/flags/ro.png +0 -0
  511. data/public/images/flags/rs.png +0 -0
  512. data/public/images/flags/ru.png +0 -0
  513. data/public/images/flags/rw.png +0 -0
  514. data/public/images/flags/sa.png +0 -0
  515. data/public/images/flags/sb.png +0 -0
  516. data/public/images/flags/sc.png +0 -0
  517. data/public/images/flags/scotland.png +0 -0
  518. data/public/images/flags/sd.png +0 -0
  519. data/public/images/flags/se.png +0 -0
  520. data/public/images/flags/sg.png +0 -0
  521. data/public/images/flags/sh.png +0 -0
  522. data/public/images/flags/si.png +0 -0
  523. data/public/images/flags/sj.png +0 -0
  524. data/public/images/flags/sk.png +0 -0
  525. data/public/images/flags/sl.png +0 -0
  526. data/public/images/flags/sm.png +0 -0
  527. data/public/images/flags/sn.png +0 -0
  528. data/public/images/flags/so.png +0 -0
  529. data/public/images/flags/sr.png +0 -0
  530. data/public/images/flags/st.png +0 -0
  531. data/public/images/flags/sv.png +0 -0
  532. data/public/images/flags/sy.png +0 -0
  533. data/public/images/flags/sz.png +0 -0
  534. data/public/images/flags/tc.png +0 -0
  535. data/public/images/flags/td.png +0 -0
  536. data/public/images/flags/tf.png +0 -0
  537. data/public/images/flags/tg.png +0 -0
  538. data/public/images/flags/th.png +0 -0
  539. data/public/images/flags/tj.png +0 -0
  540. data/public/images/flags/tk.png +0 -0
  541. data/public/images/flags/tl.png +0 -0
  542. data/public/images/flags/tm.png +0 -0
  543. data/public/images/flags/tn.png +0 -0
  544. data/public/images/flags/to.png +0 -0
  545. data/public/images/flags/tr.png +0 -0
  546. data/public/images/flags/tt.png +0 -0
  547. data/public/images/flags/tv.png +0 -0
  548. data/public/images/flags/tw.png +0 -0
  549. data/public/images/flags/tz.png +0 -0
  550. data/public/images/flags/ua.png +0 -0
  551. data/public/images/flags/ug.png +0 -0
  552. data/public/images/flags/um.png +0 -0
  553. data/public/images/flags/us.png +0 -0
  554. data/public/images/flags/uy.png +0 -0
  555. data/public/images/flags/uz.png +0 -0
  556. data/public/images/flags/va.png +0 -0
  557. data/public/images/flags/vc.png +0 -0
  558. data/public/images/flags/ve.png +0 -0
  559. data/public/images/flags/vg.png +0 -0
  560. data/public/images/flags/vi.png +0 -0
  561. data/public/images/flags/vn.png +0 -0
  562. data/public/images/flags/vu.png +0 -0
  563. data/public/images/flags/wales.png +0 -0
  564. data/public/images/flags/wf.png +0 -0
  565. data/public/images/flags/ws.png +0 -0
  566. data/public/images/flags/ye.png +0 -0
  567. data/public/images/flags/yt.png +0 -0
  568. data/public/images/flags/za.png +0 -0
  569. data/public/images/flags/zm.png +0 -0
  570. data/public/images/flags/zw.png +0 -0
  571. data/public/images/pp_checkout.gif +0 -0
  572. data/public/images/tab_bottom.gif +0 -0
  573. data/public/images/tree-nav-icons/bullet.gif +0 -0
  574. data/public/images/tree-nav-icons/minus.gif +0 -0
  575. data/public/images/tree-nav-icons/plus.gif +0 -0
  576. data/public/javascripts/controls.js +484 -354
  577. data/public/javascripts/dragdrop.js +88 -58
  578. data/public/javascripts/effects.js +396 -364
  579. data/public/javascripts/prototype.js +132 -91
  580. data/public/javascripts/spree-yui.js +693 -0
  581. data/public/javascripts/spree.js +9 -0
  582. data/public/stylesheets/application.css +4 -1
  583. data/public/stylesheets/orders/_controller.css +105 -1
  584. data/public/stylesheets/prototypes/_controller.css +9 -0
  585. data/public/stylesheets/spree-admin.css +174 -4
  586. data/public/stylesheets/spree.css +142 -42
  587. data/script/about +0 -0
  588. data/script/breakpointer +0 -0
  589. data/script/console +0 -0
  590. data/script/dbconsole +3 -0
  591. data/script/destroy +0 -0
  592. data/script/extension +3 -0
  593. data/script/generate +0 -0
  594. data/{vendor/rails/railties/bin → script}/performance/request +0 -0
  595. data/script/plugin +0 -0
  596. data/script/runner +0 -0
  597. data/script/server +0 -0
  598. data/script/spec +0 -0
  599. data/script/spec_server +0 -0
  600. data/spec/controllers/admin/configurations_controller_spec.rb +9 -0
  601. data/spec/controllers/admin/mail_settings_controller_spec.rb +24 -0
  602. data/spec/controllers/orders_controller_spec.rb +30 -0
  603. data/spec/controllers/tax_categories_routing_spec.rb +61 -0
  604. data/spec/controllers/zones_routing_spec.rb +61 -0
  605. data/spec/fixtures/app_configurations.yml +7 -0
  606. data/spec/fixtures/preferences.yml +7 -0
  607. data/spec/fixtures/tax_categories.yml +4 -0
  608. data/spec/fixtures/users.yml +1 -2
  609. data/spec/fixtures/zone_members.yml +7 -0
  610. data/spec/fixtures/zones.yml +4 -0
  611. data/spec/helpers/admin/configurations_helper_spec.rb +11 -0
  612. data/spec/helpers/admin/mail_settings_helper_spec.rb +11 -0
  613. data/spec/helpers/products_helper_spec.rb +12 -0
  614. data/spec/helpers/spree/base_helper_spec.rb +25 -1
  615. data/spec/helpers/tax_categories_helper_spec.rb +11 -0
  616. data/spec/models/app_configuration_spec.rb +13 -0
  617. data/spec/models/creditcard_payment_spec.rb +12 -0
  618. data/spec/models/line_item_spec.rb +66 -21
  619. data/spec/models/order_spec.rb +80 -25
  620. data/spec/models/preference_definition_spec.rb +185 -0
  621. data/spec/models/preference_spec.rb +185 -0
  622. data/spec/models/product_spec.rb +74 -2
  623. data/spec/models/state_event_spec.rb +12 -0
  624. data/spec/models/tax_category_spec.rb +11 -0
  625. data/spec/models/zone_member_spec.rb +5 -0
  626. data/spec/models/zone_spec.rb +113 -0
  627. data/spec/preference_factory.rb +58 -0
  628. data/spec/spec_helper.rb +1 -0
  629. data/spec/views/admin/configurations/index.html.erb_spec.rb +8 -0
  630. data/spec/views/admin/mail_settings/edit.html.erb_spec.rb +14 -0
  631. data/spec/views/admin/mail_settings/show.html.erb_spec.rb +12 -0
  632. data/{vendor/rails/railties/helpers → test}/test_helper.rb +0 -0
  633. data/vendor/extensions/localization/README.rdoc +5 -0
  634. data/vendor/extensions/localization/Rakefile +120 -0
  635. data/vendor/extensions/localization/app/controllers/admin/localization_controller.rb +6 -0
  636. data/vendor/extensions/localization/app/controllers/locale_controller.rb +12 -0
  637. data/vendor/extensions/localization/app/helpers/locale_helper.rb +2 -0
  638. data/vendor/extensions/localization/app/helpers/localization_helper.rb +2 -0
  639. data/vendor/extensions/localization/app/views/shared/_language_bar.html.erb +10 -0
  640. data/vendor/extensions/localization/lang/ui/de-DE.yml +2 -0
  641. data/vendor/extensions/localization/lang/ui/en-US.yml +2 -0
  642. data/vendor/extensions/localization/lang/ui/es-ES.yml +2 -0
  643. data/vendor/extensions/localization/lang/ui/it-IT.yml +2 -0
  644. data/vendor/extensions/localization/lib/localization.rb +93 -0
  645. data/vendor/extensions/localization/lib/localization/user_preferences.rb +9 -0
  646. data/vendor/extensions/localization/lib/tasks/localization_extension_tasks.rake +17 -0
  647. data/vendor/extensions/localization/localization_extension.rb +37 -0
  648. data/vendor/extensions/localization/public/images/flags/ad.png +0 -0
  649. data/vendor/extensions/localization/public/images/flags/ae.png +0 -0
  650. data/vendor/extensions/localization/public/images/flags/af.png +0 -0
  651. data/vendor/extensions/localization/public/images/flags/ag.png +0 -0
  652. data/vendor/extensions/localization/public/images/flags/ai.png +0 -0
  653. data/vendor/extensions/localization/public/images/flags/al.png +0 -0
  654. data/vendor/extensions/localization/public/images/flags/am.png +0 -0
  655. data/vendor/extensions/localization/public/images/flags/an.png +0 -0
  656. data/vendor/extensions/localization/public/images/flags/ao.png +0 -0
  657. data/vendor/extensions/localization/public/images/flags/ar.png +0 -0
  658. data/vendor/extensions/localization/public/images/flags/as.png +0 -0
  659. data/vendor/extensions/localization/public/images/flags/at.png +0 -0
  660. data/vendor/extensions/localization/public/images/flags/au.png +0 -0
  661. data/vendor/extensions/localization/public/images/flags/aw.png +0 -0
  662. data/vendor/extensions/localization/public/images/flags/ax.png +0 -0
  663. data/vendor/extensions/localization/public/images/flags/az.png +0 -0
  664. data/vendor/extensions/localization/public/images/flags/ba.png +0 -0
  665. data/vendor/extensions/localization/public/images/flags/bb.png +0 -0
  666. data/vendor/extensions/localization/public/images/flags/bd.png +0 -0
  667. data/vendor/extensions/localization/public/images/flags/be.png +0 -0
  668. data/vendor/extensions/localization/public/images/flags/bf.png +0 -0
  669. data/vendor/extensions/localization/public/images/flags/bg.png +0 -0
  670. data/vendor/extensions/localization/public/images/flags/bh.png +0 -0
  671. data/vendor/extensions/localization/public/images/flags/bi.png +0 -0
  672. data/vendor/extensions/localization/public/images/flags/bj.png +0 -0
  673. data/vendor/extensions/localization/public/images/flags/bm.png +0 -0
  674. data/vendor/extensions/localization/public/images/flags/bn.png +0 -0
  675. data/vendor/extensions/localization/public/images/flags/bo.png +0 -0
  676. data/vendor/extensions/localization/public/images/flags/br.png +0 -0
  677. data/vendor/extensions/localization/public/images/flags/bs.png +0 -0
  678. data/vendor/extensions/localization/public/images/flags/bt.png +0 -0
  679. data/vendor/extensions/localization/public/images/flags/bv.png +0 -0
  680. data/vendor/extensions/localization/public/images/flags/bw.png +0 -0
  681. data/vendor/extensions/localization/public/images/flags/by.png +0 -0
  682. data/vendor/extensions/localization/public/images/flags/bz.png +0 -0
  683. data/vendor/extensions/localization/public/images/flags/ca.png +0 -0
  684. data/vendor/extensions/localization/public/images/flags/catalonia.png +0 -0
  685. data/vendor/extensions/localization/public/images/flags/cc.png +0 -0
  686. data/vendor/extensions/localization/public/images/flags/cd.png +0 -0
  687. data/vendor/extensions/localization/public/images/flags/cf.png +0 -0
  688. data/vendor/extensions/localization/public/images/flags/cg.png +0 -0
  689. data/vendor/extensions/localization/public/images/flags/ch.png +0 -0
  690. data/vendor/extensions/localization/public/images/flags/ci.png +0 -0
  691. data/vendor/extensions/localization/public/images/flags/ck.png +0 -0
  692. data/vendor/extensions/localization/public/images/flags/cl.png +0 -0
  693. data/vendor/extensions/localization/public/images/flags/cm.png +0 -0
  694. data/vendor/extensions/localization/public/images/flags/cn.png +0 -0
  695. data/vendor/extensions/localization/public/images/flags/co.png +0 -0
  696. data/vendor/extensions/localization/public/images/flags/cr.png +0 -0
  697. data/vendor/extensions/localization/public/images/flags/cs.png +0 -0
  698. data/vendor/extensions/localization/public/images/flags/cu.png +0 -0
  699. data/vendor/extensions/localization/public/images/flags/cv.png +0 -0
  700. data/vendor/extensions/localization/public/images/flags/cx.png +0 -0
  701. data/vendor/extensions/localization/public/images/flags/cy.png +0 -0
  702. data/vendor/extensions/localization/public/images/flags/cz.png +0 -0
  703. data/vendor/extensions/localization/public/images/flags/de.png +0 -0
  704. data/vendor/extensions/localization/public/images/flags/dj.png +0 -0
  705. data/vendor/extensions/localization/public/images/flags/dk.png +0 -0
  706. data/vendor/extensions/localization/public/images/flags/dm.png +0 -0
  707. data/vendor/extensions/localization/public/images/flags/do.png +0 -0
  708. data/vendor/extensions/localization/public/images/flags/dz.png +0 -0
  709. data/vendor/extensions/localization/public/images/flags/ec.png +0 -0
  710. data/vendor/extensions/localization/public/images/flags/ee.png +0 -0
  711. data/vendor/extensions/localization/public/images/flags/eg.png +0 -0
  712. data/vendor/extensions/localization/public/images/flags/eh.png +0 -0
  713. data/vendor/extensions/localization/public/images/flags/england.png +0 -0
  714. data/vendor/extensions/localization/public/images/flags/er.png +0 -0
  715. data/vendor/extensions/localization/public/images/flags/es.png +0 -0
  716. data/vendor/extensions/localization/public/images/flags/et.png +0 -0
  717. data/vendor/extensions/localization/public/images/flags/europeanunion.png +0 -0
  718. data/vendor/extensions/localization/public/images/flags/fam.png +0 -0
  719. data/vendor/extensions/localization/public/images/flags/fi.png +0 -0
  720. data/vendor/extensions/localization/public/images/flags/fj.png +0 -0
  721. data/vendor/extensions/localization/public/images/flags/fk.png +0 -0
  722. data/vendor/extensions/localization/public/images/flags/fm.png +0 -0
  723. data/vendor/extensions/localization/public/images/flags/fo.png +0 -0
  724. data/vendor/extensions/localization/public/images/flags/fr.png +0 -0
  725. data/vendor/extensions/localization/public/images/flags/ga.png +0 -0
  726. data/vendor/extensions/localization/public/images/flags/gb.png +0 -0
  727. data/vendor/extensions/localization/public/images/flags/gd.png +0 -0
  728. data/vendor/extensions/localization/public/images/flags/ge.png +0 -0
  729. data/vendor/extensions/localization/public/images/flags/gf.png +0 -0
  730. data/vendor/extensions/localization/public/images/flags/gh.png +0 -0
  731. data/vendor/extensions/localization/public/images/flags/gi.png +0 -0
  732. data/vendor/extensions/localization/public/images/flags/gl.png +0 -0
  733. data/vendor/extensions/localization/public/images/flags/gm.png +0 -0
  734. data/vendor/extensions/localization/public/images/flags/gn.png +0 -0
  735. data/vendor/extensions/localization/public/images/flags/gp.png +0 -0
  736. data/vendor/extensions/localization/public/images/flags/gq.png +0 -0
  737. data/vendor/extensions/localization/public/images/flags/gr.png +0 -0
  738. data/vendor/extensions/localization/public/images/flags/gs.png +0 -0
  739. data/vendor/extensions/localization/public/images/flags/gt.png +0 -0
  740. data/vendor/extensions/localization/public/images/flags/gu.png +0 -0
  741. data/vendor/extensions/localization/public/images/flags/gw.png +0 -0
  742. data/vendor/extensions/localization/public/images/flags/gy.png +0 -0
  743. data/vendor/extensions/localization/public/images/flags/hk.png +0 -0
  744. data/vendor/extensions/localization/public/images/flags/hm.png +0 -0
  745. data/vendor/extensions/localization/public/images/flags/hn.png +0 -0
  746. data/vendor/extensions/localization/public/images/flags/hr.png +0 -0
  747. data/vendor/extensions/localization/public/images/flags/ht.png +0 -0
  748. data/vendor/extensions/localization/public/images/flags/hu.png +0 -0
  749. data/vendor/extensions/localization/public/images/flags/id.png +0 -0
  750. data/vendor/extensions/localization/public/images/flags/ie.png +0 -0
  751. data/vendor/extensions/localization/public/images/flags/il.png +0 -0
  752. data/vendor/extensions/localization/public/images/flags/in.png +0 -0
  753. data/vendor/extensions/localization/public/images/flags/io.png +0 -0
  754. data/vendor/extensions/localization/public/images/flags/iq.png +0 -0
  755. data/vendor/extensions/localization/public/images/flags/ir.png +0 -0
  756. data/vendor/extensions/localization/public/images/flags/is.png +0 -0
  757. data/vendor/extensions/localization/public/images/flags/it.png +0 -0
  758. data/vendor/extensions/localization/public/images/flags/jm.png +0 -0
  759. data/vendor/extensions/localization/public/images/flags/jo.png +0 -0
  760. data/vendor/extensions/localization/public/images/flags/jp.png +0 -0
  761. data/vendor/extensions/localization/public/images/flags/ke.png +0 -0
  762. data/vendor/extensions/localization/public/images/flags/kg.png +0 -0
  763. data/vendor/extensions/localization/public/images/flags/kh.png +0 -0
  764. data/vendor/extensions/localization/public/images/flags/ki.png +0 -0
  765. data/vendor/extensions/localization/public/images/flags/km.png +0 -0
  766. data/vendor/extensions/localization/public/images/flags/kn.png +0 -0
  767. data/vendor/extensions/localization/public/images/flags/kp.png +0 -0
  768. data/vendor/extensions/localization/public/images/flags/kr.png +0 -0
  769. data/vendor/extensions/localization/public/images/flags/kw.png +0 -0
  770. data/vendor/extensions/localization/public/images/flags/ky.png +0 -0
  771. data/vendor/extensions/localization/public/images/flags/kz.png +0 -0
  772. data/vendor/extensions/localization/public/images/flags/la.png +0 -0
  773. data/vendor/extensions/localization/public/images/flags/lb.png +0 -0
  774. data/vendor/extensions/localization/public/images/flags/lc.png +0 -0
  775. data/vendor/extensions/localization/public/images/flags/li.png +0 -0
  776. data/vendor/extensions/localization/public/images/flags/lk.png +0 -0
  777. data/vendor/extensions/localization/public/images/flags/lr.png +0 -0
  778. data/vendor/extensions/localization/public/images/flags/ls.png +0 -0
  779. data/vendor/extensions/localization/public/images/flags/lt.png +0 -0
  780. data/vendor/extensions/localization/public/images/flags/lu.png +0 -0
  781. data/vendor/extensions/localization/public/images/flags/lv.png +0 -0
  782. data/vendor/extensions/localization/public/images/flags/ly.png +0 -0
  783. data/vendor/extensions/localization/public/images/flags/ma.png +0 -0
  784. data/vendor/extensions/localization/public/images/flags/mc.png +0 -0
  785. data/vendor/extensions/localization/public/images/flags/md.png +0 -0
  786. data/vendor/extensions/localization/public/images/flags/me.png +0 -0
  787. data/vendor/extensions/localization/public/images/flags/mg.png +0 -0
  788. data/vendor/extensions/localization/public/images/flags/mh.png +0 -0
  789. data/vendor/extensions/localization/public/images/flags/mk.png +0 -0
  790. data/vendor/extensions/localization/public/images/flags/ml.png +0 -0
  791. data/vendor/extensions/localization/public/images/flags/mm.png +0 -0
  792. data/vendor/extensions/localization/public/images/flags/mn.png +0 -0
  793. data/vendor/extensions/localization/public/images/flags/mo.png +0 -0
  794. data/vendor/extensions/localization/public/images/flags/mp.png +0 -0
  795. data/vendor/extensions/localization/public/images/flags/mq.png +0 -0
  796. data/vendor/extensions/localization/public/images/flags/mr.png +0 -0
  797. data/vendor/extensions/localization/public/images/flags/ms.png +0 -0
  798. data/vendor/extensions/localization/public/images/flags/mt.png +0 -0
  799. data/vendor/extensions/localization/public/images/flags/mu.png +0 -0
  800. data/vendor/extensions/localization/public/images/flags/mv.png +0 -0
  801. data/vendor/extensions/localization/public/images/flags/mw.png +0 -0
  802. data/vendor/extensions/localization/public/images/flags/mx.png +0 -0
  803. data/vendor/extensions/localization/public/images/flags/my.png +0 -0
  804. data/vendor/extensions/localization/public/images/flags/mz.png +0 -0
  805. data/vendor/extensions/localization/public/images/flags/na.png +0 -0
  806. data/vendor/extensions/localization/public/images/flags/nc.png +0 -0
  807. data/vendor/extensions/localization/public/images/flags/ne.png +0 -0
  808. data/vendor/extensions/localization/public/images/flags/nf.png +0 -0
  809. data/vendor/extensions/localization/public/images/flags/ng.png +0 -0
  810. data/vendor/extensions/localization/public/images/flags/ni.png +0 -0
  811. data/vendor/extensions/localization/public/images/flags/nl.png +0 -0
  812. data/vendor/extensions/localization/public/images/flags/no.png +0 -0
  813. data/vendor/extensions/localization/public/images/flags/np.png +0 -0
  814. data/vendor/extensions/localization/public/images/flags/nr.png +0 -0
  815. data/vendor/extensions/localization/public/images/flags/nu.png +0 -0
  816. data/vendor/extensions/localization/public/images/flags/nz.png +0 -0
  817. data/vendor/extensions/localization/public/images/flags/om.png +0 -0
  818. data/vendor/extensions/localization/public/images/flags/pa.png +0 -0
  819. data/vendor/extensions/localization/public/images/flags/pe.png +0 -0
  820. data/vendor/extensions/localization/public/images/flags/pf.png +0 -0
  821. data/vendor/extensions/localization/public/images/flags/pg.png +0 -0
  822. data/vendor/extensions/localization/public/images/flags/ph.png +0 -0
  823. data/vendor/extensions/localization/public/images/flags/pk.png +0 -0
  824. data/vendor/extensions/localization/public/images/flags/pl.png +0 -0
  825. data/vendor/extensions/localization/public/images/flags/pm.png +0 -0
  826. data/vendor/extensions/localization/public/images/flags/pn.png +0 -0
  827. data/vendor/extensions/localization/public/images/flags/pr.png +0 -0
  828. data/vendor/extensions/localization/public/images/flags/ps.png +0 -0
  829. data/vendor/extensions/localization/public/images/flags/pt.png +0 -0
  830. data/vendor/extensions/localization/public/images/flags/pw.png +0 -0
  831. data/vendor/extensions/localization/public/images/flags/py.png +0 -0
  832. data/vendor/extensions/localization/public/images/flags/qa.png +0 -0
  833. data/vendor/extensions/localization/public/images/flags/re.png +0 -0
  834. data/vendor/extensions/localization/public/images/flags/ro.png +0 -0
  835. data/vendor/extensions/localization/public/images/flags/rs.png +0 -0
  836. data/vendor/extensions/localization/public/images/flags/ru.png +0 -0
  837. data/vendor/extensions/localization/public/images/flags/rw.png +0 -0
  838. data/vendor/extensions/localization/public/images/flags/sa.png +0 -0
  839. data/vendor/extensions/localization/public/images/flags/sb.png +0 -0
  840. data/vendor/extensions/localization/public/images/flags/sc.png +0 -0
  841. data/vendor/extensions/localization/public/images/flags/scotland.png +0 -0
  842. data/vendor/extensions/localization/public/images/flags/sd.png +0 -0
  843. data/vendor/extensions/localization/public/images/flags/se.png +0 -0
  844. data/vendor/extensions/localization/public/images/flags/sg.png +0 -0
  845. data/vendor/extensions/localization/public/images/flags/sh.png +0 -0
  846. data/vendor/extensions/localization/public/images/flags/si.png +0 -0
  847. data/vendor/extensions/localization/public/images/flags/sj.png +0 -0
  848. data/vendor/extensions/localization/public/images/flags/sk.png +0 -0
  849. data/vendor/extensions/localization/public/images/flags/sl.png +0 -0
  850. data/vendor/extensions/localization/public/images/flags/sm.png +0 -0
  851. data/vendor/extensions/localization/public/images/flags/sn.png +0 -0
  852. data/vendor/extensions/localization/public/images/flags/so.png +0 -0
  853. data/vendor/extensions/localization/public/images/flags/sr.png +0 -0
  854. data/vendor/extensions/localization/public/images/flags/st.png +0 -0
  855. data/vendor/extensions/localization/public/images/flags/sv.png +0 -0
  856. data/vendor/extensions/localization/public/images/flags/sy.png +0 -0
  857. data/vendor/extensions/localization/public/images/flags/sz.png +0 -0
  858. data/vendor/extensions/localization/public/images/flags/tc.png +0 -0
  859. data/vendor/extensions/localization/public/images/flags/td.png +0 -0
  860. data/vendor/extensions/localization/public/images/flags/tf.png +0 -0
  861. data/vendor/extensions/localization/public/images/flags/tg.png +0 -0
  862. data/vendor/extensions/localization/public/images/flags/th.png +0 -0
  863. data/vendor/extensions/localization/public/images/flags/tj.png +0 -0
  864. data/vendor/extensions/localization/public/images/flags/tk.png +0 -0
  865. data/vendor/extensions/localization/public/images/flags/tl.png +0 -0
  866. data/vendor/extensions/localization/public/images/flags/tm.png +0 -0
  867. data/vendor/extensions/localization/public/images/flags/tn.png +0 -0
  868. data/vendor/extensions/localization/public/images/flags/to.png +0 -0
  869. data/vendor/extensions/localization/public/images/flags/tr.png +0 -0
  870. data/vendor/extensions/localization/public/images/flags/tt.png +0 -0
  871. data/vendor/extensions/localization/public/images/flags/tv.png +0 -0
  872. data/vendor/extensions/localization/public/images/flags/tw.png +0 -0
  873. data/vendor/extensions/localization/public/images/flags/tz.png +0 -0
  874. data/vendor/extensions/localization/public/images/flags/ua.png +0 -0
  875. data/vendor/extensions/localization/public/images/flags/ug.png +0 -0
  876. data/vendor/extensions/localization/public/images/flags/um.png +0 -0
  877. data/vendor/extensions/localization/public/images/flags/us.png +0 -0
  878. data/vendor/extensions/localization/public/images/flags/uy.png +0 -0
  879. data/vendor/extensions/localization/public/images/flags/uz.png +0 -0
  880. data/vendor/extensions/localization/public/images/flags/va.png +0 -0
  881. data/vendor/extensions/localization/public/images/flags/vc.png +0 -0
  882. data/vendor/extensions/localization/public/images/flags/ve.png +0 -0
  883. data/vendor/extensions/localization/public/images/flags/vg.png +0 -0
  884. data/vendor/extensions/localization/public/images/flags/vi.png +0 -0
  885. data/vendor/extensions/localization/public/images/flags/vn.png +0 -0
  886. data/vendor/extensions/localization/public/images/flags/vu.png +0 -0
  887. data/vendor/extensions/localization/public/images/flags/wales.png +0 -0
  888. data/vendor/extensions/localization/public/images/flags/wf.png +0 -0
  889. data/vendor/extensions/localization/public/images/flags/ws.png +0 -0
  890. data/vendor/extensions/localization/public/images/flags/ye.png +0 -0
  891. data/vendor/extensions/localization/public/images/flags/yt.png +0 -0
  892. data/vendor/extensions/localization/public/images/flags/za.png +0 -0
  893. data/vendor/extensions/localization/public/images/flags/zm.png +0 -0
  894. data/vendor/extensions/localization/public/images/flags/zw.png +0 -0
  895. data/vendor/extensions/localization/spec/controllers/admin/localization_controller_spec.rb +10 -0
  896. data/vendor/extensions/localization/spec/controllers/locale_controller_spec.rb +35 -0
  897. data/vendor/extensions/localization/spec/helpers/locale_helper_spec.rb +5 -0
  898. data/vendor/extensions/localization/spec/helpers/localization_helper_spec.rb +5 -0
  899. data/vendor/{plugins/rspec_on_rails/generators/rspec/templates → extensions/localization/spec}/spec.opts +0 -0
  900. data/vendor/extensions/localization/spec/spec_helper.rb +37 -0
  901. data/vendor/extensions/payment_gateway/README_PAYPAL.markdown +21 -0
  902. data/vendor/extensions/payment_gateway/app/controllers/admin/gateway_configurations_controller.rb +2 -0
  903. data/vendor/extensions/payment_gateway/app/controllers/admin/gateway_option_values_controller.rb +2 -0
  904. data/vendor/extensions/payment_gateway/app/controllers/admin/gateways_controller.rb +1 -0
  905. data/vendor/extensions/payment_gateway/app/views/admin/gateway_configurations/_form.html.erb +3 -3
  906. data/vendor/extensions/payment_gateway/db/migrate/{001_create_gateway_configurations.rb → 20080620120002_create_gateway_configurations.rb} +0 -0
  907. data/vendor/extensions/payment_gateway/db/migrate/{002_create_gateways.rb → 20080620120003_create_gateways.rb} +0 -0
  908. data/vendor/extensions/payment_gateway/db/migrate/{003_create_gateway_options.rb → 20080620120004_create_gateway_options.rb} +0 -0
  909. data/vendor/extensions/payment_gateway/db/migrate/{004_create_gateway_option_values.rb → 20080620120005_create_gateway_option_values.rb} +0 -0
  910. data/vendor/extensions/payment_gateway/db/migrate/{005_create_bogus_gateway.rb → 20080620120006_create_bogus_gateway.rb} +0 -0
  911. data/vendor/extensions/payment_gateway/db/migrate/{006_create_linkpoint_gateway.rb → 20080620120007_create_linkpoint_gateway.rb} +0 -0
  912. data/vendor/extensions/payment_gateway/db/migrate/20080703120008_create_paypal_gateway.rb +19 -0
  913. data/vendor/extensions/payment_gateway/lib/spree/payment_gateway.rb +60 -2
  914. data/vendor/extensions/payment_gateway/lib/tasks/payment_gateway_extension_tasks.rake +1 -11
  915. data/vendor/extensions/payment_gateway/payment_gateway_extension.rb +9 -2
  916. data/vendor/extensions/payment_gateway/spec/helpers/admin/gateways_helper_spec.rb +0 -5
  917. data/vendor/extensions/payment_gateway/spec/models/creditcard_payment_spec.rb +24 -0
  918. data/vendor/extensions/payment_gateway/spec/models/order_spec.rb +42 -0
  919. data/vendor/extensions/tax_calculator/app/controllers/admin/tax_rates_controller.rb +19 -3
  920. data/vendor/extensions/tax_calculator/app/models/tax_rate.rb +7 -4
  921. data/vendor/extensions/tax_calculator/app/views/admin/tax_rates/_form.html.erb +14 -4
  922. data/vendor/extensions/tax_calculator/app/views/admin/tax_rates/edit.html.erb +2 -1
  923. data/vendor/extensions/tax_calculator/app/views/admin/tax_rates/index.html.erb +14 -10
  924. data/vendor/extensions/tax_calculator/app/views/admin/tax_rates/new.html.erb +3 -5
  925. data/vendor/extensions/tax_calculator/db/migrate/20080620100001_create_tax_rates.rb +13 -0
  926. data/vendor/extensions/tax_calculator/db/migrate/20080704192456_update_tax_rates_add_zones_etc.rb +17 -0
  927. data/vendor/extensions/tax_calculator/lang/en-US.yml +11 -0
  928. data/vendor/extensions/tax_calculator/lang/pt-BR.yml +11 -0
  929. data/vendor/extensions/tax_calculator/lib/spree/sales_tax_calculator.rb +23 -0
  930. data/vendor/extensions/tax_calculator/lib/spree/tax/config.rb +22 -0
  931. data/vendor/extensions/tax_calculator/lib/spree/tax_calculator.rb +15 -14
  932. data/vendor/extensions/tax_calculator/lib/spree/vat_calculator.rb +47 -0
  933. data/vendor/extensions/tax_calculator/lib/tasks/tax_calculator_extension_tasks.rake +0 -10
  934. data/vendor/extensions/tax_calculator/lib/tax_configuration.rb +7 -0
  935. data/vendor/extensions/tax_calculator/spec/controllers/tax_calculator_spec.rb +3 -20
  936. data/vendor/extensions/tax_calculator/spec/helpers/admin/tax_rates_helper_spec.rb +1 -6
  937. data/vendor/extensions/tax_calculator/spec/helpers/products_helper_spec.rb +85 -0
  938. data/vendor/extensions/tax_calculator/spec/models/order_spec.rb +22 -0
  939. data/vendor/extensions/tax_calculator/spec/models/sales_tax_calculator_spec.rb +53 -0
  940. data/vendor/extensions/tax_calculator/spec/models/tax_calculator_spec.rb +54 -0
  941. data/vendor/extensions/tax_calculator/spec/models/tax_rate_spec.rb +5 -14
  942. data/vendor/extensions/tax_calculator/spec/models/vat_calculator_spec.rb +56 -0
  943. data/vendor/extensions/tax_calculator/tax_calculator_extension.rb +29 -3
  944. data/vendor/gems/active_presenter-0.0.4/LICENSE +22 -0
  945. data/vendor/gems/active_presenter-0.0.4/README +75 -0
  946. data/vendor/gems/active_presenter-0.0.4/Rakefile +10 -0
  947. data/vendor/gems/active_presenter-0.0.4/lib/active_presenter.rb +7 -0
  948. data/vendor/gems/active_presenter-0.0.4/lib/active_presenter/base.rb +174 -0
  949. data/vendor/gems/active_presenter-0.0.4/lib/active_presenter/version.rb +9 -0
  950. data/vendor/gems/active_presenter-0.0.4/lib/tasks/doc.rake +19 -0
  951. data/vendor/gems/active_presenter-0.0.4/lib/tasks/gem.rake +62 -0
  952. data/vendor/gems/active_presenter-0.0.4/test/base_test.rb +152 -0
  953. data/vendor/gems/active_presenter-0.0.4/test/test_helper.rb +38 -0
  954. data/vendor/plugins/acts_as_adjacency_list/MIT-LICENSE +20 -0
  955. data/vendor/plugins/acts_as_adjacency_list/README +13 -0
  956. data/vendor/plugins/acts_as_adjacency_list/Rakefile +22 -0
  957. data/vendor/plugins/acts_as_adjacency_list/init.rb +9 -0
  958. data/vendor/{rails/railties/lib/rails_generator/generators/components/plugin/templates → plugins/acts_as_adjacency_list}/install.rb +0 -0
  959. data/vendor/plugins/acts_as_adjacency_list/lib/active_record/acts/adjacency_list.rb +237 -0
  960. data/vendor/plugins/acts_as_adjacency_list/tasks/acts_as_adjacency_list_tasks.rake +4 -0
  961. data/vendor/plugins/acts_as_adjacency_list/test/acts_as_adjacency_list_test.rb +293 -0
  962. data/vendor/{rails/railties/lib/rails_generator/generators/components/plugin/templates → plugins/acts_as_adjacency_list}/uninstall.rb +0 -0
  963. data/vendor/plugins/attachment_fu/CHANGELOG +12 -1
  964. data/vendor/plugins/attachment_fu/README +25 -1
  965. data/vendor/plugins/attachment_fu/init.rb +3 -1
  966. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu.rb +171 -108
  967. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/backends/file_system_backend.rb +8 -4
  968. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/backends/s3_backend.rb +6 -12
  969. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/core_image_processor.rb +59 -0
  970. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/gd2_processor.rb +54 -0
  971. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/image_science_processor.rb +1 -1
  972. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/mini_magick_processor.rb +12 -9
  973. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/rmagick_processor.rb +5 -4
  974. data/vendor/plugins/attachment_fu/test/backends/remote/s3_test.rb +17 -1
  975. data/vendor/plugins/attachment_fu/test/base_attachment_tests.rb +20 -0
  976. data/vendor/plugins/attachment_fu/test/basic_test.rb +6 -0
  977. data/vendor/plugins/attachment_fu/test/extra_attachment_test.rb +10 -0
  978. data/vendor/plugins/attachment_fu/test/fixtures/attachment.rb +22 -1
  979. data/vendor/plugins/attachment_fu/test/processors/core_image_test.rb +37 -0
  980. data/vendor/plugins/attachment_fu/test/processors/gd2_test.rb +31 -0
  981. data/vendor/plugins/attachment_fu/test/processors/rmagick_test.rb +19 -5
  982. data/vendor/plugins/attachment_fu/test/schema.rb +22 -0
  983. data/vendor/plugins/attachment_fu/test/test_helper.rb +10 -2
  984. data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/color.rb +27 -0
  985. data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/effects.rb +31 -0
  986. data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/perspective.rb +25 -0
  987. data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/quality.rb +25 -0
  988. data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/scale.rb +47 -0
  989. data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/watermark.rb +32 -0
  990. data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/processor.rb +123 -0
  991. data/vendor/plugins/attribute_fu/MIT-LICENSE +20 -0
  992. data/vendor/plugins/attribute_fu/README +115 -0
  993. data/vendor/plugins/attribute_fu/Rakefile +22 -0
  994. data/vendor/plugins/attribute_fu/init.rb +4 -0
  995. data/vendor/plugins/attribute_fu/lib/attribute_fu.rb +2 -0
  996. data/vendor/plugins/attribute_fu/lib/attribute_fu/associated_form_helper.rb +139 -0
  997. data/vendor/plugins/attribute_fu/lib/attribute_fu/associations.rb +124 -0
  998. data/vendor/plugins/attribute_fu/tasks/attribute_fu_tasks.rake +4 -0
  999. data/vendor/{rails/railties/fresh_rakefile → plugins/attribute_fu/test/Rakefile} +0 -0
  1000. data/vendor/plugins/attribute_fu/test/app/controllers/application.rb +10 -0
  1001. data/vendor/{rails/railties → plugins/attribute_fu/test/app}/helpers/application_helper.rb +0 -0
  1002. data/vendor/plugins/attribute_fu/test/app/models/comment.rb +8 -0
  1003. data/vendor/plugins/attribute_fu/test/app/models/photo.rb +3 -0
  1004. data/vendor/plugins/attribute_fu/test/config/boot.rb +97 -0
  1005. data/vendor/plugins/attribute_fu/test/config/database.yml +15 -0
  1006. data/vendor/plugins/attribute_fu/test/config/environment.rb +15 -0
  1007. data/vendor/plugins/attribute_fu/test/config/environments/development.rb +18 -0
  1008. data/vendor/{rails/railties → plugins/attribute_fu/test/config}/environments/test.rb +0 -0
  1009. data/vendor/{rails/railties/configs → plugins/attribute_fu/test/config}/routes.rb +0 -0
  1010. data/vendor/plugins/attribute_fu/test/db/migrate/001_create_photos.rb +14 -0
  1011. data/vendor/plugins/attribute_fu/test/db/migrate/002_create_comments.rb +15 -0
  1012. data/vendor/{rails/railties/bin → plugins/attribute_fu/test/script}/console +0 -0
  1013. data/vendor/{rails/railties/bin → plugins/attribute_fu/test/script}/destroy +0 -0
  1014. data/vendor/{rails/railties/bin → plugins/attribute_fu/test/script}/generate +0 -0
  1015. data/vendor/{rails/railties/bin → plugins/attribute_fu/test/script}/server +0 -0
  1016. data/vendor/plugins/attribute_fu/test/test/test_helper.rb +6 -0
  1017. data/vendor/plugins/attribute_fu/test/test/unit/associated_form_helper_test.rb +376 -0
  1018. data/vendor/plugins/attribute_fu/test/test/unit/comment_test.rb +6 -0
  1019. data/vendor/plugins/attribute_fu/test/test/unit/photo_test.rb +149 -0
  1020. data/vendor/plugins/attribute_fu/test/vendor/plugins/shoulda/init.rb +3 -0
  1021. data/vendor/plugins/attribute_fu/test/vendor/plugins/shoulda/lib/shoulda.rb +20 -0
  1022. data/vendor/plugins/attribute_fu/test/vendor/plugins/shoulda/lib/shoulda/active_record_helpers.rb +338 -0
  1023. data/vendor/plugins/attribute_fu/test/vendor/plugins/shoulda/lib/shoulda/context.rb +143 -0
  1024. data/vendor/plugins/attribute_fu/test/vendor/plugins/shoulda/lib/shoulda/general.rb +119 -0
  1025. data/vendor/plugins/attribute_fu/test/vendor/plugins/shoulda/lib/shoulda/private_helpers.rb +17 -0
  1026. data/vendor/plugins/attribute_fu/uninstall.rb +1 -0
  1027. data/vendor/plugins/auto_complete/README +23 -0
  1028. data/vendor/plugins/auto_complete/Rakefile +22 -0
  1029. data/vendor/plugins/auto_complete/init.rb +2 -0
  1030. data/vendor/plugins/auto_complete/lib/auto_complete.rb +47 -0
  1031. data/vendor/plugins/auto_complete/lib/auto_complete_macros_helper.rb +142 -0
  1032. data/vendor/plugins/auto_complete/test/auto_complete_test.rb +67 -0
  1033. data/vendor/plugins/enumerable_constants/lib/enumerable_constants.rb +4 -0
  1034. data/vendor/plugins/find_by_param/MIT-LICENSE +20 -0
  1035. data/vendor/plugins/find_by_param/README +48 -0
  1036. data/vendor/plugins/find_by_param/Rakefile +22 -0
  1037. data/vendor/plugins/find_by_param/init.rb +18 -0
  1038. data/vendor/plugins/find_by_param/install.rb +1 -0
  1039. data/vendor/plugins/find_by_param/lib/find_by_param.rb +143 -0
  1040. data/vendor/plugins/find_by_param/tasks/find_by_param_tasks.rake +4 -0
  1041. data/vendor/plugins/find_by_param/test/find_by_param_test.rb +74 -0
  1042. data/vendor/plugins/find_by_param/test/schema.rb +16 -0
  1043. data/vendor/plugins/find_by_param/test/test_helper.rb +17 -0
  1044. data/vendor/plugins/find_by_param/uninstall.rb +1 -0
  1045. data/vendor/plugins/globalite/CHANGELOG +22 -0
  1046. data/vendor/plugins/globalite/README +199 -0
  1047. data/vendor/plugins/globalite/README.rdoc +199 -0
  1048. data/vendor/plugins/globalite/Rakefile +32 -0
  1049. data/vendor/plugins/globalite/globalite.gemspec +14 -0
  1050. data/vendor/plugins/globalite/init.rb +1 -0
  1051. data/vendor/plugins/globalite/install.rb +1 -0
  1052. data/vendor/plugins/globalite/lang/rails/de-DE.yml +357 -0
  1053. data/vendor/plugins/globalite/lang/rails/en-UK.yml +357 -0
  1054. data/vendor/plugins/globalite/lang/rails/en-US.yml +357 -0
  1055. data/vendor/plugins/globalite/lang/rails/es-AR.yml +357 -0
  1056. data/vendor/plugins/globalite/lang/rails/es-ES.yml +359 -0
  1057. data/vendor/plugins/globalite/lang/rails/fi-FI.yml +357 -0
  1058. data/vendor/plugins/globalite/lang/rails/fr-FR.yml +359 -0
  1059. data/vendor/plugins/globalite/lang/rails/hu-HU.yml +357 -0
  1060. data/vendor/plugins/globalite/lang/rails/it.yml +358 -0
  1061. data/vendor/plugins/globalite/lang/rails/nl-NL.yml +347 -0
  1062. data/vendor/plugins/globalite/lang/rails/pl-PL.yml +358 -0
  1063. data/vendor/plugins/globalite/lang/rails/pt-BR.yml +324 -0
  1064. data/vendor/plugins/globalite/lang/rails/pt-PT.yml +324 -0
  1065. data/vendor/plugins/globalite/lang/rails/ru-RU.yml +357 -0
  1066. data/vendor/plugins/globalite/lang/rails/sr-CP.yml +357 -0
  1067. data/vendor/plugins/globalite/lang/rails/sr-SR.yml +357 -0
  1068. data/vendor/plugins/globalite/lang/rails/tr.yml +186 -0
  1069. data/vendor/plugins/globalite/lang/rails/zh-CN.yml +357 -0
  1070. data/vendor/plugins/globalite/lang/rails/zh-HK.yml +357 -0
  1071. data/vendor/plugins/globalite/lang/rails/zh-TW.yml +357 -0
  1072. data/vendor/plugins/globalite/lib/globalite.rb +28 -0
  1073. data/vendor/plugins/globalite/lib/globalite/l10n.rb +302 -0
  1074. data/vendor/plugins/globalite/lib/globalite/locale.rb +56 -0
  1075. data/vendor/plugins/globalite/lib/rails/core_ext.rb +19 -0
  1076. data/vendor/plugins/globalite/lib/rails/localization.rb +58 -0
  1077. data/vendor/plugins/globalite/lib/rails/localized_action_view.rb +211 -0
  1078. data/vendor/plugins/globalite/lib/rails/localized_active_record.rb +80 -0
  1079. data/vendor/plugins/globalite/spec/core_localization_spec.rb +116 -0
  1080. data/vendor/plugins/globalite/spec/helpers/spec_helper.rb +16 -0
  1081. data/vendor/plugins/globalite/spec/l10n_spec.rb +251 -0
  1082. data/vendor/plugins/globalite/spec/lang/rails/zz.yml +13 -0
  1083. data/vendor/plugins/globalite/spec/lang/ui/en-UK.yml +3 -0
  1084. data/vendor/plugins/globalite/spec/lang/ui/en-US.yml +3 -0
  1085. data/vendor/plugins/globalite/spec/lang/ui/es.yml +3 -0
  1086. data/vendor/plugins/globalite/spec/lang/ui/fr-FR.yml +8 -0
  1087. data/vendor/plugins/globalite/tasks/cruise.rake +4 -0
  1088. data/vendor/plugins/globalite/tasks/globalite_tasks.rake +47 -0
  1089. data/vendor/plugins/globalite/uninstall.rb +1 -0
  1090. data/vendor/plugins/in_place_editing/lib/in_place_macros_helper.rb +7 -1
  1091. data/vendor/plugins/in_place_editing/test/in_place_editing_test.rb +25 -5
  1092. data/vendor/plugins/resource_controller/LICENSE +1 -1
  1093. data/vendor/plugins/resource_controller/README.rdoc +282 -0
  1094. data/vendor/plugins/resource_controller/Rakefile +14 -1
  1095. data/vendor/plugins/resource_controller/TODO +1 -0
  1096. data/vendor/plugins/resource_controller/generators/scaffold_resource/scaffold_resource_generator.rb +99 -34
  1097. data/vendor/plugins/resource_controller/generators/scaffold_resource/templates/rspec/functional_spec.rb +255 -0
  1098. data/vendor/plugins/resource_controller/generators/scaffold_resource/templates/rspec/helper_spec.rb +11 -0
  1099. data/vendor/plugins/resource_controller/generators/scaffold_resource/templates/rspec/routing_spec.rb +61 -0
  1100. data/vendor/plugins/resource_controller/generators/scaffold_resource/templates/rspec/unit_spec.rb +11 -0
  1101. data/vendor/plugins/resource_controller/generators/scaffold_resource/templates/rspec/views/edit_spec.rb +28 -0
  1102. data/vendor/plugins/resource_controller/generators/scaffold_resource/templates/rspec/views/index_spec.rb +26 -0
  1103. data/vendor/plugins/resource_controller/generators/scaffold_resource/templates/rspec/views/new_spec.rb +30 -0
  1104. data/vendor/plugins/resource_controller/generators/scaffold_resource/templates/rspec/views/show_spec.rb +25 -0
  1105. data/vendor/plugins/resource_controller/init.rb +1 -6
  1106. data/vendor/plugins/resource_controller/lib/resource_controller.rb +15 -6
  1107. data/vendor/plugins/resource_controller/lib/resource_controller/accessors.rb +11 -14
  1108. data/vendor/plugins/resource_controller/lib/resource_controller/action_options.rb +12 -0
  1109. data/vendor/plugins/resource_controller/lib/resource_controller/class_methods.rb +3 -1
  1110. data/vendor/plugins/resource_controller/lib/resource_controller/controller.rb +10 -4
  1111. data/vendor/plugins/resource_controller/lib/resource_controller/failable_action_options.rb +9 -1
  1112. data/vendor/plugins/resource_controller/lib/resource_controller/helpers/current_objects.rb +11 -1
  1113. data/vendor/plugins/resource_controller/lib/resource_controller/helpers/internal.rb +19 -2
  1114. data/vendor/plugins/resource_controller/lib/resource_controller/helpers/nested.rb +27 -3
  1115. data/vendor/plugins/resource_controller/lib/resource_controller/helpers/singleton_customizations.rb +60 -0
  1116. data/vendor/plugins/resource_controller/lib/resource_controller/helpers/urls.rb +6 -2
  1117. data/vendor/plugins/resource_controller/lib/resource_controller/response_collector.rb +6 -0
  1118. data/vendor/plugins/resource_controller/lib/resource_controller/singleton.rb +15 -0
  1119. data/vendor/plugins/resource_controller/lib/resource_controller/version.rb +9 -0
  1120. data/vendor/plugins/resource_controller/rails/init.rb +6 -0
  1121. data/vendor/plugins/resource_controller/resource_controller.gemspec +343 -0
  1122. data/vendor/plugins/resource_controller/test/Rakefile +10 -0
  1123. data/vendor/plugins/resource_controller/test/app/controllers/accounts_controller.rb +6 -0
  1124. data/vendor/plugins/resource_controller/test/app/controllers/application.rb +7 -0
  1125. data/vendor/plugins/resource_controller/test/app/controllers/cms/options_controller.rb +3 -0
  1126. data/vendor/plugins/resource_controller/test/app/controllers/cms/products_controller.rb +3 -0
  1127. data/vendor/plugins/resource_controller/test/app/controllers/comments_controller.rb +3 -0
  1128. data/vendor/plugins/resource_controller/test/app/controllers/images_controller.rb +4 -0
  1129. data/vendor/plugins/resource_controller/test/app/controllers/options_controller.rb +8 -0
  1130. data/vendor/plugins/resource_controller/test/app/controllers/people_controller.rb +9 -0
  1131. data/vendor/plugins/resource_controller/test/app/controllers/photos_controller.rb +11 -0
  1132. data/vendor/plugins/resource_controller/test/app/controllers/posts_controller.rb +10 -0
  1133. data/vendor/plugins/resource_controller/test/app/controllers/projects_controller.rb +3 -0
  1134. data/vendor/plugins/resource_controller/test/app/controllers/somethings_controller.rb +3 -0
  1135. data/vendor/plugins/resource_controller/test/app/controllers/tags_controller.rb +13 -0
  1136. data/vendor/plugins/resource_controller/test/app/controllers/users_controller.rb +12 -0
  1137. data/vendor/plugins/resource_controller/test/app/helpers/accounts_helper.rb +2 -0
  1138. data/vendor/plugins/resource_controller/test/app/helpers/application_helper.rb +3 -0
  1139. data/vendor/plugins/resource_controller/test/app/helpers/cms/products_helper.rb +2 -0
  1140. data/vendor/plugins/resource_controller/test/app/helpers/comments_helper.rb +2 -0
  1141. data/vendor/plugins/resource_controller/test/app/helpers/images_helper.rb +2 -0
  1142. data/vendor/plugins/resource_controller/test/app/helpers/options_helper.rb +2 -0
  1143. data/vendor/plugins/resource_controller/test/app/helpers/people_helper.rb +2 -0
  1144. data/vendor/plugins/resource_controller/test/app/helpers/photos_helper.rb +2 -0
  1145. data/vendor/plugins/resource_controller/test/app/helpers/posts_helper.rb +2 -0
  1146. data/vendor/plugins/resource_controller/test/app/helpers/projects_helper.rb +2 -0
  1147. data/vendor/plugins/resource_controller/test/app/helpers/somethings_helper.rb +2 -0
  1148. data/vendor/plugins/resource_controller/test/app/helpers/tags_helper.rb +2 -0
  1149. data/vendor/plugins/resource_controller/test/app/helpers/users_helper.rb +2 -0
  1150. data/vendor/plugins/resource_controller/test/app/models/account.rb +4 -0
  1151. data/vendor/plugins/resource_controller/test/app/models/comment.rb +3 -0
  1152. data/vendor/plugins/resource_controller/test/app/models/image.rb +3 -0
  1153. data/vendor/plugins/resource_controller/test/app/models/option.rb +3 -0
  1154. data/vendor/plugins/resource_controller/test/app/models/photo.rb +4 -0
  1155. data/vendor/plugins/resource_controller/test/app/models/post.rb +3 -0
  1156. data/vendor/plugins/resource_controller/test/app/models/product.rb +3 -0
  1157. data/vendor/plugins/resource_controller/test/app/models/project.rb +2 -0
  1158. data/vendor/plugins/resource_controller/test/app/models/something.rb +2 -0
  1159. data/vendor/plugins/resource_controller/test/app/models/tag.rb +3 -0
  1160. data/vendor/plugins/resource_controller/test/app/models/user.rb +3 -0
  1161. data/vendor/plugins/resource_controller/test/app/views/accounts/_form.html.erb +4 -0
  1162. data/vendor/plugins/resource_controller/test/app/views/accounts/edit.html.erb +14 -0
  1163. data/vendor/plugins/resource_controller/test/app/views/accounts/new.html.erb +12 -0
  1164. data/vendor/plugins/resource_controller/test/app/views/accounts/show.html.erb +5 -0
  1165. data/vendor/plugins/resource_controller/test/app/views/cms/options/edit.rhtml +17 -0
  1166. data/vendor/plugins/resource_controller/test/app/views/cms/options/index.rhtml +20 -0
  1167. data/vendor/plugins/resource_controller/test/app/views/cms/options/new.rhtml +16 -0
  1168. data/vendor/plugins/resource_controller/test/app/views/cms/options/show.rhtml +8 -0
  1169. data/vendor/plugins/resource_controller/test/app/views/cms/products/edit.rhtml +17 -0
  1170. data/vendor/plugins/resource_controller/test/app/views/cms/products/index.rhtml +20 -0
  1171. data/vendor/plugins/resource_controller/test/app/views/cms/products/new.rhtml +16 -0
  1172. data/vendor/plugins/resource_controller/test/app/views/cms/products/show.rhtml +8 -0
  1173. data/vendor/plugins/resource_controller/test/app/views/comments/edit.rhtml +27 -0
  1174. data/vendor/plugins/resource_controller/test/app/views/comments/index.rhtml +24 -0
  1175. data/vendor/plugins/resource_controller/test/app/views/comments/new.rhtml +26 -0
  1176. data/vendor/plugins/resource_controller/test/app/views/comments/show.rhtml +18 -0
  1177. data/vendor/plugins/resource_controller/test/app/views/images/_form.html.erb +4 -0
  1178. data/vendor/plugins/resource_controller/test/app/views/images/edit.html.erb +14 -0
  1179. data/vendor/plugins/resource_controller/test/app/views/images/new.html.erb +12 -0
  1180. data/vendor/plugins/resource_controller/test/app/views/layouts/application.rhtml +17 -0
  1181. data/vendor/plugins/resource_controller/test/app/views/layouts/comments.rhtml +17 -0
  1182. data/vendor/plugins/resource_controller/test/app/views/layouts/options.rhtml +17 -0
  1183. data/vendor/plugins/resource_controller/test/app/views/layouts/people.rhtml +17 -0
  1184. data/vendor/plugins/resource_controller/test/app/views/layouts/photos.rhtml +17 -0
  1185. data/vendor/plugins/resource_controller/test/app/views/layouts/projects.rhtml +17 -0
  1186. data/vendor/plugins/resource_controller/test/app/views/layouts/somethings.rhtml +17 -0
  1187. data/vendor/plugins/resource_controller/test/app/views/layouts/tags.rhtml +17 -0
  1188. data/vendor/plugins/resource_controller/test/app/views/options/_form.html.erb +8 -0
  1189. data/vendor/plugins/resource_controller/test/app/views/options/edit.html.erb +16 -0
  1190. data/vendor/plugins/resource_controller/test/app/views/options/index.html.erb +21 -0
  1191. data/vendor/plugins/resource_controller/test/app/views/options/new.html.erb +12 -0
  1192. data/vendor/plugins/resource_controller/test/app/views/options/show.html.erb +10 -0
  1193. data/vendor/plugins/resource_controller/test/app/views/people/edit.rhtml +17 -0
  1194. data/vendor/plugins/resource_controller/test/app/views/people/index.rhtml +20 -0
  1195. data/vendor/plugins/resource_controller/test/app/views/people/new.rhtml +16 -0
  1196. data/vendor/plugins/resource_controller/test/app/views/people/show.rhtml +8 -0
  1197. data/vendor/plugins/resource_controller/test/app/views/photos/edit.rhtml +17 -0
  1198. data/vendor/plugins/resource_controller/test/app/views/photos/index.rhtml +20 -0
  1199. data/vendor/plugins/resource_controller/test/app/views/photos/new.rhtml +16 -0
  1200. data/vendor/plugins/resource_controller/test/app/views/photos/show.rhtml +8 -0
  1201. data/vendor/plugins/resource_controller/test/app/views/posts/edit.rhtml +22 -0
  1202. data/vendor/plugins/resource_controller/test/app/views/posts/index.rhtml +22 -0
  1203. data/vendor/plugins/resource_controller/test/app/views/posts/new.rhtml +21 -0
  1204. data/vendor/plugins/resource_controller/test/app/views/posts/show.rhtml +13 -0
  1205. data/vendor/plugins/resource_controller/test/app/views/projects/edit.rhtml +17 -0
  1206. data/vendor/plugins/resource_controller/test/app/views/projects/index.rhtml +20 -0
  1207. data/vendor/plugins/resource_controller/test/app/views/projects/new.rhtml +16 -0
  1208. data/vendor/plugins/resource_controller/test/app/views/projects/show.rhtml +8 -0
  1209. data/vendor/plugins/resource_controller/test/app/views/somethings/edit.rhtml +17 -0
  1210. data/vendor/plugins/resource_controller/test/app/views/somethings/index.rhtml +20 -0
  1211. data/vendor/plugins/resource_controller/test/app/views/somethings/new.rhtml +16 -0
  1212. data/vendor/plugins/resource_controller/test/app/views/somethings/show.rhtml +8 -0
  1213. data/vendor/plugins/resource_controller/test/app/views/tags/edit.rhtml +17 -0
  1214. data/vendor/plugins/resource_controller/test/app/views/tags/index.rhtml +20 -0
  1215. data/{foozah/public/favicon.ico → vendor/plugins/resource_controller/test/app/views/tags/index.rjs} +0 -0
  1216. data/vendor/plugins/resource_controller/test/app/views/tags/new.rhtml +16 -0
  1217. data/vendor/plugins/resource_controller/test/app/views/tags/show.rhtml +8 -0
  1218. data/vendor/plugins/resource_controller/test/app/views/users/edit.rhtml +17 -0
  1219. data/vendor/plugins/resource_controller/test/app/views/users/index.rhtml +20 -0
  1220. data/vendor/plugins/resource_controller/test/app/views/users/new.rhtml +16 -0
  1221. data/vendor/plugins/resource_controller/test/app/views/users/show.rhtml +8 -0
  1222. data/vendor/plugins/resource_controller/test/config/boot.rb +109 -0
  1223. data/vendor/plugins/resource_controller/test/config/environment.rb +64 -0
  1224. data/vendor/plugins/resource_controller/test/config/environments/development.rb +21 -0
  1225. data/{foozah → vendor/plugins/resource_controller/test}/config/environments/test.rb +0 -0
  1226. data/vendor/plugins/resource_controller/test/config/routes.rb +58 -0
  1227. data/vendor/plugins/resource_controller/test/db/migrate/001_create_posts.rb +12 -0
  1228. data/vendor/plugins/resource_controller/test/db/migrate/002_create_products.rb +11 -0
  1229. data/vendor/plugins/resource_controller/test/db/migrate/003_create_comments.rb +13 -0
  1230. data/vendor/plugins/resource_controller/test/db/migrate/004_create_options.rb +13 -0
  1231. data/vendor/plugins/resource_controller/test/db/migrate/005_create_photos.rb +11 -0
  1232. data/vendor/plugins/resource_controller/test/db/migrate/006_create_tags.rb +17 -0
  1233. data/vendor/plugins/resource_controller/test/db/migrate/007_create_somethings.rb +11 -0
  1234. data/vendor/plugins/resource_controller/test/db/migrate/008_create_accounts.rb +11 -0
  1235. data/vendor/plugins/resource_controller/test/db/migrate/009_add_account_id_to_photos.rb +9 -0
  1236. data/vendor/plugins/resource_controller/test/db/migrate/010_create_projects.rb +11 -0
  1237. data/vendor/plugins/resource_controller/test/db/migrate/011_create_images.rb +12 -0
  1238. data/vendor/plugins/resource_controller/test/db/migrate/012_create_users.rb +11 -0
  1239. data/{foozah → vendor/plugins/resource_controller/test}/script/console +0 -0
  1240. data/vendor/plugins/resource_controller/test/script/destroy +3 -0
  1241. data/vendor/plugins/resource_controller/test/script/generate +3 -0
  1242. data/{foozah → vendor/plugins/resource_controller/test}/script/server +0 -0
  1243. data/vendor/plugins/resource_controller/test/test/fixtures/accounts.yml +7 -0
  1244. data/vendor/plugins/resource_controller/test/test/fixtures/comments.yml +11 -0
  1245. data/vendor/plugins/resource_controller/test/test/fixtures/images.yml +6 -0
  1246. data/vendor/plugins/resource_controller/test/test/fixtures/options.yml +9 -0
  1247. data/vendor/plugins/resource_controller/test/test/fixtures/photos.yml +9 -0
  1248. data/vendor/plugins/resource_controller/test/test/fixtures/photos_tags.yml +3 -0
  1249. data/vendor/plugins/resource_controller/test/test/fixtures/posts.yml +9 -0
  1250. data/vendor/plugins/resource_controller/test/test/fixtures/products.yml +7 -0
  1251. data/vendor/plugins/resource_controller/test/test/fixtures/projects.yml +7 -0
  1252. data/vendor/plugins/resource_controller/test/test/fixtures/somethings.yml +7 -0
  1253. data/vendor/plugins/resource_controller/test/test/fixtures/tags.yml +7 -0
  1254. data/vendor/plugins/resource_controller/test/test/fixtures/users.yml +5 -0
  1255. data/vendor/plugins/resource_controller/test/test/functional/cms/options_controller_test.rb +23 -0
  1256. data/vendor/plugins/resource_controller/test/test/functional/cms/products_controller_test.rb +23 -0
  1257. data/vendor/plugins/resource_controller/test/test/functional/comments_controller_test.rb +26 -0
  1258. data/vendor/plugins/resource_controller/test/test/functional/images_controller_test.rb +37 -0
  1259. data/vendor/plugins/resource_controller/test/test/functional/people_controller_test.rb +34 -0
  1260. data/vendor/plugins/resource_controller/test/test/functional/photos_controller_test.rb +130 -0
  1261. data/vendor/plugins/resource_controller/test/test/functional/posts_controller_test.rb +34 -0
  1262. data/vendor/plugins/resource_controller/test/test/functional/projects_controller_test.rb +18 -0
  1263. data/vendor/plugins/resource_controller/test/test/functional/somethings_controller_test.rb +28 -0
  1264. data/vendor/plugins/resource_controller/test/test/functional/tags_controller_test.rb +64 -0
  1265. data/vendor/plugins/resource_controller/test/test/functional/users_controller_test.rb +24 -0
  1266. data/vendor/plugins/resource_controller/test/test/test_helper.rb +12 -0
  1267. data/vendor/plugins/resource_controller/test/test/unit/accessors_test.rb +110 -0
  1268. data/vendor/plugins/resource_controller/test/test/unit/account_test.rb +7 -0
  1269. data/vendor/plugins/resource_controller/test/test/unit/action_options_test.rb +109 -0
  1270. data/vendor/plugins/resource_controller/test/test/unit/base_test.rb +11 -0
  1271. data/vendor/plugins/resource_controller/test/test/unit/comment_test.rb +10 -0
  1272. data/vendor/plugins/resource_controller/test/test/unit/failable_action_options_test.rb +77 -0
  1273. data/vendor/plugins/resource_controller/test/test/unit/helpers/current_objects_test.rb +133 -0
  1274. data/vendor/plugins/resource_controller/test/test/unit/helpers/internal_test.rb +106 -0
  1275. data/vendor/plugins/resource_controller/test/test/unit/helpers/nested_test.rb +86 -0
  1276. data/vendor/plugins/resource_controller/test/test/unit/helpers/singleton_current_objects_test.rb +68 -0
  1277. data/vendor/plugins/resource_controller/test/test/unit/helpers/singleton_nested_test.rb +77 -0
  1278. data/vendor/plugins/resource_controller/test/test/unit/helpers/singleton_urls_test.rb +67 -0
  1279. data/vendor/plugins/resource_controller/test/test/unit/helpers/urls_test.rb +75 -0
  1280. data/vendor/plugins/resource_controller/test/test/unit/helpers_test.rb +25 -0
  1281. data/vendor/plugins/resource_controller/test/test/unit/image_test.rb +7 -0
  1282. data/vendor/plugins/resource_controller/test/test/unit/option_test.rb +10 -0
  1283. data/vendor/plugins/resource_controller/test/test/unit/photo_test.rb +10 -0
  1284. data/vendor/plugins/resource_controller/test/test/unit/post_test.rb +10 -0
  1285. data/vendor/plugins/resource_controller/test/test/unit/project_test.rb +10 -0
  1286. data/vendor/plugins/resource_controller/test/test/unit/response_collector_test.rb +49 -0
  1287. data/vendor/plugins/resource_controller/test/test/unit/something_test.rb +10 -0
  1288. data/vendor/plugins/resource_controller/test/test/unit/tag_test.rb +10 -0
  1289. data/vendor/plugins/resource_controller/test/test/unit/urligence_test.rb +203 -0
  1290. data/vendor/plugins/resource_controller/test/vendor/plugins/shoulda/Rakefile +32 -0
  1291. data/vendor/plugins/resource_controller/test/vendor/plugins/shoulda/bin/convert_to_should_syntax +40 -0
  1292. data/vendor/plugins/resource_controller/test/vendor/plugins/shoulda/init.rb +3 -0
  1293. data/vendor/plugins/resource_controller/test/vendor/plugins/shoulda/lib/shoulda.rb +43 -0
  1294. data/vendor/plugins/resource_controller/test/vendor/plugins/shoulda/lib/shoulda/active_record_helpers.rb +580 -0
  1295. data/vendor/plugins/resource_controller/test/vendor/plugins/shoulda/lib/shoulda/color.rb +77 -0
  1296. data/vendor/plugins/resource_controller/test/vendor/plugins/shoulda/lib/shoulda/controller_tests/controller_tests.rb +467 -0
  1297. data/vendor/plugins/resource_controller/test/vendor/plugins/shoulda/lib/shoulda/controller_tests/formats/html.rb +201 -0
  1298. data/vendor/plugins/resource_controller/test/vendor/plugins/shoulda/lib/shoulda/controller_tests/formats/xml.rb +170 -0
  1299. data/vendor/plugins/resource_controller/test/vendor/plugins/shoulda/lib/shoulda/gem/proc_extensions.rb +14 -0
  1300. data/vendor/plugins/resource_controller/test/vendor/plugins/shoulda/lib/shoulda/gem/shoulda.rb +239 -0
  1301. data/vendor/plugins/resource_controller/test/vendor/plugins/shoulda/lib/shoulda/general.rb +118 -0
  1302. data/vendor/plugins/resource_controller/test/vendor/plugins/shoulda/lib/shoulda/private_helpers.rb +22 -0
  1303. data/vendor/plugins/rspec-rails/CHANGES +26 -0
  1304. data/vendor/plugins/{rspec_on_rails → rspec-rails}/MIT-LICENSE +0 -0
  1305. data/vendor/plugins/{rspec_on_rails → rspec-rails}/README +0 -0
  1306. data/vendor/plugins/rspec-rails/Rakefile +64 -0
  1307. data/vendor/plugins/rspec-rails/UPGRADE +7 -0
  1308. data/vendor/plugins/{rspec_on_rails → rspec-rails}/generators/rspec/CHANGES +0 -0
  1309. data/vendor/plugins/{rspec_on_rails → rspec-rails}/generators/rspec/rspec_generator.rb +0 -0
  1310. data/vendor/plugins/{rspec_on_rails → rspec-rails}/generators/rspec/templates/all_stories.rb +0 -0
  1311. data/vendor/plugins/{rspec_on_rails → rspec-rails}/generators/rspec/templates/previous_failures.txt +0 -0
  1312. data/vendor/plugins/{rspec_on_rails → rspec-rails}/generators/rspec/templates/rcov.opts +0 -0
  1313. data/{foozah → vendor/plugins/rspec-rails/generators/rspec/templates}/script/spec +0 -0
  1314. data/vendor/plugins/rspec-rails/generators/rspec/templates/script/spec_server +116 -0
  1315. data/vendor/plugins/rspec-rails/generators/rspec/templates/spec.opts +4 -0
  1316. data/vendor/plugins/rspec-rails/generators/rspec/templates/spec_helper.rb +47 -0
  1317. data/vendor/plugins/{rspec_on_rails → rspec-rails}/generators/rspec/templates/stories_helper.rb +0 -0
  1318. data/vendor/plugins/{rspec_on_rails → rspec-rails}/generators/rspec_controller/USAGE +0 -0
  1319. data/vendor/plugins/{rspec_on_rails → rspec-rails}/generators/rspec_controller/rspec_controller_generator.rb +0 -0
  1320. data/vendor/plugins/rspec-rails/generators/rspec_controller/templates/controller_spec.rb +25 -0
  1321. data/vendor/plugins/rspec-rails/generators/rspec_controller/templates/helper_spec.rb +11 -0
  1322. data/vendor/plugins/rspec-rails/generators/rspec_controller/templates/view_spec.rb +12 -0
  1323. data/vendor/plugins/{rspec_on_rails → rspec-rails}/generators/rspec_model/USAGE +0 -0
  1324. data/vendor/plugins/{rspec_on_rails → rspec-rails}/generators/rspec_model/rspec_model_generator.rb +0 -0
  1325. data/vendor/plugins/rspec-rails/generators/rspec_model/templates/model_spec.rb +15 -0
  1326. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/rspec_scaffold_generator.rb +166 -0
  1327. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/controller_spec.rb +327 -0
  1328. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/edit_erb_spec.rb +26 -0
  1329. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/helper_spec.rb +11 -0
  1330. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/index_erb_spec.rb +27 -0
  1331. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/new_erb_spec.rb +26 -0
  1332. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/routing_spec.rb +61 -0
  1333. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/show_erb_spec.rb +23 -0
  1334. data/vendor/plugins/{rspec_on_rails → rspec-rails}/init.rb +0 -0
  1335. data/vendor/plugins/{rspec_on_rails → rspec-rails}/lib/autotest/discover.rb +0 -0
  1336. data/vendor/plugins/rspec-rails/lib/autotest/rails_rspec.rb +81 -0
  1337. data/vendor/plugins/rspec-rails/lib/spec/rails.rb +52 -0
  1338. data/vendor/plugins/rspec-rails/lib/spec/rails/example.rb +46 -0
  1339. data/vendor/plugins/rspec-rails/lib/spec/rails/example/assigns_hash_proxy.rb +43 -0
  1340. data/vendor/plugins/rspec-rails/lib/spec/rails/example/controller_example_group.rb +271 -0
  1341. data/vendor/plugins/rspec-rails/lib/spec/rails/example/functional_example_group.rb +59 -0
  1342. data/vendor/plugins/rspec-rails/lib/spec/rails/example/helper_example_group.rb +164 -0
  1343. data/vendor/plugins/{rspec_on_rails → rspec-rails}/lib/spec/rails/example/model_example_group.rb +0 -0
  1344. data/vendor/plugins/rspec-rails/lib/spec/rails/example/rails_example_group.rb +29 -0
  1345. data/vendor/plugins/rspec-rails/lib/spec/rails/example/render_observer.rb +90 -0
  1346. data/vendor/plugins/rspec-rails/lib/spec/rails/example/view_example_group.rb +178 -0
  1347. data/vendor/plugins/{rspec_on_rails → rspec-rails}/lib/spec/rails/extensions.rb +0 -0
  1348. data/vendor/plugins/{rspec_on_rails → rspec-rails}/lib/spec/rails/extensions/action_controller/base.rb +0 -0
  1349. data/vendor/plugins/{rspec_on_rails → rspec-rails}/lib/spec/rails/extensions/action_controller/rescue.rb +0 -0
  1350. data/vendor/plugins/{rspec_on_rails → rspec-rails}/lib/spec/rails/extensions/action_controller/test_response.rb +0 -0
  1351. data/vendor/plugins/{rspec_on_rails → rspec-rails}/lib/spec/rails/extensions/action_view/base.rb +0 -0
  1352. data/vendor/plugins/{rspec_on_rails → rspec-rails}/lib/spec/rails/extensions/active_record/base.rb +0 -0
  1353. data/vendor/plugins/{rspec_on_rails → rspec-rails}/lib/spec/rails/extensions/object.rb +0 -0
  1354. data/vendor/plugins/rspec-rails/lib/spec/rails/extensions/spec/example/configuration.rb +71 -0
  1355. data/vendor/plugins/{rspec_on_rails → rspec-rails}/lib/spec/rails/extensions/spec/matchers/have.rb +0 -0
  1356. data/vendor/plugins/rspec-rails/lib/spec/rails/matchers.rb +30 -0
  1357. data/vendor/plugins/{rspec_on_rails → rspec-rails}/lib/spec/rails/matchers/assert_select.rb +0 -0
  1358. data/vendor/plugins/rspec-rails/lib/spec/rails/matchers/have_text.rb +57 -0
  1359. data/vendor/plugins/rspec-rails/lib/spec/rails/matchers/include_text.rb +54 -0
  1360. data/vendor/plugins/rspec-rails/lib/spec/rails/matchers/redirect_to.rb +113 -0
  1361. data/vendor/plugins/{rspec_on_rails → rspec-rails}/lib/spec/rails/matchers/render_template.rb +0 -0
  1362. data/vendor/plugins/rspec-rails/lib/spec/rails/mocks.rb +126 -0
  1363. data/vendor/plugins/{rspec_on_rails → rspec-rails}/lib/spec/rails/story_adapter.rb +0 -0
  1364. data/vendor/plugins/rspec-rails/lib/spec/rails/version.rb +39 -0
  1365. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec/rails/autotest/mappings_spec.rb +0 -0
  1366. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec/rails/autotest/rails_rspec_spec.rb +0 -0
  1367. data/vendor/plugins/rspec-rails/spec/rails/example/assigns_hash_proxy_spec.rb +60 -0
  1368. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec/rails/example/configuration_spec.rb +0 -0
  1369. data/vendor/plugins/rspec-rails/spec/rails/example/controller_isolation_spec.rb +62 -0
  1370. data/vendor/plugins/rspec-rails/spec/rails/example/controller_spec_spec.rb +206 -0
  1371. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec/rails/example/example_group_factory_spec.rb +0 -0
  1372. data/vendor/plugins/rspec-rails/spec/rails/example/helper_spec_spec.rb +161 -0
  1373. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec/rails/example/model_spec_spec.rb +0 -0
  1374. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec/rails/example/shared_behaviour_spec.rb +0 -0
  1375. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec/rails/example/test_unit_assertion_accessibility_spec.rb +0 -0
  1376. data/vendor/plugins/rspec-rails/spec/rails/example/view_spec_spec.rb +272 -0
  1377. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec/rails/extensions/action_controller_rescue_action_spec.rb +0 -0
  1378. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec/rails/extensions/action_view_base_spec.rb +0 -0
  1379. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec/rails/extensions/active_record_spec.rb +0 -0
  1380. data/vendor/plugins/rspec-rails/spec/rails/matchers/assert_select_spec.rb +806 -0
  1381. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec/rails/matchers/description_generation_spec.rb +0 -0
  1382. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec/rails/matchers/errors_on_spec.rb +0 -0
  1383. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec/rails/matchers/have_text_spec.rb +0 -0
  1384. data/vendor/plugins/rspec-rails/spec/rails/matchers/include_text_spec.rb +70 -0
  1385. data/vendor/plugins/rspec-rails/spec/rails/matchers/redirect_to_spec.rb +209 -0
  1386. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec/rails/matchers/render_spec.rb +0 -0
  1387. data/vendor/plugins/rspec-rails/spec/rails/mocks/ar_classes.rb +10 -0
  1388. data/vendor/plugins/rspec-rails/spec/rails/mocks/mock_model_spec.rb +64 -0
  1389. data/vendor/plugins/rspec-rails/spec/rails/mocks/stub_model_spec.rb +79 -0
  1390. data/vendor/plugins/rspec-rails/spec/rails/sample_modified_fixture.rb +8 -0
  1391. data/vendor/plugins/rspec-rails/spec/rails/sample_spec.rb +8 -0
  1392. data/vendor/plugins/rspec-rails/spec/rails/spec_server_spec.rb +96 -0
  1393. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec/rails/spec_spec.rb +0 -0
  1394. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec/rails_suite.rb +0 -0
  1395. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec/spec_helper.rb +0 -0
  1396. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/controllers/action_view_base_spec_controller.rb +0 -0
  1397. data/vendor/plugins/rspec-rails/spec_resources/controllers/controller_spec_controller.rb +68 -0
  1398. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/controllers/redirect_spec_controller.rb +0 -0
  1399. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/controllers/render_spec_controller.rb +0 -0
  1400. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/controllers/rjs_spec_controller.rb +0 -0
  1401. data/vendor/plugins/rspec-rails/spec_resources/helpers/explicit_helper.rb +34 -0
  1402. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/helpers/more_explicit_helper.rb +0 -0
  1403. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/helpers/plugin_application_helper.rb +0 -0
  1404. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/helpers/view_spec_helper.rb +0 -0
  1405. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/controller_spec/_partial.rhtml +0 -0
  1406. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/controller_spec/action_setting_flash_after_session_reset.rhtml +0 -0
  1407. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/controller_spec/action_setting_flash_before_session_reset.rhtml +0 -0
  1408. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/controller_spec/action_setting_the_assigns_hash.rhtml +0 -0
  1409. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/controller_spec/action_with_errors_in_template.rhtml +0 -0
  1410. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/controller_spec/action_with_template.rhtml +0 -0
  1411. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/render_spec/_a_partial.rhtml +0 -0
  1412. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/render_spec/some_action.js.rjs +0 -0
  1413. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/render_spec/some_action.rhtml +0 -0
  1414. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/render_spec/some_action.rjs +0 -0
  1415. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/rjs_spec/_replacement_partial.rhtml +0 -0
  1416. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/rjs_spec/hide_div.rjs +0 -0
  1417. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/rjs_spec/hide_page_element.rjs +0 -0
  1418. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/rjs_spec/insert_html.rjs +0 -0
  1419. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/rjs_spec/replace.rjs +0 -0
  1420. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/rjs_spec/replace_html.rjs +0 -0
  1421. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/rjs_spec/replace_html_with_partial.rjs +0 -0
  1422. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/rjs_spec/visual_effect.rjs +0 -0
  1423. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/rjs_spec/visual_toggle_effect.rjs +0 -0
  1424. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/tag_spec/no_tags.rhtml +0 -0
  1425. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/tag_spec/single_div_with_no_attributes.rhtml +0 -0
  1426. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/tag_spec/single_div_with_one_attribute.rhtml +0 -0
  1427. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/view_spec/_partial.rhtml +0 -0
  1428. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/view_spec/_partial_used_twice.rhtml +0 -0
  1429. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/view_spec/_partial_with_local_variable.rhtml +0 -0
  1430. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/view_spec/_partial_with_sub_partial.rhtml +0 -0
  1431. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/view_spec/_spacer.rhtml +0 -0
  1432. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/accessor.rhtml +5 -0
  1433. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/view_spec/entry_form.rhtml +0 -0
  1434. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/view_spec/explicit_helper.rhtml +0 -0
  1435. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/view_spec/foo/show.rhtml +0 -0
  1436. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/view_spec/implicit_helper.rhtml +0 -0
  1437. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/view_spec/multiple_helpers.rhtml +0 -0
  1438. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/view_spec/template_with_partial.rhtml +0 -0
  1439. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/view_spec/template_with_partial_using_collection.rhtml +0 -0
  1440. data/vendor/plugins/{rspec_on_rails → rspec-rails}/spec_resources/views/view_spec/template_with_partial_with_array.rhtml +0 -0
  1441. data/vendor/plugins/{rspec_on_rails → rspec-rails}/stories/all.rb +0 -0
  1442. data/vendor/plugins/{rspec_on_rails → rspec-rails}/stories/helper.rb +0 -0
  1443. data/vendor/plugins/{rspec_on_rails → rspec-rails}/stories/steps/people.rb +0 -0
  1444. data/vendor/plugins/{rspec_on_rails → rspec-rails}/stories/transactions_should_rollback +0 -0
  1445. data/vendor/plugins/{rspec_on_rails → rspec-rails}/stories/transactions_should_rollback.rb +0 -0
  1446. data/vendor/plugins/rspec-rails/tasks/rspec.rake +137 -0
  1447. data/vendor/plugins/rspec/CHANGES +59 -0
  1448. data/vendor/plugins/rspec/MIT-LICENSE +1 -1
  1449. data/vendor/plugins/rspec/README +9 -44
  1450. data/vendor/plugins/rspec/Rakefile +34 -51
  1451. data/vendor/plugins/rspec/TODO +0 -1
  1452. data/vendor/plugins/rspec/bin/autospec +3 -0
  1453. data/vendor/plugins/rspec/bin/spec +0 -0
  1454. data/vendor/plugins/rspec/bin/spec_translator +0 -0
  1455. data/vendor/plugins/rspec/examples/pure/behave_as_example.rb +0 -0
  1456. data/vendor/plugins/rspec/examples/pure/partial_mock_example.rb +1 -0
  1457. data/vendor/plugins/rspec/examples/stories/calculator.rb +1 -1
  1458. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/everything.rb +1 -1
  1459. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/CellsWithMoreThanThreeNeighboursDie.story +17 -17
  1460. data/vendor/plugins/rspec/lib/autotest/discover.rb +1 -1
  1461. data/vendor/plugins/rspec/lib/autotest/rspec.rb +7 -9
  1462. data/vendor/plugins/rspec/lib/spec.rb +10 -9
  1463. data/vendor/plugins/rspec/lib/spec/adapters.rb +1 -0
  1464. data/vendor/plugins/rspec/lib/spec/adapters/ruby_engine.rb +26 -0
  1465. data/vendor/plugins/rspec/lib/spec/adapters/ruby_engine/mri.rb +8 -0
  1466. data/vendor/plugins/rspec/lib/spec/adapters/ruby_engine/rubinius.rb +8 -0
  1467. data/vendor/plugins/rspec/lib/spec/example.rb +1 -1
  1468. data/vendor/plugins/rspec/lib/spec/example/configuration.rb +30 -16
  1469. data/vendor/plugins/rspec/lib/spec/example/example_group.rb +2 -1
  1470. data/vendor/plugins/rspec/lib/spec/example/example_group_factory.rb +23 -21
  1471. data/vendor/plugins/rspec/lib/spec/example/example_group_methods.rb +23 -7
  1472. data/vendor/plugins/rspec/lib/spec/example/example_matcher.rb +2 -0
  1473. data/vendor/plugins/rspec/lib/spec/example/example_methods.rb +6 -0
  1474. data/vendor/plugins/rspec/lib/spec/example/module_inclusion_warnings.rb +37 -0
  1475. data/vendor/plugins/rspec/lib/spec/expectations/differs/default.rb +1 -1
  1476. data/vendor/plugins/rspec/lib/spec/expectations/extensions/object.rb +4 -12
  1477. data/vendor/plugins/rspec/lib/spec/expectations/handler.rb +10 -0
  1478. data/vendor/plugins/rspec/lib/spec/extensions.rb +1 -0
  1479. data/vendor/plugins/rspec/lib/spec/extensions/metaclass.rb +7 -0
  1480. data/vendor/plugins/rspec/lib/spec/extensions/object.rb +0 -4
  1481. data/vendor/plugins/rspec/lib/spec/matchers/change.rb +14 -10
  1482. data/vendor/plugins/rspec/lib/spec/matchers/has.rb +1 -11
  1483. data/vendor/plugins/rspec/lib/spec/matchers/have.rb +5 -1
  1484. data/vendor/plugins/rspec/lib/spec/matchers/operator_matcher.rb +2 -2
  1485. data/vendor/plugins/rspec/lib/spec/matchers/raise_error.rb +53 -30
  1486. data/vendor/plugins/rspec/lib/spec/matchers/simple_matcher.rb +113 -10
  1487. data/vendor/plugins/rspec/lib/spec/mocks.rb +1 -1
  1488. data/vendor/plugins/rspec/lib/spec/mocks/argument_constraint_matchers.rb +5 -1
  1489. data/vendor/plugins/rspec/lib/spec/mocks/argument_expectation.rb +34 -1
  1490. data/vendor/plugins/rspec/lib/spec/mocks/extensions.rb +1 -0
  1491. data/vendor/plugins/rspec/lib/spec/mocks/framework.rb +15 -0
  1492. data/vendor/plugins/rspec/lib/spec/mocks/message_expectation.rb +30 -7
  1493. data/vendor/plugins/rspec/lib/spec/mocks/mock.rb +13 -7
  1494. data/vendor/plugins/rspec/lib/spec/mocks/proxy.rb +26 -12
  1495. data/vendor/plugins/rspec/lib/spec/rake/spectask.rb +18 -26
  1496. data/vendor/plugins/rspec/lib/spec/runner.rb +3 -4
  1497. data/vendor/plugins/rspec/lib/spec/runner/backtrace_tweaker.rb +1 -1
  1498. data/vendor/plugins/rspec/lib/spec/runner/drb_command_line.rb +1 -1
  1499. data/vendor/plugins/rspec/lib/spec/runner/formatter/base_formatter.rb +2 -3
  1500. data/vendor/plugins/rspec/lib/spec/runner/formatter/base_text_formatter.rb +2 -2
  1501. data/vendor/plugins/rspec/lib/spec/runner/formatter/failing_example_groups_formatter.rb +4 -8
  1502. data/vendor/plugins/rspec/lib/spec/runner/formatter/html_formatter.rb +18 -14
  1503. data/vendor/plugins/rspec/lib/spec/runner/formatter/nested_text_formatter.rb +65 -0
  1504. data/vendor/plugins/rspec/lib/spec/runner/formatter/profile_formatter.rb +4 -0
  1505. data/vendor/plugins/rspec/lib/spec/runner/formatter/progress_bar_formatter.rb +5 -1
  1506. data/vendor/plugins/rspec/lib/spec/runner/formatter/specdoc_formatter.rb +1 -1
  1507. data/vendor/plugins/rspec/lib/spec/runner/formatter/story/html_formatter.rb +48 -15
  1508. data/vendor/plugins/rspec/lib/spec/runner/formatter/story/plain_text_formatter.rb +69 -12
  1509. data/vendor/plugins/rspec/lib/spec/runner/option_parser.rb +17 -15
  1510. data/vendor/plugins/rspec/lib/spec/runner/options.rb +38 -15
  1511. data/vendor/plugins/rspec/lib/spec/runner/reporter.rb +15 -11
  1512. data/vendor/plugins/rspec/lib/spec/story/extensions/regexp.rb +2 -2
  1513. data/vendor/plugins/rspec/lib/spec/story/extensions/string.rb +2 -2
  1514. data/vendor/plugins/rspec/lib/spec/story/runner.rb +9 -5
  1515. data/vendor/plugins/rspec/lib/spec/story/runner/plain_text_story_runner.rb +2 -2
  1516. data/vendor/plugins/rspec/lib/spec/story/runner/scenario_runner.rb +8 -0
  1517. data/vendor/plugins/rspec/lib/spec/story/runner/story_mediator.rb +15 -1
  1518. data/vendor/plugins/rspec/lib/spec/story/runner/story_parser.rb +20 -0
  1519. data/vendor/plugins/rspec/lib/spec/story/runner/story_runner.rb +3 -1
  1520. data/vendor/plugins/rspec/lib/spec/story/step.rb +43 -31
  1521. data/vendor/plugins/rspec/lib/spec/story/story.rb +8 -11
  1522. data/vendor/plugins/rspec/lib/spec/story/world.rb +6 -3
  1523. data/vendor/plugins/rspec/lib/spec/version.rb +2 -2
  1524. data/vendor/plugins/rspec/plugins/mock_frameworks/rspec.rb +2 -0
  1525. data/vendor/plugins/rspec/spec/autotest/rspec_spec.rb +140 -129
  1526. data/vendor/plugins/rspec/spec/spec/adapters/ruby_engine_spec.rb +16 -0
  1527. data/vendor/plugins/rspec/spec/spec/example/configuration_spec.rb +0 -0
  1528. data/vendor/plugins/rspec/spec/spec/example/example_group/described_module_spec.rb +20 -0
  1529. data/vendor/plugins/rspec/spec/spec/example/example_group/warning_messages_spec.rb +76 -0
  1530. data/vendor/plugins/rspec/spec/spec/example/example_group_factory_spec.rb +117 -102
  1531. data/vendor/plugins/rspec/spec/spec/example/example_group_methods_spec.rb +102 -19
  1532. data/vendor/plugins/rspec/spec/spec/example/example_group_spec.rb +13 -1
  1533. data/vendor/plugins/rspec/spec/spec/example/example_methods_spec.rb +28 -6
  1534. data/vendor/plugins/rspec/spec/spec/example/nested_example_group_spec.rb +12 -0
  1535. data/vendor/plugins/rspec/spec/spec/example/pending_module_spec.rb +11 -0
  1536. data/vendor/plugins/rspec/spec/spec/example/predicate_matcher_spec.rb +0 -0
  1537. data/vendor/plugins/rspec/spec/spec/expectations/differs/default_spec.rb +27 -9
  1538. data/vendor/plugins/rspec/spec/spec/matchers/be_spec.rb +24 -0
  1539. data/vendor/plugins/rspec/spec/spec/matchers/change_spec.rb +4 -6
  1540. data/vendor/plugins/rspec/spec/spec/matchers/handler_spec.rb +58 -37
  1541. data/vendor/plugins/rspec/spec/spec/matchers/has_spec.rb +16 -0
  1542. data/vendor/plugins/rspec/spec/spec/matchers/have_spec.rb +7 -5
  1543. data/vendor/plugins/rspec/spec/spec/matchers/operator_matcher_spec.rb +11 -1
  1544. data/vendor/plugins/rspec/spec/spec/matchers/raise_error_spec.rb +124 -0
  1545. data/vendor/plugins/rspec/spec/spec/matchers/simple_matcher_spec.rb +64 -2
  1546. data/vendor/plugins/rspec/spec/spec/mocks/{bug_report_10263.rb → bug_report_10263_spec.rb} +0 -0
  1547. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_11545_spec.rb +2 -0
  1548. data/vendor/plugins/rspec/spec/spec/mocks/failing_mock_argument_constraints_spec.rb +15 -0
  1549. data/vendor/plugins/rspec/spec/spec/mocks/hash_including_matcher_spec.rb +32 -0
  1550. data/vendor/plugins/rspec/spec/spec/mocks/mock_spec.rb +62 -43
  1551. data/vendor/plugins/rspec/spec/spec/mocks/partial_mock_spec.rb +41 -5
  1552. data/vendor/plugins/rspec/spec/spec/mocks/passing_mock_argument_constraints_spec.rb +21 -0
  1553. data/vendor/plugins/rspec/spec/spec/runner/drb_command_line_spec.rb +1 -1
  1554. data/vendor/plugins/rspec/spec/spec/runner/execution_context_spec.rb +7 -1
  1555. data/vendor/plugins/rspec/spec/spec/runner/formatter/failing_example_groups_formatter_spec.rb +3 -2
  1556. data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.6.html +30 -25
  1557. data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatter_spec.rb +0 -3
  1558. data/vendor/plugins/rspec/spec/spec/runner/formatter/nested_text_formatter_spec.rb +333 -0
  1559. data/vendor/plugins/rspec/spec/spec/runner/formatter/progress_bar_formatter_spec.rb +12 -2
  1560. data/vendor/plugins/rspec/spec/spec/runner/formatter/spec_mate_formatter_spec.rb +2 -2
  1561. data/vendor/plugins/rspec/spec/spec/runner/formatter/specdoc_formatter_spec.rb +110 -78
  1562. data/vendor/plugins/rspec/spec/spec/runner/formatter/story/html_formatter_spec.rb +28 -2
  1563. data/vendor/plugins/rspec/spec/spec/runner/formatter/story/plain_text_formatter_spec.rb +214 -1
  1564. data/vendor/plugins/rspec/spec/spec/runner/formatter/text_mate_formatted-1.8.6.html +33 -28
  1565. data/vendor/plugins/rspec/spec/spec/runner/option_parser_spec.rb +65 -49
  1566. data/vendor/plugins/rspec/spec/spec/runner/options_spec.rb +103 -17
  1567. data/vendor/plugins/rspec/spec/spec/runner/reporter_spec.rb +10 -7
  1568. data/vendor/plugins/rspec/spec/spec/runner/spec_drb.opts +1 -0
  1569. data/vendor/plugins/rspec/spec/spec/runner/spec_parser_spec.rb +10 -4
  1570. data/vendor/plugins/rspec/spec/spec/story/runner/plain_text_story_runner_spec.rb +14 -13
  1571. data/vendor/plugins/rspec/spec/spec/story/runner/scenario_runner_spec.rb +124 -52
  1572. data/vendor/plugins/rspec/spec/spec/story/runner/story_mediator_spec.rb +12 -2
  1573. data/vendor/plugins/rspec/spec/spec/story/runner/story_parser_spec.rb +23 -6
  1574. data/vendor/plugins/rspec/spec/spec/story/runner/story_runner_spec.rb +40 -2
  1575. data/vendor/plugins/rspec/spec/spec/story/runner_spec.rb +59 -72
  1576. data/vendor/plugins/rspec/spec/spec/story/step_spec.rb +53 -3
  1577. data/vendor/plugins/rspec/spec/spec/story/story_spec.rb +2 -2
  1578. data/vendor/plugins/rspec/spec/spec/story/world_spec.rb +1 -1
  1579. data/vendor/plugins/rspec/stories/all.rb +1 -1
  1580. data/vendor/plugins/rspec/stories/mock_framework_integration/stories.rb +7 -0
  1581. data/vendor/plugins/rspec/stories/mock_framework_integration/use_flexmock.story +9 -0
  1582. data/vendor/plugins/rspec/stories/resources/spec/spec_with_flexmock.rb +18 -0
  1583. data/vendor/plugins/rspec/stories/stories/multiline_steps.story +23 -0
  1584. data/vendor/plugins/rspec/stories/stories/steps/multiline_steps.rb +13 -0
  1585. data/vendor/plugins/rspec/stories/stories/stories.rb +6 -0
  1586. data/vendor/plugins/state_machine/CHANGELOG.rdoc +97 -0
  1587. data/vendor/plugins/state_machine/LICENSE +20 -0
  1588. data/vendor/plugins/state_machine/README.rdoc +182 -0
  1589. data/vendor/plugins/state_machine/Rakefile +88 -0
  1590. data/vendor/plugins/state_machine/init.rb +1 -0
  1591. data/vendor/plugins/state_machine/lib/state_machine.rb +129 -0
  1592. data/vendor/plugins/state_machine/lib/state_machine/event.rb +116 -0
  1593. data/vendor/plugins/state_machine/lib/state_machine/machine.rb +412 -0
  1594. data/vendor/plugins/state_machine/lib/state_machine/transition.rb +227 -0
  1595. data/vendor/plugins/state_machine/test/app_root/app/models/auto_shop.rb +34 -0
  1596. data/vendor/plugins/state_machine/test/app_root/app/models/car.rb +19 -0
  1597. data/vendor/plugins/state_machine/test/app_root/app/models/highway.rb +3 -0
  1598. data/vendor/plugins/state_machine/test/app_root/app/models/motorcycle.rb +3 -0
  1599. data/vendor/plugins/state_machine/test/app_root/app/models/switch.rb +23 -0
  1600. data/vendor/plugins/state_machine/test/app_root/app/models/switch_observer.rb +20 -0
  1601. data/vendor/plugins/state_machine/test/app_root/app/models/toggle_switch.rb +2 -0
  1602. data/vendor/plugins/state_machine/test/app_root/app/models/vehicle.rb +78 -0
  1603. data/vendor/plugins/state_machine/test/app_root/config/environment.rb +7 -0
  1604. data/vendor/plugins/state_machine/test/app_root/db/migrate/001_create_switches.rb +12 -0
  1605. data/vendor/plugins/state_machine/test/app_root/db/migrate/002_create_auto_shops.rb +13 -0
  1606. data/vendor/plugins/state_machine/test/app_root/db/migrate/003_create_highways.rb +11 -0
  1607. data/vendor/plugins/state_machine/test/app_root/db/migrate/004_create_vehicles.rb +16 -0
  1608. data/vendor/plugins/state_machine/test/factory.rb +73 -0
  1609. data/vendor/plugins/state_machine/test/functional/state_machine_test.rb +499 -0
  1610. data/vendor/plugins/state_machine/test/test_helper.rb +13 -0
  1611. data/vendor/plugins/state_machine/test/unit/event_test.rb +235 -0
  1612. data/vendor/plugins/state_machine/test/unit/invalid_transition_test.rb +7 -0
  1613. data/vendor/plugins/state_machine/test/unit/machine_test.rb +306 -0
  1614. data/vendor/plugins/state_machine/test/unit/state_machine_test.rb +130 -0
  1615. data/vendor/plugins/state_machine/test/unit/transition_test.rb +633 -0
  1616. metadata +1607 -2266
  1617. data/app/controllers/admin/categories_controller.rb +0 -59
  1618. data/app/controllers/cart_controller.rb +0 -44
  1619. data/app/controllers/checkout_controller.rb +0 -173
  1620. data/app/controllers/store_controller.rb +0 -27
  1621. data/app/helpers/admin/categories_helper.rb +0 -3
  1622. data/app/helpers/cart_helper.rb +0 -6
  1623. data/app/helpers/checkout_helper.rb +0 -14
  1624. data/app/models/cart_item.rb +0 -29
  1625. data/app/models/category.rb +0 -22
  1626. data/app/models/credit_card.rb +0 -24
  1627. data/app/models/inventory_level.rb +0 -19
  1628. data/app/models/order_operation.rb +0 -7
  1629. data/app/models/payment.rb +0 -49
  1630. data/app/models/search_criteria.rb +0 -27
  1631. data/app/models/txn.rb +0 -7
  1632. data/app/views/account/index.rhtml +0 -3
  1633. data/app/views/account/login.rhtml +0 -12
  1634. data/app/views/account/signup.rhtml +0 -16
  1635. data/app/views/admin/categories/_form.rhtml +0 -10
  1636. data/app/views/admin/categories/edit.rhtml +0 -9
  1637. data/app/views/admin/categories/list.rhtml +0 -47
  1638. data/app/views/admin/categories/new.rhtml +0 -8
  1639. data/app/views/admin/option_types/_form.rhtml +0 -16
  1640. data/app/views/admin/option_types/_new_option_value.rhtml +0 -13
  1641. data/app/views/admin/option_types/_option_values.rhtml +0 -43
  1642. data/app/views/admin/option_types/edit.rhtml +0 -8
  1643. data/app/views/admin/option_types/index.rhtml +0 -23
  1644. data/app/views/admin/option_types/new.rhtml +0 -8
  1645. data/app/views/admin/option_types/select.rhtml +0 -28
  1646. data/app/views/admin/orders/index.rhtml +0 -99
  1647. data/app/views/admin/orders/show.rhtml +0 -72
  1648. data/app/views/admin/overview/index.rhtml +0 -3
  1649. data/app/views/admin/products/_form.rhtml +0 -59
  1650. data/app/views/admin/products/_menu.rhtml +0 -7
  1651. data/app/views/admin/products/_new_variant.rhtml +0 -11
  1652. data/app/views/admin/products/_variants.rhtml +0 -52
  1653. data/app/views/admin/products/edit.rhtml +0 -8
  1654. data/app/views/admin/products/index.rhtml +0 -63
  1655. data/app/views/admin/products/new.rhtml +0 -9
  1656. data/app/views/admin/reports/index.rhtml +0 -29
  1657. data/app/views/admin/reports/sales_total.rhtml +0 -28
  1658. data/app/views/cart/index.rhtml +0 -49
  1659. data/app/views/checkout/_address.rhtml +0 -51
  1660. data/app/views/checkout/_address_ro.rhtml +0 -18
  1661. data/app/views/checkout/_cart_item.rhtml +0 -5
  1662. data/app/views/checkout/_extra.rhtml +0 -1
  1663. data/app/views/checkout/addresses.rhtml +0 -51
  1664. data/app/views/checkout/cvv.rhtml +0 -15
  1665. data/app/views/checkout/empty_cart.rhtml +0 -4
  1666. data/app/views/checkout/final_confirmation.rhtml +0 -92
  1667. data/app/views/checkout/incomplete.rhtml +0 -7
  1668. data/app/views/checkout/thank_you.rhtml +0 -11
  1669. data/app/views/layouts/admin.rhtml +0 -71
  1670. data/app/views/layouts/application.rhtml +0 -64
  1671. data/app/views/layouts/products.rhtml +0 -19
  1672. data/app/views/order_mailer/cancel.rhtml +0 -15
  1673. data/app/views/order_mailer/confirm.rhtml +0 -18
  1674. data/app/views/shared/_images.html.erb +0 -43
  1675. data/app/views/shared/_order_details.rhtml +0 -35
  1676. data/app/views/shared/_paginate.rhtml +0 -34
  1677. data/app/views/shared/_report_criteria.rhtml +0 -32
  1678. data/app/views/shared/_store_menu.rhtml +0 -6
  1679. data/app/views/store/_products.rhtml +0 -10
  1680. data/app/views/store/_thumbnails.html.erb +0 -9
  1681. data/app/views/store/list.rhtml +0 -12
  1682. data/app/views/store/show.rhtml +0 -62
  1683. data/db/development_structure.sql +0 -294
  1684. data/db/sample/categories.yml +0 -35
  1685. data/db/sample/countries.yml +0 -3
  1686. data/db/sample/credit_cards.yml +0 -12
  1687. data/db/sample/txns.yml +0 -7
  1688. data/foozah/CHANGELOG +0 -47
  1689. data/foozah/CONTRIBUTORS +0 -27
  1690. data/foozah/INSTALL +0 -27
  1691. data/foozah/LICENSE +0 -26
  1692. data/foozah/README.markdown +0 -88
  1693. data/foozah/Rakefile +0 -3
  1694. data/foozah/config/boot.rb +0 -148
  1695. data/foozah/config/database.yml +0 -16
  1696. data/foozah/config/environment.rb +0 -106
  1697. data/foozah/config/environments/development.rb +0 -24
  1698. data/foozah/config/environments/production.rb +0 -21
  1699. data/foozah/config/routes.rb +0 -1
  1700. data/foozah/db/development.sqlite3.db +0 -0
  1701. data/foozah/public/404.html +0 -30
  1702. data/foozah/public/500.html +0 -30
  1703. data/foozah/public/dispatch.cgi +0 -10
  1704. data/foozah/public/dispatch.fcgi +0 -24
  1705. data/foozah/public/dispatch.rb +0 -10
  1706. data/foozah/public/images/amex_cid.gif +0 -0
  1707. data/foozah/public/images/calendar_date_select/calendar.gif +0 -0
  1708. data/foozah/public/images/creditcard.gif +0 -0
  1709. data/foozah/public/images/discover_cid.gif +0 -0
  1710. data/foozah/public/images/master_cid.jpg +0 -0
  1711. data/foozah/public/images/rails.png +0 -0
  1712. data/foozah/public/images/spinner.gif +0 -0
  1713. data/foozah/public/images/spree.jpg +0 -0
  1714. data/foozah/public/images/spree/progress.gif +0 -0
  1715. data/foozah/public/images/spree/spinner.gif +0 -0
  1716. data/foozah/public/images/spree/spree.jpg +0 -0
  1717. data/foozah/public/images/visa_cid.gif +0 -0
  1718. data/foozah/public/javascripts/application.js +0 -2
  1719. data/foozah/public/javascripts/calendar_date_select/calendar_date_select.js +0 -439
  1720. data/foozah/public/javascripts/calendar_date_select/format_american.js +0 -34
  1721. data/foozah/public/javascripts/calendar_date_select/format_euro_24hr.js +0 -7
  1722. data/foozah/public/javascripts/calendar_date_select/format_finnish.js +0 -24
  1723. data/foozah/public/javascripts/calendar_date_select/format_hyphen_ampm.js +0 -36
  1724. data/foozah/public/javascripts/calendar_date_select/format_italian.js +0 -24
  1725. data/foozah/public/javascripts/controls.js +0 -833
  1726. data/foozah/public/javascripts/dragdrop.js +0 -942
  1727. data/foozah/public/javascripts/effects.js +0 -1088
  1728. data/foozah/public/javascripts/prototype.js +0 -4184
  1729. data/foozah/public/plugin_assets/README +0 -5
  1730. data/foozah/public/plugin_assets/calendar_date_select/images/calendar_date_select/calendar.gif +0 -0
  1731. data/foozah/public/plugin_assets/calendar_date_select/javascripts/calendar_date_select/calendar_date_select.js +0 -439
  1732. data/foozah/public/plugin_assets/calendar_date_select/javascripts/calendar_date_select/format_american.js +0 -34
  1733. data/foozah/public/plugin_assets/calendar_date_select/javascripts/calendar_date_select/format_euro_24hr.js +0 -7
  1734. data/foozah/public/plugin_assets/calendar_date_select/javascripts/calendar_date_select/format_finnish.js +0 -24
  1735. data/foozah/public/plugin_assets/calendar_date_select/javascripts/calendar_date_select/format_hyphen_ampm.js +0 -36
  1736. data/foozah/public/plugin_assets/calendar_date_select/javascripts/calendar_date_select/format_italian.js +0 -24
  1737. data/foozah/public/plugin_assets/calendar_date_select/javascripts/calendar_date_select/locale/fi.js +0 -10
  1738. data/foozah/public/plugin_assets/calendar_date_select/stylesheets/calendar_date_select/blue.css +0 -130
  1739. data/foozah/public/plugin_assets/calendar_date_select/stylesheets/calendar_date_select/default.css +0 -135
  1740. data/foozah/public/plugin_assets/calendar_date_select/stylesheets/calendar_date_select/plain.css +0 -128
  1741. data/foozah/public/plugin_assets/calendar_date_select/stylesheets/calendar_date_select/red.css +0 -135
  1742. data/foozah/public/plugin_assets/calendar_date_select/stylesheets/calendar_date_select/silver.css +0 -133
  1743. data/foozah/public/plugin_assets/spree/404.html +0 -30
  1744. data/foozah/public/plugin_assets/spree/500.html +0 -30
  1745. data/foozah/public/plugin_assets/spree/dispatch.cgi +0 -10
  1746. data/foozah/public/plugin_assets/spree/dispatch.fcgi +0 -24
  1747. data/foozah/public/plugin_assets/spree/dispatch.rb +0 -10
  1748. data/foozah/public/plugin_assets/spree/favicon.ico +0 -0
  1749. data/foozah/public/plugin_assets/spree/images/amex_cid.gif +0 -0
  1750. data/foozah/public/plugin_assets/spree/images/creditcard.gif +0 -0
  1751. data/foozah/public/plugin_assets/spree/images/discover_cid.gif +0 -0
  1752. data/foozah/public/plugin_assets/spree/images/master_cid.jpg +0 -0
  1753. data/foozah/public/plugin_assets/spree/images/products/ror_bag.jpg +0 -0
  1754. data/foozah/public/plugin_assets/spree/images/products/ror_baseball_jersey.jpg +0 -0
  1755. data/foozah/public/plugin_assets/spree/images/products/ror_jr_spaghetti.jpg +0 -0
  1756. data/foozah/public/plugin_assets/spree/images/products/ror_mug.jpg +0 -0
  1757. data/foozah/public/plugin_assets/spree/images/products/ror_ringer_tshirt.jpg +0 -0
  1758. data/foozah/public/plugin_assets/spree/images/products/ror_stein.jpg +0 -0
  1759. data/foozah/public/plugin_assets/spree/images/products/ror_tote.jpg +0 -0
  1760. data/foozah/public/plugin_assets/spree/images/rails.png +0 -0
  1761. data/foozah/public/plugin_assets/spree/images/spinner.gif +0 -0
  1762. data/foozah/public/plugin_assets/spree/images/spree/progress.gif +0 -0
  1763. data/foozah/public/plugin_assets/spree/images/spree/spinner.gif +0 -0
  1764. data/foozah/public/plugin_assets/spree/images/spree/spree.jpg +0 -0
  1765. data/foozah/public/plugin_assets/spree/images/spree/spree_logo142x65.gif +0 -0
  1766. data/foozah/public/plugin_assets/spree/images/spree/spree_logo245x112.gif +0 -0
  1767. data/foozah/public/plugin_assets/spree/images/visa_cid.gif +0 -0
  1768. data/foozah/public/plugin_assets/spree/javascripts/application.js +0 -2
  1769. data/foozah/public/plugin_assets/spree/javascripts/controls.js +0 -833
  1770. data/foozah/public/plugin_assets/spree/javascripts/dragdrop.js +0 -942
  1771. data/foozah/public/plugin_assets/spree/javascripts/effects.js +0 -1088
  1772. data/foozah/public/plugin_assets/spree/javascripts/lowpro.js +0 -307
  1773. data/foozah/public/plugin_assets/spree/javascripts/prototype.js +0 -2515
  1774. data/foozah/public/plugin_assets/spree/robots.txt +0 -1
  1775. data/foozah/public/plugin_assets/spree/stylesheets/cart/_controller.css +0 -71
  1776. data/foozah/public/plugin_assets/spree/stylesheets/checkout/_controller.css +0 -31
  1777. data/foozah/public/plugin_assets/spree/stylesheets/fullscreen.css +0 -63
  1778. data/foozah/public/plugin_assets/spree/stylesheets/orders/_controller.css +0 -3
  1779. data/foozah/public/plugin_assets/spree/stylesheets/products/_controller.css +0 -38
  1780. data/foozah/public/plugin_assets/spree/stylesheets/spree-admin.css +0 -355
  1781. data/foozah/public/plugin_assets/spree/stylesheets/spree.css +0 -66
  1782. data/foozah/public/plugin_assets/spree/stylesheets/store/_controller.css +0 -23
  1783. data/foozah/public/robots.txt +0 -1
  1784. data/foozah/public/stylesheets/application.css +0 -4
  1785. data/foozah/public/stylesheets/calendar_date_select/blue.css +0 -130
  1786. data/foozah/public/stylesheets/calendar_date_select/default.css +0 -135
  1787. data/foozah/public/stylesheets/calendar_date_select/plain.css +0 -128
  1788. data/foozah/public/stylesheets/calendar_date_select/red.css +0 -135
  1789. data/foozah/public/stylesheets/calendar_date_select/silver.css +0 -133
  1790. data/foozah/public/stylesheets/cart/_controller.css +0 -71
  1791. data/foozah/public/stylesheets/checkout/_controller-override.css +0 -13
  1792. data/foozah/public/stylesheets/checkout/_controller.css +0 -31
  1793. data/foozah/public/stylesheets/fullscreen.css +0 -63
  1794. data/foozah/public/stylesheets/orders/_controller.css +0 -3
  1795. data/foozah/public/stylesheets/products/_controller.css +0 -38
  1796. data/foozah/public/stylesheets/spree-admin.css +0 -355
  1797. data/foozah/public/stylesheets/spree.css +0 -296
  1798. data/foozah/public/stylesheets/store/_controller.css +0 -23
  1799. data/foozah/script/about +0 -3
  1800. data/foozah/script/breakpointer +0 -3
  1801. data/foozah/script/generate +0 -16
  1802. data/foozah/script/performance/benchmarker +0 -3
  1803. data/foozah/script/performance/profiler +0 -3
  1804. data/foozah/script/process/inspector +0 -3
  1805. data/foozah/script/process/reaper +0 -3
  1806. data/foozah/script/process/spawner +0 -3
  1807. data/foozah/script/runner +0 -3
  1808. data/foozah/script/spec_server +0 -102
  1809. data/lib/easy_role_permissions.yml +0 -76
  1810. data/lib/generators/instance/templates/instance_boot.rb +0 -148
  1811. data/lib/generators/instance/templates/instance_environment.rb +0 -106
  1812. data/lib/spree/extension_migrator.rb +0 -47
  1813. data/login.patch +0 -55
  1814. data/public/plugin_assets/README +0 -5
  1815. data/public/plugin_assets/calendar_date_select/images/calendar_date_select/calendar.gif +0 -0
  1816. data/public/plugin_assets/calendar_date_select/javascripts/calendar_date_select/calendar_date_select.js +0 -439
  1817. data/public/plugin_assets/calendar_date_select/javascripts/calendar_date_select/format_american.js +0 -34
  1818. data/public/plugin_assets/calendar_date_select/javascripts/calendar_date_select/format_euro_24hr.js +0 -7
  1819. data/public/plugin_assets/calendar_date_select/javascripts/calendar_date_select/format_finnish.js +0 -24
  1820. data/public/plugin_assets/calendar_date_select/javascripts/calendar_date_select/format_hyphen_ampm.js +0 -36
  1821. data/public/plugin_assets/calendar_date_select/javascripts/calendar_date_select/format_italian.js +0 -24
  1822. data/public/plugin_assets/calendar_date_select/javascripts/calendar_date_select/locale/fi.js +0 -10
  1823. data/public/plugin_assets/calendar_date_select/stylesheets/calendar_date_select/blue.css +0 -130
  1824. data/public/plugin_assets/calendar_date_select/stylesheets/calendar_date_select/default.css +0 -135
  1825. data/public/plugin_assets/calendar_date_select/stylesheets/calendar_date_select/plain.css +0 -128
  1826. data/public/plugin_assets/calendar_date_select/stylesheets/calendar_date_select/red.css +0 -135
  1827. data/public/plugin_assets/calendar_date_select/stylesheets/calendar_date_select/silver.css +0 -133
  1828. data/public/plugin_assets/spree/404.html +0 -30
  1829. data/public/plugin_assets/spree/500.html +0 -30
  1830. data/public/plugin_assets/spree/dispatch.cgi +0 -10
  1831. data/public/plugin_assets/spree/dispatch.fcgi +0 -24
  1832. data/public/plugin_assets/spree/dispatch.rb +0 -10
  1833. data/public/plugin_assets/spree/favicon.ico +0 -0
  1834. data/public/plugin_assets/spree/images/amex_cid.gif +0 -0
  1835. data/public/plugin_assets/spree/images/creditcard.gif +0 -0
  1836. data/public/plugin_assets/spree/images/discover_cid.gif +0 -0
  1837. data/public/plugin_assets/spree/images/master_cid.jpg +0 -0
  1838. data/public/plugin_assets/spree/images/products/ror_bag.jpg +0 -0
  1839. data/public/plugin_assets/spree/images/products/ror_baseball_jersey.jpg +0 -0
  1840. data/public/plugin_assets/spree/images/products/ror_jr_spaghetti.jpg +0 -0
  1841. data/public/plugin_assets/spree/images/products/ror_mug.jpg +0 -0
  1842. data/public/plugin_assets/spree/images/products/ror_ringer_tshirt.jpg +0 -0
  1843. data/public/plugin_assets/spree/images/products/ror_stein.jpg +0 -0
  1844. data/public/plugin_assets/spree/images/products/ror_tote.jpg +0 -0
  1845. data/public/plugin_assets/spree/images/rails.png +0 -0
  1846. data/public/plugin_assets/spree/images/spinner.gif +0 -0
  1847. data/public/plugin_assets/spree/images/spree/progress.gif +0 -0
  1848. data/public/plugin_assets/spree/images/spree/spinner.gif +0 -0
  1849. data/public/plugin_assets/spree/images/spree/spree.jpg +0 -0
  1850. data/public/plugin_assets/spree/images/spree/spree_logo142x65.gif +0 -0
  1851. data/public/plugin_assets/spree/images/spree/spree_logo245x112.gif +0 -0
  1852. data/public/plugin_assets/spree/images/visa_cid.gif +0 -0
  1853. data/public/plugin_assets/spree/javascripts/application.js +0 -2
  1854. data/public/plugin_assets/spree/javascripts/controls.js +0 -833
  1855. data/public/plugin_assets/spree/javascripts/dragdrop.js +0 -942
  1856. data/public/plugin_assets/spree/javascripts/effects.js +0 -1088
  1857. data/public/plugin_assets/spree/javascripts/lowpro.js +0 -307
  1858. data/public/plugin_assets/spree/javascripts/prototype.js +0 -2515
  1859. data/public/plugin_assets/spree/robots.txt +0 -1
  1860. data/public/plugin_assets/spree/stylesheets/cart/_controller.css +0 -71
  1861. data/public/plugin_assets/spree/stylesheets/checkout/_controller.css +0 -31
  1862. data/public/plugin_assets/spree/stylesheets/fullscreen.css +0 -63
  1863. data/public/plugin_assets/spree/stylesheets/orders/_controller.css +0 -3
  1864. data/public/plugin_assets/spree/stylesheets/products/_controller.css +0 -38
  1865. data/public/plugin_assets/spree/stylesheets/spree-admin.css +0 -355
  1866. data/public/plugin_assets/spree/stylesheets/spree.css +0 -66
  1867. data/public/plugin_assets/spree/stylesheets/store/_controller.css +0 -23
  1868. data/public/stylesheets/cart/_controller.css +0 -71
  1869. data/public/stylesheets/checkout/_controller-override.css +0 -13
  1870. data/public/stylesheets/checkout/_controller.css +0 -31
  1871. data/public/stylesheets/products/_controller.css +0 -38
  1872. data/public/stylesheets/store/_controller.css +0 -23
  1873. data/spec/models/cart_item_spec.rb +0 -50
  1874. data/spec/models/cart_spec.rb +0 -51
  1875. data/spree.tmproj +0 -800
  1876. data/vendor/extensions/payment_gateway/spec/controllers/payment_gateway_spec.rb +0 -19
  1877. data/vendor/extensions/tax_calculator/app/views/admin/tax_rates/show.html.erb +0 -4
  1878. data/vendor/extensions/tax_calculator/db/migrate/001_create_tax_rates.rb +0 -13
  1879. data/vendor/extensions/tax_calculator/spec/fixtures/tax_rates.yml +0 -3
  1880. data/vendor/plugins/active_merchant/CHANGELOG +0 -345
  1881. data/vendor/plugins/active_merchant/CONTRIBUTERS +0 -69
  1882. data/vendor/plugins/active_merchant/MIT-LICENSE +0 -20
  1883. data/vendor/plugins/active_merchant/README +0 -127
  1884. data/vendor/plugins/active_merchant/Rakefile +0 -160
  1885. data/vendor/plugins/active_merchant/gem-public_cert.pem +0 -20
  1886. data/vendor/plugins/active_merchant/generators/gateway/USAGE +0 -5
  1887. data/vendor/plugins/active_merchant/generators/gateway/gateway_generator.rb +0 -61
  1888. data/vendor/plugins/active_merchant/generators/gateway/templates/gateway.rb +0 -77
  1889. data/vendor/plugins/active_merchant/generators/gateway/templates/gateway_test.rb +0 -49
  1890. data/vendor/plugins/active_merchant/generators/gateway/templates/remote_gateway_test.rb +0 -57
  1891. data/vendor/plugins/active_merchant/generators/integration/USAGE +0 -5
  1892. data/vendor/plugins/active_merchant/generators/integration/integration_generator.rb +0 -68
  1893. data/vendor/plugins/active_merchant/generators/integration/templates/helper.rb +0 -34
  1894. data/vendor/plugins/active_merchant/generators/integration/templates/helper_test.rb +0 -54
  1895. data/vendor/plugins/active_merchant/generators/integration/templates/integration.rb +0 -18
  1896. data/vendor/plugins/active_merchant/generators/integration/templates/module_test.rb +0 -9
  1897. data/vendor/plugins/active_merchant/generators/integration/templates/notification.rb +0 -100
  1898. data/vendor/plugins/active_merchant/generators/integration/templates/notification_test.rb +0 -41
  1899. data/vendor/plugins/active_merchant/init.rb +0 -3
  1900. data/vendor/plugins/active_merchant/lib/active_merchant.rb +0 -70
  1901. data/vendor/plugins/active_merchant/lib/active_merchant/billing/avs_result.rb +0 -95
  1902. data/vendor/plugins/active_merchant/lib/active_merchant/billing/base.rb +0 -57
  1903. data/vendor/plugins/active_merchant/lib/active_merchant/billing/check.rb +0 -61
  1904. data/vendor/plugins/active_merchant/lib/active_merchant/billing/credit_card.rb +0 -157
  1905. data/vendor/plugins/active_merchant/lib/active_merchant/billing/credit_card_formatting.rb +0 -21
  1906. data/vendor/plugins/active_merchant/lib/active_merchant/billing/credit_card_methods.rb +0 -125
  1907. data/vendor/plugins/active_merchant/lib/active_merchant/billing/cvv_result.rb +0 -38
  1908. data/vendor/plugins/active_merchant/lib/active_merchant/billing/expiry_date.rb +0 -28
  1909. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateway.rb +0 -162
  1910. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways.rb +0 -3
  1911. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/authorize_net.rb +0 -633
  1912. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/authorize_net_cim.rb +0 -697
  1913. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/bogus.rb +0 -86
  1914. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/braintree.rb +0 -205
  1915. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/card_stream.rb +0 -235
  1916. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/cyber_source.rb +0 -406
  1917. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/data_cash.rb +0 -595
  1918. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/efsnet.rb +0 -229
  1919. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/eway.rb +0 -272
  1920. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/exact.rb +0 -222
  1921. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/linkpoint.rb +0 -396
  1922. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/moneris.rb +0 -205
  1923. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/net_registry.rb +0 -189
  1924. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/netbilling.rb +0 -168
  1925. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/pay_junction.rb +0 -386
  1926. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/pay_secure.rb +0 -120
  1927. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/payflow.rb +0 -236
  1928. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +0 -213
  1929. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +0 -39
  1930. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +0 -13
  1931. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/payflow_express.rb +0 -138
  1932. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/payflow_express_nv.rb +0 -181
  1933. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/payflow_express_uk.rb +0 -15
  1934. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/payflow_nv.rb +0 -234
  1935. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/payflow_nv/payflow_express_nv_response.rb +0 -39
  1936. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/payflow_nv/payflow_nv_common_api.rb +0 -227
  1937. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/payflow_nv/payflow_nv_response.rb +0 -28
  1938. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/payflow_uk.rb +0 -21
  1939. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/payment_express.rb +0 -242
  1940. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/paypal.rb +0 -108
  1941. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +0 -314
  1942. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +0 -38
  1943. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/paypal_express.rb +0 -130
  1944. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/paypal_express_common.rb +0 -20
  1945. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/plugnpay.rb +0 -292
  1946. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/protx.rb +0 -284
  1947. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/psigate.rb +0 -214
  1948. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/psl_card.rb +0 -302
  1949. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/quickpay.rb +0 -183
  1950. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/realex.rb +0 -200
  1951. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/secure_pay.rb +0 -31
  1952. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/secure_pay_au.rb +0 -155
  1953. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/secure_pay_tech.rb +0 -113
  1954. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/skip_jack.rb +0 -437
  1955. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/trans_first.rb +0 -127
  1956. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/trust_commerce.rb +0 -414
  1957. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/usa_epay.rb +0 -194
  1958. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/verifi.rb +0 -228
  1959. data/vendor/plugins/active_merchant/lib/active_merchant/billing/gateways/viaklix.rb +0 -165
  1960. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations.rb +0 -15
  1961. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/action_view_helper.rb +0 -65
  1962. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/bogus.rb +0 -22
  1963. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/bogus/helper.rb +0 -17
  1964. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/bogus/notification.rb +0 -11
  1965. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/bogus/return.rb +0 -10
  1966. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/chronopay.rb +0 -22
  1967. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/chronopay/helper.rb +0 -81
  1968. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/chronopay/notification.rb +0 -156
  1969. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/chronopay/return.rb +0 -10
  1970. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/gestpay.rb +0 -26
  1971. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/gestpay/common.rb +0 -42
  1972. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/gestpay/helper.rb +0 -70
  1973. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/gestpay/notification.rb +0 -83
  1974. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/gestpay/return.rb +0 -10
  1975. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/helper.rb +0 -93
  1976. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/hi_trust.rb +0 -26
  1977. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/hi_trust/helper.rb +0 -58
  1978. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/hi_trust/notification.rb +0 -57
  1979. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/hi_trust/return.rb +0 -67
  1980. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/nochex.rb +0 -87
  1981. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/nochex/helper.rb +0 -68
  1982. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/nochex/notification.rb +0 -94
  1983. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/nochex/return.rb +0 -10
  1984. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/notification.rb +0 -53
  1985. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/paypal.rb +0 -40
  1986. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/paypal/helper.rb +0 -118
  1987. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/paypal/notification.rb +0 -154
  1988. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/paypal/return.rb +0 -10
  1989. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/return.rb +0 -35
  1990. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/two_checkout.rb +0 -23
  1991. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/two_checkout/helper.rb +0 -59
  1992. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/two_checkout/notification.rb +0 -114
  1993. data/vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/two_checkout/return.rb +0 -17
  1994. data/vendor/plugins/active_merchant/lib/active_merchant/billing/response.rb +0 -32
  1995. data/vendor/plugins/active_merchant/lib/active_merchant/lib/country.rb +0 -298
  1996. data/vendor/plugins/active_merchant/lib/active_merchant/lib/error.rb +0 -4
  1997. data/vendor/plugins/active_merchant/lib/active_merchant/lib/post_data.rb +0 -22
  1998. data/vendor/plugins/active_merchant/lib/active_merchant/lib/posts_data.rb +0 -80
  1999. data/vendor/plugins/active_merchant/lib/active_merchant/lib/requires_parameters.rb +0 -16
  2000. data/vendor/plugins/active_merchant/lib/active_merchant/lib/utils.rb +0 -18
  2001. data/vendor/plugins/active_merchant/lib/active_merchant/lib/validateable.rb +0 -76
  2002. data/vendor/plugins/active_merchant/lib/certs/cacert.pem +0 -7815
  2003. data/vendor/plugins/active_merchant/lib/support/gateway_support.rb +0 -58
  2004. data/vendor/plugins/active_merchant/lib/tasks/cia.rb +0 -90
  2005. data/vendor/plugins/active_merchant/script/destroy +0 -14
  2006. data/vendor/plugins/active_merchant/script/generate +0 -14
  2007. data/vendor/plugins/active_merchant/test/extra/binding_of_caller.rb +0 -80
  2008. data/vendor/plugins/active_merchant/test/extra/breakpoint.rb +0 -547
  2009. data/vendor/plugins/active_merchant/test/fixtures.yml +0 -277
  2010. data/vendor/plugins/active_merchant/test/remote/gateways/remote_authorize_net_cim_test.rb +0 -458
  2011. data/vendor/plugins/active_merchant/test/remote/gateways/remote_authorize_net_test.rb +0 -145
  2012. data/vendor/plugins/active_merchant/test/remote/gateways/remote_braintree_test.rb +0 -125
  2013. data/vendor/plugins/active_merchant/test/remote/gateways/remote_card_stream_test.rb +0 -148
  2014. data/vendor/plugins/active_merchant/test/remote/gateways/remote_cyber_source_test.rb +0 -144
  2015. data/vendor/plugins/active_merchant/test/remote/gateways/remote_data_cash_test.rb +0 -357
  2016. data/vendor/plugins/active_merchant/test/remote/gateways/remote_efsnet_test.rb +0 -81
  2017. data/vendor/plugins/active_merchant/test/remote/gateways/remote_eway_test.rb +0 -74
  2018. data/vendor/plugins/active_merchant/test/remote/gateways/remote_exact_test.rb +0 -60
  2019. data/vendor/plugins/active_merchant/test/remote/gateways/remote_linkpoint_test.rb +0 -112
  2020. data/vendor/plugins/active_merchant/test/remote/gateways/remote_moneris_test.rb +0 -82
  2021. data/vendor/plugins/active_merchant/test/remote/gateways/remote_net_registry_test.rb +0 -85
  2022. data/vendor/plugins/active_merchant/test/remote/gateways/remote_netbilling_test.rb +0 -70
  2023. data/vendor/plugins/active_merchant/test/remote/gateways/remote_pay_junction_test.rb +0 -143
  2024. data/vendor/plugins/active_merchant/test/remote/gateways/remote_pay_secure_test.rb +0 -39
  2025. data/vendor/plugins/active_merchant/test/remote/gateways/remote_payflow_express_nv_test.rb +0 -51
  2026. data/vendor/plugins/active_merchant/test/remote/gateways/remote_payflow_express_test.rb +0 -50
  2027. data/vendor/plugins/active_merchant/test/remote/gateways/remote_payflow_nv_test.rb +0 -237
  2028. data/vendor/plugins/active_merchant/test/remote/gateways/remote_payflow_test.rb +0 -237
  2029. data/vendor/plugins/active_merchant/test/remote/gateways/remote_payflow_uk_test.rb +0 -173
  2030. data/vendor/plugins/active_merchant/test/remote/gateways/remote_payment_express_test.rb +0 -126
  2031. data/vendor/plugins/active_merchant/test/remote/gateways/remote_paypal_express_test.rb +0 -49
  2032. data/vendor/plugins/active_merchant/test/remote/gateways/remote_paypal_test.rb +0 -167
  2033. data/vendor/plugins/active_merchant/test/remote/gateways/remote_plugnpay_test.rb +0 -72
  2034. data/vendor/plugins/active_merchant/test/remote/gateways/remote_protx_test.rb +0 -184
  2035. data/vendor/plugins/active_merchant/test/remote/gateways/remote_psigate_test.rb +0 -50
  2036. data/vendor/plugins/active_merchant/test/remote/gateways/remote_psl_card_test.rb +0 -106
  2037. data/vendor/plugins/active_merchant/test/remote/gateways/remote_quickpay_test.rb +0 -182
  2038. data/vendor/plugins/active_merchant/test/remote/gateways/remote_realex_test.rb +0 -224
  2039. data/vendor/plugins/active_merchant/test/remote/gateways/remote_secure_pay_au_test.rb +0 -40
  2040. data/vendor/plugins/active_merchant/test/remote/gateways/remote_secure_pay_tech_test.rb +0 -37
  2041. data/vendor/plugins/active_merchant/test/remote/gateways/remote_secure_pay_test.rb +0 -28
  2042. data/vendor/plugins/active_merchant/test/remote/gateways/remote_skipjack_test.rb +0 -105
  2043. data/vendor/plugins/active_merchant/test/remote/gateways/remote_trans_first_test.rb +0 -34
  2044. data/vendor/plugins/active_merchant/test/remote/gateways/remote_trust_commerce_test.rb +0 -152
  2045. data/vendor/plugins/active_merchant/test/remote/gateways/remote_usa_epay_test.rb +0 -46
  2046. data/vendor/plugins/active_merchant/test/remote/gateways/remote_verifi_test.rb +0 -107
  2047. data/vendor/plugins/active_merchant/test/remote/gateways/remote_viaklix_test.rb +0 -43
  2048. data/vendor/plugins/active_merchant/test/remote/integrations/remote_gestpay_integration_test.rb +0 -37
  2049. data/vendor/plugins/active_merchant/test/remote/integrations/remote_paypal_integration_test.rb +0 -14
  2050. data/vendor/plugins/active_merchant/test/test_helper.rb +0 -173
  2051. data/vendor/plugins/active_merchant/test/unit/avs_result_test.rb +0 -59
  2052. data/vendor/plugins/active_merchant/test/unit/base_test.rb +0 -55
  2053. data/vendor/plugins/active_merchant/test/unit/check_test.rb +0 -76
  2054. data/vendor/plugins/active_merchant/test/unit/country_code_test.rb +0 -33
  2055. data/vendor/plugins/active_merchant/test/unit/country_test.rb +0 -64
  2056. data/vendor/plugins/active_merchant/test/unit/credit_card_formatting_test.rb +0 -19
  2057. data/vendor/plugins/active_merchant/test/unit/credit_card_methods_test.rb +0 -170
  2058. data/vendor/plugins/active_merchant/test/unit/credit_card_test.rb +0 -311
  2059. data/vendor/plugins/active_merchant/test/unit/cvv_result_test.rb +0 -33
  2060. data/vendor/plugins/active_merchant/test/unit/expiry_date_test.rb +0 -21
  2061. data/vendor/plugins/active_merchant/test/unit/gateways/authorize_net_cim_test.rb +0 -640
  2062. data/vendor/plugins/active_merchant/test/unit/gateways/authorize_net_test.rb +0 -280
  2063. data/vendor/plugins/active_merchant/test/unit/gateways/bogus_test.rb +0 -42
  2064. data/vendor/plugins/active_merchant/test/unit/gateways/braintree_test.rb +0 -119
  2065. data/vendor/plugins/active_merchant/test/unit/gateways/card_stream_test.rb +0 -90
  2066. data/vendor/plugins/active_merchant/test/unit/gateways/cyber_source_test.rb +0 -188
  2067. data/vendor/plugins/active_merchant/test/unit/gateways/data_cash_test.rb +0 -132
  2068. data/vendor/plugins/active_merchant/test/unit/gateways/efsnet_test.rb +0 -123
  2069. data/vendor/plugins/active_merchant/test/unit/gateways/eway_test.rb +0 -118
  2070. data/vendor/plugins/active_merchant/test/unit/gateways/exact_test.rb +0 -156
  2071. data/vendor/plugins/active_merchant/test/unit/gateways/gateway_test.rb +0 -41
  2072. data/vendor/plugins/active_merchant/test/unit/gateways/linkpoint_test.rb +0 -167
  2073. data/vendor/plugins/active_merchant/test/unit/gateways/moneris_test.rb +0 -158
  2074. data/vendor/plugins/active_merchant/test/unit/gateways/net_registry_test.rb +0 -416
  2075. data/vendor/plugins/active_merchant/test/unit/gateways/netbilling_test.rb +0 -54
  2076. data/vendor/plugins/active_merchant/test/unit/gateways/pay_junction_test.rb +0 -123
  2077. data/vendor/plugins/active_merchant/test/unit/gateways/pay_secure_test.rb +0 -71
  2078. data/vendor/plugins/active_merchant/test/unit/gateways/payflow_express_nv_test.rb +0 -156
  2079. data/vendor/plugins/active_merchant/test/unit/gateways/payflow_express_test.rb +0 -173
  2080. data/vendor/plugins/active_merchant/test/unit/gateways/payflow_express_uk_test.rb +0 -14
  2081. data/vendor/plugins/active_merchant/test/unit/gateways/payflow_nv_test.rb +0 -237
  2082. data/vendor/plugins/active_merchant/test/unit/gateways/payflow_test.rb +0 -301
  2083. data/vendor/plugins/active_merchant/test/unit/gateways/payflow_uk_test.rb +0 -30
  2084. data/vendor/plugins/active_merchant/test/unit/gateways/payment_express_test.rb +0 -195
  2085. data/vendor/plugins/active_merchant/test/unit/gateways/paypal_express_test.rb +0 -333
  2086. data/vendor/plugins/active_merchant/test/unit/gateways/paypal_test.rb +0 -380
  2087. data/vendor/plugins/active_merchant/test/unit/gateways/plugnpay_test.rb +0 -86
  2088. data/vendor/plugins/active_merchant/test/unit/gateways/protx_test.rb +0 -122
  2089. data/vendor/plugins/active_merchant/test/unit/gateways/psigate_test.rb +0 -169
  2090. data/vendor/plugins/active_merchant/test/unit/gateways/psl_card_test.rb +0 -64
  2091. data/vendor/plugins/active_merchant/test/unit/gateways/quickpay_test.rb +0 -112
  2092. data/vendor/plugins/active_merchant/test/unit/gateways/realex_test.rb +0 -151
  2093. data/vendor/plugins/active_merchant/test/unit/gateways/secure_pay_au_test.rb +0 -150
  2094. data/vendor/plugins/active_merchant/test/unit/gateways/secure_pay_tech_test.rb +0 -44
  2095. data/vendor/plugins/active_merchant/test/unit/gateways/secure_pay_test.rb +0 -87
  2096. data/vendor/plugins/active_merchant/test/unit/gateways/skip_jack_test.rb +0 -125
  2097. data/vendor/plugins/active_merchant/test/unit/gateways/trans_first_test.rb +0 -112
  2098. data/vendor/plugins/active_merchant/test/unit/gateways/trust_commerce_test.rb +0 -78
  2099. data/vendor/plugins/active_merchant/test/unit/gateways/usa_epay_test.rb +0 -128
  2100. data/vendor/plugins/active_merchant/test/unit/gateways/verifi_test.rb +0 -96
  2101. data/vendor/plugins/active_merchant/test/unit/gateways/viaklix_test.rb +0 -78
  2102. data/vendor/plugins/active_merchant/test/unit/generators/test_gateway_generator.rb +0 -46
  2103. data/vendor/plugins/active_merchant/test/unit/generators/test_generator_helper.rb +0 -20
  2104. data/vendor/plugins/active_merchant/test/unit/generators/test_integration_generator.rb +0 -53
  2105. data/vendor/plugins/active_merchant/test/unit/integrations/action_view_helper_test.rb +0 -47
  2106. data/vendor/plugins/active_merchant/test/unit/integrations/bogus_module_test.rb +0 -20
  2107. data/vendor/plugins/active_merchant/test/unit/integrations/chronopay_module_test.rb +0 -13
  2108. data/vendor/plugins/active_merchant/test/unit/integrations/gestpay_module_test.rb +0 -14
  2109. data/vendor/plugins/active_merchant/test/unit/integrations/helpers/bogus_helper_test.rb +0 -28
  2110. data/vendor/plugins/active_merchant/test/unit/integrations/helpers/chronopay_helper_test.rb +0 -67
  2111. data/vendor/plugins/active_merchant/test/unit/integrations/helpers/gestpay_helper_test.rb +0 -100
  2112. data/vendor/plugins/active_merchant/test/unit/integrations/helpers/hi_trust_helper_test.rb +0 -16
  2113. data/vendor/plugins/active_merchant/test/unit/integrations/helpers/nochex_helper_test.rb +0 -53
  2114. data/vendor/plugins/active_merchant/test/unit/integrations/helpers/paypal_helper_test.rb +0 -162
  2115. data/vendor/plugins/active_merchant/test/unit/integrations/helpers/two_checkout_helper_test.rb +0 -92
  2116. data/vendor/plugins/active_merchant/test/unit/integrations/hi_trust_module_test.rb +0 -13
  2117. data/vendor/plugins/active_merchant/test/unit/integrations/nochex_module_test.rb +0 -13
  2118. data/vendor/plugins/active_merchant/test/unit/integrations/notifications/chronopay_notification_test.rb +0 -66
  2119. data/vendor/plugins/active_merchant/test/unit/integrations/notifications/gestpay_notification_test.rb +0 -60
  2120. data/vendor/plugins/active_merchant/test/unit/integrations/notifications/hi_trust_notification_test.rb +0 -38
  2121. data/vendor/plugins/active_merchant/test/unit/integrations/notifications/nochex_notification_test.rb +0 -51
  2122. data/vendor/plugins/active_merchant/test/unit/integrations/notifications/notification_test.rb +0 -41
  2123. data/vendor/plugins/active_merchant/test/unit/integrations/notifications/paypal_notification_test.rb +0 -85
  2124. data/vendor/plugins/active_merchant/test/unit/integrations/notifications/two_checkout_notification_test.rb +0 -55
  2125. data/vendor/plugins/active_merchant/test/unit/integrations/paypal_module_test.rb +0 -28
  2126. data/vendor/plugins/active_merchant/test/unit/integrations/returns/chronopay_return_test.rb +0 -11
  2127. data/vendor/plugins/active_merchant/test/unit/integrations/returns/gestpay_return_test.rb +0 -10
  2128. data/vendor/plugins/active_merchant/test/unit/integrations/returns/hi_trust_return_test.rb +0 -24
  2129. data/vendor/plugins/active_merchant/test/unit/integrations/returns/nochex_return_test.rb +0 -10
  2130. data/vendor/plugins/active_merchant/test/unit/integrations/returns/paypal_return_test.rb +0 -10
  2131. data/vendor/plugins/active_merchant/test/unit/integrations/returns/return_test.rb +0 -11
  2132. data/vendor/plugins/active_merchant/test/unit/integrations/returns/two_checkout_return_test.rb +0 -24
  2133. data/vendor/plugins/active_merchant/test/unit/integrations/two_checkout_module_test.rb +0 -13
  2134. data/vendor/plugins/active_merchant/test/unit/post_data_test.rb +0 -55
  2135. data/vendor/plugins/active_merchant/test/unit/posts_data_test.rb +0 -86
  2136. data/vendor/plugins/active_merchant/test/unit/response_test.rb +0 -28
  2137. data/vendor/plugins/active_merchant/test/unit/utils_test.rb +0 -7
  2138. data/vendor/plugins/active_merchant/test/unit/validateable_test.rb +0 -60
  2139. data/vendor/plugins/attachment_fu/test/amazon_s3.yml +0 -6
  2140. data/vendor/plugins/resource_controller/README +0 -276
  2141. data/vendor/plugins/resource_controller/release.rb +0 -24
  2142. data/vendor/plugins/rspec/UPGRADE +0 -31
  2143. data/vendor/plugins/rspec/autotest/discover.rb +0 -6
  2144. data/vendor/plugins/rspec/autotest/rspec.rb +0 -1
  2145. data/vendor/plugins/rspec/pre_commit/lib/pre_commit.rb +0 -4
  2146. data/vendor/plugins/rspec/pre_commit/lib/pre_commit/core.rb +0 -50
  2147. data/vendor/plugins/rspec/pre_commit/lib/pre_commit/pre_commit.rb +0 -54
  2148. data/vendor/plugins/rspec/pre_commit/lib/pre_commit/rspec.rb +0 -111
  2149. data/vendor/plugins/rspec/pre_commit/lib/pre_commit/rspec_on_rails.rb +0 -313
  2150. data/vendor/plugins/rspec/pre_commit/spec/pre_commit/pre_commit_spec.rb +0 -15
  2151. data/vendor/plugins/rspec/pre_commit/spec/pre_commit/rspec_on_rails_spec.rb +0 -36
  2152. data/vendor/plugins/rspec/pre_commit/spec/spec_helper.rb +0 -3
  2153. data/vendor/plugins/rspec/pre_commit/spec/spec_suite.rb +0 -11
  2154. data/vendor/plugins/rspec/report.html +0 -4358
  2155. data/vendor/plugins/rspec_on_rails/Rakefile +0 -9
  2156. data/vendor/plugins/rspec_on_rails/generators/rspec/templates/script/spec +0 -4
  2157. data/vendor/plugins/rspec_on_rails/generators/rspec/templates/script/spec_server +0 -102
  2158. data/vendor/plugins/rspec_on_rails/generators/rspec/templates/spec_helper.rb +0 -39
  2159. data/vendor/plugins/rspec_on_rails/generators/rspec_controller/templates/controller_spec.rb +0 -25
  2160. data/vendor/plugins/rspec_on_rails/generators/rspec_controller/templates/helper_spec.rb +0 -11
  2161. data/vendor/plugins/rspec_on_rails/generators/rspec_controller/templates/view_spec.rb +0 -12
  2162. data/vendor/plugins/rspec_on_rails/generators/rspec_model/templates/model_spec.rb +0 -11
  2163. data/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/rspec_scaffold_generator.rb +0 -167
  2164. data/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/templates/controller_spec.rb +0 -313
  2165. data/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/templates/edit_erb_spec.rb +0 -25
  2166. data/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/templates/helper_spec.rb +0 -11
  2167. data/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/templates/index_erb_spec.rb +0 -22
  2168. data/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/templates/new_erb_spec.rb +0 -26
  2169. data/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/templates/routing_spec.rb +0 -61
  2170. data/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/templates/show_erb_spec.rb +0 -22
  2171. data/vendor/plugins/rspec_on_rails/lib/autotest/rails_rspec.rb +0 -81
  2172. data/vendor/plugins/rspec_on_rails/lib/spec/rails.rb +0 -51
  2173. data/vendor/plugins/rspec_on_rails/lib/spec/rails/example.rb +0 -47
  2174. data/vendor/plugins/rspec_on_rails/lib/spec/rails/example/assigns_hash_proxy.rb +0 -42
  2175. data/vendor/plugins/rspec_on_rails/lib/spec/rails/example/controller_example_group.rb +0 -255
  2176. data/vendor/plugins/rspec_on_rails/lib/spec/rails/example/functional_example_group.rb +0 -66
  2177. data/vendor/plugins/rspec_on_rails/lib/spec/rails/example/helper_example_group.rb +0 -82
  2178. data/vendor/plugins/rspec_on_rails/lib/spec/rails/example/ivar_proxy.rb +0 -62
  2179. data/vendor/plugins/rspec_on_rails/lib/spec/rails/example/rails_example_group.rb +0 -68
  2180. data/vendor/plugins/rspec_on_rails/lib/spec/rails/example/render_observer.rb +0 -90
  2181. data/vendor/plugins/rspec_on_rails/lib/spec/rails/example/view_example_group.rb +0 -171
  2182. data/vendor/plugins/rspec_on_rails/lib/spec/rails/extensions/spec/example/configuration.rb +0 -66
  2183. data/vendor/plugins/rspec_on_rails/lib/spec/rails/matchers.rb +0 -29
  2184. data/vendor/plugins/rspec_on_rails/lib/spec/rails/matchers/have_text.rb +0 -55
  2185. data/vendor/plugins/rspec_on_rails/lib/spec/rails/matchers/redirect_to.rb +0 -113
  2186. data/vendor/plugins/rspec_on_rails/lib/spec/rails/version.rb +0 -23
  2187. data/vendor/plugins/rspec_on_rails/spec/rails/example/assigns_hash_proxy_spec.rb +0 -55
  2188. data/vendor/plugins/rspec_on_rails/spec/rails/example/controller_isolation_spec.rb +0 -43
  2189. data/vendor/plugins/rspec_on_rails/spec/rails/example/controller_spec_spec.rb +0 -187
  2190. data/vendor/plugins/rspec_on_rails/spec/rails/example/helper_spec_spec.rb +0 -118
  2191. data/vendor/plugins/rspec_on_rails/spec/rails/example/ivar_proxy_spec.rb +0 -64
  2192. data/vendor/plugins/rspec_on_rails/spec/rails/example/view_spec_spec.rb +0 -263
  2193. data/vendor/plugins/rspec_on_rails/spec/rails/matchers/assert_select_spec.rb +0 -783
  2194. data/vendor/plugins/rspec_on_rails/spec/rails/matchers/redirect_to_spec.rb +0 -203
  2195. data/vendor/plugins/rspec_on_rails/spec/rails/mocks/mock_model_spec.rb +0 -65
  2196. data/vendor/plugins/rspec_on_rails/spec/rails/sample_spec.rb +0 -7
  2197. data/vendor/plugins/rspec_on_rails/spec/rails/spec_server_spec.rb +0 -89
  2198. data/vendor/plugins/rspec_on_rails/spec_resources/controllers/controller_spec_controller.rb +0 -56
  2199. data/vendor/plugins/rspec_on_rails/spec_resources/helpers/explicit_helper.rb +0 -10
  2200. data/vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/accessor.rhtml +0 -3
  2201. data/vendor/plugins/rspec_on_rails/tasks/rspec.rake +0 -137
  2202. data/vendor/rails/TAG_rel_2-0-2 +0 -0
  2203. data/vendor/rails/actionmailer/CHANGELOG +0 -325
  2204. data/vendor/rails/actionmailer/MIT-LICENSE +0 -21
  2205. data/vendor/rails/actionmailer/README +0 -145
  2206. data/vendor/rails/actionmailer/Rakefile +0 -96
  2207. data/vendor/rails/actionmailer/install.rb +0 -30
  2208. data/vendor/rails/actionmailer/lib/action_mailer.rb +0 -52
  2209. data/vendor/rails/actionmailer/lib/action_mailer/adv_attr_accessor.rb +0 -30
  2210. data/vendor/rails/actionmailer/lib/action_mailer/base.rb +0 -603
  2211. data/vendor/rails/actionmailer/lib/action_mailer/helpers.rb +0 -111
  2212. data/vendor/rails/actionmailer/lib/action_mailer/mail_helper.rb +0 -19
  2213. data/vendor/rails/actionmailer/lib/action_mailer/part.rb +0 -110
  2214. data/vendor/rails/actionmailer/lib/action_mailer/part_container.rb +0 -51
  2215. data/vendor/rails/actionmailer/lib/action_mailer/quoting.rb +0 -59
  2216. data/vendor/rails/actionmailer/lib/action_mailer/test_case.rb +0 -59
  2217. data/vendor/rails/actionmailer/lib/action_mailer/test_helper.rb +0 -67
  2218. data/vendor/rails/actionmailer/lib/action_mailer/utils.rb +0 -8
  2219. data/vendor/rails/actionmailer/lib/action_mailer/vendor.rb +0 -14
  2220. data/vendor/rails/actionmailer/lib/action_mailer/vendor/text-format-0.6.3/text/format.rb +0 -1466
  2221. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail.rb +0 -4
  2222. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/Makefile +0 -19
  2223. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/address.rb +0 -245
  2224. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/attachments.rb +0 -47
  2225. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/base64.rb +0 -52
  2226. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/compat.rb +0 -39
  2227. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/config.rb +0 -71
  2228. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/core_extensions.rb +0 -67
  2229. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/encode.rb +0 -481
  2230. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/facade.rb +0 -552
  2231. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/header.rb +0 -931
  2232. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/info.rb +0 -35
  2233. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/interface.rb +0 -540
  2234. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/loader.rb +0 -1
  2235. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/mail.rb +0 -462
  2236. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/mailbox.rb +0 -435
  2237. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/mbox.rb +0 -1
  2238. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/net.rb +0 -282
  2239. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/obsolete.rb +0 -137
  2240. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/parser.rb +0 -1475
  2241. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/parser.y +0 -381
  2242. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/port.rb +0 -379
  2243. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/quoting.rb +0 -142
  2244. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/scanner.rb +0 -43
  2245. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/scanner_r.rb +0 -263
  2246. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/stringio.rb +0 -279
  2247. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/tmail.rb +0 -1
  2248. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/utils.rb +0 -281
  2249. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/version.rb +0 -38
  2250. data/vendor/rails/actionmailer/lib/action_mailer/version.rb +0 -9
  2251. data/vendor/rails/actionmailer/lib/actionmailer.rb +0 -1
  2252. data/vendor/rails/actionmailer/test/abstract_unit.rb +0 -49
  2253. data/vendor/rails/actionmailer/test/delivery_method_test.rb +0 -51
  2254. data/vendor/rails/actionmailer/test/fixtures/first_mailer/share.erb +0 -1
  2255. data/vendor/rails/actionmailer/test/fixtures/first_mailer/share.rhtml +0 -0
  2256. data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_example_helper.erb +0 -1
  2257. data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_example_helper.rhtml +0 -0
  2258. data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper.erb +0 -1
  2259. data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper.rhtml +0 -0
  2260. data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper_method.erb +0 -1
  2261. data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper_method.rhtml +0 -0
  2262. data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_mail_helper.erb +0 -5
  2263. data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_mail_helper.rhtml +0 -0
  2264. data/vendor/rails/actionmailer/test/fixtures/helpers/example_helper.rb +0 -5
  2265. data/vendor/rails/actionmailer/test/fixtures/path.with.dots/funky_path_mailer/multipart_with_template_path_with_dots.erb +0 -1
  2266. data/vendor/rails/actionmailer/test/fixtures/path.with.dots/funky_path_mailer/multipart_with_template_path_with_dots.rhtml +0 -0
  2267. data/vendor/rails/actionmailer/test/fixtures/path.with.dots/multipart_with_template_path_with_dots.rhtml +0 -0
  2268. data/vendor/rails/actionmailer/test/fixtures/raw_base64_decoded_string +0 -0
  2269. data/vendor/rails/actionmailer/test/fixtures/raw_base64_encoded_string +0 -1
  2270. data/vendor/rails/actionmailer/test/fixtures/raw_email +0 -14
  2271. data/vendor/rails/actionmailer/test/fixtures/raw_email10 +0 -20
  2272. data/vendor/rails/actionmailer/test/fixtures/raw_email12 +0 -32
  2273. data/vendor/rails/actionmailer/test/fixtures/raw_email13 +0 -29
  2274. data/vendor/rails/actionmailer/test/fixtures/raw_email2 +0 -114
  2275. data/vendor/rails/actionmailer/test/fixtures/raw_email3 +0 -70
  2276. data/vendor/rails/actionmailer/test/fixtures/raw_email4 +0 -59
  2277. data/vendor/rails/actionmailer/test/fixtures/raw_email5 +0 -19
  2278. data/vendor/rails/actionmailer/test/fixtures/raw_email6 +0 -20
  2279. data/vendor/rails/actionmailer/test/fixtures/raw_email7 +0 -66
  2280. data/vendor/rails/actionmailer/test/fixtures/raw_email8 +0 -47
  2281. data/vendor/rails/actionmailer/test/fixtures/raw_email9 +0 -28
  2282. data/vendor/rails/actionmailer/test/fixtures/raw_email_quoted_with_0d0a +0 -14
  2283. data/vendor/rails/actionmailer/test/fixtures/raw_email_with_invalid_characters_in_content_type +0 -104
  2284. data/vendor/rails/actionmailer/test/fixtures/raw_email_with_nested_attachment +0 -100
  2285. data/vendor/rails/actionmailer/test/fixtures/raw_email_with_partially_quoted_subject +0 -14
  2286. data/vendor/rails/actionmailer/test/fixtures/second_mailer/share.erb +0 -1
  2287. data/vendor/rails/actionmailer/test/fixtures/second_mailer/share.rhtml +0 -0
  2288. data/vendor/rails/actionmailer/test/fixtures/templates/signed_up.erb +0 -3
  2289. data/vendor/rails/actionmailer/test/fixtures/templates/signed_up.rhtml +0 -0
  2290. data/vendor/rails/actionmailer/test/fixtures/test_mailer/_subtemplate.text.plain.erb +0 -1
  2291. data/vendor/rails/actionmailer/test/fixtures/test_mailer/custom_templating_extension.text.html.haml +0 -6
  2292. data/vendor/rails/actionmailer/test/fixtures/test_mailer/custom_templating_extension.text.plain.haml +0 -6
  2293. data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.ignored.erb +0 -1
  2294. data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.ignored.rhtml +0 -0
  2295. data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.html.erb +0 -10
  2296. data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.html.rhtml +0 -0
  2297. data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.plain.erb +0 -2
  2298. data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.plain.rhtml +0 -0
  2299. data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.yaml.erb +0 -1
  2300. data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.yaml.rhtml +0 -0
  2301. data/vendor/rails/actionmailer/test/fixtures/test_mailer/included_subtemplate.text.plain.erb +0 -1
  2302. data/vendor/rails/actionmailer/test/fixtures/test_mailer/rxml_template.builder +0 -2
  2303. data/vendor/rails/actionmailer/test/fixtures/test_mailer/rxml_template.rxml +0 -2
  2304. data/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up.erb +0 -3
  2305. data/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up.rhtml +0 -0
  2306. data/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up_with_url.erb +0 -5
  2307. data/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up_with_url.rhtml +0 -0
  2308. data/vendor/rails/actionmailer/test/mail_helper_test.rb +0 -95
  2309. data/vendor/rails/actionmailer/test/mail_render_test.rb +0 -122
  2310. data/vendor/rails/actionmailer/test/mail_service_test.rb +0 -939
  2311. data/vendor/rails/actionmailer/test/quoting_test.rb +0 -111
  2312. data/vendor/rails/actionmailer/test/test_helper_test.rb +0 -117
  2313. data/vendor/rails/actionmailer/test/tmail_test.rb +0 -22
  2314. data/vendor/rails/actionmailer/test/url_test.rb +0 -76
  2315. data/vendor/rails/actionpack/CHANGELOG +0 -4606
  2316. data/vendor/rails/actionpack/MIT-LICENSE +0 -21
  2317. data/vendor/rails/actionpack/README +0 -469
  2318. data/vendor/rails/actionpack/RUNNING_UNIT_TESTS +0 -24
  2319. data/vendor/rails/actionpack/Rakefile +0 -153
  2320. data/vendor/rails/actionpack/install.rb +0 -30
  2321. data/vendor/rails/actionpack/lib/action_controller.rb +0 -79
  2322. data/vendor/rails/actionpack/lib/action_controller/assertions.rb +0 -69
  2323. data/vendor/rails/actionpack/lib/action_controller/assertions/dom_assertions.rb +0 -39
  2324. data/vendor/rails/actionpack/lib/action_controller/assertions/model_assertions.rb +0 -19
  2325. data/vendor/rails/actionpack/lib/action_controller/assertions/response_assertions.rb +0 -166
  2326. data/vendor/rails/actionpack/lib/action_controller/assertions/routing_assertions.rb +0 -143
  2327. data/vendor/rails/actionpack/lib/action_controller/assertions/selector_assertions.rb +0 -640
  2328. data/vendor/rails/actionpack/lib/action_controller/assertions/tag_assertions.rb +0 -130
  2329. data/vendor/rails/actionpack/lib/action_controller/base.rb +0 -1295
  2330. data/vendor/rails/actionpack/lib/action_controller/benchmarking.rb +0 -94
  2331. data/vendor/rails/actionpack/lib/action_controller/caching.rb +0 -683
  2332. data/vendor/rails/actionpack/lib/action_controller/cgi_ext.rb +0 -16
  2333. data/vendor/rails/actionpack/lib/action_controller/cgi_ext/cookie.rb +0 -106
  2334. data/vendor/rails/actionpack/lib/action_controller/cgi_ext/query_extension.rb +0 -22
  2335. data/vendor/rails/actionpack/lib/action_controller/cgi_ext/session.rb +0 -73
  2336. data/vendor/rails/actionpack/lib/action_controller/cgi_ext/stdinput.rb +0 -23
  2337. data/vendor/rails/actionpack/lib/action_controller/cgi_process.rb +0 -221
  2338. data/vendor/rails/actionpack/lib/action_controller/components.rb +0 -165
  2339. data/vendor/rails/actionpack/lib/action_controller/cookies.rb +0 -84
  2340. data/vendor/rails/actionpack/lib/action_controller/dispatcher.rb +0 -195
  2341. data/vendor/rails/actionpack/lib/action_controller/filters.rb +0 -767
  2342. data/vendor/rails/actionpack/lib/action_controller/flash.rb +0 -177
  2343. data/vendor/rails/actionpack/lib/action_controller/helpers.rb +0 -204
  2344. data/vendor/rails/actionpack/lib/action_controller/http_authentication.rb +0 -126
  2345. data/vendor/rails/actionpack/lib/action_controller/integration.rb +0 -581
  2346. data/vendor/rails/actionpack/lib/action_controller/layout.rb +0 -326
  2347. data/vendor/rails/actionpack/lib/action_controller/mime_responds.rb +0 -170
  2348. data/vendor/rails/actionpack/lib/action_controller/mime_type.rb +0 -163
  2349. data/vendor/rails/actionpack/lib/action_controller/mime_types.rb +0 -20
  2350. data/vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb +0 -88
  2351. data/vendor/rails/actionpack/lib/action_controller/record_identifier.rb +0 -91
  2352. data/vendor/rails/actionpack/lib/action_controller/request.rb +0 -730
  2353. data/vendor/rails/actionpack/lib/action_controller/request_forgery_protection.rb +0 -132
  2354. data/vendor/rails/actionpack/lib/action_controller/request_profiler.rb +0 -138
  2355. data/vendor/rails/actionpack/lib/action_controller/rescue.rb +0 -258
  2356. data/vendor/rails/actionpack/lib/action_controller/resources.rb +0 -529
  2357. data/vendor/rails/actionpack/lib/action_controller/response.rb +0 -76
  2358. data/vendor/rails/actionpack/lib/action_controller/routing.rb +0 -1499
  2359. data/vendor/rails/actionpack/lib/action_controller/routing_optimisation.rb +0 -119
  2360. data/vendor/rails/actionpack/lib/action_controller/session/active_record_store.rb +0 -336
  2361. data/vendor/rails/actionpack/lib/action_controller/session/cookie_store.rb +0 -164
  2362. data/vendor/rails/actionpack/lib/action_controller/session/drb_server.rb +0 -32
  2363. data/vendor/rails/actionpack/lib/action_controller/session/drb_store.rb +0 -35
  2364. data/vendor/rails/actionpack/lib/action_controller/session/mem_cache_store.rb +0 -98
  2365. data/vendor/rails/actionpack/lib/action_controller/session_management.rb +0 -151
  2366. data/vendor/rails/actionpack/lib/action_controller/status_codes.rb +0 -88
  2367. data/vendor/rails/actionpack/lib/action_controller/streaming.rb +0 -141
  2368. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/_request_and_response.erb +0 -24
  2369. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/_trace.erb +0 -26
  2370. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/diagnostics.erb +0 -11
  2371. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb +0 -29
  2372. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/missing_template.erb +0 -2
  2373. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/routing_error.erb +0 -10
  2374. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/template_error.erb +0 -21
  2375. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/unknown_action.erb +0 -2
  2376. data/vendor/rails/actionpack/lib/action_controller/test_case.rb +0 -53
  2377. data/vendor/rails/actionpack/lib/action_controller/test_process.rb +0 -520
  2378. data/vendor/rails/actionpack/lib/action_controller/url_rewriter.rb +0 -135
  2379. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/document.rb +0 -68
  2380. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/node.rb +0 -530
  2381. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/sanitizer.rb +0 -173
  2382. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/selector.rb +0 -828
  2383. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/tokenizer.rb +0 -105
  2384. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/version.rb +0 -11
  2385. data/vendor/rails/actionpack/lib/action_controller/verification.rb +0 -114
  2386. data/vendor/rails/actionpack/lib/action_pack.rb +0 -24
  2387. data/vendor/rails/actionpack/lib/action_pack/version.rb +0 -9
  2388. data/vendor/rails/actionpack/lib/action_view.rb +0 -37
  2389. data/vendor/rails/actionpack/lib/action_view/base.rb +0 -642
  2390. data/vendor/rails/actionpack/lib/action_view/compiled_templates.rb +0 -69
  2391. data/vendor/rails/actionpack/lib/action_view/helpers/active_record_helper.rb +0 -255
  2392. data/vendor/rails/actionpack/lib/action_view/helpers/asset_tag_helper.rb +0 -548
  2393. data/vendor/rails/actionpack/lib/action_view/helpers/atom_feed_helper.rb +0 -111
  2394. data/vendor/rails/actionpack/lib/action_view/helpers/benchmark_helper.rb +0 -31
  2395. data/vendor/rails/actionpack/lib/action_view/helpers/cache_helper.rb +0 -39
  2396. data/vendor/rails/actionpack/lib/action_view/helpers/capture_helper.rb +0 -162
  2397. data/vendor/rails/actionpack/lib/action_view/helpers/date_helper.rb +0 -689
  2398. data/vendor/rails/actionpack/lib/action_view/helpers/debug_helper.rb +0 -31
  2399. data/vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb +0 -689
  2400. data/vendor/rails/actionpack/lib/action_view/helpers/form_options_helper.rb +0 -425
  2401. data/vendor/rails/actionpack/lib/action_view/helpers/form_tag_helper.rb +0 -432
  2402. data/vendor/rails/actionpack/lib/action_view/helpers/javascript_helper.rb +0 -217
  2403. data/vendor/rails/actionpack/lib/action_view/helpers/javascripts/controls.js +0 -963
  2404. data/vendor/rails/actionpack/lib/action_view/helpers/javascripts/dragdrop.js +0 -972
  2405. data/vendor/rails/actionpack/lib/action_view/helpers/javascripts/effects.js +0 -1120
  2406. data/vendor/rails/actionpack/lib/action_view/helpers/javascripts/prototype.js +0 -4225
  2407. data/vendor/rails/actionpack/lib/action_view/helpers/number_helper.rb +0 -179
  2408. data/vendor/rails/actionpack/lib/action_view/helpers/prototype_helper.rb +0 -1268
  2409. data/vendor/rails/actionpack/lib/action_view/helpers/record_identification_helper.rb +0 -20
  2410. data/vendor/rails/actionpack/lib/action_view/helpers/record_tag_helper.rb +0 -59
  2411. data/vendor/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb +0 -223
  2412. data/vendor/rails/actionpack/lib/action_view/helpers/scriptaculous_helper.rb +0 -199
  2413. data/vendor/rails/actionpack/lib/action_view/helpers/tag_helper.rb +0 -133
  2414. data/vendor/rails/actionpack/lib/action_view/helpers/text_helper.rb +0 -479
  2415. data/vendor/rails/actionpack/lib/action_view/helpers/url_helper.rb +0 -524
  2416. data/vendor/rails/actionpack/lib/action_view/partials.rb +0 -200
  2417. data/vendor/rails/actionpack/lib/action_view/template_error.rb +0 -102
  2418. data/vendor/rails/actionpack/lib/action_view/template_handler.rb +0 -17
  2419. data/vendor/rails/actionpack/lib/action_view/template_handlers/builder.rb +0 -19
  2420. data/vendor/rails/actionpack/lib/action_view/template_handlers/erb.rb +0 -21
  2421. data/vendor/rails/actionpack/lib/action_view/template_handlers/rjs.rb +0 -14
  2422. data/vendor/rails/actionpack/lib/actionpack.rb +0 -1
  2423. data/vendor/rails/actionpack/test/abstract_unit.rb +0 -36
  2424. data/vendor/rails/actionpack/test/action_view_test.rb +0 -44
  2425. data/vendor/rails/actionpack/test/active_record_unit.rb +0 -108
  2426. data/vendor/rails/actionpack/test/activerecord/active_record_store_test.rb +0 -142
  2427. data/vendor/rails/actionpack/test/activerecord/render_partial_with_record_identification_test.rb +0 -74
  2428. data/vendor/rails/actionpack/test/controller/action_pack_assertions_test.rb +0 -492
  2429. data/vendor/rails/actionpack/test/controller/addresses_render_test.rb +0 -43
  2430. data/vendor/rails/actionpack/test/controller/assert_select_test.rb +0 -682
  2431. data/vendor/rails/actionpack/test/controller/base_test.rb +0 -134
  2432. data/vendor/rails/actionpack/test/controller/benchmark_test.rb +0 -33
  2433. data/vendor/rails/actionpack/test/controller/caching_test.rb +0 -349
  2434. data/vendor/rails/actionpack/test/controller/capture_test.rb +0 -89
  2435. data/vendor/rails/actionpack/test/controller/cgi_test.rb +0 -115
  2436. data/vendor/rails/actionpack/test/controller/components_test.rb +0 -140
  2437. data/vendor/rails/actionpack/test/controller/content_type_test.rb +0 -139
  2438. data/vendor/rails/actionpack/test/controller/controller_fixtures/app/controllers/admin/user_controller.rb +0 -0
  2439. data/vendor/rails/actionpack/test/controller/controller_fixtures/app/controllers/user_controller.rb +0 -0
  2440. data/vendor/rails/actionpack/test/controller/controller_fixtures/vendor/plugins/bad_plugin/lib/plugin_controller.rb +0 -0
  2441. data/vendor/rails/actionpack/test/controller/cookie_test.rb +0 -135
  2442. data/vendor/rails/actionpack/test/controller/custom_handler_test.rb +0 -41
  2443. data/vendor/rails/actionpack/test/controller/deprecation/deprecated_base_methods_test.rb +0 -37
  2444. data/vendor/rails/actionpack/test/controller/dispatcher_test.rb +0 -123
  2445. data/vendor/rails/actionpack/test/controller/fake_controllers.rb +0 -16
  2446. data/vendor/rails/actionpack/test/controller/fake_models.rb +0 -5
  2447. data/vendor/rails/actionpack/test/controller/filter_params_test.rb +0 -43
  2448. data/vendor/rails/actionpack/test/controller/filters_test.rb +0 -856
  2449. data/vendor/rails/actionpack/test/controller/flash_test.rb +0 -146
  2450. data/vendor/rails/actionpack/test/controller/fragment_store_setting_test.rb +0 -47
  2451. data/vendor/rails/actionpack/test/controller/helper_test.rb +0 -206
  2452. data/vendor/rails/actionpack/test/controller/html-scanner/document_test.rb +0 -124
  2453. data/vendor/rails/actionpack/test/controller/html-scanner/node_test.rb +0 -69
  2454. data/vendor/rails/actionpack/test/controller/html-scanner/sanitizer_test.rb +0 -250
  2455. data/vendor/rails/actionpack/test/controller/html-scanner/tag_node_test.rb +0 -239
  2456. data/vendor/rails/actionpack/test/controller/html-scanner/text_node_test.rb +0 -51
  2457. data/vendor/rails/actionpack/test/controller/html-scanner/tokenizer_test.rb +0 -125
  2458. data/vendor/rails/actionpack/test/controller/http_authentication_test.rb +0 -54
  2459. data/vendor/rails/actionpack/test/controller/integration_test.rb +0 -255
  2460. data/vendor/rails/actionpack/test/controller/layout_test.rb +0 -239
  2461. data/vendor/rails/actionpack/test/controller/mime_responds_test.rb +0 -506
  2462. data/vendor/rails/actionpack/test/controller/mime_type_test.rb +0 -55
  2463. data/vendor/rails/actionpack/test/controller/new_render_test.rb +0 -832
  2464. data/vendor/rails/actionpack/test/controller/polymorphic_routes_test.rb +0 -98
  2465. data/vendor/rails/actionpack/test/controller/record_identifier_test.rb +0 -103
  2466. data/vendor/rails/actionpack/test/controller/redirect_test.rb +0 -258
  2467. data/vendor/rails/actionpack/test/controller/render_test.rb +0 -464
  2468. data/vendor/rails/actionpack/test/controller/request_forgery_protection_test.rb +0 -217
  2469. data/vendor/rails/actionpack/test/controller/request_test.rb +0 -836
  2470. data/vendor/rails/actionpack/test/controller/rescue_test.rb +0 -501
  2471. data/vendor/rails/actionpack/test/controller/resources_test.rb +0 -787
  2472. data/vendor/rails/actionpack/test/controller/routing_test.rb +0 -2203
  2473. data/vendor/rails/actionpack/test/controller/selector_test.rb +0 -628
  2474. data/vendor/rails/actionpack/test/controller/send_file_test.rb +0 -127
  2475. data/vendor/rails/actionpack/test/controller/session/cookie_store_test.rb +0 -246
  2476. data/vendor/rails/actionpack/test/controller/session/mem_cache_store_test.rb +0 -182
  2477. data/vendor/rails/actionpack/test/controller/session_fixation_test.rb +0 -89
  2478. data/vendor/rails/actionpack/test/controller/session_management_test.rb +0 -156
  2479. data/vendor/rails/actionpack/test/controller/test_test.rb +0 -623
  2480. data/vendor/rails/actionpack/test/controller/url_rewriter_test.rb +0 -246
  2481. data/vendor/rails/actionpack/test/controller/verification_test.rb +0 -253
  2482. data/vendor/rails/actionpack/test/controller/view_paths_test.rb +0 -137
  2483. data/vendor/rails/actionpack/test/controller/webservice_test.rb +0 -184
  2484. data/vendor/rails/actionpack/test/fixtures/addresses/list.erb +0 -1
  2485. data/vendor/rails/actionpack/test/fixtures/companies.yml +0 -24
  2486. data/vendor/rails/actionpack/test/fixtures/company.rb +0 -9
  2487. data/vendor/rails/actionpack/test/fixtures/content_type/render_default_content_types_for_respond_to.rhtml +0 -1
  2488. data/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rhtml.rhtml +0 -1
  2489. data/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rjs.rjs +0 -1
  2490. data/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rxml.rxml +0 -1
  2491. data/vendor/rails/actionpack/test/fixtures/db_definitions/sqlite.sql +0 -43
  2492. data/vendor/rails/actionpack/test/fixtures/developer.rb +0 -9
  2493. data/vendor/rails/actionpack/test/fixtures/developers.yml +0 -21
  2494. data/vendor/rails/actionpack/test/fixtures/developers_projects.yml +0 -13
  2495. data/vendor/rails/actionpack/test/fixtures/fun/games/hello_world.erb +0 -1
  2496. data/vendor/rails/actionpack/test/fixtures/helpers/abc_helper.rb +0 -5
  2497. data/vendor/rails/actionpack/test/fixtures/helpers/fun/games_helper.rb +0 -3
  2498. data/vendor/rails/actionpack/test/fixtures/helpers/fun/pdf_helper.rb +0 -3
  2499. data/vendor/rails/actionpack/test/fixtures/layout_tests/alt/hello.rhtml +0 -1
  2500. data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/controller_name_space/nested.rhtml +0 -1
  2501. data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/item.rhtml +0 -1
  2502. data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/layout_test.rhtml +0 -1
  2503. data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/multiple_extensions.html.erb +0 -1
  2504. data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/third_party_template_library.mab +0 -1
  2505. data/vendor/rails/actionpack/test/fixtures/layout_tests/views/hello.rhtml +0 -1
  2506. data/vendor/rails/actionpack/test/fixtures/layouts/builder.builder +0 -3
  2507. data/vendor/rails/actionpack/test/fixtures/layouts/standard.erb +0 -1
  2508. data/vendor/rails/actionpack/test/fixtures/layouts/talk_from_action.erb +0 -2
  2509. data/vendor/rails/actionpack/test/fixtures/layouts/yield.erb +0 -2
  2510. data/vendor/rails/actionpack/test/fixtures/multipart/binary_file +0 -0
  2511. data/vendor/rails/actionpack/test/fixtures/multipart/bracketed_param +0 -5
  2512. data/vendor/rails/actionpack/test/fixtures/multipart/large_text_file +0 -10
  2513. data/vendor/rails/actionpack/test/fixtures/multipart/mixed_files +0 -0
  2514. data/vendor/rails/actionpack/test/fixtures/multipart/mona_lisa.jpg +0 -0
  2515. data/vendor/rails/actionpack/test/fixtures/multipart/single_parameter +0 -5
  2516. data/vendor/rails/actionpack/test/fixtures/multipart/text_file +0 -10
  2517. data/vendor/rails/actionpack/test/fixtures/override/test/hello_world.erb +0 -1
  2518. data/vendor/rails/actionpack/test/fixtures/override2/layouts/test/sub.erb +0 -1
  2519. data/vendor/rails/actionpack/test/fixtures/post_test/layouts/post.html.erb +0 -1
  2520. data/vendor/rails/actionpack/test/fixtures/post_test/layouts/super_post.iphone.erb +0 -1
  2521. data/vendor/rails/actionpack/test/fixtures/post_test/post/index.html.erb +0 -1
  2522. data/vendor/rails/actionpack/test/fixtures/post_test/post/index.iphone.erb +0 -1
  2523. data/vendor/rails/actionpack/test/fixtures/post_test/super_post/index.html.erb +0 -1
  2524. data/vendor/rails/actionpack/test/fixtures/post_test/super_post/index.iphone.erb +0 -1
  2525. data/vendor/rails/actionpack/test/fixtures/project.rb +0 -3
  2526. data/vendor/rails/actionpack/test/fixtures/projects.yml +0 -7
  2527. data/vendor/rails/actionpack/test/fixtures/public/404.html +0 -1
  2528. data/vendor/rails/actionpack/test/fixtures/public/500.html +0 -1
  2529. data/vendor/rails/actionpack/test/fixtures/public/images/rails.png +0 -0
  2530. data/vendor/rails/actionpack/test/fixtures/public/javascripts/application.js +0 -0
  2531. data/vendor/rails/actionpack/test/fixtures/public/javascripts/bank.js +0 -1
  2532. data/vendor/rails/actionpack/test/fixtures/public/javascripts/robber.js +0 -1
  2533. data/vendor/rails/actionpack/test/fixtures/public/stylesheets/bank.css +0 -1
  2534. data/vendor/rails/actionpack/test/fixtures/public/stylesheets/robber.css +0 -1
  2535. data/vendor/rails/actionpack/test/fixtures/replies.yml +0 -15
  2536. data/vendor/rails/actionpack/test/fixtures/reply.rb +0 -6
  2537. data/vendor/rails/actionpack/test/fixtures/respond_to/all_types_with_layout.html.erb +0 -1
  2538. data/vendor/rails/actionpack/test/fixtures/respond_to/all_types_with_layout.js.rjs +0 -1
  2539. data/vendor/rails/actionpack/test/fixtures/respond_to/custom_constant_handling_without_block.mobile.erb +0 -1
  2540. data/vendor/rails/actionpack/test/fixtures/respond_to/iphone_with_html_response_type.html.erb +0 -1
  2541. data/vendor/rails/actionpack/test/fixtures/respond_to/iphone_with_html_response_type.iphone.erb +0 -1
  2542. data/vendor/rails/actionpack/test/fixtures/respond_to/layouts/missing.html.erb +0 -1
  2543. data/vendor/rails/actionpack/test/fixtures/respond_to/layouts/standard.html.erb +0 -1
  2544. data/vendor/rails/actionpack/test/fixtures/respond_to/layouts/standard.iphone.erb +0 -1
  2545. data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.html.erb +0 -1
  2546. data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.js.rjs +0 -1
  2547. data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.xml.builder +0 -1
  2548. data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.html.erb +0 -1
  2549. data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.js.rjs +0 -1
  2550. data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.xml.builder +0 -1
  2551. data/vendor/rails/actionpack/test/fixtures/scope/test/modgreet.erb +0 -1
  2552. data/vendor/rails/actionpack/test/fixtures/test/_customer.erb +0 -1
  2553. data/vendor/rails/actionpack/test/fixtures/test/_customer_greeting.erb +0 -1
  2554. data/vendor/rails/actionpack/test/fixtures/test/_hash_greeting.erb +0 -1
  2555. data/vendor/rails/actionpack/test/fixtures/test/_hash_object.erb +0 -2
  2556. data/vendor/rails/actionpack/test/fixtures/test/_hello.builder +0 -1
  2557. data/vendor/rails/actionpack/test/fixtures/test/_layout_for_partial.html.erb +0 -3
  2558. data/vendor/rails/actionpack/test/fixtures/test/_partial.erb +0 -1
  2559. data/vendor/rails/actionpack/test/fixtures/test/_partial.html.erb +0 -1
  2560. data/vendor/rails/actionpack/test/fixtures/test/_partial.js.erb +0 -1
  2561. data/vendor/rails/actionpack/test/fixtures/test/_partial_for_use_in_layout.html.erb +0 -1
  2562. data/vendor/rails/actionpack/test/fixtures/test/_partial_only.erb +0 -1
  2563. data/vendor/rails/actionpack/test/fixtures/test/_person.erb +0 -2
  2564. data/vendor/rails/actionpack/test/fixtures/test/action_talk_to_layout.erb +0 -2
  2565. data/vendor/rails/actionpack/test/fixtures/test/block_content_for.erb +0 -2
  2566. data/vendor/rails/actionpack/test/fixtures/test/calling_partial_with_layout.html.erb +0 -1
  2567. data/vendor/rails/actionpack/test/fixtures/test/capturing.erb +0 -4
  2568. data/vendor/rails/actionpack/test/fixtures/test/content_for.erb +0 -2
  2569. data/vendor/rails/actionpack/test/fixtures/test/content_for_concatenated.erb +0 -3
  2570. data/vendor/rails/actionpack/test/fixtures/test/content_for_with_parameter.erb +0 -2
  2571. data/vendor/rails/actionpack/test/fixtures/test/delete_with_js.rjs +0 -2
  2572. data/vendor/rails/actionpack/test/fixtures/test/dot.directory/render_file_with_ivar.erb +0 -1
  2573. data/vendor/rails/actionpack/test/fixtures/test/enum_rjs_test.rjs +0 -6
  2574. data/vendor/rails/actionpack/test/fixtures/test/erb_content_for.erb +0 -2
  2575. data/vendor/rails/actionpack/test/fixtures/test/formatted_html_erb.html.erb +0 -1
  2576. data/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.builder +0 -1
  2577. data/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.html.erb +0 -1
  2578. data/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.xml.erb +0 -1
  2579. data/vendor/rails/actionpack/test/fixtures/test/greeting.erb +0 -1
  2580. data/vendor/rails/actionpack/test/fixtures/test/hello.builder +0 -4
  2581. data/vendor/rails/actionpack/test/fixtures/test/hello_world.erb +0 -1
  2582. data/vendor/rails/actionpack/test/fixtures/test/hello_world_container.builder +0 -3
  2583. data/vendor/rails/actionpack/test/fixtures/test/hello_world_from_rxml.builder +0 -4
  2584. data/vendor/rails/actionpack/test/fixtures/test/hello_world_with_layout_false.erb +0 -1
  2585. data/vendor/rails/actionpack/test/fixtures/test/hello_xml_world.builder +0 -11
  2586. data/vendor/rails/actionpack/test/fixtures/test/list.erb +0 -1
  2587. data/vendor/rails/actionpack/test/fixtures/test/non_erb_block_content_for.builder +0 -4
  2588. data/vendor/rails/actionpack/test/fixtures/test/potential_conflicts.erb +0 -4
  2589. data/vendor/rails/actionpack/test/fixtures/test/render_file_with_ivar.erb +0 -1
  2590. data/vendor/rails/actionpack/test/fixtures/test/render_file_with_locals.erb +0 -1
  2591. data/vendor/rails/actionpack/test/fixtures/test/render_to_string_test.erb +0 -1
  2592. data/vendor/rails/actionpack/test/fixtures/test/update_element_with_capture.erb +0 -9
  2593. data/vendor/rails/actionpack/test/fixtures/test/using_layout_around_block.html.erb +0 -1
  2594. data/vendor/rails/actionpack/test/fixtures/topic.rb +0 -3
  2595. data/vendor/rails/actionpack/test/fixtures/topics.yml +0 -22
  2596. data/vendor/rails/actionpack/test/template/active_record_helper_test.rb +0 -251
  2597. data/vendor/rails/actionpack/test/template/asset_tag_helper_test.rb +0 -438
  2598. data/vendor/rails/actionpack/test/template/atom_feed_helper_test.rb +0 -101
  2599. data/vendor/rails/actionpack/test/template/benchmark_helper_test.rb +0 -72
  2600. data/vendor/rails/actionpack/test/template/compiled_templates_test.rb +0 -193
  2601. data/vendor/rails/actionpack/test/template/date_helper_test.rb +0 -1438
  2602. data/vendor/rails/actionpack/test/template/erb_util_test.rb +0 -56
  2603. data/vendor/rails/actionpack/test/template/form_helper_test.rb +0 -792
  2604. data/vendor/rails/actionpack/test/template/form_options_helper_test.rb +0 -1296
  2605. data/vendor/rails/actionpack/test/template/form_tag_helper_test.rb +0 -238
  2606. data/vendor/rails/actionpack/test/template/javascript_helper_test.rb +0 -115
  2607. data/vendor/rails/actionpack/test/template/number_helper_test.rb +0 -93
  2608. data/vendor/rails/actionpack/test/template/prototype_helper_test.rb +0 -627
  2609. data/vendor/rails/actionpack/test/template/sanitize_helper_test.rb +0 -49
  2610. data/vendor/rails/actionpack/test/template/scriptaculous_helper_test.rb +0 -96
  2611. data/vendor/rails/actionpack/test/template/tag_helper_test.rb +0 -80
  2612. data/vendor/rails/actionpack/test/template/text_helper_test.rb +0 -335
  2613. data/vendor/rails/actionpack/test/template/url_helper_test.rb +0 -536
  2614. data/vendor/rails/actionpack/test/testing_sandbox.rb +0 -11
  2615. data/vendor/rails/activerecord/CHANGELOG +0 -5527
  2616. data/vendor/rails/activerecord/MIT-LICENSE +0 -20
  2617. data/vendor/rails/activerecord/README +0 -346
  2618. data/vendor/rails/activerecord/RUNNING_UNIT_TESTS +0 -33
  2619. data/vendor/rails/activerecord/Rakefile +0 -248
  2620. data/vendor/rails/activerecord/examples/associations.png +0 -0
  2621. data/vendor/rails/activerecord/install.rb +0 -30
  2622. data/vendor/rails/activerecord/lib/active_record.rb +0 -76
  2623. data/vendor/rails/activerecord/lib/active_record/aggregations.rb +0 -180
  2624. data/vendor/rails/activerecord/lib/active_record/associations.rb +0 -1769
  2625. data/vendor/rails/activerecord/lib/active_record/associations/association_collection.rb +0 -240
  2626. data/vendor/rails/activerecord/lib/active_record/associations/association_proxy.rb +0 -160
  2627. data/vendor/rails/activerecord/lib/active_record/associations/belongs_to_association.rb +0 -56
  2628. data/vendor/rails/activerecord/lib/active_record/associations/belongs_to_polymorphic_association.rb +0 -50
  2629. data/vendor/rails/activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb +0 -164
  2630. data/vendor/rails/activerecord/lib/active_record/associations/has_many_association.rb +0 -174
  2631. data/vendor/rails/activerecord/lib/active_record/associations/has_many_through_association.rb +0 -284
  2632. data/vendor/rails/activerecord/lib/active_record/associations/has_one_association.rb +0 -96
  2633. data/vendor/rails/activerecord/lib/active_record/attribute_methods.rb +0 -328
  2634. data/vendor/rails/activerecord/lib/active_record/base.rb +0 -2471
  2635. data/vendor/rails/activerecord/lib/active_record/calculations.rb +0 -267
  2636. data/vendor/rails/activerecord/lib/active_record/callbacks.rb +0 -341
  2637. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb +0 -308
  2638. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb +0 -171
  2639. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb +0 -87
  2640. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/quoting.rb +0 -69
  2641. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb +0 -472
  2642. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +0 -306
  2643. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb +0 -172
  2644. data/vendor/rails/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb +0 -496
  2645. data/vendor/rails/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb +0 -847
  2646. data/vendor/rails/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb +0 -34
  2647. data/vendor/rails/activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb +0 -391
  2648. data/vendor/rails/activerecord/lib/active_record/fixtures.rb +0 -1034
  2649. data/vendor/rails/activerecord/lib/active_record/locking/optimistic.rb +0 -144
  2650. data/vendor/rails/activerecord/lib/active_record/locking/pessimistic.rb +0 -77
  2651. data/vendor/rails/activerecord/lib/active_record/migration.rb +0 -417
  2652. data/vendor/rails/activerecord/lib/active_record/observer.rb +0 -181
  2653. data/vendor/rails/activerecord/lib/active_record/query_cache.rb +0 -21
  2654. data/vendor/rails/activerecord/lib/active_record/reflection.rb +0 -219
  2655. data/vendor/rails/activerecord/lib/active_record/schema.rb +0 -58
  2656. data/vendor/rails/activerecord/lib/active_record/schema_dumper.rb +0 -171
  2657. data/vendor/rails/activerecord/lib/active_record/serialization.rb +0 -98
  2658. data/vendor/rails/activerecord/lib/active_record/serializers/json_serializer.rb +0 -71
  2659. data/vendor/rails/activerecord/lib/active_record/serializers/xml_serializer.rb +0 -315
  2660. data/vendor/rails/activerecord/lib/active_record/timestamp.rb +0 -41
  2661. data/vendor/rails/activerecord/lib/active_record/transactions.rb +0 -132
  2662. data/vendor/rails/activerecord/lib/active_record/validations.rb +0 -1025
  2663. data/vendor/rails/activerecord/lib/active_record/vendor/db2.rb +0 -362
  2664. data/vendor/rails/activerecord/lib/active_record/vendor/mysql.rb +0 -1214
  2665. data/vendor/rails/activerecord/lib/active_record/version.rb +0 -9
  2666. data/vendor/rails/activerecord/lib/activerecord.rb +0 -1
  2667. data/vendor/rails/activerecord/test/aaa_create_tables_test.rb +0 -72
  2668. data/vendor/rails/activerecord/test/abstract_unit.rb +0 -84
  2669. data/vendor/rails/activerecord/test/active_schema_test_mysql.rb +0 -43
  2670. data/vendor/rails/activerecord/test/adapter_test.rb +0 -105
  2671. data/vendor/rails/activerecord/test/adapter_test_sqlserver.rb +0 -95
  2672. data/vendor/rails/activerecord/test/aggregations_test.rb +0 -128
  2673. data/vendor/rails/activerecord/test/all.sh +0 -8
  2674. data/vendor/rails/activerecord/test/ar_schema_test.rb +0 -33
  2675. data/vendor/rails/activerecord/test/association_inheritance_reload.rb +0 -14
  2676. data/vendor/rails/activerecord/test/associations/callbacks_test.rb +0 -147
  2677. data/vendor/rails/activerecord/test/associations/cascaded_eager_loading_test.rb +0 -110
  2678. data/vendor/rails/activerecord/test/associations/eager_singularization_test.rb +0 -145
  2679. data/vendor/rails/activerecord/test/associations/eager_test.rb +0 -442
  2680. data/vendor/rails/activerecord/test/associations/extension_test.rb +0 -47
  2681. data/vendor/rails/activerecord/test/associations/inner_join_association_test.rb +0 -88
  2682. data/vendor/rails/activerecord/test/associations/join_model_test.rb +0 -559
  2683. data/vendor/rails/activerecord/test/associations_test.rb +0 -2147
  2684. data/vendor/rails/activerecord/test/attribute_methods_test.rb +0 -146
  2685. data/vendor/rails/activerecord/test/base_test.rb +0 -1745
  2686. data/vendor/rails/activerecord/test/binary_test.rb +0 -32
  2687. data/vendor/rails/activerecord/test/calculations_test.rb +0 -251
  2688. data/vendor/rails/activerecord/test/callbacks_test.rb +0 -400
  2689. data/vendor/rails/activerecord/test/class_inheritable_attributes_test.rb +0 -32
  2690. data/vendor/rails/activerecord/test/column_alias_test.rb +0 -17
  2691. data/vendor/rails/activerecord/test/connection_test_firebird.rb +0 -8
  2692. data/vendor/rails/activerecord/test/connection_test_mysql.rb +0 -30
  2693. data/vendor/rails/activerecord/test/connections/native_db2/connection.rb +0 -25
  2694. data/vendor/rails/activerecord/test/connections/native_firebird/connection.rb +0 -26
  2695. data/vendor/rails/activerecord/test/connections/native_frontbase/connection.rb +0 -27
  2696. data/vendor/rails/activerecord/test/connections/native_mysql/connection.rb +0 -27
  2697. data/vendor/rails/activerecord/test/connections/native_openbase/connection.rb +0 -21
  2698. data/vendor/rails/activerecord/test/connections/native_oracle/connection.rb +0 -27
  2699. data/vendor/rails/activerecord/test/connections/native_postgresql/connection.rb +0 -23
  2700. data/vendor/rails/activerecord/test/connections/native_sqlite/connection.rb +0 -25
  2701. data/vendor/rails/activerecord/test/connections/native_sqlite3/connection.rb +0 -25
  2702. data/vendor/rails/activerecord/test/connections/native_sqlite3/in_memory_connection.rb +0 -18
  2703. data/vendor/rails/activerecord/test/connections/native_sybase/connection.rb +0 -23
  2704. data/vendor/rails/activerecord/test/copy_table_test_sqlite.rb +0 -69
  2705. data/vendor/rails/activerecord/test/datatype_test_postgresql.rb +0 -203
  2706. data/vendor/rails/activerecord/test/date_time_test.rb +0 -37
  2707. data/vendor/rails/activerecord/test/default_test_firebird.rb +0 -16
  2708. data/vendor/rails/activerecord/test/defaults_test.rb +0 -67
  2709. data/vendor/rails/activerecord/test/deprecated_finder_test.rb +0 -30
  2710. data/vendor/rails/activerecord/test/finder_test.rb +0 -650
  2711. data/vendor/rails/activerecord/test/fixtures/accounts.yml +0 -28
  2712. data/vendor/rails/activerecord/test/fixtures/all/developers.yml +0 -0
  2713. data/vendor/rails/activerecord/test/fixtures/all/people.csv +0 -0
  2714. data/vendor/rails/activerecord/test/fixtures/all/tasks.yml +0 -0
  2715. data/vendor/rails/activerecord/test/fixtures/author.rb +0 -109
  2716. data/vendor/rails/activerecord/test/fixtures/author_favorites.yml +0 -4
  2717. data/vendor/rails/activerecord/test/fixtures/authors.yml +0 -7
  2718. data/vendor/rails/activerecord/test/fixtures/auto_id.rb +0 -4
  2719. data/vendor/rails/activerecord/test/fixtures/bad_fixtures/attr_with_numeric_first_char +0 -1
  2720. data/vendor/rails/activerecord/test/fixtures/bad_fixtures/attr_with_spaces +0 -1
  2721. data/vendor/rails/activerecord/test/fixtures/bad_fixtures/blank_line +0 -3
  2722. data/vendor/rails/activerecord/test/fixtures/bad_fixtures/duplicate_attributes +0 -3
  2723. data/vendor/rails/activerecord/test/fixtures/bad_fixtures/missing_value +0 -1
  2724. data/vendor/rails/activerecord/test/fixtures/binaries.yml +0 -132
  2725. data/vendor/rails/activerecord/test/fixtures/binary.rb +0 -2
  2726. data/vendor/rails/activerecord/test/fixtures/book.rb +0 -4
  2727. data/vendor/rails/activerecord/test/fixtures/books.yml +0 -7
  2728. data/vendor/rails/activerecord/test/fixtures/categories.yml +0 -14
  2729. data/vendor/rails/activerecord/test/fixtures/categories/special_categories.yml +0 -9
  2730. data/vendor/rails/activerecord/test/fixtures/categories/subsubdir/arbitrary_filename.yml +0 -4
  2731. data/vendor/rails/activerecord/test/fixtures/categories_ordered.yml +0 -7
  2732. data/vendor/rails/activerecord/test/fixtures/categories_posts.yml +0 -23
  2733. data/vendor/rails/activerecord/test/fixtures/categorization.rb +0 -5
  2734. data/vendor/rails/activerecord/test/fixtures/categorizations.yml +0 -17
  2735. data/vendor/rails/activerecord/test/fixtures/category.rb +0 -26
  2736. data/vendor/rails/activerecord/test/fixtures/citation.rb +0 -6
  2737. data/vendor/rails/activerecord/test/fixtures/column_name.rb +0 -3
  2738. data/vendor/rails/activerecord/test/fixtures/comment.rb +0 -23
  2739. data/vendor/rails/activerecord/test/fixtures/comments.yml +0 -59
  2740. data/vendor/rails/activerecord/test/fixtures/companies.yml +0 -55
  2741. data/vendor/rails/activerecord/test/fixtures/company.rb +0 -114
  2742. data/vendor/rails/activerecord/test/fixtures/company_in_module.rb +0 -59
  2743. data/vendor/rails/activerecord/test/fixtures/computer.rb +0 -4
  2744. data/vendor/rails/activerecord/test/fixtures/computers.yml +0 -4
  2745. data/vendor/rails/activerecord/test/fixtures/contact.rb +0 -16
  2746. data/vendor/rails/activerecord/test/fixtures/course.rb +0 -3
  2747. data/vendor/rails/activerecord/test/fixtures/courses.yml +0 -7
  2748. data/vendor/rails/activerecord/test/fixtures/customer.rb +0 -55
  2749. data/vendor/rails/activerecord/test/fixtures/customers.yml +0 -17
  2750. data/vendor/rails/activerecord/test/fixtures/db_definitions/db2.drop.sql +0 -33
  2751. data/vendor/rails/activerecord/test/fixtures/db_definitions/db2.sql +0 -235
  2752. data/vendor/rails/activerecord/test/fixtures/db_definitions/db22.drop.sql +0 -2
  2753. data/vendor/rails/activerecord/test/fixtures/db_definitions/db22.sql +0 -5
  2754. data/vendor/rails/activerecord/test/fixtures/db_definitions/firebird.drop.sql +0 -65
  2755. data/vendor/rails/activerecord/test/fixtures/db_definitions/firebird.sql +0 -310
  2756. data/vendor/rails/activerecord/test/fixtures/db_definitions/firebird2.drop.sql +0 -2
  2757. data/vendor/rails/activerecord/test/fixtures/db_definitions/firebird2.sql +0 -6
  2758. data/vendor/rails/activerecord/test/fixtures/db_definitions/frontbase.drop.sql +0 -33
  2759. data/vendor/rails/activerecord/test/fixtures/db_definitions/frontbase.sql +0 -273
  2760. data/vendor/rails/activerecord/test/fixtures/db_definitions/frontbase2.drop.sql +0 -1
  2761. data/vendor/rails/activerecord/test/fixtures/db_definitions/frontbase2.sql +0 -4
  2762. data/vendor/rails/activerecord/test/fixtures/db_definitions/openbase.drop.sql +0 -2
  2763. data/vendor/rails/activerecord/test/fixtures/db_definitions/openbase.sql +0 -318
  2764. data/vendor/rails/activerecord/test/fixtures/db_definitions/openbase2.drop.sql +0 -2
  2765. data/vendor/rails/activerecord/test/fixtures/db_definitions/openbase2.sql +0 -7
  2766. data/vendor/rails/activerecord/test/fixtures/db_definitions/oracle.drop.sql +0 -67
  2767. data/vendor/rails/activerecord/test/fixtures/db_definitions/oracle.sql +0 -330
  2768. data/vendor/rails/activerecord/test/fixtures/db_definitions/oracle2.drop.sql +0 -2
  2769. data/vendor/rails/activerecord/test/fixtures/db_definitions/oracle2.sql +0 -6
  2770. data/vendor/rails/activerecord/test/fixtures/db_definitions/postgresql.drop.sql +0 -44
  2771. data/vendor/rails/activerecord/test/fixtures/db_definitions/postgresql.sql +0 -292
  2772. data/vendor/rails/activerecord/test/fixtures/db_definitions/postgresql2.drop.sql +0 -2
  2773. data/vendor/rails/activerecord/test/fixtures/db_definitions/postgresql2.sql +0 -4
  2774. data/vendor/rails/activerecord/test/fixtures/db_definitions/schema.rb +0 -354
  2775. data/vendor/rails/activerecord/test/fixtures/db_definitions/schema2.rb +0 -11
  2776. data/vendor/rails/activerecord/test/fixtures/db_definitions/sqlite.drop.sql +0 -33
  2777. data/vendor/rails/activerecord/test/fixtures/db_definitions/sqlite.sql +0 -219
  2778. data/vendor/rails/activerecord/test/fixtures/db_definitions/sqlite2.drop.sql +0 -2
  2779. data/vendor/rails/activerecord/test/fixtures/db_definitions/sqlite2.sql +0 -5
  2780. data/vendor/rails/activerecord/test/fixtures/db_definitions/sybase.drop.sql +0 -35
  2781. data/vendor/rails/activerecord/test/fixtures/db_definitions/sybase.sql +0 -222
  2782. data/vendor/rails/activerecord/test/fixtures/db_definitions/sybase2.drop.sql +0 -4
  2783. data/vendor/rails/activerecord/test/fixtures/db_definitions/sybase2.sql +0 -5
  2784. data/vendor/rails/activerecord/test/fixtures/default.rb +0 -2
  2785. data/vendor/rails/activerecord/test/fixtures/developer.rb +0 -72
  2786. data/vendor/rails/activerecord/test/fixtures/developers.yml +0 -21
  2787. data/vendor/rails/activerecord/test/fixtures/developers_projects.yml +0 -17
  2788. data/vendor/rails/activerecord/test/fixtures/developers_projects/david_action_controller +0 -3
  2789. data/vendor/rails/activerecord/test/fixtures/developers_projects/david_active_record +0 -3
  2790. data/vendor/rails/activerecord/test/fixtures/developers_projects/jamis_active_record +0 -2
  2791. data/vendor/rails/activerecord/test/fixtures/edge.rb +0 -5
  2792. data/vendor/rails/activerecord/test/fixtures/edges.yml +0 -6
  2793. data/vendor/rails/activerecord/test/fixtures/entrant.rb +0 -3
  2794. data/vendor/rails/activerecord/test/fixtures/entrants.yml +0 -14
  2795. data/vendor/rails/activerecord/test/fixtures/example.log +0 -1
  2796. data/vendor/rails/activerecord/test/fixtures/fk_test_has_fk.yml +0 -3
  2797. data/vendor/rails/activerecord/test/fixtures/fk_test_has_pk.yml +0 -2
  2798. data/vendor/rails/activerecord/test/fixtures/flowers.jpg +0 -0
  2799. data/vendor/rails/activerecord/test/fixtures/funny_jokes.yml +0 -10
  2800. data/vendor/rails/activerecord/test/fixtures/item.rb +0 -7
  2801. data/vendor/rails/activerecord/test/fixtures/items.yml +0 -4
  2802. data/vendor/rails/activerecord/test/fixtures/joke.rb +0 -3
  2803. data/vendor/rails/activerecord/test/fixtures/keyboard.rb +0 -3
  2804. data/vendor/rails/activerecord/test/fixtures/legacy_thing.rb +0 -3
  2805. data/vendor/rails/activerecord/test/fixtures/legacy_things.yml +0 -3
  2806. data/vendor/rails/activerecord/test/fixtures/matey.rb +0 -4
  2807. data/vendor/rails/activerecord/test/fixtures/mateys.yml +0 -4
  2808. data/vendor/rails/activerecord/test/fixtures/migrations/1_people_have_last_names.rb +0 -9
  2809. data/vendor/rails/activerecord/test/fixtures/migrations/2_we_need_reminders.rb +0 -12
  2810. data/vendor/rails/activerecord/test/fixtures/migrations/3_innocent_jointable.rb +0 -12
  2811. data/vendor/rails/activerecord/test/fixtures/migrations_with_decimal/1_give_me_big_numbers.rb +0 -15
  2812. data/vendor/rails/activerecord/test/fixtures/migrations_with_duplicate/1_people_have_last_names.rb +0 -9
  2813. data/vendor/rails/activerecord/test/fixtures/migrations_with_duplicate/2_we_need_reminders.rb +0 -12
  2814. data/vendor/rails/activerecord/test/fixtures/migrations_with_duplicate/3_foo.rb +0 -7
  2815. data/vendor/rails/activerecord/test/fixtures/migrations_with_duplicate/3_innocent_jointable.rb +0 -12
  2816. data/vendor/rails/activerecord/test/fixtures/migrations_with_missing_versions/1000_people_have_middle_names.rb +0 -9
  2817. data/vendor/rails/activerecord/test/fixtures/migrations_with_missing_versions/1_people_have_last_names.rb +0 -9
  2818. data/vendor/rails/activerecord/test/fixtures/migrations_with_missing_versions/3_we_need_reminders.rb +0 -12
  2819. data/vendor/rails/activerecord/test/fixtures/migrations_with_missing_versions/4_innocent_jointable.rb +0 -12
  2820. data/vendor/rails/activerecord/test/fixtures/minimalistic.rb +0 -2
  2821. data/vendor/rails/activerecord/test/fixtures/minimalistics.yml +0 -2
  2822. data/vendor/rails/activerecord/test/fixtures/mixed_case_monkey.rb +0 -3
  2823. data/vendor/rails/activerecord/test/fixtures/mixed_case_monkeys.yml +0 -6
  2824. data/vendor/rails/activerecord/test/fixtures/mixins.yml +0 -29
  2825. data/vendor/rails/activerecord/test/fixtures/movie.rb +0 -5
  2826. data/vendor/rails/activerecord/test/fixtures/movies.yml +0 -7
  2827. data/vendor/rails/activerecord/test/fixtures/naked/csv/accounts.csv +0 -1
  2828. data/vendor/rails/activerecord/test/fixtures/naked/yml/accounts.yml +0 -1
  2829. data/vendor/rails/activerecord/test/fixtures/naked/yml/companies.yml +0 -1
  2830. data/vendor/rails/activerecord/test/fixtures/naked/yml/courses.yml +0 -1
  2831. data/vendor/rails/activerecord/test/fixtures/order.rb +0 -4
  2832. data/vendor/rails/activerecord/test/fixtures/parrot.rb +0 -13
  2833. data/vendor/rails/activerecord/test/fixtures/parrots.yml +0 -27
  2834. data/vendor/rails/activerecord/test/fixtures/parrots_pirates.yml +0 -7
  2835. data/vendor/rails/activerecord/test/fixtures/people.yml +0 -3
  2836. data/vendor/rails/activerecord/test/fixtures/person.rb +0 -4
  2837. data/vendor/rails/activerecord/test/fixtures/pirate.rb +0 -5
  2838. data/vendor/rails/activerecord/test/fixtures/pirates.yml +0 -9
  2839. data/vendor/rails/activerecord/test/fixtures/post.rb +0 -59
  2840. data/vendor/rails/activerecord/test/fixtures/posts.yml +0 -48
  2841. data/vendor/rails/activerecord/test/fixtures/project.rb +0 -28
  2842. data/vendor/rails/activerecord/test/fixtures/projects.yml +0 -7
  2843. data/vendor/rails/activerecord/test/fixtures/reader.rb +0 -4
  2844. data/vendor/rails/activerecord/test/fixtures/readers.yml +0 -4
  2845. data/vendor/rails/activerecord/test/fixtures/reply.rb +0 -37
  2846. data/vendor/rails/activerecord/test/fixtures/reserved_words/distinct.yml +0 -5
  2847. data/vendor/rails/activerecord/test/fixtures/reserved_words/distincts_selects.yml +0 -11
  2848. data/vendor/rails/activerecord/test/fixtures/reserved_words/group.yml +0 -14
  2849. data/vendor/rails/activerecord/test/fixtures/reserved_words/select.yml +0 -8
  2850. data/vendor/rails/activerecord/test/fixtures/reserved_words/values.yml +0 -7
  2851. data/vendor/rails/activerecord/test/fixtures/ship.rb +0 -3
  2852. data/vendor/rails/activerecord/test/fixtures/ships.yml +0 -5
  2853. data/vendor/rails/activerecord/test/fixtures/subject.rb +0 -4
  2854. data/vendor/rails/activerecord/test/fixtures/subscriber.rb +0 -6
  2855. data/vendor/rails/activerecord/test/fixtures/subscribers/first +0 -2
  2856. data/vendor/rails/activerecord/test/fixtures/subscribers/second +0 -2
  2857. data/vendor/rails/activerecord/test/fixtures/tag.rb +0 -7
  2858. data/vendor/rails/activerecord/test/fixtures/tagging.rb +0 -10
  2859. data/vendor/rails/activerecord/test/fixtures/taggings.yml +0 -25
  2860. data/vendor/rails/activerecord/test/fixtures/tags.yml +0 -7
  2861. data/vendor/rails/activerecord/test/fixtures/task.rb +0 -3
  2862. data/vendor/rails/activerecord/test/fixtures/tasks.yml +0 -7
  2863. data/vendor/rails/activerecord/test/fixtures/topic.rb +0 -37
  2864. data/vendor/rails/activerecord/test/fixtures/topics.yml +0 -22
  2865. data/vendor/rails/activerecord/test/fixtures/treasure.rb +0 -4
  2866. data/vendor/rails/activerecord/test/fixtures/treasures.yml +0 -10
  2867. data/vendor/rails/activerecord/test/fixtures/vertex.rb +0 -9
  2868. data/vendor/rails/activerecord/test/fixtures/vertices.yml +0 -4
  2869. data/vendor/rails/activerecord/test/fixtures_test.rb +0 -602
  2870. data/vendor/rails/activerecord/test/inheritance_test.rb +0 -211
  2871. data/vendor/rails/activerecord/test/json_serialization_test.rb +0 -180
  2872. data/vendor/rails/activerecord/test/lifecycle_test.rb +0 -137
  2873. data/vendor/rails/activerecord/test/locking_test.rb +0 -282
  2874. data/vendor/rails/activerecord/test/method_scoping_test.rb +0 -416
  2875. data/vendor/rails/activerecord/test/migration_test.rb +0 -933
  2876. data/vendor/rails/activerecord/test/migration_test_firebird.rb +0 -124
  2877. data/vendor/rails/activerecord/test/mixin_test.rb +0 -95
  2878. data/vendor/rails/activerecord/test/modules_test.rb +0 -34
  2879. data/vendor/rails/activerecord/test/multiple_db_test.rb +0 -60
  2880. data/vendor/rails/activerecord/test/pk_test.rb +0 -101
  2881. data/vendor/rails/activerecord/test/query_cache_test.rb +0 -104
  2882. data/vendor/rails/activerecord/test/readonly_test.rb +0 -107
  2883. data/vendor/rails/activerecord/test/reflection_test.rb +0 -175
  2884. data/vendor/rails/activerecord/test/reserved_word_test_mysql.rb +0 -177
  2885. data/vendor/rails/activerecord/test/schema_authorization_test_postgresql.rb +0 -75
  2886. data/vendor/rails/activerecord/test/schema_dumper_test.rb +0 -131
  2887. data/vendor/rails/activerecord/test/schema_test_postgresql.rb +0 -64
  2888. data/vendor/rails/activerecord/test/serialization_test.rb +0 -47
  2889. data/vendor/rails/activerecord/test/synonym_test_oracle.rb +0 -17
  2890. data/vendor/rails/activerecord/test/table_name_test_sqlserver.rb +0 -23
  2891. data/vendor/rails/activerecord/test/threaded_connections_test.rb +0 -48
  2892. data/vendor/rails/activerecord/test/transactions_test.rb +0 -281
  2893. data/vendor/rails/activerecord/test/unconnected_test.rb +0 -32
  2894. data/vendor/rails/activerecord/test/validations_test.rb +0 -1395
  2895. data/vendor/rails/activerecord/test/xml_serialization_test.rb +0 -202
  2896. data/vendor/rails/activeresource/CHANGELOG +0 -223
  2897. data/vendor/rails/activeresource/MIT-LICENSE +0 -20
  2898. data/vendor/rails/activeresource/README +0 -165
  2899. data/vendor/rails/activeresource/Rakefile +0 -134
  2900. data/vendor/rails/activeresource/lib/active_resource.rb +0 -47
  2901. data/vendor/rails/activeresource/lib/active_resource/base.rb +0 -872
  2902. data/vendor/rails/activeresource/lib/active_resource/connection.rb +0 -172
  2903. data/vendor/rails/activeresource/lib/active_resource/custom_methods.rb +0 -105
  2904. data/vendor/rails/activeresource/lib/active_resource/formats.rb +0 -14
  2905. data/vendor/rails/activeresource/lib/active_resource/formats/json_format.rb +0 -23
  2906. data/vendor/rails/activeresource/lib/active_resource/formats/xml_format.rb +0 -34
  2907. data/vendor/rails/activeresource/lib/active_resource/http_mock.rb +0 -147
  2908. data/vendor/rails/activeresource/lib/active_resource/validations.rb +0 -288
  2909. data/vendor/rails/activeresource/lib/active_resource/version.rb +0 -9
  2910. data/vendor/rails/activeresource/lib/activeresource.rb +0 -1
  2911. data/vendor/rails/activeresource/test/abstract_unit.rb +0 -10
  2912. data/vendor/rails/activeresource/test/authorization_test.rb +0 -82
  2913. data/vendor/rails/activeresource/test/base/custom_methods_test.rb +0 -96
  2914. data/vendor/rails/activeresource/test/base/equality_test.rb +0 -43
  2915. data/vendor/rails/activeresource/test/base/load_test.rb +0 -111
  2916. data/vendor/rails/activeresource/test/base_errors_test.rb +0 -48
  2917. data/vendor/rails/activeresource/test/base_test.rb +0 -454
  2918. data/vendor/rails/activeresource/test/connection_test.rb +0 -170
  2919. data/vendor/rails/activeresource/test/fixtures/beast.rb +0 -14
  2920. data/vendor/rails/activeresource/test/fixtures/person.rb +0 -3
  2921. data/vendor/rails/activeresource/test/fixtures/street_address.rb +0 -4
  2922. data/vendor/rails/activeresource/test/format_test.rb +0 -42
  2923. data/vendor/rails/activeresource/test/setter_trap.rb +0 -27
  2924. data/vendor/rails/activesupport/CHANGELOG +0 -986
  2925. data/vendor/rails/activesupport/MIT-LICENSE +0 -20
  2926. data/vendor/rails/activesupport/README +0 -43
  2927. data/vendor/rails/activesupport/Rakefile +0 -84
  2928. data/vendor/rails/activesupport/install.rb +0 -30
  2929. data/vendor/rails/activesupport/lib/active_support.rb +0 -49
  2930. data/vendor/rails/activesupport/lib/active_support/basic_object.rb +0 -5
  2931. data/vendor/rails/activesupport/lib/active_support/buffered_logger.rb +0 -107
  2932. data/vendor/rails/activesupport/lib/active_support/clean_logger.rb +0 -127
  2933. data/vendor/rails/activesupport/lib/active_support/core_ext.rb +0 -4
  2934. data/vendor/rails/activesupport/lib/active_support/core_ext/array.rb +0 -13
  2935. data/vendor/rails/activesupport/lib/active_support/core_ext/array/access.rb +0 -28
  2936. data/vendor/rails/activesupport/lib/active_support/core_ext/array/conversions.rb +0 -94
  2937. data/vendor/rails/activesupport/lib/active_support/core_ext/array/extract_options.rb +0 -19
  2938. data/vendor/rails/activesupport/lib/active_support/core_ext/array/grouping.rb +0 -68
  2939. data/vendor/rails/activesupport/lib/active_support/core_ext/array/random_access.rb +0 -12
  2940. data/vendor/rails/activesupport/lib/active_support/core_ext/bigdecimal.rb +0 -2
  2941. data/vendor/rails/activesupport/lib/active_support/core_ext/bigdecimal/conversions.rb +0 -6
  2942. data/vendor/rails/activesupport/lib/active_support/core_ext/blank.rb +0 -50
  2943. data/vendor/rails/activesupport/lib/active_support/core_ext/cgi.rb +0 -5
  2944. data/vendor/rails/activesupport/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb +0 -14
  2945. data/vendor/rails/activesupport/lib/active_support/core_ext/class.rb +0 -4
  2946. data/vendor/rails/activesupport/lib/active_support/core_ext/class/attribute_accessors.rb +0 -48
  2947. data/vendor/rails/activesupport/lib/active_support/core_ext/class/delegating_attributes.rb +0 -40
  2948. data/vendor/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb +0 -140
  2949. data/vendor/rails/activesupport/lib/active_support/core_ext/class/removal.rb +0 -24
  2950. data/vendor/rails/activesupport/lib/active_support/core_ext/date.rb +0 -10
  2951. data/vendor/rails/activesupport/lib/active_support/core_ext/date/behavior.rb +0 -13
  2952. data/vendor/rails/activesupport/lib/active_support/core_ext/date/calculations.rb +0 -188
  2953. data/vendor/rails/activesupport/lib/active_support/core_ext/date/conversions.rb +0 -98
  2954. data/vendor/rails/activesupport/lib/active_support/core_ext/date_time.rb +0 -10
  2955. data/vendor/rails/activesupport/lib/active_support/core_ext/date_time/calculations.rb +0 -77
  2956. data/vendor/rails/activesupport/lib/active_support/core_ext/date_time/conversions.rb +0 -74
  2957. data/vendor/rails/activesupport/lib/active_support/core_ext/duplicable.rb +0 -37
  2958. data/vendor/rails/activesupport/lib/active_support/core_ext/enumerable.rb +0 -63
  2959. data/vendor/rails/activesupport/lib/active_support/core_ext/exception.rb +0 -33
  2960. data/vendor/rails/activesupport/lib/active_support/core_ext/file.rb +0 -21
  2961. data/vendor/rails/activesupport/lib/active_support/core_ext/float.rb +0 -5
  2962. data/vendor/rails/activesupport/lib/active_support/core_ext/float/rounding.rb +0 -24
  2963. data/vendor/rails/activesupport/lib/active_support/core_ext/hash.rb +0 -13
  2964. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/conversions.rb +0 -242
  2965. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/diff.rb +0 -19
  2966. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/except.rb +0 -24
  2967. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb +0 -102
  2968. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/keys.rb +0 -54
  2969. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/reverse_merge.rb +0 -25
  2970. data/vendor/rails/activesupport/lib/active_support/core_ext/hash/slice.rb +0 -28
  2971. data/vendor/rails/activesupport/lib/active_support/core_ext/integer.rb +0 -7
  2972. data/vendor/rails/activesupport/lib/active_support/core_ext/integer/even_odd.rb +0 -24
  2973. data/vendor/rails/activesupport/lib/active_support/core_ext/integer/inflections.rb +0 -21
  2974. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel.rb +0 -5
  2975. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/agnostics.rb +0 -11
  2976. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/daemonizing.rb +0 -15
  2977. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/debugger.rb +0 -13
  2978. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/reporting.rb +0 -51
  2979. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/requires.rb +0 -24
  2980. data/vendor/rails/activesupport/lib/active_support/core_ext/load_error.rb +0 -38
  2981. data/vendor/rails/activesupport/lib/active_support/core_ext/logger.rb +0 -16
  2982. data/vendor/rails/activesupport/lib/active_support/core_ext/module.rb +0 -8
  2983. data/vendor/rails/activesupport/lib/active_support/core_ext/module/aliasing.rb +0 -70
  2984. data/vendor/rails/activesupport/lib/active_support/core_ext/module/attr_accessor_with_default.rb +0 -31
  2985. data/vendor/rails/activesupport/lib/active_support/core_ext/module/attr_internal.rb +0 -31
  2986. data/vendor/rails/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb +0 -48
  2987. data/vendor/rails/activesupport/lib/active_support/core_ext/module/delegation.rb +0 -62
  2988. data/vendor/rails/activesupport/lib/active_support/core_ext/module/inclusion.rb +0 -11
  2989. data/vendor/rails/activesupport/lib/active_support/core_ext/module/introspection.rb +0 -35
  2990. data/vendor/rails/activesupport/lib/active_support/core_ext/module/loading.rb +0 -13
  2991. data/vendor/rails/activesupport/lib/active_support/core_ext/name_error.rb +0 -17
  2992. data/vendor/rails/activesupport/lib/active_support/core_ext/numeric.rb +0 -7
  2993. data/vendor/rails/activesupport/lib/active_support/core_ext/numeric/bytes.rb +0 -44
  2994. data/vendor/rails/activesupport/lib/active_support/core_ext/numeric/time.rb +0 -91
  2995. data/vendor/rails/activesupport/lib/active_support/core_ext/object.rb +0 -4
  2996. data/vendor/rails/activesupport/lib/active_support/core_ext/object/conversions.rb +0 -14
  2997. data/vendor/rails/activesupport/lib/active_support/core_ext/object/extending.rb +0 -58
  2998. data/vendor/rails/activesupport/lib/active_support/core_ext/object/instance_variables.rb +0 -22
  2999. data/vendor/rails/activesupport/lib/active_support/core_ext/object/misc.rb +0 -59
  3000. data/vendor/rails/activesupport/lib/active_support/core_ext/pathname.rb +0 -7
  3001. data/vendor/rails/activesupport/lib/active_support/core_ext/pathname/clean_within.rb +0 -14
  3002. data/vendor/rails/activesupport/lib/active_support/core_ext/proc.rb +0 -12
  3003. data/vendor/rails/activesupport/lib/active_support/core_ext/range.rb +0 -11
  3004. data/vendor/rails/activesupport/lib/active_support/core_ext/range/blockless_step.rb +0 -22
  3005. data/vendor/rails/activesupport/lib/active_support/core_ext/range/conversions.rb +0 -23
  3006. data/vendor/rails/activesupport/lib/active_support/core_ext/range/include_range.rb +0 -22
  3007. data/vendor/rails/activesupport/lib/active_support/core_ext/range/overlaps.rb +0 -12
  3008. data/vendor/rails/activesupport/lib/active_support/core_ext/string.rb +0 -23
  3009. data/vendor/rails/activesupport/lib/active_support/core_ext/string/access.rb +0 -58
  3010. data/vendor/rails/activesupport/lib/active_support/core_ext/string/conversions.rb +0 -28
  3011. data/vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb +0 -153
  3012. data/vendor/rails/activesupport/lib/active_support/core_ext/string/iterators.rb +0 -17
  3013. data/vendor/rails/activesupport/lib/active_support/core_ext/string/starts_ends_with.rb +0 -27
  3014. data/vendor/rails/activesupport/lib/active_support/core_ext/string/unicode.rb +0 -42
  3015. data/vendor/rails/activesupport/lib/active_support/core_ext/string/xchar.rb +0 -11
  3016. data/vendor/rails/activesupport/lib/active_support/core_ext/symbol.rb +0 -14
  3017. data/vendor/rails/activesupport/lib/active_support/core_ext/test.rb +0 -1
  3018. data/vendor/rails/activesupport/lib/active_support/core_ext/test/unit/assertions.rb +0 -62
  3019. data/vendor/rails/activesupport/lib/active_support/core_ext/time.rb +0 -19
  3020. data/vendor/rails/activesupport/lib/active_support/core_ext/time/behavior.rb +0 -13
  3021. data/vendor/rails/activesupport/lib/active_support/core_ext/time/calculations.rb +0 -224
  3022. data/vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb +0 -94
  3023. data/vendor/rails/activesupport/lib/active_support/dependencies.rb +0 -540
  3024. data/vendor/rails/activesupport/lib/active_support/deprecation.rb +0 -204
  3025. data/vendor/rails/activesupport/lib/active_support/duration.rb +0 -96
  3026. data/vendor/rails/activesupport/lib/active_support/inflections.rb +0 -53
  3027. data/vendor/rails/activesupport/lib/active_support/inflector.rb +0 -282
  3028. data/vendor/rails/activesupport/lib/active_support/json.rb +0 -31
  3029. data/vendor/rails/activesupport/lib/active_support/json/decoding.rb +0 -60
  3030. data/vendor/rails/activesupport/lib/active_support/json/encoders/date.rb +0 -5
  3031. data/vendor/rails/activesupport/lib/active_support/json/encoders/date_time.rb +0 -5
  3032. data/vendor/rails/activesupport/lib/active_support/json/encoders/enumerable.rb +0 -12
  3033. data/vendor/rails/activesupport/lib/active_support/json/encoders/false_class.rb +0 -5
  3034. data/vendor/rails/activesupport/lib/active_support/json/encoders/hash.rb +0 -50
  3035. data/vendor/rails/activesupport/lib/active_support/json/encoders/nil_class.rb +0 -5
  3036. data/vendor/rails/activesupport/lib/active_support/json/encoders/numeric.rb +0 -5
  3037. data/vendor/rails/activesupport/lib/active_support/json/encoders/object.rb +0 -6
  3038. data/vendor/rails/activesupport/lib/active_support/json/encoders/regexp.rb +0 -5
  3039. data/vendor/rails/activesupport/lib/active_support/json/encoders/string.rb +0 -30
  3040. data/vendor/rails/activesupport/lib/active_support/json/encoders/symbol.rb +0 -5
  3041. data/vendor/rails/activesupport/lib/active_support/json/encoders/time.rb +0 -5
  3042. data/vendor/rails/activesupport/lib/active_support/json/encoders/true_class.rb +0 -5
  3043. data/vendor/rails/activesupport/lib/active_support/json/encoding.rb +0 -38
  3044. data/vendor/rails/activesupport/lib/active_support/json/variable.rb +0 -10
  3045. data/vendor/rails/activesupport/lib/active_support/multibyte.rb +0 -9
  3046. data/vendor/rails/activesupport/lib/active_support/multibyte/chars.rb +0 -141
  3047. data/vendor/rails/activesupport/lib/active_support/multibyte/generators/generate_tables.rb +0 -149
  3048. data/vendor/rails/activesupport/lib/active_support/multibyte/handlers/passthru_handler.rb +0 -9
  3049. data/vendor/rails/activesupport/lib/active_support/multibyte/handlers/utf8_handler.rb +0 -564
  3050. data/vendor/rails/activesupport/lib/active_support/multibyte/handlers/utf8_handler_proc.rb +0 -43
  3051. data/vendor/rails/activesupport/lib/active_support/option_merger.rb +0 -25
  3052. data/vendor/rails/activesupport/lib/active_support/ordered_options.rb +0 -49
  3053. data/vendor/rails/activesupport/lib/active_support/test_case.rb +0 -5
  3054. data/vendor/rails/activesupport/lib/active_support/testing.rb +0 -1
  3055. data/vendor/rails/activesupport/lib/active_support/testing/default.rb +0 -12
  3056. data/vendor/rails/activesupport/lib/active_support/values/time_zone.rb +0 -181
  3057. data/vendor/rails/activesupport/lib/active_support/values/unicode_tables.dat +0 -0
  3058. data/vendor/rails/activesupport/lib/active_support/vendor.rb +0 -14
  3059. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/blankslate.rb +0 -113
  3060. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder.rb +0 -13
  3061. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/blankslate.rb +0 -20
  3062. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/css.rb +0 -250
  3063. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xchar.rb +0 -115
  3064. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlbase.rb +0 -139
  3065. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlevents.rb +0 -63
  3066. data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlmarkup.rb +0 -328
  3067. data/vendor/rails/activesupport/lib/active_support/vendor/xml-simple-1.0.11/xmlsimple.rb +0 -1021
  3068. data/vendor/rails/activesupport/lib/active_support/version.rb +0 -9
  3069. data/vendor/rails/activesupport/lib/active_support/whiny_nil.rb +0 -38
  3070. data/vendor/rails/activesupport/lib/activesupport.rb +0 -1
  3071. data/vendor/rails/activesupport/test/abstract_unit.rb +0 -20
  3072. data/vendor/rails/activesupport/test/autoloading_fixtures/a/b.rb +0 -2
  3073. data/vendor/rails/activesupport/test/autoloading_fixtures/a/c/d.rb +0 -2
  3074. data/vendor/rails/activesupport/test/autoloading_fixtures/a/c/e/f.rb +0 -2
  3075. data/vendor/rails/activesupport/test/autoloading_fixtures/application.rb +0 -1
  3076. data/vendor/rails/activesupport/test/autoloading_fixtures/class_folder.rb +0 -3
  3077. data/vendor/rails/activesupport/test/autoloading_fixtures/class_folder/class_folder_subclass.rb +0 -3
  3078. data/vendor/rails/activesupport/test/autoloading_fixtures/class_folder/inline_class.rb +0 -2
  3079. data/vendor/rails/activesupport/test/autoloading_fixtures/class_folder/nested_class.rb +0 -7
  3080. data/vendor/rails/activesupport/test/autoloading_fixtures/conflict.rb +0 -1
  3081. data/vendor/rails/activesupport/test/autoloading_fixtures/counting_loader.rb +0 -5
  3082. data/vendor/rails/activesupport/test/autoloading_fixtures/cross_site_dependency.rb +0 -2
  3083. data/vendor/rails/activesupport/test/autoloading_fixtures/e.rb +0 -2
  3084. data/vendor/rails/activesupport/test/autoloading_fixtures/module_folder/inline_class.rb +0 -2
  3085. data/vendor/rails/activesupport/test/autoloading_fixtures/module_folder/nested_class.rb +0 -4
  3086. data/vendor/rails/activesupport/test/autoloading_fixtures/module_folder/nested_sibling.rb +0 -2
  3087. data/vendor/rails/activesupport/test/autoloading_fixtures/module_with_custom_const_missing/a/b.rb +0 -1
  3088. data/vendor/rails/activesupport/test/autoloading_fixtures/multiple_constant_file.rb +0 -2
  3089. data/vendor/rails/activesupport/test/autoloading_fixtures/raises_name_error.rb +0 -3
  3090. data/vendor/rails/activesupport/test/autoloading_fixtures/raises_no_method_error.rb +0 -3
  3091. data/vendor/rails/activesupport/test/buffered_logger_test.rb +0 -107
  3092. data/vendor/rails/activesupport/test/clean_logger_test.rb +0 -57
  3093. data/vendor/rails/activesupport/test/core_ext/array_ext_test.rb +0 -250
  3094. data/vendor/rails/activesupport/test/core_ext/blank_test.rb +0 -19
  3095. data/vendor/rails/activesupport/test/core_ext/cgi_ext_test.rb +0 -14
  3096. data/vendor/rails/activesupport/test/core_ext/class/attribute_accessor_test.rb +0 -31
  3097. data/vendor/rails/activesupport/test/core_ext/class/class_inheritable_attributes_test.rb +0 -224
  3098. data/vendor/rails/activesupport/test/core_ext/class/delegating_attributes_test.rb +0 -105
  3099. data/vendor/rails/activesupport/test/core_ext/class_test.rb +0 -46
  3100. data/vendor/rails/activesupport/test/core_ext/date_ext_test.rb +0 -196
  3101. data/vendor/rails/activesupport/test/core_ext/date_time_ext_test.rb +0 -230
  3102. data/vendor/rails/activesupport/test/core_ext/duplicable_test.rb +0 -22
  3103. data/vendor/rails/activesupport/test/core_ext/duration_test.rb +0 -21
  3104. data/vendor/rails/activesupport/test/core_ext/enumerable_test.rb +0 -61
  3105. data/vendor/rails/activesupport/test/core_ext/exception_test.rb +0 -64
  3106. data/vendor/rails/activesupport/test/core_ext/file_test.rb +0 -29
  3107. data/vendor/rails/activesupport/test/core_ext/float_ext_test.rb +0 -25
  3108. data/vendor/rails/activesupport/test/core_ext/hash_ext_test.rb +0 -743
  3109. data/vendor/rails/activesupport/test/core_ext/integer_ext_test.rb +0 -37
  3110. data/vendor/rails/activesupport/test/core_ext/kernel_test.rb +0 -43
  3111. data/vendor/rails/activesupport/test/core_ext/load_error_tests.rb +0 -16
  3112. data/vendor/rails/activesupport/test/core_ext/module/attr_accessor_with_default_test.rb +0 -30
  3113. data/vendor/rails/activesupport/test/core_ext/module/attr_internal_test.rb +0 -52
  3114. data/vendor/rails/activesupport/test/core_ext/module/attribute_accessor_test.rb +0 -33
  3115. data/vendor/rails/activesupport/test/core_ext/module/attribute_aliasing_test.rb +0 -58
  3116. data/vendor/rails/activesupport/test/core_ext/module_test.rb +0 -293
  3117. data/vendor/rails/activesupport/test/core_ext/name_error_test.rb +0 -24
  3118. data/vendor/rails/activesupport/test/core_ext/numeric_ext_test.rb +0 -147
  3119. data/vendor/rails/activesupport/test/core_ext/object_and_class_ext_test.rb +0 -242
  3120. data/vendor/rails/activesupport/test/core_ext/pathname_test.rb +0 -9
  3121. data/vendor/rails/activesupport/test/core_ext/proc_test.rb +0 -11
  3122. data/vendor/rails/activesupport/test/core_ext/range_ext_test.rb +0 -63
  3123. data/vendor/rails/activesupport/test/core_ext/string_ext_test.rb +0 -180
  3124. data/vendor/rails/activesupport/test/core_ext/symbol_test.rb +0 -9
  3125. data/vendor/rails/activesupport/test/core_ext/time_ext_test.rb +0 -420
  3126. data/vendor/rails/activesupport/test/dependencies/check_warnings.rb +0 -2
  3127. data/vendor/rails/activesupport/test/dependencies/conflict.rb +0 -1
  3128. data/vendor/rails/activesupport/test/dependencies/cross_site_depender.rb +0 -3
  3129. data/vendor/rails/activesupport/test/dependencies/mutual_one.rb +0 -4
  3130. data/vendor/rails/activesupport/test/dependencies/mutual_two.rb +0 -4
  3131. data/vendor/rails/activesupport/test/dependencies/raises_exception.rb +0 -3
  3132. data/vendor/rails/activesupport/test/dependencies/requires_nonexistent0.rb +0 -1
  3133. data/vendor/rails/activesupport/test/dependencies/requires_nonexistent1.rb +0 -1
  3134. data/vendor/rails/activesupport/test/dependencies/service_one.rb +0 -5
  3135. data/vendor/rails/activesupport/test/dependencies/service_two.rb +0 -2
  3136. data/vendor/rails/activesupport/test/dependencies_test.rb +0 -751
  3137. data/vendor/rails/activesupport/test/deprecation_test.rb +0 -151
  3138. data/vendor/rails/activesupport/test/inflector_test.rb +0 -248
  3139. data/vendor/rails/activesupport/test/inflector_test_cases.rb +0 -208
  3140. data/vendor/rails/activesupport/test/json/decoding_test.rb +0 -41
  3141. data/vendor/rails/activesupport/test/json/encoding_test.rb +0 -111
  3142. data/vendor/rails/activesupport/test/multibyte_chars_test.rb +0 -173
  3143. data/vendor/rails/activesupport/test/multibyte_conformance.rb +0 -141
  3144. data/vendor/rails/activesupport/test/multibyte_handler_test.rb +0 -367
  3145. data/vendor/rails/activesupport/test/option_merger_test.rb +0 -50
  3146. data/vendor/rails/activesupport/test/ordered_options_test.rb +0 -84
  3147. data/vendor/rails/activesupport/test/test_test.rb +0 -73
  3148. data/vendor/rails/activesupport/test/time_zone_test.rb +0 -98
  3149. data/vendor/rails/activesupport/test/whiny_nil_test.rb +0 -38
  3150. data/vendor/rails/railties/CHANGELOG +0 -1899
  3151. data/vendor/rails/railties/MIT-LICENSE +0 -20
  3152. data/vendor/rails/railties/README +0 -203
  3153. data/vendor/rails/railties/Rakefile +0 -358
  3154. data/vendor/rails/railties/bin/about +0 -3
  3155. data/vendor/rails/railties/bin/performance/benchmarker +0 -3
  3156. data/vendor/rails/railties/bin/performance/profiler +0 -3
  3157. data/vendor/rails/railties/bin/plugin +0 -3
  3158. data/vendor/rails/railties/bin/process/inspector +0 -3
  3159. data/vendor/rails/railties/bin/process/reaper +0 -3
  3160. data/vendor/rails/railties/bin/process/spawner +0 -3
  3161. data/vendor/rails/railties/bin/rails +0 -19
  3162. data/vendor/rails/railties/bin/runner +0 -3
  3163. data/vendor/rails/railties/builtin/rails_info/rails/info.rb +0 -123
  3164. data/vendor/rails/railties/builtin/rails_info/rails/info_controller.rb +0 -9
  3165. data/vendor/rails/railties/builtin/rails_info/rails/info_helper.rb +0 -2
  3166. data/vendor/rails/railties/builtin/rails_info/rails_info_controller.rb +0 -2
  3167. data/vendor/rails/railties/configs/apache.conf +0 -40
  3168. data/vendor/rails/railties/configs/databases/frontbase.yml +0 -28
  3169. data/vendor/rails/railties/configs/databases/mysql.yml +0 -54
  3170. data/vendor/rails/railties/configs/databases/oracle.yml +0 -39
  3171. data/vendor/rails/railties/configs/databases/postgresql.yml +0 -48
  3172. data/vendor/rails/railties/configs/databases/sqlite2.yml +0 -16
  3173. data/vendor/rails/railties/configs/databases/sqlite3.yml +0 -19
  3174. data/vendor/rails/railties/configs/empty.log +0 -0
  3175. data/vendor/rails/railties/configs/initializers/inflections.rb +0 -10
  3176. data/vendor/rails/railties/configs/initializers/mime_types.rb +0 -5
  3177. data/vendor/rails/railties/configs/lighttpd.conf +0 -54
  3178. data/vendor/rails/railties/dispatches/dispatch.fcgi +0 -24
  3179. data/vendor/rails/railties/dispatches/dispatch.rb +0 -10
  3180. data/vendor/rails/railties/dispatches/gateway.cgi +0 -97
  3181. data/vendor/rails/railties/doc/README_FOR_APP +0 -2
  3182. data/vendor/rails/railties/environments/boot.rb +0 -109
  3183. data/vendor/rails/railties/environments/development.rb +0 -18
  3184. data/vendor/rails/railties/environments/environment.rb +0 -59
  3185. data/vendor/rails/railties/environments/production.rb +0 -19
  3186. data/vendor/rails/railties/helpers/application.rb +0 -10
  3187. data/vendor/rails/railties/html/404.html +0 -30
  3188. data/vendor/rails/railties/html/422.html +0 -30
  3189. data/vendor/rails/railties/html/500.html +0 -30
  3190. data/vendor/rails/railties/html/favicon.ico +0 -0
  3191. data/vendor/rails/railties/html/images/rails.png +0 -0
  3192. data/vendor/rails/railties/html/index.html +0 -277
  3193. data/vendor/rails/railties/html/javascripts/application.js +0 -2
  3194. data/vendor/rails/railties/html/javascripts/controls.js +0 -963
  3195. data/vendor/rails/railties/html/javascripts/dragdrop.js +0 -972
  3196. data/vendor/rails/railties/html/javascripts/effects.js +0 -1120
  3197. data/vendor/rails/railties/html/javascripts/prototype.js +0 -4225
  3198. data/vendor/rails/railties/html/robots.txt +0 -5
  3199. data/vendor/rails/railties/lib/code_statistics.rb +0 -107
  3200. data/vendor/rails/railties/lib/commands.rb +0 -17
  3201. data/vendor/rails/railties/lib/commands/about.rb +0 -2
  3202. data/vendor/rails/railties/lib/commands/console.rb +0 -32
  3203. data/vendor/rails/railties/lib/commands/destroy.rb +0 -6
  3204. data/vendor/rails/railties/lib/commands/generate.rb +0 -6
  3205. data/vendor/rails/railties/lib/commands/ncgi/listener +0 -86
  3206. data/vendor/rails/railties/lib/commands/ncgi/tracker +0 -69
  3207. data/vendor/rails/railties/lib/commands/performance/benchmarker.rb +0 -24
  3208. data/vendor/rails/railties/lib/commands/performance/profiler.rb +0 -50
  3209. data/vendor/rails/railties/lib/commands/performance/request.rb +0 -6
  3210. data/vendor/rails/railties/lib/commands/plugin.rb +0 -923
  3211. data/vendor/rails/railties/lib/commands/process/inspector.rb +0 -68
  3212. data/vendor/rails/railties/lib/commands/process/reaper.rb +0 -149
  3213. data/vendor/rails/railties/lib/commands/process/spawner.rb +0 -219
  3214. data/vendor/rails/railties/lib/commands/process/spinner.rb +0 -57
  3215. data/vendor/rails/railties/lib/commands/runner.rb +0 -48
  3216. data/vendor/rails/railties/lib/commands/server.rb +0 -39
  3217. data/vendor/rails/railties/lib/commands/servers/base.rb +0 -31
  3218. data/vendor/rails/railties/lib/commands/servers/lighttpd.rb +0 -94
  3219. data/vendor/rails/railties/lib/commands/servers/mongrel.rb +0 -69
  3220. data/vendor/rails/railties/lib/commands/servers/webrick.rb +0 -66
  3221. data/vendor/rails/railties/lib/commands/update.rb +0 -4
  3222. data/vendor/rails/railties/lib/console_app.rb +0 -30
  3223. data/vendor/rails/railties/lib/console_sandbox.rb +0 -6
  3224. data/vendor/rails/railties/lib/console_with_helpers.rb +0 -26
  3225. data/vendor/rails/railties/lib/dispatcher.rb +0 -24
  3226. data/vendor/rails/railties/lib/fcgi_handler.rb +0 -223
  3227. data/vendor/rails/railties/lib/initializer.rb +0 -682
  3228. data/vendor/rails/railties/lib/rails/plugin.rb +0 -84
  3229. data/vendor/rails/railties/lib/rails/plugin/loader.rb +0 -150
  3230. data/vendor/rails/railties/lib/rails/plugin/locator.rb +0 -78
  3231. data/vendor/rails/railties/lib/rails/version.rb +0 -9
  3232. data/vendor/rails/railties/lib/rails_generator.rb +0 -43
  3233. data/vendor/rails/railties/lib/rails_generator/base.rb +0 -263
  3234. data/vendor/rails/railties/lib/rails_generator/commands.rb +0 -591
  3235. data/vendor/rails/railties/lib/rails_generator/generated_attribute.rb +0 -42
  3236. data/vendor/rails/railties/lib/rails_generator/generators/applications/app/USAGE +0 -9
  3237. data/vendor/rails/railties/lib/rails_generator/generators/applications/app/app_generator.rb +0 -179
  3238. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/USAGE +0 -29
  3239. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/controller_generator.rb +0 -37
  3240. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/controller.rb +0 -10
  3241. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/functional_test.rb +0 -8
  3242. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/helper.rb +0 -2
  3243. data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/view.html.erb +0 -2
  3244. data/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/USAGE +0 -8
  3245. data/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/integration_test_generator.rb +0 -16
  3246. data/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/templates/integration_test.rb +0 -10
  3247. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/USAGE +0 -16
  3248. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/mailer_generator.rb +0 -34
  3249. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/fixture.erb +0 -3
  3250. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/fixture.rhtml +0 -0
  3251. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/mailer.rb +0 -13
  3252. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/unit_test.rb +0 -21
  3253. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/view.erb +0 -3
  3254. data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/view.rhtml +0 -0
  3255. data/vendor/rails/railties/lib/rails_generator/generators/components/migration/USAGE +0 -29
  3256. data/vendor/rails/railties/lib/rails_generator/generators/components/migration/migration_generator.rb +0 -20
  3257. data/vendor/rails/railties/lib/rails_generator/generators/components/migration/templates/migration.rb +0 -11
  3258. data/vendor/rails/railties/lib/rails_generator/generators/components/model/USAGE +0 -27
  3259. data/vendor/rails/railties/lib/rails_generator/generators/components/model/model_generator.rb +0 -45
  3260. data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/fixtures.yml +0 -19
  3261. data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/migration.rb +0 -16
  3262. data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/model.rb +0 -2
  3263. data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/unit_test.rb +0 -8
  3264. data/vendor/rails/railties/lib/rails_generator/generators/components/observer/USAGE +0 -13
  3265. data/vendor/rails/railties/lib/rails_generator/generators/components/observer/observer_generator.rb +0 -16
  3266. data/vendor/rails/railties/lib/rails_generator/generators/components/observer/templates/observer.rb +0 -2
  3267. data/vendor/rails/railties/lib/rails_generator/generators/components/observer/templates/unit_test.rb +0 -8
  3268. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/USAGE +0 -25
  3269. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/plugin_generator.rb +0 -39
  3270. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/MIT-LICENSE +0 -20
  3271. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/README +0 -13
  3272. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/Rakefile +0 -22
  3273. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/USAGE +0 -8
  3274. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/generator.rb +0 -8
  3275. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/init.rb +0 -1
  3276. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/plugin.rb +0 -1
  3277. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/tasks.rake +0 -4
  3278. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/unit_test.rb +0 -8
  3279. data/vendor/rails/railties/lib/rails_generator/generators/components/resource/USAGE +0 -23
  3280. data/vendor/rails/railties/lib/rails_generator/generators/components/resource/resource_generator.rb +0 -74
  3281. data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/controller.rb +0 -2
  3282. data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/functional_test.rb +0 -8
  3283. data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/helper.rb +0 -2
  3284. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/USAGE +0 -25
  3285. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/scaffold_generator.rb +0 -92
  3286. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/controller.rb +0 -85
  3287. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/functional_test.rb +0 -45
  3288. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/helper.rb +0 -2
  3289. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/layout.html.erb +0 -17
  3290. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/style.css +0 -74
  3291. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_edit.html.erb +0 -19
  3292. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_index.html.erb +0 -24
  3293. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_new.html.erb +0 -18
  3294. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_show.html.erb +0 -10
  3295. data/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/USAGE +0 -10
  3296. data/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/session_migration_generator.rb +0 -18
  3297. data/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/templates/migration.rb +0 -16
  3298. data/vendor/rails/railties/lib/rails_generator/lookup.rb +0 -244
  3299. data/vendor/rails/railties/lib/rails_generator/manifest.rb +0 -53
  3300. data/vendor/rails/railties/lib/rails_generator/options.rb +0 -143
  3301. data/vendor/rails/railties/lib/rails_generator/scripts.rb +0 -86
  3302. data/vendor/rails/railties/lib/rails_generator/scripts/destroy.rb +0 -30
  3303. data/vendor/rails/railties/lib/rails_generator/scripts/generate.rb +0 -7
  3304. data/vendor/rails/railties/lib/rails_generator/scripts/update.rb +0 -12
  3305. data/vendor/rails/railties/lib/rails_generator/secret_key_generator.rb +0 -160
  3306. data/vendor/rails/railties/lib/rails_generator/simple_logger.rb +0 -46
  3307. data/vendor/rails/railties/lib/rails_generator/spec.rb +0 -44
  3308. data/vendor/rails/railties/lib/railties_path.rb +0 -1
  3309. data/vendor/rails/railties/lib/ruby_version_check.rb +0 -17
  3310. data/vendor/rails/railties/lib/rubyprof_ext.rb +0 -35
  3311. data/vendor/rails/railties/lib/source_annotation_extractor.rb +0 -62
  3312. data/vendor/rails/railties/lib/tasks/annotations.rake +0 -23
  3313. data/vendor/rails/railties/lib/tasks/databases.rake +0 -363
  3314. data/vendor/rails/railties/lib/tasks/documentation.rake +0 -80
  3315. data/vendor/rails/railties/lib/tasks/framework.rake +0 -118
  3316. data/vendor/rails/railties/lib/tasks/log.rake +0 -9
  3317. data/vendor/rails/railties/lib/tasks/misc.rake +0 -10
  3318. data/vendor/rails/railties/lib/tasks/rails.rb +0 -8
  3319. data/vendor/rails/railties/lib/tasks/routes.rake +0 -17
  3320. data/vendor/rails/railties/lib/tasks/statistics.rake +0 -18
  3321. data/vendor/rails/railties/lib/tasks/testing.rake +0 -118
  3322. data/vendor/rails/railties/lib/tasks/tmp.rake +0 -37
  3323. data/vendor/rails/railties/lib/test_help.rb +0 -20
  3324. data/vendor/rails/railties/lib/webrick_server.rb +0 -165
  3325. data/vendor/rails/railties/test/abstract_unit.rb +0 -24
  3326. data/vendor/rails/railties/test/boot_test.rb +0 -179
  3327. data/vendor/rails/railties/test/console_app_test.rb +0 -29
  3328. data/vendor/rails/railties/test/fcgi_dispatcher_test.rb +0 -265
  3329. data/vendor/rails/railties/test/fixtures/environment_with_constant.rb +0 -1
  3330. data/vendor/rails/railties/test/fixtures/lib/generators/missing_class/missing_class_generator.rb +0 -0
  3331. data/vendor/rails/railties/test/fixtures/lib/generators/working/working_generator.rb +0 -2
  3332. data/vendor/rails/railties/test/fixtures/plugins/default/plugin_with_no_lib_dir/init.rb +0 -0
  3333. data/vendor/rails/railties/test/fixtures/plugins/default/stubby/init.rb +0 -7
  3334. data/vendor/rails/railties/test/fixtures/plugins/default/stubby/lib/stubby_mixin.rb +0 -2
  3335. data/vendor/rails/railties/test/generators/generator_test_helper.rb +0 -195
  3336. data/vendor/rails/railties/test/generators/rails_model_generator_test.rb +0 -109
  3337. data/vendor/rails/railties/test/generators/rails_resource_generator_test.rb +0 -106
  3338. data/vendor/rails/railties/test/generators/rails_scaffold_generator_test.rb +0 -185
  3339. data/vendor/rails/railties/test/initializer_test.rb +0 -218
  3340. data/vendor/rails/railties/test/mocks/routes.rb +0 -6
  3341. data/vendor/rails/railties/test/plugin_loader_test.rb +0 -140
  3342. data/vendor/rails/railties/test/plugin_locator_test.rb +0 -69
  3343. data/vendor/rails/railties/test/plugin_test.rb +0 -141
  3344. data/vendor/rails/railties/test/plugin_test_helper.rb +0 -29
  3345. data/vendor/rails/railties/test/rails_generator_test.rb +0 -137
  3346. data/vendor/rails/railties/test/rails_info_controller_test.rb +0 -48
  3347. data/vendor/rails/railties/test/rails_info_test.rb +0 -105
  3348. data/vendor/rails/railties/test/secret_key_generation_test.rb +0 -35
@@ -1,73 +0,0 @@
1
- require File.dirname(__FILE__) + '/abstract_unit'
2
- require 'active_support/test_case'
3
- class AssertDifferenceTest < Test::Unit::TestCase
4
- def setup
5
- @object = Class.new do
6
- attr_accessor :num
7
- def increment
8
- self.num += 1
9
- end
10
-
11
- def decrement
12
- self.num -= 1
13
- end
14
- end.new
15
- @object.num = 0
16
- end
17
-
18
- if lambda { }.respond_to?(:binding)
19
- def test_assert_no_difference
20
- assert_no_difference '@object.num' do
21
- # ...
22
- end
23
- end
24
-
25
- def test_assert_difference
26
- assert_difference '@object.num', +1 do
27
- @object.increment
28
- end
29
- end
30
-
31
- def test_assert_difference_with_implicit_difference
32
- assert_difference '@object.num' do
33
- @object.increment
34
- end
35
- end
36
-
37
- def test_arbitrary_expression
38
- assert_difference '@object.num + 1', +2 do
39
- @object.increment
40
- @object.increment
41
- end
42
- end
43
-
44
- def test_negative_differences
45
- assert_difference '@object.num', -1 do
46
- @object.decrement
47
- end
48
- end
49
-
50
- def test_expression_is_evaluated_in_the_appropriate_scope
51
- local_scope = 'foo'
52
- silence_warnings do
53
- assert_difference('local_scope; @object.num') { @object.increment }
54
- end
55
- end
56
-
57
- def test_array_of_expressions
58
- assert_difference [ '@object.num', '@object.num + 1' ], +1 do
59
- @object.increment
60
- end
61
- end
62
- else
63
- def default_test; end
64
- end
65
- end
66
-
67
- # These should always pass
68
- class NotTestingThingsTest < Test::Unit::TestCase
69
- include ActiveSupport::Testing::Default
70
- end
71
-
72
- class AlsoDoingNothingTest < ActiveSupport::TestCase
73
- end
@@ -1,98 +0,0 @@
1
- require File.dirname(__FILE__) + '/abstract_unit'
2
-
3
- class TimeZoneTest < Test::Unit::TestCase
4
- class MockTime
5
- def self.now
6
- Time.utc( 2004, 7, 25, 14, 49, 00 )
7
- end
8
-
9
- def self.local(*args)
10
- Time.utc(*args)
11
- end
12
- end
13
-
14
- TimeZone::Time = MockTime
15
-
16
- def test_formatted_offset_positive
17
- zone = TimeZone.create( "Test", 4200 )
18
- assert_equal "+01:10", zone.formatted_offset
19
- end
20
-
21
- def test_formatted_offset_negative
22
- zone = TimeZone.create( "Test", -4200 )
23
- assert_equal "-01:10", zone.formatted_offset
24
- end
25
-
26
- def test_now
27
- zone = TimeZone.create( "Test", 4200 )
28
- assert_equal Time.local(2004,7,25,15,59,00).to_a[0,6], zone.now.to_a[0,6]
29
- end
30
-
31
- def test_today
32
- zone = TimeZone.create( "Test", 43200 )
33
- assert_equal Date.new(2004,7,26), zone.today
34
- end
35
-
36
- def test_adjust_negative
37
- zone = TimeZone.create( "Test", -4200 ) # 4200s == 70 mins
38
- assert_equal Time.utc(2004,7,24,23,55,0), zone.adjust(Time.utc(2004,7,25,1,5,0))
39
- end
40
-
41
- def test_adjust_positive
42
- zone = TimeZone.create( "Test", 4200 )
43
- assert_equal Time.utc(2004,7,26,1,5,0), zone.adjust(Time.utc(2004,7,25,23,55,0))
44
- end
45
-
46
- def test_unadjust
47
- zone = TimeZone.create( "Test", 4200 )
48
- expect = Time.utc(2004,7,24,23,55,0).to_a[0,6]
49
- actual = zone.unadjust(Time.utc(2004,7,25,1,5,0)).to_a[0,6]
50
- assert_equal expect, actual
51
- end
52
-
53
- def test_zone_compare
54
- zone1 = TimeZone.create( "Test1", 4200 )
55
- zone2 = TimeZone.create( "Test1", 5600 )
56
- assert zone1 < zone2
57
- assert zone2 > zone1
58
-
59
- zone1 = TimeZone.create( "Able", 10000 )
60
- zone2 = TimeZone.create( "Zone", 10000 )
61
- assert zone1 < zone2
62
- assert zone2 > zone1
63
-
64
- zone1 = TimeZone.create( "Able", 10000 )
65
- assert zone1 == zone1
66
- end
67
-
68
- def test_to_s
69
- zone = TimeZone.create( "Test", 4200 )
70
- assert_equal "(UTC+01:10) Test", zone.to_s
71
- end
72
-
73
- def test_all_sorted
74
- all = TimeZone.all
75
- 1.upto( all.length-1 ) do |i|
76
- assert all[i-1] < all[i]
77
- end
78
- end
79
-
80
- def test_index
81
- assert_nil TimeZone["bogus"]
82
- assert_not_nil TimeZone["Central Time (US & Canada)"]
83
- assert_not_nil TimeZone[8]
84
- assert_raises(ArgumentError) { TimeZone[false] }
85
- end
86
-
87
- def test_new
88
- a = TimeZone.new("Berlin")
89
- b = TimeZone.new("Berlin")
90
- assert_same a, b
91
- assert_nil TimeZone.new("bogus")
92
- end
93
-
94
- def test_us_zones
95
- assert TimeZone.us_zones.include?(TimeZone["Hawaii"])
96
- assert !TimeZone.us_zones.include?(TimeZone["Kuala Lumpur"])
97
- end
98
- end
@@ -1,38 +0,0 @@
1
- # Stub to enable testing without Active Record
2
- module ActiveRecord
3
- class Base
4
- def save!
5
- end
6
- end
7
- end
8
-
9
- require File.dirname(__FILE__) + '/abstract_unit'
10
- require 'active_support/whiny_nil'
11
-
12
- class WhinyNilTest < Test::Unit::TestCase
13
- def test_unchanged
14
- nil.method_thats_not_in_whiners
15
- rescue NoMethodError => nme
16
- assert_match(/nil.method_thats_not_in_whiners/, nme.message)
17
- end
18
-
19
- def test_active_record
20
- nil.save!
21
- rescue NoMethodError => nme
22
- assert(!(nme.message =~ /nil:NilClass/))
23
- assert_match(/nil\.save!/, nme.message)
24
- end
25
-
26
- def test_array
27
- nil.each
28
- rescue NoMethodError => nme
29
- assert(!(nme.message =~ /nil:NilClass/))
30
- assert_match(/nil\.each/, nme.message)
31
- end
32
-
33
- def test_id
34
- nil.id
35
- rescue RuntimeError => nme
36
- assert(!(nme.message =~ /nil:NilClass/))
37
- end
38
- end
@@ -1,1899 +0,0 @@
1
- *2.0.2* (December 16th, 2007)
2
-
3
- * Changed the default database from mysql to sqlite3, so now running "rails myapp" will have a config/database.yml that's setup for SQLite3 (which in OS X Leopard is installed by default, so is the gem, so everything Just Works with no database configuration at all). To get a Rails application preconfigured for MySQL, just run "rails -d mysql myapp" [DHH]
4
-
5
- * Turned on ActionView::Base.cache_template_loading by default in config/environments/production.rb to prevent file system stat calls for every template loading to see if it changed (this means that you have to restart the application to see template changes in production mode) [DHH]
6
-
7
- * Introduce `rake secret` to output a crytographically secure secret key for use with cookie sessions #10363 [revans]
8
-
9
- * Fixed that local database creation should consider 127.0.0.1 local #9026 [parcelbrat]
10
-
11
- * Fixed that functional tests generated for scaffolds should use fixture calls instead of hard-coded IDs #10435 [boone]
12
-
13
- * Added db:migrate:redo and db:migrate:reset for rerunning existing migrations #10431, #10432 [matt]
14
-
15
- * RAILS_GEM_VERSION may be double-quoted also. #10443 [James Cox]
16
-
17
- * Update rails:freeze:gems to work with RubyGems 0.9.5. [Jeremy Kemper]
18
-
19
-
20
- *2.0.1* (December 7th, 2007)
21
-
22
- * Fixed Active Record bug
23
-
24
-
25
- *2.0.0* (December 6th, 2007)
26
-
27
- * The test task stops with a warning if you have pending migrations. #10377 [Josh Knowles]
28
-
29
- * Add warning to documentation about using transactional fixtures when the code under test uses transactions itself. Closes #7548 [thijsv]
30
-
31
- * Update Prototype to 1.6.0.1. [sam]
32
-
33
- * Update script.aculo.us to 1.8.0.1. [madrobby]
34
-
35
- * Added db:fixtures:identity as a way of locating what ID a foxy fixture was assigned #10332 [jbarnette]
36
-
37
- * Generated fixtures should not specify ids since theyre expected to be foxy fixtures #10330 [jbarnette]
38
-
39
- * Update to Prototype -r8232. [sam]
40
-
41
- * Introduce SecretKeyGenerator for more secure session secrets than CGI::Session's pseudo-random id generator. Consider extracting to Active Support later. #10286 [Hongli Lai]
42
-
43
- * RAILS_GEM_VERSION may be set to any valid gem version specifier. #10057 [Chad Woolley, Cheah Chu Yeow]
44
-
45
- * Load config/preinitializer.rb, if present, before loading the environment. #9943 [Chad Woolley]
46
-
47
- * FastCGI handler ignores unsupported signals like USR2 on Windows. [Grzegorz Derebecki]
48
-
49
- * Only load ActionMailer::TestCase if ActionMailer is loaded. Closes #10137 [defunkt]
50
-
51
- * Fixed that db:reset would use migrations instead of loading db/schema.rb [DHH]
52
-
53
- * Ensure the plugin loader only loads plugins once. Closes #10102 [haruki_zaemon]
54
-
55
- * Refactor Plugin Loader. Add plugin lib paths early, and add lots of tests. Closes #9795 [lazyatom]
56
-
57
- * Added --skip-timestamps to generators that produce models #10036 [Tim Pope]
58
-
59
- * Update Prototype to 1.6.0 and script.aculo.us to 1.8.0. [sam, madrobby]
60
-
61
- * Added db:rollback to rollback the schema one version (or multiple as specified by STEP) [Jeffrey Allan Hardy]
62
-
63
- * Fix typo in test_helper. Closes #9925 [viktor tron]
64
-
65
- * Request profiler. [Jeremy Kemper]
66
-
67
- * config/boot.rb correctly detects RAILS_GEM_VERSION. #9834 [alexch, thewoolleyman]
68
-
69
- * Fixed incorrect migration number if script/generate executed outside of Rails root #7080 [jeremymcanally]
70
-
71
- * Update Prototype to 1.6.0_rc1 and script.aculo.us to 1.8.0 preview 0. [sam, madrobby]
72
-
73
- * Generated fixtures use the actual primary key instead of id. #4343 [Frederick Ros, Tarmo Tänav]
74
-
75
- * Extend the console +helper+ method to allow you to include custom helpers. e.g:
76
- >> helper :posts
77
- >> helper.some_method_from_posts_helper(Post.find(1))
78
-
79
- * db:create works with remote databases whereas db:create:all only creates
80
- databases on localhost. #9753 [Trevor Wennblom]
81
-
82
- * Removed calls to fixtures in generated tests as fixtures :all is now present by default in test_helper.rb [DHH]
83
-
84
- * Add --prefix option to script/server when using mongrel. [dacat]
85
-
86
-
87
- *2.0.0 [Preview Release]* (September 29th, 2007) [Includes duplicates of changes from 1.1.4 - 1.2.3]
88
-
89
- * Fixed that installing plugins from SVN repositories that use trunk/ will work #8188 [evan]
90
-
91
- * Moved the SourceAnnotationExtractor to a separate file in case libraries try to load the rails rake tasks twice. [Rick]
92
-
93
- * Moved Dispatcher to ActionController::Dispatcher. [Jeremy Kemper]
94
-
95
- * Changed the default logger from Ruby's own Logger with the clean_logger extensions to ActiveSupport::BufferedLogger for performance reasons [DHH]. (You can change it back with config.logger = Logger.new("/path/to/log", level).)
96
-
97
- * Added a default 422.html page to be rendered when ActiveRecord::RecordInvalid, ActiveRecord::RecordNotSaved, or ActionController::InvalidAuthenticityToken is raised [DHH]
98
-
99
- * Added --skip-fixture option to script/generate model #6862 [sandofsky]
100
-
101
- * Print Rails version when starting console #7440 [eyematz]
102
-
103
- * Fixed the placement of fixture files for nested models when generating through script/generate model #7547 [jkit]
104
-
105
- * Added TEMPLATE option to rake doc:app to set a custom output template #7737 [Jakob S]
106
-
107
- * Added VERBOSE option to rake db:migrate to turn off output #8204 [jbarnette]
108
-
109
- * Fixed that rake doc:app should use UTF-8 #8906 [farzy]
110
-
111
- * Fixes rake annotations to search erb and builder files as well #9150 [m.langenberg]
112
-
113
- * Removed web_service generator [Koz]
114
-
115
- * Added the :all option to config.plugins that'll include the rest of the plugins not already explicitly named #9613 [Frederick Cheung]. Example:
116
-
117
- # Loads :classic_pagination before all the other plugins
118
- config.plugins = [ :classic_pagination, :all ]
119
-
120
- * Added symbols as a legal way of specifying plugins in config.plugins #9629 [tom]
121
-
122
- * Removed deprecated task names, like clear_logs, in favor of the new namespaced style [DHH]
123
-
124
- * Support multiple config.after_initialize blocks so plugins and apps can more easily cooperate. #9582 [zdennis]
125
-
126
- * Added db:drop:all to drop all databases declared in config/database.yml [DHH]
127
-
128
- * Use attribute pairs instead of the migration name to create add and remove column migrations. Closes #9166 [Pratik Naik]
129
-
130
- For example:
131
-
132
- ruby script/generation migration AddSomeStuffToCustomers first_name:string last_name:string
133
-
134
- or
135
-
136
- ruby script/generation migration RemoveSomeStuffFromCustomers first_name:string last_name:string
137
-
138
- * Add ActiveResource to Rails::Info. Closes #8741 [kampers]
139
-
140
- * use Gem.find_name instead of search when freezing gems. Prevent false positives for other gems with rails in the name. Closes #8729 [wselman]
141
-
142
- * Automatically generate add/remove column commands in specially named migrations like AddLocationToEvent. Closes #9006 [zenspider]
143
-
144
- * Default to plural table name in Rails Generator if ActiveRecord is not present. Closes #8963 [evan]
145
-
146
- * Added rake routes for listing all the defined routes in the system. #8795 [Josh Peek]
147
-
148
- * db:create creates the database for the current environment if it's on localhost. db:create:all creates local databases for all environments. #8783 [matt]
149
-
150
- * Generators: look for generators in all gems, not just those suffixed with _generator, in the gem's generators or rails_generators directory. Allow use of the rails_generators directory instead of the standard generators directory in plugins also. #8730 [Dr Nic, topfunky]
151
-
152
- * MySQL, PostgreSQL: database.yml defaults to utf-8. #8701 [matt]
153
-
154
- * Added db:version to get the current schema number [via Err The Blog]
155
-
156
- * Added --skip-migration option to scaffold and resource generators #8656 [Michael Glaesemann]
157
-
158
- * Fix that FCGIs would leave log files open when asked to shut down by USR2. #3028 [Sebastian Kanthak, Josh Peek]
159
-
160
- * Fixed that dispatcher preparation callbacks only run once in production mode. Mock Routes.reload so that dispatcher preparation callback tests run. [Rick]
161
-
162
- * Fix syntax error in dispatcher than wrecked failsafe responses. #8625 [mtitorenko]
163
-
164
- * Scaffolded validation errors set the appropriate HTTP status for XML responses. #6946, #8622 [Manfred Stienstra, mmmultiworks]
165
-
166
- * Sexy migrations for the session_migration generator. #8561 [Vladislav]
167
-
168
- * Console reload! runs to_prepare callbacks also. #8393 [f.svehla]
169
-
170
- * Generated migrations include timestamps by default. #8501 [Shane Vitarana]
171
-
172
- * Drop Action Web Service from rails:freeze:edge. [Jeremy Kemper]
173
-
174
- * Add db:create, drop, reset, charset, and collation tasks. #8448 [matt]
175
-
176
- * Scaffold generator depends on model generator instead of duplicating it. #7222 [bscofield]
177
-
178
- * Scaffold generator tests. #8443 [pelle]
179
-
180
- * Generated scaffold functional tests use assert_difference. #8421 [Norbert Crombach]
181
-
182
- * Update to Prototype 1.5.1. [Sam Stephenson]
183
-
184
- * Update to script.aculo.us 1.7.1_beta3. [Thomas Fuchs]
185
-
186
- * Generators use *.html.erb view template naming. #8278 [Tim Pope]
187
-
188
- * Updated resource_scaffold and model generators to use short-hand style migrations [DHH]
189
-
190
- * Updated initializer to only load #{RAILS_ENV}.rb once. Added deprecation warning for config.breakpoint_server. [Nicholas Seckar]
191
-
192
- * Removed breakpointer and Binding.of_caller in favor of relying on ruby-debug by Kent Sibilev since the breakpointer has been broken since Ruby 1.8.4 and will not be coming back [DHH]
193
-
194
- To use the new debugger, start your server with script/server --debugger and insert a call to 'debugger'
195
- (instead of 'breakpoint') where you want to jump into the debugger.
196
-
197
- BACKWARDS INCOMPATIBILITY NOTE: You must remove the default line 12 from config/environments/development.rb:
198
-
199
- config.breakpoint_server = true
200
-
201
- This configuration option is no longer available. Rails will fail to start in development mode as long as
202
- that's still present.
203
-
204
- * Resource scaffolding returns the created entity.to_xml. [Jeremy Kemper]
205
-
206
- * Resource scaffolding responds to new.xml. #8185 [Eric Mill]
207
-
208
- * Include Active Resource in rails:freeze:edge rake task. [Thomas Fuchs]
209
-
210
- * Include Active Resource instead of Action Web Service [DHH] You can add AWS back with this in config/environment.rb:
211
-
212
- config.load_paths += %W( #{RAILS_ROOT}/vendor/rails/actionwebservice/lib )
213
-
214
- ...or just gem 'actionwebservice'
215
-
216
- * Give generate scaffold a more descriptive database message. Closes #7316 [jeremymcanally]
217
-
218
- * Canonicalize RAILS_ROOT by using File.expand_path on Windows, which doesn't have to worry about symlinks, and Pathname#realpath elsewhere, which respects symlinks in relative paths but is incompatible with Windows. #6755 [Jeremy Kemper, trevor]
219
-
220
- * Deprecation: remove components from controller paths. [Jeremy Kemper]
221
-
222
- * Add environment variable RAILS_DEFAULT_DATABASE, which allows the builtin default of 'mysql' to be overridden. [Nicholas Seckar]
223
-
224
- * Windows: include MinGW in RUBY_PLATFORM check. #2982 [okkez000@gmail.com, Kaspar Schiess]
225
-
226
- * Split out the basic plugin locator functionality into an abstract super class. Add a FileSystemLocator to do the job of checking the plugin_paths for plugins. Add plugin_locators configuration option which will iterate over the set of plugin locators and load each of the plugin loaders they return. Rename locater everywhere to locator. [Marcel Molina Jr.]
227
-
228
- * Split plugin location and loading out of the initializer and into a new Plugin namespace, which includes Plugin::Locater and Plugin::Loader. The loader class that is used can be customized using the config.plugin_loader option. Those monkey patching the plugin loading subsystem take note, the internals changing here will likely break your modifications. The good news is that it should be substantially easier to hook into the plugin locating and loading process now. [Marcel Molina Jr.]
229
-
230
- * Added assumption that all plugin creators desire to be sharing individuals and release their work under the MIT license [DHH]
231
-
232
- * Added source-annotations extractor tasks to rake [Jamis Buck]. This allows you to add FIXME, OPTIMIZE, and TODO comments to your source code that can then be extracted in concert with rake notes (shows all), rake notes:fixme, rake notes:optimize and rake notes:todo.
233
-
234
- * Added fixtures :all to test_helper.rb to assume that most people just want all their fixtures loaded all the time [DHH]
235
-
236
- * Added config/initializers where all ruby files within it are automatically loaded after the Rails configuration is done, so you don't have to litter the environment.rb file with a ton of mixed stuff [DHH]
237
-
238
- * For new apps, generate a random secret for the cookie-based session store. [Jeremy Kemper]
239
-
240
- * Stop swallowing errors during rake test [Koz]
241
-
242
- * Update Rails Initializer to use ActionController::Base#view_paths [Rick]
243
-
244
- * Fix gem deprecation warnings, which also means depending on RubyGems 0.9.0+ [Chad Fowler]
245
-
246
- * Plugins may be symlinked in vendor/plugins. #4245 [brandon, progrium@gmail.com]
247
-
248
- * Resource generator depends on the model generator rather than duplicating it. #7269 [bscofield]
249
-
250
- * Add/Update usage documentation for script/destroy, resource generator and scaffold_resource generator. Closes #7092, #7271, #7267. [bscofield]
251
-
252
- * Update to script.aculo.us 1.7.0. [Thomas Fuchs]
253
-
254
- * Update to Prototype 1.5.0. [Sam Stephenson]
255
-
256
- * Generator: use destination path for diff tempfiles. #7015 [alfeld]
257
-
258
- * Fixed that webrick would strip leading newlines and hang connection #4156 [psross]
259
-
260
- * Ensure plugins are in the Dependencies.load_once_paths collection by default. [Rick]
261
- If you really want your plugins to reload, add this to the very top of init.rb:
262
-
263
- Dependencies.load_once_paths.delete(lib_path)
264
-
265
- * Allow config.to_prepare to work, make the dispatcher safe to 're require'. [Koz, Nicholas Seckar]
266
-
267
- * Fix scaffold_resource generator so it respects the --pretend argument when creating the routes file. Closes #6852 [fearoffish]
268
-
269
- * Fix Webrick Daemon dispatching bug regarding a bad current working directory. Closes #4899 [Rick Olson]
270
-
271
- * Make config.plugins affect the load path and the dependencies system. Allows you to control plugin loading order, and keep disabled plugins off the load path. [James Adam]
272
-
273
- * Don't generate a components directory in new Rails apps. [Jeremy Kemper]
274
-
275
- * Fixed script/process/spawner to work properly with Mongrel including in -r (daemonize mode) [DHH]
276
-
277
- * Added one-letter aliases for the three default environments to script/console, so script/console p will load the production environment (t for test, d for development) [DHH]
278
-
279
- * Fixed that script/server running against Mongrel should tail the proper log regardless of the environment [DHH]
280
-
281
- * Update initializer to load Rails::VERSION as soon as possible. Closes #6698. [Nicholas Seckar]
282
-
283
- * Added ActiveRecord::Base.clear_active_connections! in development mode so the database connection is not carried over from request to request. Some databases won't reread the schema if that doesn't happen (I'm looking at you SQLite), so you have to restart the server after each migration (= no fun) [DHH]
284
-
285
- * Made RAILS_GEM_VERSION work for beta gems too, so specifying 1.1.6 will give you 1.1.6.4520 if available [DHH]
286
-
287
- * Update to Prototype and script.aculo.us [5579]. [Thomas Fuchs]
288
-
289
- * Made script/server work with -e and -d when using Mongrel [DHH]
290
-
291
- * Update to Prototype 1.5.0_rc2 [5550] which makes it work in Opera again [Thomas Fuchs]
292
-
293
- * Make sure that exceptions which are thrown outside of the user code try their best to be handeled in ApplicationController#rescue_action [Tobias Luetke]
294
-
295
- * Rails::VERSION::STRING should always be available without having to require 'rails/version'. #6244 [fearoffish]
296
-
297
- * Update to Prototype 1.5.0_rc2. [Sam Stephenson]
298
-
299
- * Add grep-based fallback to reaper, to work in pidless setups [Jamis Buck]
300
-
301
- * Only wrap request processing with our USR1 signal handler so FastCGI can trap it and raise an exception while waiting for connections. Idle processes exit immediately rather than waiting for another request; active processes gracefully exit when the request is finished. [Jeremy Kemper]
302
-
303
- * Alter prior change to use require_dependency instead of require_or_load. Causes ApplicationController to be reloaded again. Closes #6587. [Nicholas Seckar]
304
-
305
- * Rake: use absolute paths to load lib and vendor tasks so they may be run outside of RAILS_ROOT. #6584 [jchris]
306
-
307
- * Remove temporary crutch to help ApplicationController be unloaded. Closes #6496. [Nicholas Seckar]
308
-
309
- * scaffold_resource generator uses _path named routes and head instead of render :nothing => true. #6545 [Josh Susser]
310
-
311
- * Generator can show diff on file collision to help you decide whether to skip or overwrite. #6364 [jeffw, Jeremy Kemper]
312
-
313
- * Generated directories are recursively svn added, like mkdir -p. #6416 [NeilW]
314
-
315
- * resource and scaffold_resource generators add a restful route to config/routes.rb [Jeremy Kemper]
316
-
317
- * Revert environment changes for autoload_paths. [Koz]
318
-
319
- * Update to latest Prototype, which doesn't serialize disabled form elements, adds clone() to arrays, empty/non-string Element.update() and adds a fixes excessive error reporting in WebKit beta versions [Thomas Fuchs]
320
-
321
- * Clean up the output of rake stats, de-emphasise components and apis, and remove the indents for tests [Koz]
322
-
323
- * Added option to script/process/spawner of specifying the binding address #5133 [zsombor]
324
-
325
- * Update environment.rb comments to include config.autoload_paths. Closes #6478 [caio]
326
-
327
- * Update scaffold to use new form_tag block functionality. Closes #6480. [BobSilva]
328
-
329
- * Plugin generator: check for class collisions. #4833 [vinbarnes@gmail.com]
330
-
331
- * Mailer generator: handle mailers in modules, set mime_version in unit test. [Jeremy Kemper]
332
-
333
- * Set $KCODE to 'u' by default to enable the multibyte safe String#chars proxy. [Koz]
334
-
335
- * Added config.plugins to control which plugins are loaded #6269 [skaes]. By default, everything in vendor/plugins will be loaded, but if you specify config.plugins, only those will be loaded. Example:
336
-
337
- config.plugins = %w[ routing_navigator simply_helpful ]
338
-
339
- * Clean up html on included error pages. [Tim Lucas]
340
-
341
- * Fixed default 404.html and 500.htmls to remove extreme ugliness and include human language [DHH]
342
-
343
- * Update to latest Prototype and script.aculo.us trunk versions [Thomas Fuchs]
344
-
345
- * PostgreSQL: db:test:purge closes open database connections first. #6236 [alex]
346
-
347
- * Fixed test:uncommitted on Windows (backslash issue) #4999 [paul@paulbutcher.com]
348
-
349
- * Fixed migration creation to work with namespaced models, so script/generate model Gallery::Image will use create_table :gallery_images #6327 [BobSilva]
350
-
351
- * Fixed rename_table on SQLite tables with indexes defined #5942 [brandon@opensoul.org]
352
-
353
- * Added default timeout setting of 5 seconds to SQLite3 database.yml configurations [DHH]
354
-
355
- * Added generated attribute options to script/generate model, like the one found in scaffold_resource and resource [DHH]. Examples:
356
-
357
- ./script/generate model post title:string created_on:date body:text published:boolean
358
-
359
- * Added script/generate resource which works just like scaffold_resource, but creates empty placeholders instead of predefined [DHH]
360
-
361
- * script/runner can run files, pass on arguments, and be used as a shebang. #6286 [Tuxie, dlpond]
362
- #!/usr/bin/env /path/to/my/app/script/runner
363
- # Example: just start using your models as if you are in script/console
364
- Product.find(:all).each { |product| product.check_inventory }
365
-
366
- * Look for rake tasks in plugin subdirs. #6259 [obrie]
367
-
368
- * Added map.connect ':controller/:action/:id.:format' as a default route to config/routes.rb [DHH]
369
-
370
- * Updated prototype.js to 1.5.0_rc1 with latest fixes. [Rick Olson]
371
-
372
- - XPATH support
373
- - Make Form.getElements() return elements in the correct order
374
- - fix broken Form.serialize return
375
-
376
- * session_migration generator adds an index on updated_at. #6207 [grg]
377
-
378
- * script/server creates the tmp/pids directory. #6204 [jonathan]
379
-
380
- * Fix script/console --sandbox for internal transactions changes. #5738 [chris@octopod.info, charles.gerungan@gmail.com]
381
-
382
- * Remove the uncanny default of adding all app/models/*/ directories to the load path. This change will break application which expect the current behavior. As
383
- documented in initializer.rb, the workaround is:
384
-
385
- config.autoload_paths += Dir[RAILS_ROOT + '/app/models/*/']
386
-
387
- References #6031. [Nicholas Seckar]
388
-
389
- * Update to script.aculo.us 1.6.3 [Thomas Fuchs]
390
-
391
- * Update to Prototype 1.5.0_rc1 [sam]
392
-
393
- * Formally Deprecate the old rake tasks. [Koz]
394
-
395
- * Thoroughly test the FCGI dispatcher. #5970 [Kevin Clark]
396
-
397
- * Remove Dir.chdir in the Webrick DispatchServlet#initialize method. Fix bad path errors when trying to load config/routes.rb. [Rick Olson]
398
-
399
- * Tighten rescue clauses. #5985 [james@grayproductions.net]
400
-
401
- * Cleaning up tests. [Kevin Clark, Jeremy Kemper]
402
-
403
- * Add Dependencies.load_once_paths. [Nicholas Seckar]
404
-
405
- * Updated to script.aculo.us 1.6.2 [Thomas Fuchs]
406
-
407
- * Assign Routing.controller_paths; fix script/about and rails info controller. [Nicholas Seckar]
408
-
409
- * Don't warn dispatcher of Reloadable deprecations. [Nicholas Seckar]
410
-
411
- * Rearrange application resetting and preparation, fix bug with leaking subclasses hash in ActiveRecord::Base [Rick Olson]
412
-
413
- ActiveRecord::Base.reset_subclasses is called before Dependencies are cleared and classes removed.
414
- ActiveRecord::Base.instantiate_observers is called during a Dispatcher preparation callback.
415
-
416
- * Add missing mock directories from the autoload_paths configuration. [Rick Olson]
417
-
418
- * Nested controller scaffolding also nests the generated layout. [iain d broadfoot]
419
-
420
- * Add "require 'dispatcher'" to webrick server in the continuing quest to squash webrick weirdness. [Nicholas Seckar]
421
-
422
- * Add autoload_paths support to Initializer. [Nicholas Seckar]
423
-
424
- * Fix Dispatcher.reset_application! so that AR subclasses are removed and Observers re-initialized *after* Reloadable classes are removed. Closes #5743. [Rick Olson]
425
-
426
- * Clarify usage of script/plugin source. Closes #5344. [james.adam@gmail.com]
427
-
428
- * Add Dispatcher.to_prepare and config.to_prepare to provide a pre-request hook. [Nicholas Seckar]
429
-
430
- * Tweak the Rails load order so observers are loaded after plugins, and reloaded in development mode. Closed #5279. [Rick Olson]
431
-
432
- * Added that you can change the web server port in config/lighttpd.conf from script/server --port/-p #5465 [mats@imediatec.co.uk]
433
-
434
- * script/performance/profiler compatibility with the new ruby-prof, including an option to choose the results printer. #5679 [shugo@ruby-lang.org]
435
-
436
- * Fixed the failsafe response so it uses either the current recognized controller or ApplicationController. [Rick Olson]
437
-
438
- * Make sure script/reaper only reaps dispatcher pids by default, and not the spawner's pid. [Jamis Buck]
439
-
440
- * Fix script/plugin about so it uses about.yml and not meta.yml. [James Adam]
441
-
442
- * Dispatcher processes rescued actions with the same controller that processed the request. #4625 [sd@notso.net]
443
-
444
- * rails -d frontbase to create a new project with a frontbase database.yml. #4945 [mlaster@metavillage.com]
445
-
446
- * Ensure the logger is initialized. #5629 [mike@clarkware.com]
447
-
448
- * Added Mongrel-spawning capabilities to script/process/spawner. Mongrel will be the default choice if installed, otherwise FCGI is tried [DHH]. Examples:
449
-
450
- spawner # starts instances on 8000, 8001, and 8002 using Mongrel if available
451
- spawner fcgi # starts instances on 8000, 8001, and 8002 using FCGI
452
- spawner mongrel -i 5 # starts instances on 8000, 8001, 8002, 8003, and 8004 using Mongrel
453
- spawner -p 9100 -i 10 # starts 10 instances counting from 9100 to 9109 using Mongrel if available
454
- spawner -p 9100 -r 5 # starts 3 instances counting from 9100 to 9102 and attempts start them every 5 seconds
455
-
456
- Also note that script/process/reaper is Mongrel capable. So the combination of spawner and reaper is a built-in alternative to something like mongrel_cluster.
457
-
458
- * Update scaffolding functional tests to use :id => people(:first) instead of :id => 1. #5612 [evan@protest.net]
459
-
460
- * db:test:clone should remove existing tables before reloading the schema. #5607 [sveit@tradeharbor.com]
461
-
462
- * Fixed migration generation for class names like ACLController #5197 [brad@madriska.com]
463
-
464
- * Added show_source_list and show_call_stack to breakpoints to make it easier to get context #5476 [takiuchi@drecom.co.jp]. Examples:
465
-
466
- irb(#<TopController:0x40822a68>):002:0> show_source_list
467
- 0001 class TopController < ApplicationController
468
- 0002 def show
469
- 0003-> breakpoint
470
- 0004 end
471
- 0005
472
- 0006 def index
473
- 0007 end
474
- 0008
475
- => "/path/to/rails/root/app/controllers/top_controller.rb"
476
-
477
- irb(#<TopController:0x40822a68>):004:0> show_call_stack 3
478
- vendor/rails/railties/lib/breakpoint.rb:536:in `breakpoint'
479
- vendor/rails/railties/lib/breakpoint.rb:536:in `breakpoint'
480
- app/controllers/top_controller.rb:3:in `show'
481
- => "/path/to/rails/root/app/controllers/top_controller.rb:3"
482
-
483
- * Generate scaffold layout in subdirectory appropriate to its module nesting. #5511 [nils@alumni.rice.edu]
484
-
485
- * Mongrel: script/server tails the rails log like it does with lighttpd. Prefer mongrel over lighttpd. #5541 [mike@clarkware.com]
486
-
487
- * Don't assume Active Record is available. #5497 [bob@sporkmonger.com]
488
-
489
- * Mongrel: script/server works on Win32. #5499 [jeremydurham@gmail.com]
490
-
491
- * Remove opts.on { |options[:option_name] } style hash assignment. Closes #4440. [nicksieger@gmail.com]
492
-
493
- * Mongrel support for script/server. #5475 [jeremydurham@gmail.com]
494
-
495
- * Fix script/plugin so it doesn't barf on invalid URLs [Rick]
496
-
497
- * Fix plugin install bug at dir with space. (closes #5359) [Yoshimasa NIWA]
498
-
499
- * Fix bug with 'script/plugin install' so it reports unknown plugin names correctly. [Rick]
500
-
501
- * Added uninstall.rb hook to plugin handling, such that plugins have a way of removing assets and other artifacts on removal #5003 [takiuchi@drecom.co.jp]
502
-
503
- * Create temporary dirs relative to RAILS_ROOT when running script/server #5014 [elliot@townx.org]
504
-
505
- * Minor tweak to dispatcher to use recognize instead of recognize!, as per the new routes. [Jamis Buck]
506
-
507
- * Make "script/plugin install" work with svn+ssh URLs. [Sam Stephenson]
508
-
509
- * Added lib/ to the directories that will get application docs generated [DHH]
510
-
511
- * Add observer generator. Closes #5167. [francois.beausoleil@gmail.com]
512
-
513
- * Session migration generator obeys pluralize_table_names. #5145 [james.adam@gmail.com]
514
-
515
- * rake test:recent understands subdirectories. #2925 [jerrett@bravenet.com]
516
-
517
- * The app generator detects the XAMPP package's MySQL socket location. #3832 [elliot@townx.org]
518
-
519
- * The app generator sets a session key in application.rb so apps running on the same host may distinguish their cookies. #2967 [rcoder, rails-bug@owl.me.uk]
520
-
521
- * Distinguish the spawners for different processes [DHH]
522
-
523
- * Added -n/--process to script/process/spawner name the process pid (default is dispatch) [DHH]
524
-
525
- * Namespaced OrderedHash so the Rails implementation does not clash with any others. (fixes #4911) [Julian Tarkhanov]
526
-
527
- * Replace Ruby's deprecated append_features in favor of included. [Marcel Molina Jr.]
528
-
529
- * Added script/process/inspector to do simple process status information on Rails dispatchers keeping pid files in tmp/pids [DHH]
530
-
531
- * Added pid file usage to script/process/spawner and script/process/reaper along with a directive in default config/lighttpd.conf file to record the pid. They will all save their pid file in tmp/pids [DHH]
532
-
533
-
534
- *1.2.3* (March 12th, 2007)
535
-
536
- * Ruby 1.8.6 compatibility
537
-
538
- * Windows: include MinGW in RUBY_PLATFORM check. #2982 [okkez000@gmail.com, Kaspar Schiess]
539
-
540
- * Stop swallowing errors during rake test [Koz]
541
-
542
-
543
- *1.2.2* (February 5th, 2007)
544
-
545
- * Fix gem deprecation warnings, which also means depending on RubyGems 0.9.0+ [Chad Fowler]
546
-
547
- * Require the dispatcher for Rails::Configuration#to_prepare. [Rick]
548
-
549
-
550
- *1.2.1* (January 16th, 2007)
551
-
552
- * Updated to Active Record 1.15.1, Action Pack 1.13.1, Action Mailer 1.3.1, Action Web Service 1.2.1
553
-
554
-
555
- *1.2.0* (January 16th, 2007)
556
-
557
- * Update to Prototype 1.5.0. [Sam Stephenson]
558
-
559
- * Generator: use destination path for diff tempfiles. #7015 [alfeld]
560
-
561
- * Fixed that webrick would strip leading newlines and hang connection #4156 [psross]
562
-
563
- * Ensure plugins are in the Dependencies.load_once_paths collection by default. [Rick]
564
- If you really want your plugins to reload, add this to the very top of init.rb:
565
-
566
- Dependencies.load_once_paths.delete(lib_path)
567
-
568
- * Fix scaffold_resource generator so it respects the --pretend argument when creating the routes file. Closes #6852 [fearoffish]
569
-
570
- * Fix Webrick Daemon dispatching bug regarding a bad current working directory. Closes #4899 [Rick Olson]
571
-
572
- * Make config.plugins affect the load path and the dependencies system. Allows you to control plugin loading order, and keep disabled plugins off the load path. [James Adam]
573
-
574
- * Don't generate a components directory in new Rails apps. [Jeremy Kemper]
575
-
576
- * Fixed script/process/spawner to work properly with Mongrel including in -r (daemonize mode) [DHH]
577
-
578
- * Deprecated the name route "root" as it'll be used as a shortcut for map.connect '' in Rails 2.0 [DHH]
579
-
580
- * Fixed that script/server running against Mongrel should tail the proper log regardless of the environment [DHH]
581
-
582
- * Update initializer to load Rails::VERSION as soon as possible. Closes #6698. [Nicholas Seckar]
583
-
584
- * Added ActiveRecord::Base.clear_active_connections! in development mode so the database connection is not carried over from request to request. Some databases won't reread the schema if that doesn't happen (I'm looking at you SQLite), so you have to restart the server after each migration (= no fun) [DHH]
585
-
586
- * Made RAILS_GEM_VERSION work for beta gems too, so specifying 1.1.6 will give you 1.1.6.4520 if available [DHH]
587
-
588
- * Update to Prototype and script.aculo.us [5579]. [Sam Stephenson, Thomas Fuchs]
589
-
590
- * Made script/server work with -e and -d when using Mongrel [DHH]
591
-
592
- * Make sure that exceptions which are thrown outside of the user code try their best to be handeled in ApplicationController#rescue_action [Tobias Luetke]
593
-
594
- * Rails::VERSION::STRING should always be available without having to require 'rails/version'. #6244 [fearoffish]
595
-
596
- * Add grep-based fallback to reaper, to work in pidless setups [Jamis Buck]
597
-
598
- * Only wrap request processing with our USR1 signal handler so FastCGI can trap it and raise an exception while waiting for connections. Idle processes exit immediately rather than waiting for another request; active processes gracefully exit when the request is finished. [Jeremy Kemper]
599
-
600
- * Alter prior change to use require_dependency instead of require_or_load. Causes ApplicationController to be reloaded again. Closes #6587. [Nicholas Seckar]
601
-
602
- * Rake: use absolute paths to load lib and vendor tasks so they may be run outside of RAILS_ROOT. #6584 [jchris]
603
-
604
- * scaffold_resource generator uses _path named routes and head instead of render :nothing => true. #6545 [Josh Susser]
605
-
606
- * Generator can show diff on file collision to help you decide whether to skip or overwrite. #6364 [jeffw, Jeremy Kemper]
607
-
608
- * Generated directories are recursively svn added, like mkdir -p. #6416 [NeilW]
609
-
610
- * resource and scaffold_resource generators add a restful route to config/routes.rb [Jeremy Kemper]
611
-
612
- * Revert environment changes for autoload_paths. [Koz]
613
-
614
- * Clean up the output of rake stats, de-emphasise components and apis, and remove the indents for tests [Koz]
615
-
616
- * Added option to script/process/spawner of specifying the binding address #5133 [zsombor]
617
-
618
- * Update environment.rb comments to include config.autoload_paths. Closes #6478 [caio]
619
-
620
- * Update scaffold to use new form_tag block functionality. Closes #6480. [BobSilva]
621
-
622
- * Plugin generator: check for class collisions. #4833 [vinbarnes@gmail.com]
623
-
624
- * Mailer generator: handle mailers in modules, set mime_version in unit test. [Jeremy Kemper]
625
-
626
- * Set $KCODE to 'u' by default to enable the multibyte safe String#chars proxy. [Koz]
627
-
628
- * Added config.plugins to control which plugins are loaded #6269 [skaes]. By default, everything in vendor/plugins will be loaded, but if you specify config.plugins, only those will be loaded. Example:
629
-
630
- config.plugins = %w[ routing_navigator simply_helpful ]
631
-
632
- * Clean up html on included error pages. [Tim Lucas]
633
-
634
- * Fixed default 404.html and 500.htmls to remove extreme ugliness and include human language [DHH]
635
-
636
- * Update to latest Prototype and script.aculo.us trunk versions [Thomas Fuchs]
637
-
638
- * PostgreSQL: db:test:purge closes open database connections first. #6236 [alex]
639
-
640
- * Fixed test:uncommitted on Windows (backslash issue) #4999 [paul@paulbutcher.com]
641
-
642
- * Fixed migration creation to work with namespaced models, so script/generate model Gallery::Image will use create_table :gallery_images #6327 [BobSilva]
643
-
644
- * Fixed rename_table on SQLite tables with indexes defined #5942 [brandon@opensoul.org]
645
-
646
- * Added default timeout setting of 5 seconds to SQLite3 database.yml configurations [DHH]
647
-
648
- * Added generated attribute options to script/generate model, like the one found in scaffold_resource and resource [DHH]. Examples:
649
-
650
- ./script/generate model post title:string created_on:date body:text published:boolean
651
-
652
- * Added script/generate resource which works just like scaffold_resource, but creates empty placeholders instead of predefined [DHH]
653
-
654
- * script/runner can run files, pass on arguments, and be used as a shebang. #6286 [Tuxie, dlpond]
655
- #!/usr/bin/env /path/to/my/app/script/runner
656
- # Example: just start using your models as if you are in script/console
657
- Product.find(:all).each { |product| product.check_inventory }
658
-
659
- * Look for rake tasks in plugin subdirs. #6259 [obrie]
660
-
661
- * Added map.connect ':controller/:action/:id.:format' as a default route to config/routes.rb [DHH]
662
-
663
- * session_migration generator adds an index on updated_at. #6207 [grg]
664
-
665
- * script/server creates the tmp/pids directory. #6204 [jonathan]
666
-
667
- * Fix script/console --sandbox for internal transactions changes. #5738 [chris@octopod.info, charles.gerungan@gmail.com]
668
-
669
- * Remove the uncanny default of adding all app/models/*/ directories to the load path. This change will break application which expect the current behavior. As
670
- documented in initializer.rb, the workaround is:
671
-
672
- config.autoload_paths += Dir[RAILS_ROOT + '/app/models/*/']
673
-
674
- References #6031. [Nicholas Seckar]
675
-
676
- * Update to script.aculo.us 1.6.3 [Thomas Fuchs]
677
-
678
- * Formally Deprecate the old rake tasks. [Koz]
679
-
680
- * Thoroughly test the FCGI dispatcher. #5970 [Kevin Clark]
681
-
682
- * Remove Dir.chdir in the Webrick DispatchServlet#initialize method. Fix bad path errors when trying to load config/routes.rb. [Rick Olson]
683
-
684
- * Tighten rescue clauses. #5985 [james@grayproductions.net]
685
-
686
- * Cleaning up tests. [Kevin Clark, Jeremy Kemper]
687
-
688
- * Add Dependencies.load_once_paths. [Nicholas Seckar]
689
-
690
- * Assign Routing.controller_paths; fix script/about and rails info controller. [Nicholas Seckar]
691
-
692
- * Don't warn dispatcher of Reloadable deprecations. [Nicholas Seckar]
693
-
694
- * Rearrange application resetting and preparation, fix bug with leaking subclasses hash in ActiveRecord::Base [Rick Olson]
695
-
696
- ActiveRecord::Base.reset_subclasses is called before Dependencies are cleared and classes removed.
697
- ActiveRecord::Base.instantiate_observers is called during a Dispatcher preparation callback.
698
-
699
- * Add missing mock directories from the autoload_paths configuration. [Rick Olson]
700
-
701
- * Nested controller scaffolding also nests the generated layout. [iain d broadfoot]
702
-
703
- * Add "require 'dispatcher'" to webrick server in the continuing quest to squash webrick weirdness. [Nicholas Seckar]
704
-
705
- * Add autoload_paths support to Initializer. [Nicholas Seckar]
706
-
707
- * Fix Dispatcher.reset_application! so that AR subclasses are removed and Observers re-initialized *after* Reloadable classes are removed. Closes #5743. [Rick Olson]
708
-
709
- * Clarify usage of script/plugin source. Closes #5344. [james.adam@gmail.com]
710
-
711
- * Add Dispatcher.to_prepare and config.to_prepare to provide a pre-request hook. [Nicholas Seckar]
712
-
713
- * Tweak the Rails load order so observers are loaded after plugins, and reloaded in development mode. Closed #5279. [Rick Olson]
714
-
715
- * Added that you can change the web server port in config/lighttpd.conf from script/server --port/-p #5465 [mats@imediatec.co.uk]
716
-
717
- * script/performance/profiler compatibility with the new ruby-prof, including an option to choose the results printer. #5679 [shugo@ruby-lang.org]
718
-
719
- * Fixed the failsafe response so it uses either the current recognized controller or ApplicationController. [Rick Olson]
720
-
721
- * Make sure script/reaper only reaps dispatcher pids by default, and not the spawner's pid. [Jamis Buck]
722
-
723
- * Fix script/plugin about so it uses about.yml and not meta.yml. [James Adam]
724
-
725
- * Dispatcher processes rescued actions with the same controller that processed the request. #4625 [sd@notso.net]
726
-
727
- * rails -d frontbase to create a new project with a frontbase database.yml. #4945 [mlaster@metavillage.com]
728
-
729
- * Ensure the logger is initialized. #5629 [mike@clarkware.com]
730
-
731
- * Added Mongrel-spawning capabilities to script/process/spawner. Mongrel will be the default choice if installed, otherwise FCGI is tried [DHH]. Examples:
732
-
733
- spawner # starts instances on 8000, 8001, and 8002 using Mongrel if available
734
- spawner fcgi # starts instances on 8000, 8001, and 8002 using FCGI
735
- spawner mongrel -i 5 # starts instances on 8000, 8001, 8002, 8003, and 8004 using Mongrel
736
- spawner -p 9100 -i 10 # starts 10 instances counting from 9100 to 9109 using Mongrel if available
737
- spawner -p 9100 -r 5 # starts 3 instances counting from 9100 to 9102 and attempts start them every 5 seconds
738
-
739
- Also note that script/process/reaper is Mongrel capable. So the combination of spawner and reaper is a built-in alternative to something like mongrel_cluster.
740
-
741
- * Update scaffolding functional tests to use :id => people(:first) instead of :id => 1. #5612 [evan@protest.net]
742
-
743
- * db:test:clone should remove existing tables before reloading the schema. #5607 [sveit@tradeharbor.com]
744
-
745
- * Fixed migration generation for class names like ACLController #5197 [brad@madriska.com]
746
-
747
- * Added show_source_list and show_call_stack to breakpoints to make it easier to get context #5476 [takiuchi@drecom.co.jp]. Examples:
748
-
749
- irb(#<TopController:0x40822a68>):002:0> show_source_list
750
- 0001 class TopController < ApplicationController
751
- 0002 def show
752
- 0003-> breakpoint
753
- 0004 end
754
- 0005
755
- 0006 def index
756
- 0007 end
757
- 0008
758
- => "/path/to/rails/root/app/controllers/top_controller.rb"
759
-
760
- irb(#<TopController:0x40822a68>):004:0> show_call_stack 3
761
- vendor/rails/railties/lib/breakpoint.rb:536:in `breakpoint'
762
- vendor/rails/railties/lib/breakpoint.rb:536:in `breakpoint'
763
- app/controllers/top_controller.rb:3:in `show'
764
- => "/path/to/rails/root/app/controllers/top_controller.rb:3"
765
-
766
- * Generate scaffold layout in subdirectory appropriate to its module nesting. #5511 [nils@alumni.rice.edu]
767
-
768
- * Mongrel: script/server tails the rails log like it does with lighttpd. Prefer mongrel over lighttpd. #5541 [mike@clarkware.com]
769
-
770
- * Don't assume Active Record is available. #5497 [bob@sporkmonger.com]
771
-
772
- * Mongrel: script/server works on Win32. #5499 [jeremydurham@gmail.com]
773
-
774
- * Remove opts.on { |options[:option_name] } style hash assignment. Closes #4440. [nicksieger@gmail.com]
775
-
776
- * Mongrel support for script/server. #5475 [jeremydurham@gmail.com]
777
-
778
- * Fix script/plugin so it doesn't barf on invalid URLs [Rick]
779
-
780
- * Fix plugin install bug at dir with space. (closes #5359) [Yoshimasa NIWA]
781
-
782
- * Fix bug with 'script/plugin install' so it reports unknown plugin names correctly. [Rick]
783
-
784
- * Added uninstall.rb hook to plugin handling, such that plugins have a way of removing assets and other artifacts on removal #5003 [takiuchi@drecom.co.jp]
785
-
786
- * Create temporary dirs relative to RAILS_ROOT when running script/server #5014 [elliot@townx.org]
787
-
788
- * Minor tweak to dispatcher to use recognize instead of recognize!, as per the new routes. [Jamis Buck]
789
-
790
- * Make "script/plugin install" work with svn+ssh URLs. [Sam Stephenson]
791
-
792
- * Added lib/ to the directories that will get application docs generated [DHH]
793
-
794
- * Add observer generator. Closes #5167. [francois.beausoleil@gmail.com]
795
-
796
- * Session migration generator obeys pluralize_table_names. #5145 [james.adam@gmail.com]
797
-
798
- * rake test:recent understands subdirectories. #2925 [jerrett@bravenet.com]
799
-
800
- * The app generator detects the XAMPP package's MySQL socket location. #3832 [elliot@townx.org]
801
-
802
- * The app generator sets a session key in application.rb so apps running on the same host may distinguish their cookies. #2967 [rcoder, rails-bug@owl.me.uk]
803
-
804
- * Distinguish the spawners for different processes [DHH]
805
-
806
- * Added -n/--process to script/process/spawner name the process pid (default is dispatch) [DHH]
807
-
808
- * Namespaced OrderedHash so the Rails implementation does not clash with any others. (fixes #4911) [Julian Tarkhanov]
809
-
810
- * Replace Ruby's deprecated append_features in favor of included. [Marcel Molina Jr.]
811
-
812
- * Added script/process/inspector to do simple process status information on Rails dispatchers keeping pid files in tmp/pids [DHH]
813
-
814
- * Added pid file usage to script/process/spawner and script/process/reaper along with a directive in default config/lighttpd.conf file to record the pid. They will all save their pid file in tmp/pids [DHH]
815
-
816
-
817
- *1.1.6* (August 10th, 2006)
818
-
819
- * Additional security patch
820
-
821
-
822
- *1.1.5* (August 8th, 2006)
823
-
824
- * Mention in docs that config.frameworks doesn't work when getting Rails via Gems. #4857 [Alisdair McDiarmid]
825
-
826
- * Change the scaffolding layout to use yield rather than @content_for_layout. [Marcel Molina Jr.]
827
-
828
- * Includes critical security patch
829
-
830
-
831
- *1.1.4* (June 29th, 2006)
832
-
833
- * Remove use of opts.on { |options[:name] } style hash assignment. References #4440. [headius@headius.com]
834
-
835
- * Updated to Action Pack 1.12.3, ActionWebService 1.1.4, ActionMailer 1.2.3
836
-
837
-
838
- *1.1.3* (June 27th, 2006)
839
-
840
- * Updated to Active Record 1.14.3, Action Pack 1.12.2, ActionWebService 1.1.3, ActionMailer 1.2.2
841
-
842
-
843
- *1.1.2* (April 9th, 2006)
844
-
845
- * Mention in docs that config.frameworks doesn't work when getting Rails via Gems. Closes #4857. [Alisdair McDiarmid]
846
-
847
- * Change the scaffolding layout to use yield rather than @content_for_layout. [Marcel Molina Jr.]
848
-
849
- * Added rake rails:update:configs to update config/boot.rb from the latest (also included in rake rails:update) [DHH]
850
-
851
- * Fixed that boot.rb would set RAILS_GEM_VERSION twice, not respect an uncommented RAILS_GEM_VERSION line, and not use require_gem [DHH]
852
-
853
-
854
- *1.1.1* (April 6th, 2006)
855
-
856
- * Enhances plugin#discover allowing it to discover svn:// like URIs (closes #4565) [ruben.nine@gmail.com]
857
-
858
- * Update to Prototype 1.5.0_rc0 [Sam Stephenson]
859
-
860
- * Fixed that the -r/--ruby path option of the rails command was not being respected #4549 [ryan.raaum@gmail.com]
861
-
862
- * Added that Dispatcher exceptions should not be shown to the user unless a default log has not been configured. Instead show public/500.html [DHH]
863
-
864
- * Fixed that rake clone_structure_to_test should quit on pgsql if the dump is unsuccesful #4585 [augustz@augustz.com]
865
-
866
- * Fixed that rails --version should have the return code of 0 (success) #4560 [blair@orcaware.com]
867
-
868
- * Install alias so Rails::InfoController is accessible at /rails_info. Closes #4546. [Nicholas Seckar]
869
-
870
- * Fixed that spawner should daemonize if running in repeat mode [DHH]
871
-
872
- * Added TAG option for rake rails:freeze:edge, so you can say rake rails:freeze:edge TAG=rel_1-1-0 to lock to the 1.1.0 release [DHH]
873
-
874
- * Applied Prototype $() performance patches (#4465, #4477) and updated script.aculo.us [Sam Stephenson, Thomas Fuchs]
875
-
876
- * Use --simple-prompt instead of --prompt-mode simple for console compatibility with Windows/Ruby 1.8.2 #4532 [starr@starrnhorne.com]
877
-
878
- * Make Rails::VERSION implicitly loadable #4491. [Nicholas Seckar]
879
-
880
- * Fixed rake rails:freeze:gems #4518 [benji@silverinsanity.com]
881
-
882
- * Added -f/--freeze option to rails command for freezing the application to the Rails version it was generated with [DHH]
883
-
884
- * Added gem binding of apps generated through the rails command to the gems of they were generated with [Nicholas Seckar]
885
-
886
- * Added expiration settings for JavaScript, CSS, HTML, and images to default lighttpd.conf [DHH]
887
-
888
- * Added gzip compression for JavaScript, CSS, and HTML to default lighttpd.conf [DHH]
889
-
890
- * Avoid passing escapeHTML non-string in Rails' info controller [Nicholas Seckar]
891
-
892
-
893
- *1.1.0* (March 27th, 2006)
894
-
895
- * Allow db:fixtures:load to load a subset of the applications fixtures. [Chad Fowler]
896
-
897
- ex.
898
-
899
- rake db:fixtures:load FIXTURES=customers,plans
900
-
901
- * Update to Prototype 1.5.0_pre1 [Sam Stephenson]
902
-
903
- * Update to script.aculo.us 1.6 [Thomas Fuchs]
904
-
905
- * Add an integration_test generator [Jamis Buck]
906
-
907
- * Make all ActionView helpers available in the console from the helper method for debugging purposes. n.b.: Only an 80% solution. Some stuff won't work, most will. [Marcel Molina Jr.]
908
-
909
- ex.
910
-
911
- >> puts helper.options_for_select([%w(a 1), %w(b 2), %w(c 3)])
912
- <option value="1">a</option>
913
- <option value="2">b</option>
914
- <option value="3">c</option>
915
- => nil
916
-
917
- * Replaced old session rake tasks with db:sessions:create to generate a migration, and db:sessions:clear to remove sessions. [Rick Olson]
918
-
919
- * Reject Ruby 1.8.3 when loading Rails; extract version checking code. [Chad Fowler]
920
-
921
- * Remove explicit loading of RailsInfo and RailsInfoController. [Nicholas Seckar]
922
-
923
- * Move RailsInfo and RailsInfoController to Rails::Info and Rails::InfoController. [Nicholas Seckar]
924
-
925
- * Extend load path with Railties' builtin directory to make adding support code easy. [Nicholas Seckar]
926
-
927
- * Fix the rails_info controller by explicitly loading it, and marking it as not reloadable. [Nicholas Seckar]
928
-
929
- * Fixed rails:freeze:gems for Windows #3274 [paul@paulbutcher.com]
930
-
931
- * Added 'port open?' check to the spawner when running in repeat mode so we don't needlessly boot the dispatcher if the port is already in use anyway #4089 [guy.naor@famundo.com]
932
-
933
- * Add verification to generated scaffolds, don't allow get for unsafe actions [Michael Koziarski]
934
-
935
- * Don't replace application.js in public/javascripts if it already exists [Cody Fauser]
936
-
937
- * Change test:uncommitted to delay execution of `svn status` by using internal Rake API's. [Nicholas Seckar]
938
-
939
- * Use require_library_or_gem to load rake in commands/server.rb. Closes #4205. [rob.rasmussen@gmail.com]
940
-
941
- * Use the Rake API instead of shelling out to create the tmp directory in commands/server.rb. [Chad Fowler]
942
-
943
- * Added a backtrace to the evil WSOD (White Screen of Death). Closes #4073. TODO: Clearer exceptions [Rick Olson]
944
-
945
- * Added tracking of database and framework versions in script/about #4088 [charles.gerungan@gmail.com/Rick Olson]
946
-
947
- * Added public/javascripts/application.js as a sample since it'll automatically be included in javascript_include_tag :defaults [DHH]
948
-
949
- * Added socket cleanup for lighttpd, both before and after [DHH]
950
-
951
- * Added automatic creation of tmp/ when running script/server [DHH]
952
-
953
- * Added silence_stream that'll work on both STDERR or STDOUT or any other stream and deprecated silence_stderr in the process [DHH]
954
-
955
- * Added reload! method to script/console to reload all models and others that include Reloadable without quitting the console #4056 [esad@esse.at]
956
-
957
- * Added that rake rails:freeze:edge will now just export all the contents of the frameworks instead of just lib, so stuff like rails:update:scripts, rails:update:javascripts, and script/server on lighttpd still just works #4047 [DHH]
958
-
959
- * Added fix for upload problems with lighttpd from Safari/IE to config/lighttpd.conf #3999 [thijs@fngtps.com]
960
-
961
- * Added test:uncommitted to test changes since last checkin to Subversion #4035 [technomancy@gmail.com]
962
-
963
- * Help script/about print the correct svn revision when in a non-English locale. #4026 [babie7a0@ybb.ne.jp]
964
-
965
- * Add 'app' accessor to script/console as an instance of Integration::Session [Jamis Buck]
966
-
967
- * Generator::Base#usage takes an optional message argument which defaults to Generator::Base#usage_message. [Jeremy Kemper]
968
-
969
- * Remove the extraneous AR::Base.threaded_connections setting from the webrick server. [Jeremy Kemper]
970
-
971
- * Add integration test support to app generation and testing [Jamis Buck]
972
-
973
- * Added namespaces to all tasks, so for example load_fixtures is now db:fixtures:load. All the old task names are still valid, they just point to the new namespaced names. "rake -T" will only show the namespaced ones, though [DHH]
974
-
975
- * CHANGED DEFAULT: ActiveRecord::Base.schema_format is now :ruby by default instead of :sql. This means that we'll assume you want to live in the world of db/schema.rb where the grass is green and the girls are pretty. If your schema contains un-dumpable elements, such as constraints or database-specific column types, you just got an invitation to either 1) patch the dumper to include foreign key support, 2) stop being db specific, or 3) just change the default in config/environment.rb to config.active_record.schema_format = :sql -- we even include an example for that on new Rails skeletons now. Brought to you by the federation of opinionated framework builders! [DHH]
976
-
977
- * Added -r/--repeat option to script/process/spawner that offers the same loop protection as the spinner did. This deprecates the script/process/spinner, so it's no longer included in the default Rails skeleton, but still available for backwards compatibility #3461 [ror@andreas-s.net]
978
-
979
- * Added collision option to template generation in generators #3329 [anna@wota.jp]. Examples:
980
-
981
- m.template "stuff.config" , "config/stuff.config" , :collision => :skip
982
- m.template "auto-stamping", "config/generator.log", :collision => :force
983
-
984
- * Added more information to script/plugin's doings to ease debugging #3755 [Rick Olson]
985
-
986
- * Changed the default configuration for lighttpd to use tmp/sockets instead of log/ for the FastCGI sockets [DHH]
987
-
988
- * Added a default configuration of the FileStore for fragment caching if tmp/cache is available, which makes action/fragment caching ready to use out of the box with no additional configuration [DHH]
989
-
990
- * Changed the default session configuration to place sessions in tmp/sessions, if that directory is available, instead of /tmp (this essentially means a goodbye to 9/10 White Screen of Death errors and should have web hosting firms around the world cheering) [DHH]
991
-
992
- * Added tmp/sessions, tmp/cache, and tmp/sockets as default directories in the Rails skeleton [DHH]
993
-
994
- * Added that script/generate model will now automatically create a migration file for the model created. This can be turned off by calling the generator with --skip-migration [DHH]
995
-
996
- * Added -d/--database option to the rails command, so you can do "rails --database=sqlite2 myapp" to start a new application preconfigured to use SQLite2 as the database. Removed the configuration examples from SQLite and PostgreSQL from the default MySQL configuration [DHH]
997
-
998
- * Allow script/server -c /path/to/lighttpd.conf [Jeremy Kemper]
999
-
1000
- * Remove hardcoded path to reaper script in script/server [Jeremy Kemper]
1001
-
1002
- * Update script.aculo.us to V1.5.3 [Thomas Fuchs]
1003
-
1004
- * Added SIGTRAP signal handler to RailsFCGIHandler that'll force the process into a breakpoint after the next request. This breakpoint can then be caught with script/breakpointer and give you access to the Ruby image inside that process. Useful for debugging memory leaks among other things [DHH]
1005
-
1006
- * Changed default lighttpd.conf to use CWD from lighttpd 1.4.10 that allows the same configuration to be used for both detach and not. Also ensured that auto-repeaping of FCGIs only happens when lighttpd is not detached. [DHH]
1007
-
1008
- * Added Configuration#after_initialize for registering a block which gets called after the framework is fully initialized. Useful for things like per-environment configuration of plugins. [Michael Koziarski]
1009
-
1010
- * Added check for RAILS_FRAMEWORK_ROOT constant that allows the Rails framework to be found in a different place than vendor/rails. Should be set in boot.rb. [DHH]
1011
-
1012
- * Fixed that static requests could unlock the mutex guarding dynamic requests in the WEBrick servlet #3433 [tom@craz8.com]
1013
-
1014
- * Fixed documentation tasks to work with Rake 0.7.0 #3563 [kazuhiko@fdiary.net]
1015
-
1016
- * Update to Prototype 1.5.0_pre0 [Sam Stephenson]
1017
-
1018
- * Sort the list of plugins so we load in a consistent order [Rick Olson]
1019
-
1020
- * Show usage when script/plugin is called without arguments [tom@craz8.com]
1021
-
1022
- * Corrected problems with plugin loader where plugins set 'name' incorrectly #3297 [anna@wota.jp]
1023
-
1024
- * Make migration generator only report on exact duplicate names, not partial dupliate names. #3442 [jeremy@planetargon.com Marcel Molina Jr.]
1025
-
1026
- * Fix typo in mailer generator USAGE. #3458 [chriztian.steinmeier@gmail.com]
1027
-
1028
- * Ignore version mismatch between pg_dump and the database server. #3457 [simon.stapleton@gmail.com]
1029
-
1030
- * Reap FCGI processes after lighttpd exits. [Sam Stephenson]
1031
-
1032
- * Honor ActiveRecord::Base.pluralize_table_names when creating and destroying session store table. #3204. [rails@bencurtis.com, Marcel Molina Jr.]
1033
-
1034
- *1.0.0* (December 13th, 2005)
1035
-
1036
- * Update instructions on how to find and install generators. #3172. [Chad Fowler]
1037
-
1038
- * Generator looks in vendor/generators also. [Chad Fowler]
1039
-
1040
- * Generator copies files in binary mode. #3156 [minimudboy@gmail.com]
1041
-
1042
- * Add builtin/ to the gemspec. Closes #3047. [Nicholas Seckar, Sam Stephenson]
1043
-
1044
- * Add install.rb file to plugin generation which is loaded, if it exists, when you install a plugin. [Marcel Molina Jr.]
1045
-
1046
- * Run initialize_logger in script/lighttpd to ensure the log file exists before tailing it. [Sam Stephenson]
1047
-
1048
- * Make load_fixtures include csv fixtures. #3053. [me@mdaines.com]
1049
-
1050
- * Fix freeze_gems so that the latest rails version is dumped by default. [Nicholas Seckar]
1051
-
1052
- * script/plugin: handle root paths and plugin names which contain spaces. #2995 [justin@aspect.net]
1053
-
1054
- * Model generator: correct relative path to test_helper in unit test. [Jeremy Kemper]
1055
-
1056
- * Make the db_schema_dump task honor the SCHEMA environment variable if present the way db_schema_import does. #2931. [Blair Zajac]
1057
-
1058
- * Have the lighttpd server script report the actual ip to which the server is bound. #2903. [Adam]
1059
-
1060
- * Add plugin library directories to the load path after the lib directory so that libraries in the lib directory get precedence. #2910. [james.adam@gmail.com]
1061
-
1062
- * Make help for the console command more explicit about how to specify the desired environment in which to run the console. #2911. [anonymous]
1063
-
1064
- * PostgreSQL: the purge_test_database Rake task shouldn't explicitly specify the template0 template when creating a fresh test database. #2964 [dreamer3@gmail.com]
1065
-
1066
- * Introducing the session_migration generator. Creates an add_session_table migration. Allows generator to specify migrations directory. #2958, #2960 [Rick Olson]
1067
-
1068
- * script/console uses RAILS_ENV environment variable if present. #2932 [Blair Zajac <blair@orcaware.com>
1069
-
1070
- * Windows: eliminate the socket option in database.yml. #2924 [Wayne Vucenic <waynev@gmail.com>]
1071
-
1072
- * Eliminate nil from newly generated logfiles. #2927 [Blair Zajac <blair@orcaware.com>]
1073
-
1074
- * Rename Version constant to VERSION. #2802 [Marcel Molina Jr.]
1075
-
1076
- * Eliminate Subversion dependencies in scripts/plugin. Correct install options. Introduce --force option to reinstall a plugin. Remove useless --long option for list. Use --quiet to quiet the download output and --revision to update to a specific svn revision. #2842 [Chad Fowler, Rick Olson]
1077
-
1078
- * SQLite: the clone_structure_to_test and purge_test_database Rake tasks should always use the test environment. #2846 [Rick Olson]
1079
-
1080
- * Make sure that legacy db tasks also reference :database for SQLite #2830 [kazuhiko@fdiary.net]
1081
-
1082
- * Pass __FILE__ when evaluating plugins' init.rb. #2817 [james.adam@gmail.com]
1083
-
1084
- * Better svn status matching for generators. #2814 [François Beausoleil <francois.beausoleil@gmail.com>, Blair Zajac <blair@orcaware.com>]
1085
-
1086
- * Don't reload routes until plugins have been loaded so they have a chance to extend the routing capabilities [DHH]
1087
-
1088
- * Don't detach or fork for script/server tailing [Nicholas Seckar]
1089
-
1090
- * Changed all script/* to use #!/usr/bin/env ruby instead of hard-coded Ruby path. public/dispatcher.* still uses the hard-coded path for compatibility with web servers that don't have Ruby in path [DHH]
1091
-
1092
- * Force RAILS_ENV to be "test" when running tests, so that ENV["RAILS_ENV"] = "production" in config/environment.rb doesn't wreck havok [DHH] #2660
1093
-
1094
- * Correct versioning in :freeze_gems Rake task. #2778 [jakob@mentalized.net, Jeremy Kemper]
1095
-
1096
- * Added an omnipresent RailsInfoController with a properties action that delivers an HTML rendering of Rails::Info (but only when local_request? is true). Added a new default index.html which fetches this with Ajax. [Sam Stephenson]
1097
-
1098
-
1099
- *0.14.3 (RC4)* (November 7th, 2005)
1100
-
1101
- * Add 'add_new_scripts' rake task for adding new rails scripts to script/* [Jamis Buck]
1102
-
1103
- * Remove bogus hyphen from script/process/reaper calls to 'ps'. #2767 [anonymous]
1104
-
1105
- * Copy lighttpd.conf when it is first needed, instead of on app creation [Jamis Buck]
1106
-
1107
- * Use require_library_or_gem 'fcgi' in script/server [Sam Stephenson]
1108
-
1109
- * Added default lighttpd config in config/lighttpd.conf and added a default runner for lighttpd in script/server (works like script/server, but using lighttpd and FastCGI). It will use lighttpd if available, otherwise WEBrick. You can force either or using 'script/server lighttpd' or 'script/server webrick' [DHH]
1110
-
1111
- * New configuration option config.plugin_paths which may be a single path like the default 'vendor/plugins' or an array of paths: ['vendor/plugins', 'lib/plugins']. [Jeremy Kemper]
1112
-
1113
- * Plugins are discovered in nested paths, so you can organize your plugins directory as you like. [Jeremy Kemper]
1114
-
1115
- * Refactor load_plugin from load_plugins. #2757 [alex.r.moon@gmail.com]
1116
-
1117
- * Make use of silence_stderr in script/lighttpd, script/plugin, and Rails::Info [Sam Stephenson]
1118
-
1119
- * Enable HTTP installation of plugins when svn isn't avaialable. Closes #2661. [Chad Fowler]
1120
-
1121
- * Added script/about to display formatted Rails::Info output [Sam Stephenson]
1122
-
1123
- * Added Rails::Info to catalog assorted information about a Rails application's environment [Sam Stephenson]
1124
-
1125
- * Tail the logfile when running script/server lighttpd in the foreground [Sam Stephenson]
1126
-
1127
- * Try to guess the port number from config/lighttpd.conf in script/server lighttpd [Sam Stephenson]
1128
-
1129
- * Don't reap spawn-fcgi. #2727 [matthew@walker.wattle.id.au]
1130
-
1131
- * Reaper knows how to find processes even if the dispatch path is very long. #2711 [matthew@walker.wattle.id.au]
1132
-
1133
- * Make fcgi handler respond to TERM signals with an explicit exit [Jamis Buck]
1134
-
1135
- * Added demonstration of fixture use to the test case generated by the model generator [DHH]
1136
-
1137
- * If specified, pass PostgreSQL client character encoding to createdb. #2703 [Kazuhiko <kazuhiko@fdiary.net>]
1138
-
1139
- * Catch CGI multipart parse errors. Wrap dispatcher internals in a failsafe response handler. [Jeremy Kemper]
1140
-
1141
- * The freeze_gems Rake task accepts the VERSION environment variable to decide which version of Rails to pull into vendor/rails. [Chad Fowler, Jeremy Kemper]
1142
-
1143
- * Removed script.aculo.us.js, builder.js and slider.js (preperation for move of scriptaculous extensions to plugins, core scriptaculous will remain in Railties) [Thomas Fuchs]
1144
-
1145
- * The freeze_edge Rake task does smarter svn detection and can export a specific revision by passing the REVISION environment variable. For example: rake freeze_edge REVISION=1234. #2663 [Rick Olson]
1146
-
1147
- * Comment database.yml and include PostgreSQL and SQLite examples. [Jeremy Kemper]
1148
-
1149
- * Improve script/plugin on Windows. #2646 [Chad Fowler]
1150
-
1151
- * The *_plugindoc Rake tasks look deeper into the plugins' lib directories. #2652 [bellis@deepthought.org]
1152
-
1153
- * The PostgreSQL :db_structure_dump Rake task limits its dump to the schema search path in database.yml. [Anatol Pomozov <anatol.pomozov@gmail.com>]
1154
-
1155
- * Add task to generate rdoc for all installed plugins. [Marcel Molina]
1156
-
1157
- * Update script.aculo.us to V1.5_rc4 [Thomas Fuchs]
1158
-
1159
- * Add default Mac + DarwinPorts MySQL socket locations to the app generator. [Jeremy Kemper]
1160
-
1161
- * Migrations may be destroyed: script/destroy migration foo. #2635 [Charles M. Gerungan <charles.gerungan@gmail.com>, Jamis Buck, Jeremy Kemper]
1162
-
1163
- * Added that plugins can carry generators and that generator stub files can be created along with new plugins using script/generate plugin <name> --with-generator [DHH]
1164
-
1165
- * Removed app/apis as a default empty dir since its automatically created when using script/generate web_service [DHH]
1166
-
1167
- * Added script/plugin to manage plugins (install, remove, list, etc) [Ryan Tomayko]
1168
-
1169
- * Added test_plugins task: Run the plugin tests in vendor/plugins/**/test (or specify with PLUGIN=name) [DHH]
1170
-
1171
- * Added plugin generator to create a stub structure for a new plugin in vendor/plugins (see "script/generate plugin" for help) [DHH]
1172
-
1173
- * Fixed scaffold generator when started with only 1 parameter #2609 [self@mattmower.com]
1174
-
1175
- * rake should run functional tests even if the unit tests have failures [Jim Weirich]
1176
-
1177
- * Back off cleanpath to be symlink friendly. Closes #2533 [Nicholas Seckar]
1178
-
1179
- * Load rake task files in alphabetical order so you can build dependencies and count on them #2554 [Blair Zajac]
1180
-
1181
-
1182
- *0.14.2 (RC3)* (October 26th, 2005)
1183
-
1184
- * Constants set in the development/test/production environment file are set in Object
1185
-
1186
- * Scaffold generator pays attention to the controller name. #2562 [self@mattmower.com]
1187
-
1188
- * Include tasks from vendor/plugins/*/tasks in the Rakefile #2545 [Rick Olson]
1189
-
1190
-
1191
- *0.14.1 (RC2)* (October 19th, 2005)
1192
-
1193
- * Don't clean RAILS_ROOT on windows
1194
-
1195
- * Remove trailing '/' from RAILS_ROOT [Nicholas Seckar]
1196
-
1197
- * Upgraded to Active Record 1.12.1 and Action Pack 1.10.1
1198
-
1199
-
1200
- *0.14.0 (RC1)* (October 16th, 2005)
1201
-
1202
- * Moved generator folder from RAILS_ROOT/generators to RAILS_ROOT/lib/generators [Tobias Luetke]
1203
-
1204
- * Fix rake dev and related commands [Nicholas Seckar]
1205
-
1206
- * The rails command tries to deduce your MySQL socket by running `mysql_config
1207
- --socket`. If it fails, default to /path/to/your/mysql.sock
1208
-
1209
- * Made the rails command use the application name for database names in the tailored database.yml file. Example: "rails ~/projects/blog" will use "blog_development" instead of "rails_development". [Florian Weber]
1210
-
1211
- * Added Rails framework freezing tasks: freeze_gems (freeze to current gems), freeze_edge (freeze to Rails SVN trunk), unfreeze_rails (float with newest gems on system)
1212
-
1213
- * Added update_javascripts task which will fetch all the latest js files from your current rails install. Use after updating rails. [Tobias Luetke]
1214
-
1215
- * Added cleaning of RAILS_ROOT to useless elements such as '../non-dot-dot/'. Provides cleaner backtraces and error messages. [Nicholas Seckar]
1216
-
1217
- * Made the instantiated/transactional fixtures settings be controlled through Rails::Initializer. Transactional and non-instantiated fixtures are default from now on. [Florian Weber]
1218
-
1219
- * Support using different database adapters for development and test with ActiveRecord::Base.schema_format = :ruby [Sam Stephenson]
1220
-
1221
- * Make webrick work with session(:off)
1222
-
1223
- * Add --version, -v option to the Rails command. Closes #1840. [stancell]
1224
-
1225
- * Update Prototype to V1.4.0_pre11, script.aculo.us to V1.5_rc3 [2504] and fix the rails generator to include the new .js files [Thomas Fuchs]
1226
-
1227
- * Make the generator skip a file if it already exists and is identical to the new file.
1228
-
1229
- * Add experimental plugin support #2335
1230
-
1231
- * Made Rakefile aware of new .js files in script.aculo.us [Thomas Fuchs]
1232
-
1233
- * Make table_name and controller_name in generators honor AR::Base.pluralize_table_names. #1216 #2213 [kazuhiko@fdiary.net]
1234
-
1235
- * Clearly label functional and unit tests in rake stats output. #2297 [lasse.koskela@gmail.com]
1236
-
1237
- * Make the migration generator only check files ending in *.rb when calculating the next file name #2317 [Chad Fowler]
1238
-
1239
- * Added prevention of duplicate migrations from the generator #2240 [fbeausoleil@ftml.net]
1240
-
1241
- * Add db_schema_dump and db_schema_import rake tasks to work with the new ActiveRecord::SchemaDumper (for dumping a schema to and reading a schema from a ruby file).
1242
-
1243
- * Reformed all the config/environments/* files to conform to the new Rails::Configuration approach. Fully backwards compatible.
1244
-
1245
- * Added create_sessions_table, drop_sessions_table, and purge_sessions_table as rake tasks for databases that supports migrations (MySQL, PostgreSQL, SQLite) to get a table for use with CGI::Session::ActiveRecordStore
1246
-
1247
- * Added dump of schema version to the db_structure_dump task for databases that support migrations #1835 [Rick Olson]
1248
-
1249
- * Fixed script/profiler for Ruby 1.8.2 #1863 [Rick Olson]
1250
-
1251
- * Fixed clone_structure_to_test task for SQLite #1864 [jon@burningbush.us]
1252
-
1253
- * Added -m/--mime-types option to the WEBrick server, so you can specify a Apache-style mime.types file to load #2059 [ask@develooper.com]
1254
-
1255
- * Added -c/--svn option to the generator that'll add new files and remove destroyed files using svn add/revert/remove as appropriate #2064 [kevin.clark@gmail.com]
1256
-
1257
- * Added -c/--charset option to WEBrick server, so you can specify a default charset (which without changes is UTF-8) #2084 [wejn@box.cz]
1258
-
1259
- * Make the default stats task extendable by modifying the STATS_DIRECTORIES constant
1260
-
1261
- * Allow the selected environment to define RAILS_DEFAULT_LOGGER, and have Rails::Initializer use it if it exists.
1262
-
1263
- * Moved all the shared tasks from Rakefile into Rails, so that the Rakefile is empty and doesn't require updating.
1264
-
1265
- * Added Rails::Initializer and Rails::Configuration to abstract all of the common setup out of config/environment.rb (uses config/boot.rb to bootstrap the initializer and paths)
1266
-
1267
- * Fixed the scaffold generator to fail right away if the database isn't accessible instead of in mid-air #1169 [Chad Fowler]
1268
-
1269
- * Corrected project-local generator location in scripts.rb #2010 [Michael Schuerig]
1270
-
1271
- * Don't require the environment just to clear the logs #2093 [Scott Barron]
1272
-
1273
- * Make the default rakefile read *.rake files from config/tasks (for easy extension of the rakefile by e.g. generators)
1274
-
1275
- * Only load breakpoint in development mode and when BREAKPOINT_SERVER_PORT is defined.
1276
-
1277
- * Allow the --toggle-spin switch on process/reaper to be negated
1278
-
1279
- * Replace render_partial with render :partial in scaffold generator [Nicholas Seckar]
1280
-
1281
- * Added -w flag to ps in process/reaper #1934 [Scott Barron]
1282
-
1283
- * Allow ERb in the database.yml file (just like with fixtures), so you can pull out the database configuration in environment variables #1822 [Duane Johnson]
1284
-
1285
- * Added convenience controls for FCGI processes (especially when managed remotely): spinner, spawner, and reaper. They reside in script/process. More details can be had by calling them with -h/--help.
1286
-
1287
- * Added load_fixtures task to the Rakefile, which will load all the fixtures into the database for the current environment #1791 [Marcel Molina]
1288
-
1289
- * Added an empty robots.txt to public/, so that web servers asking for it won't trigger a dynamic call, like favicon.ico #1738 [michael@schubert]
1290
-
1291
- * Dropped the 'immediate close-down' of FCGI processes since it didn't work consistently and produced bad responses when it didn't. So now a TERM ensures exit after the next request (just as if the process is handling a request when it receives the signal). This means that you'll have to 'nudge' all FCGI processes with a request in order to ensure that they have all reloaded. This can be done by something like ./script/process/repear --nudge 'http://www.myapp.com' --instances 10, which will load the myapp site 10 times (and thus hit all of the 10 FCGI processes once, enough to shut down).
1292
-
1293
-
1294
- *0.13.1* (11 July, 2005)
1295
-
1296
- * Look for app-specific generators in RAILS_ROOT/generators rather than the clunky old RAILS_ROOT/script/generators. Nobody really uses this feature except for the unit tests, so it's a negligible-impact change. If you want to work with third-party generators, drop them in ~/.rails/generators or simply install gems.
1297
-
1298
- * Fixed that each request with the WEBrick adapter would open a new database connection #1685 [Sam Stephenson]
1299
-
1300
- * Added support for SQL Server in the database rake tasks #1652 [ken.barker@gmail.com] Note: osql and scptxfr may need to be installed on your development environment. This involves getting the .exes and a .rll (scptxfr) from a production SQL Server (not developer level SQL Server). Add their location to your Environment PATH and you are all set.
1301
-
1302
- * Added a VERSION parameter to the migrate task that allows you to do "rake migrate VERSION=34" to migrate to the 34th version traveling up or down depending on the current version
1303
-
1304
- * Extend Ruby version check to include RUBY_RELEASE_DATE >= '2005-12-25', the final Ruby 1.8.2 release #1674 [court3nay@gmail.com]
1305
-
1306
- * Improved documentation for environment config files #1625 [court3nay@gmail.com]
1307
-
1308
-
1309
- *0.13.0* (6 July, 2005)
1310
-
1311
- * Changed the default logging level in config/environment.rb to INFO for production (so SQL statements won't be logged)
1312
-
1313
- * Added migration generator: ./script/generate migration add_system_settings
1314
-
1315
- * Added "migrate" as rake task to execute all the pending migrations from db/migrate
1316
-
1317
- * Fixed that model generator would make fixtures plural, even if ActiveRecord::Base.pluralize_table_names was false #1185 [Marcel Molina]
1318
-
1319
- * Added a DOCTYPE of HTML transitional to the HTML files generated by Rails #1124 [Michael Koziarski]
1320
-
1321
- * SIGTERM also gracefully exits dispatch.fcgi. Ignore SIGUSR1 on Windows.
1322
-
1323
- * Add the option to manually manage garbage collection in the FastCGI dispatcher. Set the number of requests between GC runs in your public/dispatch.fcgi [skaes@web.de]
1324
-
1325
- * Allow dynamic application reloading for dispatch.fcgi processes by sending a SIGHUP. If the process is currently handling a request, the request will be allowed to complete first. This allows production fcgi's to be reloaded without having to restart them.
1326
-
1327
- * RailsFCGIHandler (dispatch.fcgi) no longer tries to explicitly flush $stdout (CgiProcess#out always calls flush)
1328
-
1329
- * Fixed rakefile actions against PostgreSQL when the password is all numeric #1462 [michael@schubert.cx]
1330
-
1331
- * ActionMailer::Base subclasses are reloaded with the other rails components #1262
1332
-
1333
- * Made the WEBrick adapter not use a mutex around action performance if ActionController::Base.allow_concurrency is true (default is false)
1334
-
1335
- * Fixed that mailer generator generated fixtures/plural while units expected fixtures/singular #1457 [Scott Barron]
1336
-
1337
- * Added a 'whiny nil' that's aim to ensure that when users pass nil to methods where that isn't appropriate, instead of NoMethodError? and the name of some method used by the framework users will see a message explaining what type of object was expected. Only active in test and development environments by default #1209 [Michael Koziarski]
1338
-
1339
- * Fixed the test_helper.rb to be safe for requiring controllers from multiple spots, like app/controllers/article_controller.rb and app/controllers/admin/article_controller.rb, without reloading the environment twice #1390 [Nicholas Seckar]
1340
-
1341
- * Fixed Webrick to escape + characters in URL's the same way that lighttpd and apache do #1397 [Nicholas Seckar]
1342
-
1343
- * Added -e/--environment option to script/runner #1408 [fbeausoleil@ftml.net]
1344
-
1345
- * Modernize the scaffold generator to use the simplified render and test methods and to change style from @params["id"] to params[:id]. #1367
1346
-
1347
- * Added graceful exit from pressing CTRL-C during the run of the rails command #1150 [Caleb Tennis]
1348
-
1349
- * Allow graceful exits for dispatch.fcgi processes by sending a SIGUSR1. If the process is currently handling a request, the request will be allowed to complete and then will terminate itself. If a request is not being handled, the process is terminated immediately (via #exit). This basically works like restart graceful on Apache. [Jamis Buck]
1350
-
1351
- * Made dispatch.fcgi more robust by catching fluke errors and retrying unless its a permanent condition. [Jamis Buck]
1352
-
1353
- * Added console --profile for profiling an IRB session #1154 [Jeremy Kemper]
1354
-
1355
- * Changed console_sandbox into console --sandbox #1154 [Jeremy Kemper]
1356
-
1357
-
1358
- *0.12.1* (20th April, 2005)
1359
-
1360
- * Upgraded to Active Record 1.10.1, Action Pack 1.8.1, Action Mailer 0.9.1, Action Web Service 0.7.1
1361
-
1362
-
1363
- *0.12.0* (19th April, 2005)
1364
-
1365
- * Fixed that purge_test_database would use database settings from the development environment when recreating the test database #1122 [rails@cogentdude.com]
1366
-
1367
- * Added script/benchmarker to easily benchmark one or more statement a number of times from within the environment. Examples:
1368
-
1369
- # runs the one statement 10 times
1370
- script/benchmarker 10 'Person.expensive_method(10)'
1371
-
1372
- # pits the two statements against each other with 50 runs each
1373
- script/benchmarker 50 'Person.expensive_method(10)' 'Person.cheap_method(10)'
1374
-
1375
- * Added script/profiler to easily profile a single statement from within the environment. Examples:
1376
-
1377
- script/profiler 'Person.expensive_method(10)'
1378
- script/profiler 'Person.expensive_method(10)' 10 # runs the statement 10 times
1379
-
1380
- * Added Rake target clear_logs that'll truncate all the *.log files in log/ to zero #1079 [Lucas Carlson]
1381
-
1382
- * Added lazy typing for generate, such that ./script/generate cn == ./script/generate controller and the likes #1051 [k@v2studio.com]
1383
-
1384
- * Fixed that ownership is brought over in pg_dump during tests for PostgreSQL #1060 [pburleson@gmail.com]
1385
-
1386
- * Upgraded to Active Record 1.10.0, Action Pack 1.8.0, Action Mailer 0.9.0, Action Web Service 0.7.0, Active Support 1.0.4
1387
-
1388
-
1389
- *0.11.1* (27th March, 2005)
1390
-
1391
- * Fixed the dispatch.fcgi use of a logger
1392
-
1393
- * Upgraded to Active Record 1.9.1, Action Pack 1.7.0, Action Mailer 0.8.1, Action Web Service 0.6.2, Active Support 1.0.3
1394
-
1395
-
1396
- *0.11.0* (22th March, 2005)
1397
-
1398
- * Removed SCRIPT_NAME from the WEBrick environment to prevent conflicts with PATH_INFO #896 [Nicholas Seckar]
1399
-
1400
- * Removed ?$1 from the dispatch.f/cgi redirect line to get rid of 'complete/path/from/request.html' => nil being in the @params now that the ENV["REQUEST_URI"] is used to determine the path #895 [dblack/Nicholas Seckar]
1401
-
1402
- * Added additional error handling to the FastCGI dispatcher to catch even errors taking down the entire process
1403
-
1404
- * Improved the generated scaffold code a lot to take advantage of recent Rails developments #882 [Tobias Luetke]
1405
-
1406
- * Combined the script/environment.rb used for gems and regular files version. If vendor/rails/* has all the frameworks, then files version is used, otherwise gems #878 [Nicholas Seckar]
1407
-
1408
- * Changed .htaccess to allow dispatch.* to be called from a sub-directory as part of the push with Action Pack to make Rails work on non-vhost setups #826 [Nicholas Seckar/Tobias Luetke]
1409
-
1410
- * Added script/runner which can be used to run code inside the environment by eval'ing the first parameter. Examples:
1411
-
1412
- ./script/runner 'ReminderService.deliver'
1413
- ./script/runner 'Mailer.receive(STDIN.read)'
1414
-
1415
- This makes it easier to do CRON and postfix scripts without actually making a script just to trigger 1 line of code.
1416
-
1417
- * Fixed webrick_server cookie handling to allow multiple cookes to be set at once #800, #813 [dave@cherryville.org]
1418
-
1419
- * Fixed the Rakefile's interaction with postgresql to:
1420
-
1421
- 1. Use PGPASSWORD and PGHOST in the environment to fix prompting for
1422
- passwords when connecting to a remote db and local socket connections.
1423
- 2. Add a '-x' flag to pg_dump which stops it dumping privileges #807 [rasputnik]
1424
- 3. Quote the user name and use template0 when dumping so the functions doesn't get dumped too #855 [pburleson]
1425
- 4. Use the port if available #875 [madrobby]
1426
-
1427
- * Upgraded to Active Record 1.9.0, Action Pack 1.6.0, Action Mailer 0.8.0, Action Web Service 0.6.1, Active Support 1.0.2
1428
-
1429
-
1430
- *0.10.1* (7th March, 2005)
1431
-
1432
- * Fixed rake stats to ignore editor backup files like model.rb~ #791 [skanthak]
1433
-
1434
- * Added exception shallowing if the DRb server can't be started (not worth making a fuss about to distract new users) #779 [Tobias Luetke]
1435
-
1436
- * Added an empty favicon.ico file to the public directory of new applications (so the logs are not spammed by its absence)
1437
-
1438
- * Fixed that scaffold generator new template should use local variable instead of instance variable #778 [Dan Peterson]
1439
-
1440
- * Allow unit tests to run on a remote server for PostgreSQL #781 [adamm@galacticasoftware.com]
1441
-
1442
- * Added web_service generator (run ./script/generate web_service for help) #776 [Leon Bredt]
1443
-
1444
- * Added app/apis and components to code statistics report #729 [Scott Barron]
1445
-
1446
- * Fixed WEBrick server to use ABSOLUTE_RAILS_ROOT instead of working_directory #687 [Nicholas Seckar]
1447
-
1448
- * Fixed rails_generator to be usable without RubyGems #686 [Cristi BALAN]
1449
-
1450
- * Fixed -h/--help for generate and destroy generators #331
1451
-
1452
- * Added begin/rescue around the FCGI dispatcher so no uncaught exceptions can bubble up to kill the process (logs to log/fastcgi.crash.log)
1453
-
1454
- * Fixed that association#count would produce invalid sql when called sequentialy #659 [kanis@comcard.de]
1455
-
1456
- * Fixed test/mocks/testing to the correct test/mocks/test #740
1457
-
1458
- * Added early failure if the Ruby version isn't 1.8.2 or above #735
1459
-
1460
- * Removed the obsolete -i/--index option from the WEBrick servlet #743
1461
-
1462
- * Upgraded to Active Record 1.8.0, Action Pack 1.5.1, Action Mailer 0.7.1, Action Web Service 0.6.0, Active Support 1.0.1
1463
-
1464
-
1465
- *0.10.0* (24th February, 2005)
1466
-
1467
- * Changed default IP binding for WEBrick from 127.0.0.1 to 0.0.0.0 so that the server is accessible both locally and remotely #696 [Marcel]
1468
-
1469
- * Fixed that script/server -d was broken so daemon mode couldn't be used #687 [Nicholas Seckar]
1470
-
1471
- * Upgraded to breakpoint 92 which fixes:
1472
-
1473
- * overload IRB.parse_opts(), fixes #443
1474
- => breakpoints in tests work even when running them via rake
1475
- * untaint handlers, might fix an issue discussed on the Rails ML
1476
- * added verbose mode to breakpoint_client
1477
- * less noise caused by breakpoint_client by default
1478
- * ignored TerminateLineInput exception in signal handler
1479
- => quiet exit on Ctrl-C
1480
-
1481
- * Added support for independent components residing in /components. Example:
1482
-
1483
- Controller: components/list/items_controller.rb
1484
- (holds a List::ItemsController class with uses_component_template_root called)
1485
-
1486
- Model : components/list/item.rb
1487
- (namespace is still shared, so an Item model in app/models will take precedence)
1488
-
1489
- Views : components/list/items/show.rhtml
1490
-
1491
-
1492
- * Added --sandbox option to script/console that'll roll back all changes made to the database when you quit #672 [Jeremy Kemper]
1493
-
1494
- * Added 'recent' as a rake target that'll run tests for files that changed in the last 10 minutes #612 [Jeremy Kemper]
1495
-
1496
- * Changed script/console to default to development environment and drop --no-inspect #650 [Jeremy Kemper]
1497
-
1498
- * Added that the 'fixture :posts' syntax can be used for has_and_belongs_to_many fixtures where a model doesn't exist #572 [Jeremy Kemper]
1499
-
1500
- * Added that running test_units and test_functional now performs the clone_structure_to_test as well #566 [rasputnik]
1501
-
1502
- * Added new generator framework that informs about its doings on generation and enables updating and destruction of generated artifacts. See the new script/destroy and script/update for more details #487 [Jeremy Kemper]
1503
-
1504
- * Added Action Web Service as a new add-on framework for Action Pack [Leon Bredt]
1505
-
1506
- * Added Active Support as an independent utility and standard library extension bundle
1507
-
1508
- * Upgraded to Active Record 1.7.0, Action Pack 1.5.0, Action Mailer 0.7.0
1509
-
1510
-
1511
- *0.9.5* (January 25th, 2005)
1512
-
1513
- * Fixed dependency reloading by switching to a remove_const approach where all Active Records, Active Record Observers, and Action Controllers are reloading by undefining their classes. This enables you to remove methods in all three types and see the change reflected immediately and it fixes #539. This also means that only those three types of classes will benefit from the const_missing and reloading approach. If you want other classes (like some in lib/) to reload, you must use require_dependency to do it.
1514
-
1515
- * Added Florian Gross' latest version of Breakpointer and friends that fixes a variaty of bugs #441 [Florian Gross]
1516
-
1517
- * Fixed skeleton Rakefile to work with sqlite3 out of the box #521 [rasputnik]
1518
-
1519
- * Fixed that script/breakpointer didn't get the Ruby path rewritten as the other scripts #523 [brandt@kurowski.net]
1520
-
1521
- * Fixed handling of syntax errors in models that had already been succesfully required once in the current interpreter
1522
-
1523
- * Fixed that models that weren't referenced in associations weren't being reloaded in the development mode by reinstating the reload
1524
-
1525
- * Fixed that generate scaffold would produce bad functional tests
1526
-
1527
- * Fixed that FCGI can also display SyntaxErrors
1528
-
1529
- * Upgraded to Active Record 1.6.0, Action Pack 1.4.0
1530
-
1531
-
1532
- *0.9.4.1* (January 18th, 2005)
1533
-
1534
- * Added 5-second timeout to WordNet alternatives on creating reserved-word models #501 [Marcel Molina]
1535
-
1536
- * Fixed binding of caller #496 [Alexey]
1537
-
1538
- * Upgraded to Active Record 1.5.1, Action Pack 1.3.1, Action Mailer 0.6.1
1539
-
1540
-
1541
- *0.9.4* (January 17th, 2005)
1542
-
1543
- * Added that ApplicationController will catch a ControllerNotFound exception if someone attempts to access a url pointing to an unexisting controller [Tobias Luetke]
1544
-
1545
- * Flipped code-to-test ratio around to be more readable #468 [Scott Baron]
1546
-
1547
- * Fixed log file permissions to be 666 instead of 777 (so they're not executable) #471 [Lucas Carlson]
1548
-
1549
- * Fixed that auto reloading would some times not work or would reload the models twice #475 [Tobias Luetke]
1550
-
1551
- * Added rewrite rules to deal with caching to public/.htaccess
1552
-
1553
- * Added the option to specify a controller name to "generate scaffold" and made the default controller name the plural form of the model.
1554
-
1555
- * Added that rake clone_structure_to_test, db_structure_dump, and purge_test_database tasks now pick up the source database to use from
1556
- RAILS_ENV instead of just forcing development #424 [Tobias Luetke]
1557
-
1558
- * Fixed script/console to work with Windows (that requires the use of irb.bat) #418 [octopod]
1559
-
1560
- * Fixed WEBrick servlet slowdown over time by restricting the load path reloading to mod_ruby
1561
-
1562
- * Removed Fancy Indexing as a default option on the WEBrick servlet as it made it harder to use various caching schemes
1563
-
1564
- * Upgraded to Active Record 1.5, Action Pack 1.3, Action Mailer 0.6
1565
-
1566
-
1567
- *0.9.3* (January 4th, 2005)
1568
-
1569
- * Added support for SQLite in the auto-dumping/importing of schemas for development -> test #416
1570
-
1571
- * Added automated rewriting of the shebang lines on installs through the gem rails command #379 [Manfred Stienstra]
1572
-
1573
- * Added ActionMailer::Base.deliver_method = :test to the test environment so that mail objects are available in ActionMailer::Base.deliveries
1574
- for functional testing.
1575
-
1576
- * Added protection for creating a model through the generators with a name of an existing class, like Thread or Date.
1577
- It'll even offer you a synonym using wordnet.princeton.edu as a look-up. No, I'm not kidding :) [Florian Gross]
1578
-
1579
- * Fixed dependency management to happen in a unified fashion for Active Record and Action Pack using the new Dependencies module. This means that
1580
- the environment options needs to change from:
1581
-
1582
- Before in development.rb:
1583
- ActionController::Base.reload_dependencies = true  
1584
- ActiveRecord::Base.reload_associations     = true
1585
-
1586
- Now in development.rb:
1587
- Dependencies.mechanism = :load
1588
-
1589
- Before in production.rb and test.rb:
1590
- ActionController::Base.reload_dependencies = false
1591
- ActiveRecord::Base.reload_associations     = false
1592
-
1593
- Now in production.rb and test.rb:
1594
- Dependencies.mechanism = :require
1595
-
1596
- * Fixed problems with dependency caching and controller hierarchies on Ruby 1.8.2 in development mode #351
1597
-
1598
- * Fixed that generated action_mailers doesnt need to require the action_mailer since thats already done in the environment #382 [Lucas Carlson]
1599
-
1600
- * Upgraded to Action Pack 1.2.0 and Active Record 1.4.0
1601
-
1602
-
1603
- *0.9.2*
1604
-
1605
- * Fixed CTRL-C exists from the Breakpointer to be a clean affair without error dumping [Kent Sibilev]
1606
-
1607
- * Fixed "rake stats" to work with sub-directories in models and controllers and to report the code to test ration [Scott Baron]
1608
-
1609
- * Added that Active Record associations are now reloaded instead of cleared to work with the new const_missing hook in Active Record.
1610
-
1611
- * Added graceful handling of an inaccessible log file by redirecting output to STDERR with a warning #330 [rainmkr]
1612
-
1613
- * Added support for a -h/--help parameter in the generator #331 [Ulysses]
1614
-
1615
- * Fixed that File.expand_path in config/environment.rb would fail when dealing with symlinked public directories [mjobin]
1616
-
1617
- * Upgraded to Action Pack 1.1.0 and Active Record 1.3.0
1618
-
1619
-
1620
- *0.9.1*
1621
-
1622
- * Upgraded to Action Pack 1.0.1 for important bug fix
1623
-
1624
- * Updated gem dependencies
1625
-
1626
-
1627
- *0.9.0*
1628
-
1629
- * Renamed public/dispatch.servlet to script/server -- it wasn't really dispatching anyway as its delegating calls to public/dispatch.rb
1630
-
1631
- * Renamed AbstractApplicationController and abstract_application.rb to ApplicationController and application.rb, so that it will be possible
1632
- for the framework to automatically pick up on app/views/layouts/application.rhtml and app/helpers/application.rb
1633
-
1634
- * Added script/console that makes it even easier to start an IRB session for interacting with the domain model. Run with no-args to
1635
- see help.
1636
-
1637
- * Added breakpoint support through the script/breakpointer client. This means that you can break out of execution at any point in
1638
- the code, investigate and change the model, AND then resume execution! Example:
1639
-
1640
- class WeblogController < ActionController::Base
1641
- def index
1642
- @posts = Post.find_all
1643
- breakpoint "Breaking out from the list"
1644
- end
1645
- end
1646
-
1647
- So the controller will accept the action, run the first line, then present you with a IRB prompt in the breakpointer window.
1648
- Here you can do things like:
1649
-
1650
- Executing breakpoint "Breaking out from the list" at .../webrick_server.rb:16 in 'breakpoint'
1651
-
1652
- >> @posts.inspect
1653
- => "[#<Post:0x14a6be8 @attributes={\"title\"=>nil, \"body\"=>nil, \"id\"=>\"1\"}>,
1654
- #<Post:0x14a6620 @attributes={\"title\"=>\"Rails you know!\", \"body\"=>\"Only ten..\", \"id\"=>\"2\"}>]"
1655
- >> @posts.first.title = "hello from a breakpoint"
1656
- => "hello from a breakpoint"
1657
-
1658
- ...and even better is that you can examine how your runtime objects actually work:
1659
-
1660
- >> f = @posts.first
1661
- => #<Post:0x13630c4 @attributes={"title"=>nil, "body"=>nil, "id"=>"1"}>
1662
- >> f.
1663
- Display all 152 possibilities? (y or n)
1664
-
1665
- Finally, when you're ready to resume execution, you press CTRL-D
1666
-
1667
- * Changed environments to be configurable through an environment variable. By default, the environment is "development", but you
1668
- can change that and set your own by configuring the Apache vhost with a string like (mod_env must be available on the server):
1669
-
1670
- SetEnv RAILS_ENV production
1671
-
1672
- ...if you're using WEBrick, you can pick the environment to use with the command-line parameters -e/--environment, like this:
1673
-
1674
- ruby public/dispatcher.servlet -e production
1675
-
1676
- * Added a new default environment called "development", which leaves the production environment to be tuned exclusively for that.
1677
-
1678
- * Added a start_server in the root of the Rails application to make it even easier to get started
1679
-
1680
- * Fixed public/.htaccess to use RewriteBase and share the same rewrite rules for all the dispatch methods
1681
-
1682
- * Fixed webrick_server to handle requests in a serialized manner (the Rails reloading infrastructure is not thread-safe)
1683
-
1684
- * Added support for controllers in directories. So you can have:
1685
-
1686
- app/controllers/account_controller.rb # URL: /account/
1687
- app/controllers/admin/account_controller.rb # URL: /admin/account/
1688
-
1689
- NOTE: You need to update your public/.htaccess with the new rules to pick it up
1690
-
1691
- * Added reloading for associations and dependencies under cached environments like FastCGI and mod_ruby. This makes it possible to use
1692
- those environments for development. This is turned on by default, but can be turned off with
1693
- ActiveRecord::Base.reload_associations = false and ActionController::Base.reload_dependencies = false in production environments.
1694
-
1695
- * Added support for sub-directories in app/models. So now you can have something like Basecamp with:
1696
-
1697
- app/models/accounting
1698
- app/models/project
1699
- app/models/participants
1700
- app/models/settings
1701
-
1702
- It's poor man's namespacing, but only for file-system organization. You still require files just like before.
1703
- Nothing changes inside the files themselves.
1704
-
1705
-
1706
- * Fixed a few references in the tests generated by new_mailer [Jeremy Kemper]
1707
-
1708
- * Added support for mocks in testing with test/mocks
1709
-
1710
- * Cleaned up the environments a bit and added global constant RAILS_ROOT
1711
-
1712
-
1713
- *0.8.5* (9)
1714
-
1715
- * Made dev-util available to all tests, so you can insert breakpoints in any test case to get an IRB prompt at that point [Jeremy Kemper]:
1716
-
1717
- def test_complex_stuff
1718
- @david.projects << @new_project
1719
- breakpoint "Let's have a closer look at @david"
1720
- end
1721
-
1722
- You need to install dev-utils yourself for this to work ("gem install dev-util").
1723
-
1724
- * Added shared generator behavior so future upgrades should be possible without manually copying over files [Jeremy Kemper]
1725
-
1726
- * Added the new helper style to both controller and helper templates [Jeremy Kemper]
1727
-
1728
- * Added new_crud generator for creating a model and controller at the same time with explicit scaffolding [Jeremy Kemper]
1729
-
1730
- * Added configuration of Test::Unit::TestCase.fixture_path to test_helper to concide with the new AR fixtures style
1731
-
1732
- * Fixed that new_model was generating singular table/fixture names
1733
-
1734
- * Upgraded to Action Mailer 0.4.0
1735
-
1736
- * Upgraded to Action Pack 0.9.5
1737
-
1738
- * Upgraded to Active Record 1.1.0
1739
-
1740
-
1741
- *0.8.0 (15)*
1742
-
1743
- * Removed custom_table_name option for new_model now that the Inflector is as powerful as it is
1744
-
1745
- * Changed the default rake action to just do testing and separate API generation and coding statistics into a "doc" task.
1746
-
1747
- * Fixed WEBrick dispatcher to handle missing slashes in the URLs gracefully [alexey]
1748
-
1749
- * Added user option for all postgresql tool calls in the rakefile [elvstone]
1750
-
1751
- * Fixed problem with running "ruby public/dispatch.servlet" instead of "cd public; ruby dispatch.servlet" [alexey]
1752
-
1753
- * Fixed WEBrick server so that it no longer hardcodes the ruby interpreter used to "ruby" but will get the one used based
1754
- on the Ruby runtime configuration. [Marcel Molina Jr.]
1755
-
1756
- * Fixed Dispatcher so it'll route requests to magic_beans to MagicBeansController/magic_beans_controller.rb [Caio Chassot]
1757
-
1758
- * "new_controller MagicBeans" and "new_model SubscriptionPayments" will now both behave properly as they use the new Inflector.
1759
-
1760
- * Fixed problem with MySQL foreign key constraint checks in Rake :clone_production_structure_to_test target [Andreas Schwarz]
1761
-
1762
- * Changed WEBrick server to by default be auto-reloading, which is slower but makes source changes instant.
1763
- Class compilation cache can be turned on with "-c" or "--cache-classes".
1764
-
1765
- * Added "-b/--binding" option to WEBrick dispatcher to bind the server to a specific IP address (default: 127.0.0.1) [Kevin Temp]
1766
-
1767
- * dispatch.fcgi now DOESN'T set FCGI_PURE_RUBY as it was slowing things down for now reason [Andreas Schwarz]
1768
-
1769
- * Added new_mailer generator to work with Action Mailer
1770
-
1771
- * Included new framework: Action Mailer 0.3
1772
-
1773
- * Upgraded to Action Pack 0.9.0
1774
-
1775
- * Upgraded to Active Record 1.0.0
1776
-
1777
-
1778
- *0.7.0*
1779
-
1780
- * Added an optional second argument to the new_model script that allows the programmer to specify the table name,
1781
- which will used to generate a custom table_name method in the model and will also be used in the creation of fixtures.
1782
- [Kevin Radloff]
1783
-
1784
- * script/new_model now turns AccountHolder into account_holder instead of accountholder [Kevin Radloff]
1785
-
1786
- * Fixed the faulty handleing of static files with WEBrick [Andreas Schwarz]
1787
-
1788
- * Unified function_test_helper and unit_test_helper into test_helper
1789
-
1790
- * Fixed bug with the automated production => test database dropping on PostgreSQL [dhawkins]
1791
-
1792
- * create_fixtures in both the functional and unit test helper now turns off the log during fixture generation
1793
- and can generate more than one fixture at a time. Which makes it possible for assignments like:
1794
-
1795
- @people, @projects, @project_access, @companies, @accounts =
1796
- create_fixtures "people", "projects", "project_access", "companies", "accounts"
1797
-
1798
- * Upgraded to Action Pack 0.8.5 (locally-scoped variables, partials, advanced send_file)
1799
-
1800
- * Upgraded to Active Record 0.9.5 (better table_name guessing, cloning, find_all_in_collection)
1801
-
1802
-
1803
- *0.6.5*
1804
-
1805
- * No longer specifies a template for rdoc, so it'll use whatever is default (you can change it in the rakefile)
1806
-
1807
- * The new_model generator will now use the same rules for plural wordings as Active Record
1808
- (so Category will give categories, not categorys) [Kevin Radloff]
1809
-
1810
- * dispatch.fcgi now sets FCGI_PURE_RUBY to true to ensure that it's the Ruby version that's loaded [danp]
1811
-
1812
- * Made the GEM work with Windows
1813
-
1814
- * Fixed bug where mod_ruby would "forget" the load paths added when switching between controllers
1815
-
1816
- * PostgreSQL are now supported for the automated production => test database dropping [Kevin Radloff]
1817
-
1818
- * Errors thrown by the dispatcher are now properly handled in FCGI.
1819
-
1820
- * Upgraded to Action Pack 0.8.0 (lots and lots and lots of fixes)
1821
-
1822
- * Upgraded to Active Record 0.9.4 (a bunch of fixes)
1823
-
1824
-
1825
- *0.6.0*
1826
-
1827
- * Added AbstractionApplicationController as a superclass for all controllers generated. This class can be used
1828
- to carry filters and methods that are to be shared by all. It has an accompanying ApplicationHelper that all
1829
- controllers will also automatically have available.
1830
-
1831
- * Added environments that can be included from any script to get the full Active Record and Action Controller
1832
- context running. This can be used by maintenance scripts or to interact with the model through IRB. Example:
1833
-
1834
- require 'config/environments/production'
1835
-
1836
- for account in Account.find_all
1837
- account.recalculate_interests
1838
- end
1839
-
1840
- A short migration script for an account model that had it's interest calculation strategy changed.
1841
-
1842
- * Accessing the index of a controller with "/weblog" will now redirect to "/weblog/" (only on Apache, not WEBrick)
1843
-
1844
- * Simplified the default Apache config so even remote requests are served off CGI as a default.
1845
- You'll now have to do something specific to activate mod_ruby and FCGI (like using the force urls).
1846
- This should make it easier for new comers that start on an external server.
1847
-
1848
- * Added more of the necessary Apache options to .htaccess to make it easier to setup
1849
-
1850
- * Upgraded to Action Pack 0.7.9 (lots of fixes)
1851
-
1852
- * Upgraded to Active Record 0.9.3 (lots of fixes)
1853
-
1854
-
1855
- *0.5.7*
1856
-
1857
- * Fixed bug in the WEBrick dispatcher that prevented it from getting parameters from the URL
1858
- (through GET requests or otherwise)
1859
-
1860
- * Added lib in root as a place to store app specific libraries
1861
-
1862
- * Added lib and vendor to load_path, so anything store within can be loaded directly.
1863
- Hence lib/redcloth.rb can be loaded with require "redcloth"
1864
-
1865
- * Upgraded to Action Pack 0.7.8 (lots of fixes)
1866
-
1867
- * Upgraded to Active Record 0.9.2 (minor upgrade)
1868
-
1869
-
1870
- *0.5.6*
1871
-
1872
- * Upgraded to Action Pack 0.7.7 (multipart form fix)
1873
-
1874
- * Updated the generated template stubs to valid XHTML files
1875
-
1876
- * Ensure that controllers generated are capitalized, so "new_controller TodoLists"
1877
- gives the same as "new_controller Todolists" and "new_controller todolists".
1878
-
1879
-
1880
- *0.5.5*
1881
-
1882
- * Works on Windows out of the box! (Dropped symlinks)
1883
-
1884
- * Added webrick dispatcher: Try "ruby public/dispatch.servlet --help" [Florian Gross]
1885
-
1886
- * Report errors about initialization to browser (instead of attempting to use uninitialized logger)
1887
-
1888
- * Upgraded to Action Pack 0.7.6
1889
-
1890
- * Upgraded to Active Record 0.9.1
1891
-
1892
- * Added distinct 500.html instead of reusing 404.html
1893
-
1894
- * Added MIT license
1895
-
1896
-
1897
- *0.5.0*
1898
-
1899
- * First public release