spree_billing_sisow 0.9.0 → 0.9.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (576) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +26 -0
  3. data/README.md +54 -0
  4. data/app/assets/javascripts/spree/backend/spree_billing_sisow.js +0 -0
  5. data/app/assets/javascripts/spree/frontend/spree_billing_sisow.js +0 -0
  6. data/app/assets/stylesheets/spree/backend/spree_billing_sisow.css +0 -0
  7. data/app/assets/stylesheets/spree/frontend/spree_billing_sisow.css +0 -0
  8. data/app/controllers/spree/admin/sisow_controller.rb +22 -0
  9. data/app/controllers/spree/checkout_controller_decorator.rb +70 -0
  10. data/app/controllers/spree/sisow_status_controller.rb +18 -0
  11. data/app/models/spree/app_configuration_decorator.rb +7 -0
  12. data/app/models/spree/billing_integration.rb +38 -0
  13. data/app/models/spree/payment_method/sisow_billing/bancontact.rb +9 -0
  14. data/app/models/spree/payment_method/sisow_billing/creditcard.rb +9 -0
  15. data/app/models/spree/payment_method/sisow_billing/ideal.rb +14 -0
  16. data/app/models/spree/payment_method/sisow_billing/paypalec.rb +9 -0
  17. data/app/models/spree/payment_method/sisow_billing/purchase.rb +19 -0
  18. data/app/models/spree/payment_method/sisow_billing/sisow_payment_method.rb +24 -0
  19. data/app/models/spree/payment_method/sisow_billing/sofort.rb +9 -0
  20. data/app/models/spree/payment_method/sisow_billing.rb +123 -0
  21. data/app/models/spree/sisow_transaction.rb +10 -0
  22. data/app/overrides/admin_decorator.rb +6 -0
  23. data/app/views/spree/admin/payments/source_forms/_bancontact.html.erb +8 -0
  24. data/app/views/spree/admin/payments/source_forms/_ideal.html.erb +8 -0
  25. data/app/views/spree/admin/payments/source_forms/_paypalec.html.erb +8 -0
  26. data/app/views/spree/admin/payments/source_forms/_sofort.html.erb +8 -0
  27. data/app/views/spree/admin/payments/source_views/_bancontact.html.erb +33 -0
  28. data/app/views/spree/admin/payments/source_views/_ideal.html.erb +33 -0
  29. data/app/views/spree/admin/payments/source_views/_sofort.html.erb +33 -0
  30. data/app/views/spree/admin/shared/_configurations_menu_sisow.html.erb +1 -0
  31. data/app/views/spree/admin/sisow/_form.html.erb +42 -0
  32. data/app/views/spree/admin/sisow/edit.html.erb +5 -0
  33. data/app/views/spree/checkout/payment/_bancontact.html.erb +1 -0
  34. data/app/views/spree/checkout/payment/_creditcard.html.erb +1 -0
  35. data/app/views/spree/checkout/payment/_ideal.html.erb +6 -0
  36. data/app/views/spree/checkout/payment/_paypalec.html.erb +1 -0
  37. data/app/views/spree/checkout/payment/_sofort.html.erb +1 -0
  38. data/config/locales/en.yml +16 -0
  39. data/config/locales/nl.yml +16 -0
  40. data/config/routes.rb +17 -0
  41. data/db/migrate/20130525124432_create_sisow_transactions.rb +14 -0
  42. data/db/migrate/20130527131828_add_transaction_type_to_sisow_transactions.rb +7 -0
  43. data/db/migrate/20150417081217_change_name_of_payment_method_types.rb +24 -0
  44. data/lib/generators/spree_billing_sisow/install/install_generator.rb +21 -0
  45. data/lib/spree_billing_sisow/engine.rb +33 -0
  46. data/lib/spree_billing_sisow/factories.rb +6 -0
  47. data/lib/spree_billing_sisow.rb +2 -0
  48. data/spec/controllers/spree/sisow_status_controller_spec.rb +70 -0
  49. data/spec/dummy/README.md +24 -0
  50. data/spec/dummy/Rakefile +6 -0
  51. data/spec/dummy/app/assets/config/manifest.js +3 -0
  52. data/spec/dummy/app/assets/javascripts/cable.js +13 -0
  53. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  54. data/spec/dummy/app/channels/application_cable/channel.rb +4 -0
  55. data/spec/dummy/app/channels/application_cable/connection.rb +4 -0
  56. data/spec/dummy/app/controllers/application_controller.rb +2 -0
  57. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  58. data/spec/dummy/app/jobs/application_job.rb +2 -0
  59. data/spec/dummy/app/mailers/application_mailer.rb +4 -0
  60. data/spec/dummy/app/models/application_record.rb +3 -0
  61. data/spec/dummy/app/models/spree/dummy_model.rb +6 -0
  62. data/spec/dummy/app/views/layouts/application.html.erb +15 -0
  63. data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
  64. data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
  65. data/spec/dummy/bin/bundle +3 -0
  66. data/spec/dummy/bin/rails +4 -0
  67. data/spec/dummy/bin/rake +4 -0
  68. data/spec/dummy/bin/setup +33 -0
  69. data/spec/dummy/bin/update +28 -0
  70. data/spec/dummy/config/application.rb +54 -0
  71. data/spec/dummy/config/boot.rb +6 -0
  72. data/spec/dummy/config/cable.yml +10 -0
  73. data/spec/dummy/config/credentials.yml.enc +1 -0
  74. data/spec/dummy/config/database.yml +16 -0
  75. data/spec/dummy/config/environment.rb +5 -0
  76. data/spec/dummy/config/environments/development.rb +61 -0
  77. data/spec/dummy/config/environments/production.rb +94 -0
  78. data/spec/dummy/config/environments/test.rb +38 -0
  79. data/spec/dummy/config/initializers/application_controller_renderer.rb +8 -0
  80. data/spec/dummy/config/initializers/assets.rb +12 -0
  81. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  82. data/spec/dummy/config/initializers/content_security_policy.rb +25 -0
  83. data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
  84. data/spec/dummy/config/initializers/devise.rb +3 -0
  85. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  86. data/spec/dummy/config/initializers/inflections.rb +16 -0
  87. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  88. data/spec/dummy/config/initializers/spree.rb +30 -0
  89. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  90. data/spec/dummy/config/locales/en.yml +33 -0
  91. data/spec/dummy/config/master.key +1 -0
  92. data/spec/dummy/config/puma.rb +34 -0
  93. data/spec/dummy/config/routes.rb +11 -0
  94. data/spec/dummy/config/storage.yml +34 -0
  95. data/spec/dummy/config.ru +5 -0
  96. data/spec/dummy/db/migrate/20190729091650_create_active_storage_tables.active_storage.rb +27 -0
  97. data/spec/dummy/db/migrate/20190729091651_spree_one_two.spree.rb +482 -0
  98. data/spec/dummy/db/migrate/20190729091652_spree_promo_one_two.spree.rb +46 -0
  99. data/spec/dummy/db/migrate/20190729091653_add_tax_rate_label.spree.rb +6 -0
  100. data/spec/dummy/db/migrate/20190729091654_add_toggle_tax_rate_display.spree.rb +6 -0
  101. data/spec/dummy/db/migrate/20190729091655_remove_unused_preference_columns.spree.rb +9 -0
  102. data/spec/dummy/db/migrate/20190729091656_add_lock_version_to_variant.spree.rb +6 -0
  103. data/spec/dummy/db/migrate/20190729091657_add_states_required_to_countries.spree.rb +6 -0
  104. data/spec/dummy/db/migrate/20190729091658_add_on_demand_to_product_and_variant.spree.rb +7 -0
  105. data/spec/dummy/db/migrate/20190729091659_remove_not_null_constraint_from_products_on_hand.spree.rb +12 -0
  106. data/spec/dummy/db/migrate/20190729091660_split_prices_from_variants.spree.rb +32 -0
  107. data/spec/dummy/db/migrate/20190729091661_remove_not_null_from_spree_prices_amount.spree.rb +10 -0
  108. data/spec/dummy/db/migrate/20190729091662_add_currency_to_line_items.spree.rb +6 -0
  109. data/spec/dummy/db/migrate/20190729091663_add_currency_to_orders.spree.rb +6 -0
  110. data/spec/dummy/db/migrate/20190729091664_add_cost_currency_to_variants.spree.rb +6 -0
  111. data/spec/dummy/db/migrate/20190729091665_remove_display_on_from_payment_methods.spree.rb +6 -0
  112. data/spec/dummy/db/migrate/20190729091666_add_position_to_taxonomies.spree.rb +6 -0
  113. data/spec/dummy/db/migrate/20190729091667_add_last_ip_to_spree_orders.spree.rb +6 -0
  114. data/spec/dummy/db/migrate/20190729091668_add_state_to_spree_adjustments.spree.rb +7 -0
  115. data/spec/dummy/db/migrate/20190729091669_add_display_on_to_spree_payment_methods.spree.rb +10 -0
  116. data/spec/dummy/db/migrate/20190729091670_add_position_to_product_properties.spree.rb +7 -0
  117. data/spec/dummy/db/migrate/20190729091671_add_identifier_to_spree_payments.spree.rb +6 -0
  118. data/spec/dummy/db/migrate/20190729091672_add_order_id_index_to_payments.spree.rb +10 -0
  119. data/spec/dummy/db/migrate/20190729091673_add_primary_to_spree_products_taxons.spree.rb +6 -0
  120. data/spec/dummy/db/migrate/20190729091674_create_spree_stock_items.spree.rb +15 -0
  121. data/spec/dummy/db/migrate/20190729091675_create_spree_stock_locations.spree.rb +12 -0
  122. data/spec/dummy/db/migrate/20190729091676_create_default_stock.spree.rb +34 -0
  123. data/spec/dummy/db/migrate/20190729091677_add_order_id_index_to_shipments.spree.rb +6 -0
  124. data/spec/dummy/db/migrate/20190729091678_change_meta_description_on_spree_products_to_text.spree.rb +6 -0
  125. data/spec/dummy/db/migrate/20190729091679_add_stock_location_id_to_spree_shipments.spree.rb +6 -0
  126. data/spec/dummy/db/migrate/20190729091680_add_pending_to_inventory_unit.spree.rb +7 -0
  127. data/spec/dummy/db/migrate/20190729091681_remove_on_demand_from_product_and_variant.spree.rb +7 -0
  128. data/spec/dummy/db/migrate/20190729091682_create_shipping_method_zone.spree.rb +22 -0
  129. data/spec/dummy/db/migrate/20190729091683_remove_shipping_category_id_from_shipping_method.spree.rb +6 -0
  130. data/spec/dummy/db/migrate/20190729091684_create_shipping_method_categories.spree.rb +14 -0
  131. data/spec/dummy/db/migrate/20190729091685_add_tracking_url_to_spree_shipping_methods.spree.rb +6 -0
  132. data/spec/dummy/db/migrate/20190729091686_create_spree_shipping_rates.spree.rb +25 -0
  133. data/spec/dummy/db/migrate/20190729091687_remove_category_match_attributes_from_shipping_method.spree.rb +8 -0
  134. data/spec/dummy/db/migrate/20190729091688_create_stock_movements.spree.rb +13 -0
  135. data/spec/dummy/db/migrate/20190729091689_add_address_fields_to_stock_location.spree.rb +23 -0
  136. data/spec/dummy/db/migrate/20190729091690_add_active_field_to_stock_locations.spree.rb +6 -0
  137. data/spec/dummy/db/migrate/20190729091691_add_backorderable_to_stock_item.spree.rb +6 -0
  138. data/spec/dummy/db/migrate/20190729091692_add_default_quantity_to_stock_movement.spree.rb +6 -0
  139. data/spec/dummy/db/migrate/20190729091693_add_source_and_destination_to_stock_movements.spree.rb +9 -0
  140. data/spec/dummy/db/migrate/20190729091694_change_orders_total_precision.spree.rb +9 -0
  141. data/spec/dummy/db/migrate/20190729091695_change_spree_payments_amount_precision.spree.rb +8 -0
  142. data/spec/dummy/db/migrate/20190729091696_change_spree_return_authorization_amount_precision.spree.rb +8 -0
  143. data/spec/dummy/db/migrate/20190729091697_change_adjustments_amount_precision.spree.rb +8 -0
  144. data/spec/dummy/db/migrate/20190729091698_add_originator_to_stock_movement.spree.rb +8 -0
  145. data/spec/dummy/db/migrate/20190729091699_drop_source_and_destination_from_stock_movement.spree.rb +16 -0
  146. data/spec/dummy/db/migrate/20190729091700_migrate_inventory_unit_sold_to_on_hand.spree.rb +10 -0
  147. data/spec/dummy/db/migrate/20190729091701_add_stock_location_to_rma.spree.rb +6 -0
  148. data/spec/dummy/db/migrate/20190729091702_update_shipment_state_for_canceled_orders.spree.rb +16 -0
  149. data/spec/dummy/db/migrate/20190729091703_add_seo_metas_to_taxons.spree.rb +10 -0
  150. data/spec/dummy/db/migrate/20190729091704_remove_stock_item_and_variant_lock.spree.rb +15 -0
  151. data/spec/dummy/db/migrate/20190729091705_add_name_to_spree_credit_cards.spree.rb +6 -0
  152. data/spec/dummy/db/migrate/20190729091706_update_name_fields_on_spree_credit_cards.spree.rb +14 -0
  153. data/spec/dummy/db/migrate/20190729091707_add_index_to_source_columns_on_adjustments.spree.rb +6 -0
  154. data/spec/dummy/db/migrate/20190729091708_update_adjustment_states.spree.rb +17 -0
  155. data/spec/dummy/db/migrate/20190729091709_add_shipping_rates_to_shipments.spree.rb +16 -0
  156. data/spec/dummy/db/migrate/20190729091710_create_spree_stock_transfers.spree.rb +15 -0
  157. data/spec/dummy/db/migrate/20190729091711_drop_products_count_on_hand.spree.rb +6 -0
  158. data/spec/dummy/db/migrate/20190729091712_set_default_shipping_rate_cost.spree.rb +6 -0
  159. data/spec/dummy/db/migrate/20190729091713_add_number_to_stock_transfer.spree.rb +24 -0
  160. data/spec/dummy/db/migrate/20190729091714_add_sku_index_to_spree_variants.spree.rb +6 -0
  161. data/spec/dummy/db/migrate/20190729091715_add_backorderable_default_to_spree_stock_location.spree.rb +6 -0
  162. data/spec/dummy/db/migrate/20190729091716_add_propage_all_variants_to_spree_stock_location.spree.rb +6 -0
  163. data/spec/dummy/db/migrate/20190729091717_rename_shipping_methods_zones_to_spree_shipping_methods_zones.spree.rb +6 -0
  164. data/spec/dummy/db/migrate/20190729091718_add_user_id_index_to_spree_orders.spree.rb +6 -0
  165. data/spec/dummy/db/migrate/20190729091719_add_updated_at_to_spree_countries.spree.rb +10 -0
  166. data/spec/dummy/db/migrate/20190729091720_add_updated_at_to_spree_states.spree.rb +10 -0
  167. data/spec/dummy/db/migrate/20190729091721_add_cvv_result_code_and_cvv_result_message_to_spree_payments.spree.rb +7 -0
  168. data/spec/dummy/db/migrate/20190729091722_add_unique_index_to_permalink_on_spree_products.spree.rb +6 -0
  169. data/spec/dummy/db/migrate/20190729091723_add_unique_index_to_orders_shipments_and_stock_transfers.spree.rb +8 -0
  170. data/spec/dummy/db/migrate/20190729091724_add_deleted_at_to_spree_tax_rates.spree.rb +6 -0
  171. data/spec/dummy/db/migrate/20190729091725_remove_lock_version_from_inventory_units.spree.rb +7 -0
  172. data/spec/dummy/db/migrate/20190729091726_add_cost_price_to_line_item.spree.rb +6 -0
  173. data/spec/dummy/db/migrate/20190729091727_set_backorderable_to_default_to_false.spree.rb +7 -0
  174. data/spec/dummy/db/migrate/20190729091728_add_created_by_id_to_spree_orders.spree.rb +6 -0
  175. data/spec/dummy/db/migrate/20190729091729_index_completed_at_on_spree_orders.spree.rb +6 -0
  176. data/spec/dummy/db/migrate/20190729091730_add_tax_category_id_to_spree_line_items.spree.rb +6 -0
  177. data/spec/dummy/db/migrate/20190729091731_migrate_tax_categories_to_line_items.spree.rb +11 -0
  178. data/spec/dummy/db/migrate/20190729091732_drop_spree_mail_methods.spree.rb +13 -0
  179. data/spec/dummy/db/migrate/20190729091733_set_default_stock_location_on_shipments.spree.rb +9 -0
  180. data/spec/dummy/db/migrate/20190729091734_upgrade_adjustments.spree.rb +47 -0
  181. data/spec/dummy/db/migrate/20190729091735_rename_adjustment_fields.spree.rb +21 -0
  182. data/spec/dummy/db/migrate/20190729091736_add_admin_name_column_to_spree_shipping_methods.spree.rb +6 -0
  183. data/spec/dummy/db/migrate/20190729091737_add_admin_name_column_to_spree_stock_locations.spree.rb +6 -0
  184. data/spec/dummy/db/migrate/20190729091738_add_shipment_total_to_spree_orders.spree.rb +6 -0
  185. data/spec/dummy/db/migrate/20190729091739_expand_order_number_size.spree.rb +10 -0
  186. data/spec/dummy/db/migrate/20190729091740_rename_activators_to_promotions.spree.rb +6 -0
  187. data/spec/dummy/db/migrate/20190729091741_add_adjustment_total_to_line_items.spree.rb +6 -0
  188. data/spec/dummy/db/migrate/20190729091742_add_adjustment_total_to_shipments.spree.rb +6 -0
  189. data/spec/dummy/db/migrate/20190729091743_add_depth_to_spree_taxons.spree.rb +17 -0
  190. data/spec/dummy/db/migrate/20190729091744_add_tax_total_to_line_items_shipments_and_orders.spree.rb +9 -0
  191. data/spec/dummy/db/migrate/20190729091745_add_shipping_category_to_shipping_methods_and_products.spree.rb +16 -0
  192. data/spec/dummy/db/migrate/20190729091746_migrate_old_shipping_calculators.spree.rb +20 -0
  193. data/spec/dummy/db/migrate/20190729091747_add_code_to_spree_promotion_rules.spree.rb +6 -0
  194. data/spec/dummy/db/migrate/20190729091748_change_states_required_for_countries.spree.rb +10 -0
  195. data/spec/dummy/db/migrate/20190729091749_add_deleted_at_to_spree_stock_items.spree.rb +6 -0
  196. data/spec/dummy/db/migrate/20190729091750_remove_promotions_event_name_field.spree.rb +6 -0
  197. data/spec/dummy/db/migrate/20190729091751_add_promo_total_to_line_items_and_shipments_and_orders.spree.rb +8 -0
  198. data/spec/dummy/db/migrate/20190729091752_remove_unused_credit_card_fields.spree.rb +17 -0
  199. data/spec/dummy/db/migrate/20190729091753_add_track_inventory_to_variant.spree.rb +6 -0
  200. data/spec/dummy/db/migrate/20190729091754_add_tax_category_to_variants.spree.rb +7 -0
  201. data/spec/dummy/db/migrate/20190729091755_add_channel_to_spree_orders.spree.rb +6 -0
  202. data/spec/dummy/db/migrate/20190729091756_add_included_to_adjustments.spree.rb +6 -0
  203. data/spec/dummy/db/migrate/20190729091757_rename_tax_total_fields.spree.rb +12 -0
  204. data/spec/dummy/db/migrate/20190729091758_add_line_item_id_to_spree_inventory_units.spree.rb +22 -0
  205. data/spec/dummy/db/migrate/20190729091759_add_updated_at_to_variants.spree.rb +6 -0
  206. data/spec/dummy/db/migrate/20190729091760_add_position_to_classifications.spree.rb +6 -0
  207. data/spec/dummy/db/migrate/20190729091761_create_spree_orders_promotions.spree.rb +9 -0
  208. data/spec/dummy/db/migrate/20190729091762_unique_shipping_method_categories.spree.rb +25 -0
  209. data/spec/dummy/db/migrate/20190729091763_add_item_count_to_spree_orders.spree.rb +6 -0
  210. data/spec/dummy/db/migrate/20190729091764_remove_value_type_from_spree_preferences.spree.rb +9 -0
  211. data/spec/dummy/db/migrate/20190729091765_rename_permalink_to_slug_for_products.spree.rb +6 -0
  212. data/spec/dummy/db/migrate/20190729091766_add_index_to_variant_id_and_currency_on_prices.spree.rb +6 -0
  213. data/spec/dummy/db/migrate/20190729091767_rename_activator_id_in_rules_and_actions_to_promotion_id.spree.rb +7 -0
  214. data/spec/dummy/db/migrate/20190729091768_add_deleted_at_to_spree_prices.spree.rb +6 -0
  215. data/spec/dummy/db/migrate/20190729091769_add_approver_id_and_approved_at_to_orders.spree.rb +7 -0
  216. data/spec/dummy/db/migrate/20190729091770_add_confirmation_delivered_to_spree_orders.spree.rb +6 -0
  217. data/spec/dummy/db/migrate/20190729091771_add_auto_capture_to_payment_methods.spree.rb +6 -0
  218. data/spec/dummy/db/migrate/20190729091772_create_spree_payment_capture_events.spree.rb +13 -0
  219. data/spec/dummy/db/migrate/20190729091773_add_uncaptured_amount_to_payments.spree.rb +6 -0
  220. data/spec/dummy/db/migrate/20190729091774_default_variant_weight_to_zero.spree.rb +12 -0
  221. data/spec/dummy/db/migrate/20190729091775_add_tax_category_id_to_shipping_methods.spree.rb +6 -0
  222. data/spec/dummy/db/migrate/20190729091776_add_tax_rate_id_to_shipping_rates.spree.rb +6 -0
  223. data/spec/dummy/db/migrate/20190729091777_add_pre_tax_amount_to_line_items_and_shipments.spree.rb +7 -0
  224. data/spec/dummy/db/migrate/20190729091778_add_more_indexes.spree.rb +14 -0
  225. data/spec/dummy/db/migrate/20190729091779_add_considered_risky_to_orders.spree.rb +6 -0
  226. data/spec/dummy/db/migrate/20190729091780_add_preference_store_to_everything.spree.rb +9 -0
  227. data/spec/dummy/db/migrate/20190729091781_add_user_id_to_spree_credit_cards.spree.rb +14 -0
  228. data/spec/dummy/db/migrate/20190729091782_migrate_old_preferences.spree.rb +28 -0
  229. data/spec/dummy/db/migrate/20190729091783_create_spree_stores.spree.rb +26 -0
  230. data/spec/dummy/db/migrate/20190729091784_create_store_from_preferences.spree.rb +38 -0
  231. data/spec/dummy/db/migrate/20190729091785_add_timestamps_to_spree_assets.spree.rb +7 -0
  232. data/spec/dummy/db/migrate/20190729091786_create_spree_taxons_promotion_rules.spree.rb +9 -0
  233. data/spec/dummy/db/migrate/20190729091787_add_additional_store_fields.spree.rb +9 -0
  234. data/spec/dummy/db/migrate/20190729091788_add_many_missing_indexes.spree.rb +19 -0
  235. data/spec/dummy/db/migrate/20190729091789_correct_some_polymorphic_index_and_add_more_missing.spree.rb +67 -0
  236. data/spec/dummy/db/migrate/20190729091790_add_user_id_created_by_id_index_to_order.spree.rb +6 -0
  237. data/spec/dummy/db/migrate/20190729091791_change_spree_price_amount_precision.spree.rb +9 -0
  238. data/spec/dummy/db/migrate/20190729091792_add_token_to_spree_orders.spree.rb +6 -0
  239. data/spec/dummy/db/migrate/20190729091793_move_order_token_from_tokenized_permission.spree.rb +30 -0
  240. data/spec/dummy/db/migrate/20190729091794_set_shipment_total_for_users_upgrading.spree.rb +11 -0
  241. data/spec/dummy/db/migrate/20190729091795_drop_credit_card_first_name_and_last_name.spree.rb +7 -0
  242. data/spec/dummy/db/migrate/20190729091796_add_deleted_at_to_spree_promotion_actions.spree.rb +7 -0
  243. data/spec/dummy/db/migrate/20190729091797_remove_uncaptured_amount_from_spree_payments.spree.rb +6 -0
  244. data/spec/dummy/db/migrate/20190729091798_create_spree_refunds.spree.rb +13 -0
  245. data/spec/dummy/db/migrate/20190729091799_create_spree_return_authorization_inventory_unit.spree.rb +13 -0
  246. data/spec/dummy/db/migrate/20190729091800_rename_return_authorization_inventory_unit_to_return_items.spree.rb +6 -0
  247. data/spec/dummy/db/migrate/20190729091801_backfill_line_item_pre_tax_amount.spree.rb +11 -0
  248. data/spec/dummy/db/migrate/20190729091802_recreate_spree_return_authorizations.spree.rb +56 -0
  249. data/spec/dummy/db/migrate/20190729091803_add_amount_fields_to_return_items.spree.rb +8 -0
  250. data/spec/dummy/db/migrate/20190729091804_drop_return_authorization_amount.spree.rb +6 -0
  251. data/spec/dummy/db/migrate/20190729091805_create_spree_return_authorization_reasons.spree.rb +29 -0
  252. data/spec/dummy/db/migrate/20190729091806_create_spree_refund_reasons.spree.rb +15 -0
  253. data/spec/dummy/db/migrate/20190729091807_rename_return_authorization_reason.spree.rb +6 -0
  254. data/spec/dummy/db/migrate/20190729091808_create_spree_promotion_categories.spree.rb +12 -0
  255. data/spec/dummy/db/migrate/20190729091809_drop_received_at_on_return_items.spree.rb +10 -0
  256. data/spec/dummy/db/migrate/20190729091810_add_reception_and_acceptance_status_to_return_items.spree.rb +7 -0
  257. data/spec/dummy/db/migrate/20190729091811_create_default_refund_reason.spree.rb +10 -0
  258. data/spec/dummy/db/migrate/20190729091812_add_default_to_spree_stock_locations.spree.rb +8 -0
  259. data/spec/dummy/db/migrate/20190729091813_create_spree_customer_returns.spree.rb +10 -0
  260. data/spec/dummy/db/migrate/20190729091814_add_customer_return_id_to_return_item.spree.rb +7 -0
  261. data/spec/dummy/db/migrate/20190729091815_create_friendly_id_slugs.spree.rb +16 -0
  262. data/spec/dummy/db/migrate/20190729091816_rename_spree_refund_return_authorization_id.spree.rb +6 -0
  263. data/spec/dummy/db/migrate/20190729091817_increase_return_item_pre_tax_amount_precision.spree.rb +14 -0
  264. data/spec/dummy/db/migrate/20190729091818_copy_product_slugs_to_slug_history.spree.rb +16 -0
  265. data/spec/dummy/db/migrate/20190729091819_create_spree_reimbursements.spree.rb +22 -0
  266. data/spec/dummy/db/migrate/20190729091820_add_promotionable_to_spree_products.spree.rb +6 -0
  267. data/spec/dummy/db/migrate/20190729091821_add_exchange_inventory_unit_foreign_keys.spree.rb +8 -0
  268. data/spec/dummy/db/migrate/20190729091822_add_acceptance_status_errors_to_return_item.spree.rb +6 -0
  269. data/spec/dummy/db/migrate/20190729091823_create_spree_reimbursement_types.spree.rb +21 -0
  270. data/spec/dummy/db/migrate/20190729091824_add_default_to_shipment_cost.spree.rb +11 -0
  271. data/spec/dummy/db/migrate/20190729091825_add_default_to_spree_credit_cards.spree.rb +6 -0
  272. data/spec/dummy/db/migrate/20190729091826_make_existing_credit_cards_default.spree.rb +11 -0
  273. data/spec/dummy/db/migrate/20190729091827_add_type_to_reimbursement_type.spree.rb +10 -0
  274. data/spec/dummy/db/migrate/20190729091828_create_spree_reimbursement_credits.spree.rb +11 -0
  275. data/spec/dummy/db/migrate/20190729091829_add_meta_title_to_spree_products.spree.rb +8 -0
  276. data/spec/dummy/db/migrate/20190729091830_add_kind_to_zone.spree.rb +12 -0
  277. data/spec/dummy/db/migrate/20190729091831_add_code_to_spree_tax_categories.spree.rb +6 -0
  278. data/spec/dummy/db/migrate/20190729091832_default_pre_tax_amount_should_be_zero.spree.rb +7 -0
  279. data/spec/dummy/db/migrate/20190729091833_add_code_to_spree_shipping_methods.spree.rb +6 -0
  280. data/spec/dummy/db/migrate/20190729091834_add_cancel_audit_fields_to_spree_orders.spree.rb +7 -0
  281. data/spec/dummy/db/migrate/20190729091835_add_store_id_to_orders.spree.rb +9 -0
  282. data/spec/dummy/db/migrate/20190729091836_create_spree_taxons_prototypes.spree.rb +9 -0
  283. data/spec/dummy/db/migrate/20190729091837_add_state_lock_version_to_order.spree.rb +6 -0
  284. data/spec/dummy/db/migrate/20190729091838_add_counter_cache_from_spree_variants_to_spree_stock_items.spree.rb +9 -0
  285. data/spec/dummy/db/migrate/20190729091839_fix_adjustment_order_presence.spree.rb +14 -0
  286. data/spec/dummy/db/migrate/20190729091840_update_classifications_positions.spree.rb +10 -0
  287. data/spec/dummy/db/migrate/20190729091841_add_guest_token_index_to_spree_orders.spree.rb +6 -0
  288. data/spec/dummy/db/migrate/20190729091842_remove_token_permissions_table.spree.rb +7 -0
  289. data/spec/dummy/db/migrate/20190729091843_remove_extra_products_slug_index.spree.rb +6 -0
  290. data/spec/dummy/db/migrate/20190729091844_update_product_slug_index.spree.rb +7 -0
  291. data/spec/dummy/db/migrate/20190729091845_rename_identifier_to_number_for_payment.spree.rb +6 -0
  292. data/spec/dummy/db/migrate/20190729091846_create_spree_store_credits.spree.rb +25 -0
  293. data/spec/dummy/db/migrate/20190729091847_create_spree_store_credit_categories.spree.rb +9 -0
  294. data/spec/dummy/db/migrate/20190729091848_create_spree_store_credit_events.spree.rb +18 -0
  295. data/spec/dummy/db/migrate/20190729091849_create_spree_store_credit_types.spree.rb +11 -0
  296. data/spec/dummy/db/migrate/20190729091850_remove_environment_from_payment_method.spree.rb +7 -0
  297. data/spec/dummy/db/migrate/20190729091851_add_resellable_to_return_items.spree.rb +6 -0
  298. data/spec/dummy/db/migrate/20190729091852_add_code_to_spree_promotion_categories.spree.rb +6 -0
  299. data/spec/dummy/db/migrate/20190729091853_remove_environment_from_tracker.spree.rb +9 -0
  300. data/spec/dummy/db/migrate/20190729091854_remove_spree_configurations.spree.rb +17 -0
  301. data/spec/dummy/db/migrate/20190729091855_add_index_to_spree_stock_items_variant_id.spree.rb +14 -0
  302. data/spec/dummy/db/migrate/20190729091856_ensure_payments_have_numbers.spree.rb +14 -0
  303. data/spec/dummy/db/migrate/20190729091857_add_missing_indexes_on_spree_tables.spree.rb +68 -0
  304. data/spec/dummy/db/migrate/20190729091858_remove_duplicated_indexes_from_multi_columns.spree.rb +19 -0
  305. data/spec/dummy/db/migrate/20190729091859_remove_user_index_from_spree_state_changes.spree.rb +15 -0
  306. data/spec/dummy/db/migrate/20190729091860_fix_adjustment_order_id.spree.rb +71 -0
  307. data/spec/dummy/db/migrate/20190729091861_add_position_to_spree_payment_methods.spree.rb +6 -0
  308. data/spec/dummy/db/migrate/20190729091862_add_deleted_at_to_friendly_id_slugs.spree.rb +7 -0
  309. data/spec/dummy/db/migrate/20190729091863_increase_scale_on_pre_tax_amounts.spree.rb +17 -0
  310. data/spec/dummy/db/migrate/20190729091864_add_taxable_adjustment_total_to_line_item.spree.rb +20 -0
  311. data/spec/dummy/db/migrate/20190729091865_migrate_payment_methods_display.spree.rb +13 -0
  312. data/spec/dummy/db/migrate/20190729091866_enable_acts_as_paranoid_on_calculators.spree.rb +7 -0
  313. data/spec/dummy/db/migrate/20190729091867_spree_payment_method_store_credits.spree.rb +13 -0
  314. data/spec/dummy/db/migrate/20190729091868_rename_has_and_belongs_to_associations_to_model_names.spree.rb +19 -0
  315. data/spec/dummy/db/migrate/20190729091869_spree_store_credit_types.spree.rb +12 -0
  316. data/spec/dummy/db/migrate/20190729091870_add_discontinued_to_products_and_variants.spree.rb +69 -0
  317. data/spec/dummy/db/migrate/20190729091871_remove_shipping_method_id_from_spree_orders.spree.rb +14 -0
  318. data/spec/dummy/db/migrate/20190729091872_add_id_column_to_earlier_habtm_tables.spree.rb +17 -0
  319. data/spec/dummy/db/migrate/20190729091873_add_indexes.spree.rb +15 -0
  320. data/spec/dummy/db/migrate/20190729091874_remove_counter_cache_from_spree_variants_to_spree_stock_items.spree.rb +11 -0
  321. data/spec/dummy/db/migrate/20190729091875_acts_as_taggable_on_spree_migration.spree.rb +41 -0
  322. data/spec/dummy/db/migrate/20190729091876_change_collation_for_spree_tag_names.spree.rb +10 -0
  323. data/spec/dummy/db/migrate/20190729091877_add_missing_indexes_to_spree_taggings.spree.rb +15 -0
  324. data/spec/dummy/db/migrate/20190729091878_add_zipcode_required_to_spree_countries.spree.rb +8 -0
  325. data/spec/dummy/db/migrate/20190729091879_add_created_at_to_variant.spree.rb +9 -0
  326. data/spec/dummy/db/migrate/20190729091880_add_null_false_to_spree_variants_timestamps.spree.rb +7 -0
  327. data/spec/dummy/db/migrate/20190729091881_add_quantity_to_inventory_units.spree.rb +6 -0
  328. data/spec/dummy/db/migrate/20190729091882_add_original_return_item_id_to_spree_inventory_units.spree.rb +30 -0
  329. data/spec/dummy/db/migrate/20190729091883_add_unique_index_on_number_to_spree_orders.spree.rb +17 -0
  330. data/spec/dummy/db/migrate/20190729091884_add_unique_index_on_number_to_spree_stock_transfer.spree.rb +17 -0
  331. data/spec/dummy/db/migrate/20190729091885_add_unique_index_on_number_to_spree_shipment.spree.rb +17 -0
  332. data/spec/dummy/db/migrate/20190729091886_add_unique_index_on_number_to_spree_payments.spree.rb +18 -0
  333. data/spec/dummy/db/migrate/20190729091887_add_unique_index_on_number_to_spree_return_authorizations.spree.rb +17 -0
  334. data/spec/dummy/db/migrate/20190729091888_add_unique_index_on_number_to_spree_customer_returns.spree.rb +17 -0
  335. data/spec/dummy/db/migrate/20190729091889_add_unique_index_on_number_to_spree_reimbursements.spree.rb +17 -0
  336. data/spec/dummy/db/migrate/20190729091890_add_missing_unique_indexes_for_unique_attributes.spree.rb +38 -0
  337. data/spec/dummy/db/migrate/20190729091891_add_index_on_stock_location_to_spree_customer_returns.spree.rb +6 -0
  338. data/spec/dummy/db/migrate/20190729091892_add_index_on_prototype_to_spree_option_type_prototype.spree.rb +20 -0
  339. data/spec/dummy/db/migrate/20190729091893_add_indexes_to_spree_option_value_variant.spree.rb +20 -0
  340. data/spec/dummy/db/migrate/20190729091894_add_index_on_promotion_id_to_order_promotions.spree.rb +6 -0
  341. data/spec/dummy/db/migrate/20190729091895_add_indexes_for_property_prototype.spree.rb +21 -0
  342. data/spec/dummy/db/migrate/20190729091896_add_index_for_prototype_id_to_prototype_taxons.spree.rb +6 -0
  343. data/spec/dummy/db/migrate/20190729091897_add_indexes_to_refunds.spree.rb +7 -0
  344. data/spec/dummy/db/migrate/20190729091898_add_indexes_to_reimbursement_credits.spree.rb +7 -0
  345. data/spec/dummy/db/migrate/20190729091899_add_indexes_to_return_authorizations.spree.rb +7 -0
  346. data/spec/dummy/db/migrate/20190729091900_add_indexes_to_return_items.spree.rb +12 -0
  347. data/spec/dummy/db/migrate/20190729091901_add_index_to_role_users.spree.rb +19 -0
  348. data/spec/dummy/db/migrate/20190729091902_add_index_to_shipping_method_categories.spree.rb +6 -0
  349. data/spec/dummy/db/migrate/20190729091903_add_index_to_shipping_method_zones.spree.rb +21 -0
  350. data/spec/dummy/db/migrate/20190729091904_add_index_to_spree_shipping_rates.spree.rb +7 -0
  351. data/spec/dummy/db/migrate/20190729091905_add_index_to_spree_stock_items.spree.rb +6 -0
  352. data/spec/dummy/db/migrate/20190729091906_add_index_to_spree_stock_movement.spree.rb +6 -0
  353. data/spec/dummy/db/migrate/20190729091907_change_indexes_on_friendly_id_slugs.spree.rb +11 -0
  354. data/spec/dummy/db/migrate/20190729091908_add_analytics_kind_to_spree_trackers.spree.rb +6 -0
  355. data/spec/dummy/db/migrate/20190729091909_rename_tracker_kind_field.spree.rb +6 -0
  356. data/spec/dummy/db/migrate/20190729091910_remove_icon_from_taxons.spree.rb +9 -0
  357. data/spec/dummy/db/migrate/20190729091911_add_unique_index_on_spree_promotions_code.spree.rb +7 -0
  358. data/spec/dummy/db/migrate/20190729091912_rename_guest_token_to_token_in_orders.spree.rb +6 -0
  359. data/spec/dummy/db/migrate/20190729091913_add_timestamps_to_spree_prices.spree.rb +13 -0
  360. data/spec/dummy/db/migrate/20190729091914_add_deleted_at_to_spree_credit_cards.spree.rb +7 -0
  361. data/spec/dummy/db/migrate/20190729091915_create_users.spree_auth.rb +30 -0
  362. data/spec/dummy/db/migrate/20190729091916_rename_columns_for_devise.spree_auth.rb +38 -0
  363. data/spec/dummy/db/migrate/20190729091917_convert_user_remember_field.spree_auth.rb +12 -0
  364. data/spec/dummy/db/migrate/20190729091918_add_reset_password_sent_at_to_spree_users.spree_auth.rb +9 -0
  365. data/spec/dummy/db/migrate/20190729091919_make_users_email_index_unique.spree_auth.rb +10 -0
  366. data/spec/dummy/db/migrate/20190729091920_add_deleted_at_to_users.spree_auth.rb +7 -0
  367. data/spec/dummy/db/migrate/20190729091921_add_confirmable_to_users.spree_auth.rb +8 -0
  368. data/spec/dummy/db/migrate/20190729091922_add_missing_indices_on_user.spree_auth.rb +11 -0
  369. data/spec/dummy/db/migrate/20190729091923_create_sisow_transactions.spree_billing_sisow.rb +15 -0
  370. data/spec/dummy/db/migrate/20190729091924_add_transaction_type_to_sisow_transactions.spree_billing_sisow.rb +8 -0
  371. data/spec/dummy/db/migrate/20190729091925_change_name_of_payment_method_types.spree_billing_sisow.rb +25 -0
  372. data/spec/dummy/db/migrate/20190729091926_add_api_key_to_spree_users.spree_api.rb +8 -0
  373. data/spec/dummy/db/migrate/20190729091927_resize_api_key_field.spree_api.rb +8 -0
  374. data/spec/dummy/db/migrate/20190729091928_rename_api_key_to_spree_api_key.spree_api.rb +8 -0
  375. data/spec/dummy/db/migrate/20190729091929_add_index_to_user_spree_api_key.spree_api.rb +8 -0
  376. data/spec/dummy/db/migrate/20190729091930_create_doorkeeper_tables.spree_api.rb +70 -0
  377. data/spec/dummy/db/migrate/20190729091931_create_spree_dummy_models.rb +10 -0
  378. data/spec/dummy/db/schema.rb +1141 -0
  379. data/spec/dummy/db/seeds.rb +10 -0
  380. data/spec/dummy/db/spree_test.sqlite3 +0 -0
  381. data/spec/dummy/log/test.log +60773 -0
  382. data/spec/dummy/public/404.html +67 -0
  383. data/spec/dummy/public/422.html +67 -0
  384. data/spec/dummy/public/500.html +66 -0
  385. data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
  386. data/spec/dummy/public/apple-touch-icon.png +0 -0
  387. data/spec/dummy/public/assets/admin/logo-80200db37ace2294842fdb8cadf550b3681426b5551d89ad8fc4c0a53249d729.png +0 -0
  388. data/spec/dummy/public/assets/application-f0d704deea029cf000697e2c0181ec173a1b474645466ed843eb5ee7bb215794.css +16 -0
  389. data/spec/dummy/public/assets/application-f0d704deea029cf000697e2c0181ec173a1b474645466ed843eb5ee7bb215794.css.gz +0 -0
  390. data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-13634da87d9e23f8c3ed9108ce1724d183a39ad072e73e1b3d8cbf646d2d0407.eot +0 -0
  391. data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-13634da87d9e23f8c3ed9108ce1724d183a39ad072e73e1b3d8cbf646d2d0407.eot.gz +0 -0
  392. data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-42f60659d265c1a3c30f9fa42abcbb56bd4a53af4d83d316d6dd7a36903c43e5.svg +288 -0
  393. data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-42f60659d265c1a3c30f9fa42abcbb56bd4a53af4d83d316d6dd7a36903c43e5.svg.gz +0 -0
  394. data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-a26394f7ede100ca118eff2eda08596275a9839b959c226e15439557a5a80742.woff +0 -0
  395. data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-e395044093757d82afcb138957d06a1ea9361bdcf0b442d06a18a8051af57456.ttf +0 -0
  396. data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-e395044093757d82afcb138957d06a1ea9361bdcf0b442d06a18a8051af57456.ttf.gz +0 -0
  397. data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-fe185d11a49676890d47bb783312a0cda5a44c4039214094e7957b4c040ef11c.woff2 +0 -0
  398. data/spec/dummy/public/assets/credit_cards/amex_cid-110b3c8694faccb08f6c0e150833efd218b6fe420fdca7175e3551c8bd4b925e.gif +0 -0
  399. data/spec/dummy/public/assets/credit_cards/credit_card-5ca047adf17e2e7fdd101d108b2ac90178b4ccb32d02628ce723bb14ccb9bcea.gif +0 -0
  400. data/spec/dummy/public/assets/credit_cards/discover_cid-a3047727fc48922fb60924d854938c44924fe3580e89b22e07afc00d6fd6cc69.gif +0 -0
  401. data/spec/dummy/public/assets/credit_cards/icons/american_express-bddd7ca01fc4468e3c198995040f060ee885cf3bf7dfd4525717c4457d518ed2.png +0 -0
  402. data/spec/dummy/public/assets/credit_cards/icons/cirrus-4f875cd1f8b69d983eae94789064e64beee80a3d00d01c2407ef80ec4333bab5.png +0 -0
  403. data/spec/dummy/public/assets/credit_cards/icons/delta-f8058ef2e9c52116978902e28d578c11d37b50f58c2ae20c05f431d483f34d79.png +0 -0
  404. data/spec/dummy/public/assets/credit_cards/icons/diners_club-106b815730e7585d6fdf2899aa341979235406c82efcb489ed889ffc96cde880.png +0 -0
  405. data/spec/dummy/public/assets/credit_cards/icons/directdebit-b02eaf68946ab2547eb63e884e749bff74ce3f7b4e54710d63efb930968d9f84.png +0 -0
  406. data/spec/dummy/public/assets/credit_cards/icons/discover-7657f566fa8ab8b930fa2a1fa90caf0c5d5430afbd1b23425471cc29fc95c48a.png +0 -0
  407. data/spec/dummy/public/assets/credit_cards/icons/egold-7fa5daf64d696d244c6e1d8847c1823c30934ac9ce2772d44622d150b0ab36c6.png +0 -0
  408. data/spec/dummy/public/assets/credit_cards/icons/jcb-226f02afb616c5cc05c6e1c14cfa511f2484ea5212fe84864fd84e337707de3e.png +0 -0
  409. data/spec/dummy/public/assets/credit_cards/icons/maestro-04253c601b66912deff0ee2a481c9bcf9154b8965ea4a52761db273fdff70144.png +0 -0
  410. data/spec/dummy/public/assets/credit_cards/icons/master-c93be9b003aa2d00eabb76e6ae9bfd3412548da8b64606e4a552c945934b45c2.png +0 -0
  411. data/spec/dummy/public/assets/credit_cards/icons/paypal-f85bbab879c983e0a969228fc30f9a6b8bf3897e82e519968c0c81368c0d0c96.png +0 -0
  412. data/spec/dummy/public/assets/credit_cards/icons/solo-91b1d214eaa7c8cbbc1509f628c325f265e226053d1de40702e4ef32435cc71f.png +0 -0
  413. data/spec/dummy/public/assets/credit_cards/icons/switch-808fe60a28ba3b4e4ebb41a712434d1fc0f5ae7d16b3fb290cd63d8e315c0975.png +0 -0
  414. data/spec/dummy/public/assets/credit_cards/icons/visa-601f8c5e3262bae9694d84d6859e1f99f8f4c8c03f08456183b80ea19c469054.png +0 -0
  415. data/spec/dummy/public/assets/credit_cards/icons/visaelectron-6ac6e40b7af2dedd1ee0aad0665fae12f2ebf690c8421fe0f24141d02643be75.png +0 -0
  416. data/spec/dummy/public/assets/credit_cards/icons/westernunion-5060c8fc7fe0efd1d05f9f39ea85d87d9117f7d8ac92de1fc7acdd740cbef338.png +0 -0
  417. data/spec/dummy/public/assets/credit_cards/icons/wirecard-0570018a538835cb2b0f0ab5ae72cc4b01661d0369c1b9977318a914509d4139.png +0 -0
  418. data/spec/dummy/public/assets/credit_cards/icons/worldpay-114e072092625fad239074dd7851848fdc7529e548145fa7ec6e564dbb2056a6.png +0 -0
  419. data/spec/dummy/public/assets/credit_cards/master_cid-aebcf5a0020689ae243e0b8c31da62d8801c1d071bfe0c7c97528fc298abbf96.jpg +0 -0
  420. data/spec/dummy/public/assets/credit_cards/visa_cid-0c885c2d8c5795439e23387124fcd92b7f330589a755c13c78556d19657d9c14.gif +0 -0
  421. data/spec/dummy/public/assets/doorkeeper/admin/application-a644908e7bab54fb749be0f59fb64a7480bbf9c4c2b79d4a65791cb7ab4d8730.css +18 -0
  422. data/spec/dummy/public/assets/doorkeeper/admin/application-a644908e7bab54fb749be0f59fb64a7480bbf9c4c2b79d4a65791cb7ab4d8730.css.gz +0 -0
  423. data/spec/dummy/public/assets/doorkeeper/application-c93dac2ad9d65e3393e0e2c958481e86ef7a5e5b0f6ce406842a7b99b25a4850.css +83 -0
  424. data/spec/dummy/public/assets/doorkeeper/application-c93dac2ad9d65e3393e0e2c958481e86ef7a5e5b0f6ce406842a7b99b25a4850.css.gz +0 -0
  425. data/spec/dummy/public/assets/favicon-92e86d463e909754599d66730477622cd3dd0b9bff58c47c9c38bebceb8073e5.ico +0 -0
  426. data/spec/dummy/public/assets/favicon-92e86d463e909754599d66730477622cd3dd0b9bff58c47c9c38bebceb8073e5.ico.gz +0 -0
  427. data/spec/dummy/public/assets/jquery-ui/ui-icons_444444_256x240-31d988765b4e6f56553c29588c500381dc3e6f0aa2980c8212202e5644aefd5d.png +0 -0
  428. data/spec/dummy/public/assets/jquery-ui/ui-icons_555555_256x240-32175261daee76c82bb0edf0eea16a56421866fbc31e94f3c1d570aa114502f5.png +0 -0
  429. data/spec/dummy/public/assets/jquery-ui/ui-icons_777620_256x240-0b020fc6e696d88d296e7bb1f61f1eb2ad827848e2c7382a4c3e0999e702dd9b.png +0 -0
  430. data/spec/dummy/public/assets/jquery-ui/ui-icons_777777_256x240-faf32007ae120c302213557626e660dd10e711c5dd4f1113d35f26dc05b78d2f.png +0 -0
  431. data/spec/dummy/public/assets/jquery-ui/ui-icons_cc0000_256x240-40985a64b4d5dd213fba27fcd862a1bd1b337a97674f6ff0b9ec20abcee4bc69.png +0 -0
  432. data/spec/dummy/public/assets/jquery-ui/ui-icons_ffffff_256x240-350df1b7131037de20e83c5c0f3a41a770d2ac48b5762ea772b3f4a8a7b9d47a.png +0 -0
  433. data/spec/dummy/public/assets/jquery.jstree/themes/spree/style-2470eb16445ffbdc7a49f4d003d39aa0362a27d31f983631067ad1a198ec9440.css +144 -0
  434. data/spec/dummy/public/assets/jquery.jstree/themes/spree/style-2470eb16445ffbdc7a49f4d003d39aa0362a27d31f983631067ad1a198ec9440.css.gz +0 -0
  435. data/spec/dummy/public/assets/jquery.jstree/themes/spree/throbber-4e4d43ccac9f0ed6eb6f48ea2b00e10a578b68df0e162df6c4c19d2c9725c04b.gif +0 -0
  436. data/spec/dummy/public/assets/logo/spree_50-0ae687ccd486b63b01687b1df9e5394430f6fce3ab40c28250b179be4363ddc1.png +0 -0
  437. data/spec/dummy/public/assets/noimage/large-fe154e843e2b66339f5460ae669c9a6307224a451ed6ba86479c8bf9837ede96.png +0 -0
  438. data/spec/dummy/public/assets/noimage/mini-d5d987414566f22657bbe0b08a980ddb4230d156845a31ab3cad0a0825016ce8.png +0 -0
  439. data/spec/dummy/public/assets/noimage/product-fe154e843e2b66339f5460ae669c9a6307224a451ed6ba86479c8bf9837ede96.png +0 -0
  440. data/spec/dummy/public/assets/noimage/small-1eaf254c069b00a8a692912bddd1660da5f1f80ac202c6bdc4d81b40fd2e0792.png +0 -0
  441. data/spec/dummy/public/assets/select2-d6b5d8d83dbc18fb8d77c8761d331cd9e5123c9684950bab0406e98a24ac5ae8.png +0 -0
  442. data/spec/dummy/public/assets/select2-spinner-f6ecff617ec2ba7f559e6f535cad9b70a3f91120737535dab4d4548a6c83576c.gif +0 -0
  443. data/spec/dummy/public/assets/select2_locale_ar-bc0d626cff33032b13b9d8be220714308a915ac598183fbeafd6a69d2e69685f.js +20 -0
  444. data/spec/dummy/public/assets/select2_locale_ar-bc0d626cff33032b13b9d8be220714308a915ac598183fbeafd6a69d2e69685f.js.gz +0 -0
  445. data/spec/dummy/public/assets/select2_locale_az-17ed2058772cfa1896093f5d59dc7031dc5fc2e539c55d8085fa1e68d3fcd927.js +21 -0
  446. data/spec/dummy/public/assets/select2_locale_az-17ed2058772cfa1896093f5d59dc7031dc5fc2e539c55d8085fa1e68d3fcd927.js.gz +0 -0
  447. data/spec/dummy/public/assets/select2_locale_bg-42c546b39ddf465f36571419fd70bb4f6e44ca4bba6443f8dc62228121441f49.js +21 -0
  448. data/spec/dummy/public/assets/select2_locale_bg-42c546b39ddf465f36571419fd70bb4f6e44ca4bba6443f8dc62228121441f49.js.gz +0 -0
  449. data/spec/dummy/public/assets/select2_locale_ca-b9b0ff178adfc196bc79779e5e641069f376b9ec7ee3f3e2836c5df71511eea8.js +20 -0
  450. data/spec/dummy/public/assets/select2_locale_ca-b9b0ff178adfc196bc79779e5e641069f376b9ec7ee3f3e2836c5df71511eea8.js.gz +0 -0
  451. data/spec/dummy/public/assets/select2_locale_cs-27b95541bf7f4e2155d0f0cdc7af062aac217a807b348036c417eea70b0a2897.js +52 -0
  452. data/spec/dummy/public/assets/select2_locale_cs-27b95541bf7f4e2155d0f0cdc7af062aac217a807b348036c417eea70b0a2897.js.gz +0 -0
  453. data/spec/dummy/public/assets/select2_locale_da-0772bb942f0ec472cd18b49adcfaf7bab125b32648e0759016ae6e39ea417f0a.js +20 -0
  454. data/spec/dummy/public/assets/select2_locale_da-0772bb942f0ec472cd18b49adcfaf7bab125b32648e0759016ae6e39ea417f0a.js.gz +0 -0
  455. data/spec/dummy/public/assets/select2_locale_de-7ca5c4c1e6d14a86b68592e8e11974657602388c7745f8f7e3a1e4510614be7e.js +19 -0
  456. data/spec/dummy/public/assets/select2_locale_de-7ca5c4c1e6d14a86b68592e8e11974657602388c7745f8f7e3a1e4510614be7e.js.gz +0 -0
  457. data/spec/dummy/public/assets/select2_locale_el-48bf3eef5ba982cb3ff1b70638a91c5ac1860fbc336728eb810f1f7fd1fd9812.js +20 -0
  458. data/spec/dummy/public/assets/select2_locale_el-48bf3eef5ba982cb3ff1b70638a91c5ac1860fbc336728eb810f1f7fd1fd9812.js.gz +0 -0
  459. data/spec/dummy/public/assets/select2_locale_es-c055394ecd38af8b84f490a20ff6291780ab22b123d88457d8338868db2a329d.js +18 -0
  460. data/spec/dummy/public/assets/select2_locale_es-c055394ecd38af8b84f490a20ff6291780ab22b123d88457d8338868db2a329d.js.gz +0 -0
  461. data/spec/dummy/public/assets/select2_locale_et-cda4d2bc92439ee6207db832ea34fca366cf2119268b755023cc4861da6d7df9.js +20 -0
  462. data/spec/dummy/public/assets/select2_locale_et-cda4d2bc92439ee6207db832ea34fca366cf2119268b755023cc4861da6d7df9.js.gz +0 -0
  463. data/spec/dummy/public/assets/select2_locale_eu-b6732998ea9a29f182c344889e9de5cf0a3d8e9e839ebdc5ce4aee3f293af1d8.js +46 -0
  464. data/spec/dummy/public/assets/select2_locale_eu-b6732998ea9a29f182c344889e9de5cf0a3d8e9e839ebdc5ce4aee3f293af1d8.js.gz +0 -0
  465. data/spec/dummy/public/assets/select2_locale_fa-d98464510d779afc9e003a282b93000caff3b66d3f9fef5fe54df44ea9732909.js +22 -0
  466. data/spec/dummy/public/assets/select2_locale_fa-d98464510d779afc9e003a282b93000caff3b66d3f9fef5fe54df44ea9732909.js.gz +0 -0
  467. data/spec/dummy/public/assets/select2_locale_fi-d3aca88f97706ace6062209f688e77f477f4ba66541a2f797ae05d57045a54f5.js +31 -0
  468. data/spec/dummy/public/assets/select2_locale_fi-d3aca88f97706ace6062209f688e77f477f4ba66541a2f797ae05d57045a54f5.js.gz +0 -0
  469. data/spec/dummy/public/assets/select2_locale_fr-cca326cd42a17caf363015e0632ae360a2d9c924f15b05a0d7749c6575d4aa24.js +19 -0
  470. data/spec/dummy/public/assets/select2_locale_fr-cca326cd42a17caf363015e0632ae360a2d9c924f15b05a0d7749c6575d4aa24.js.gz +0 -0
  471. data/spec/dummy/public/assets/select2_locale_gl-4a273116f1ea3b1fafd8a04cc4b713277e8e4c0f0576196dc30e106dd8125e01.js +46 -0
  472. data/spec/dummy/public/assets/select2_locale_gl-4a273116f1ea3b1fafd8a04cc4b713277e8e4c0f0576196dc30e106dd8125e01.js.gz +0 -0
  473. data/spec/dummy/public/assets/select2_locale_he-7d98d7c309a3707124d24a22741efad6c676dfa669e3a573619ffe806a98c0a3.js +20 -0
  474. data/spec/dummy/public/assets/select2_locale_he-7d98d7c309a3707124d24a22741efad6c676dfa669e3a573619ffe806a98c0a3.js.gz +0 -0
  475. data/spec/dummy/public/assets/select2_locale_hr-fb37ea68ac5e8664d41bac4727949c4269753586ec93d26b4f8f43ca50d901fd.js +25 -0
  476. data/spec/dummy/public/assets/select2_locale_hr-fb37ea68ac5e8664d41bac4727949c4269753586ec93d26b4f8f43ca50d901fd.js.gz +0 -0
  477. data/spec/dummy/public/assets/select2_locale_hu-e8969fcadba7926e0a2e1e6a20f5df3ce4818b13196d07e6ce16879f602d0583.js +18 -0
  478. data/spec/dummy/public/assets/select2_locale_hu-e8969fcadba7926e0a2e1e6a20f5df3ce4818b13196d07e6ce16879f602d0583.js.gz +0 -0
  479. data/spec/dummy/public/assets/select2_locale_id-f968506088bfa7c18689a5bb0331647f36a97352c590b99fc2949f3823e9f2cd.js +20 -0
  480. data/spec/dummy/public/assets/select2_locale_id-f968506088bfa7c18689a5bb0331647f36a97352c590b99fc2949f3823e9f2cd.js.gz +0 -0
  481. data/spec/dummy/public/assets/select2_locale_is-012b25e8d0f0d399924a26f0c9aebc4615006276ddec1f3d84e713f97cacd0d2.js +18 -0
  482. data/spec/dummy/public/assets/select2_locale_is-012b25e8d0f0d399924a26f0c9aebc4615006276ddec1f3d84e713f97cacd0d2.js.gz +0 -0
  483. data/spec/dummy/public/assets/select2_locale_it-dcc45fb356269c7d56bee8485bfaa9b7d768b813d62d57dea6a1655a9df000ea.js +18 -0
  484. data/spec/dummy/public/assets/select2_locale_it-dcc45fb356269c7d56bee8485bfaa9b7d768b813d62d57dea6a1655a9df000ea.js.gz +0 -0
  485. data/spec/dummy/public/assets/select2_locale_ja-b2b311c42b079b65dc4bd77084a487f23d814fadcafeedeed3b134533ee47b6a.js +18 -0
  486. data/spec/dummy/public/assets/select2_locale_ja-b2b311c42b079b65dc4bd77084a487f23d814fadcafeedeed3b134533ee47b6a.js.gz +0 -0
  487. data/spec/dummy/public/assets/select2_locale_ka-6d93c37b19d576388bb67f4afa6dda1a352c9d99478ffac539c9b194fa5707ee.js +20 -0
  488. data/spec/dummy/public/assets/select2_locale_ka-6d93c37b19d576388bb67f4afa6dda1a352c9d99478ffac539c9b194fa5707ee.js.gz +0 -0
  489. data/spec/dummy/public/assets/select2_locale_ko-9dec66b6f325e13b849ec4e800e0693429625e6c859262f14e7a53e1e761c5ac.js +20 -0
  490. data/spec/dummy/public/assets/select2_locale_ko-9dec66b6f325e13b849ec4e800e0693429625e6c859262f14e7a53e1e761c5ac.js.gz +0 -0
  491. data/spec/dummy/public/assets/select2_locale_lt-b56ef195311a71cb8a3e2a55c20faf70f723a9232caa8116a19d3ea288586350.js +27 -0
  492. data/spec/dummy/public/assets/select2_locale_lt-b56ef195311a71cb8a3e2a55c20faf70f723a9232caa8116a19d3ea288586350.js.gz +0 -0
  493. data/spec/dummy/public/assets/select2_locale_lv-334e18838f800abaff51f83b34beaba3e0c1640bc957bbefd6722bfa518cc04c.js +20 -0
  494. data/spec/dummy/public/assets/select2_locale_lv-334e18838f800abaff51f83b34beaba3e0c1640bc957bbefd6722bfa518cc04c.js.gz +0 -0
  495. data/spec/dummy/public/assets/select2_locale_mk-ac7a50fd55dd9ff5b4163857f6eba040aeaf7420c696b95cf5bcb00e958a3d5b.js +20 -0
  496. data/spec/dummy/public/assets/select2_locale_mk-ac7a50fd55dd9ff5b4163857f6eba040aeaf7420c696b95cf5bcb00e958a3d5b.js.gz +0 -0
  497. data/spec/dummy/public/assets/select2_locale_ms-f9c316c48b79dd693ca74b9462e8080400dc5d47ab516ac31b1272791979c3ce.js +20 -0
  498. data/spec/dummy/public/assets/select2_locale_ms-f9c316c48b79dd693ca74b9462e8080400dc5d47ab516ac31b1272791979c3ce.js.gz +0 -0
  499. data/spec/dummy/public/assets/select2_locale_nl-b3bd6541e18715eabc9b402bc87ee926471f16806c644506dee5f2f3d967b286.js +18 -0
  500. data/spec/dummy/public/assets/select2_locale_nl-b3bd6541e18715eabc9b402bc87ee926471f16806c644506dee5f2f3d967b286.js.gz +0 -0
  501. data/spec/dummy/public/assets/select2_locale_no-450ea11297318434f9c5e427302333062ba0b4497f866f8010a85294604cf801.js +21 -0
  502. data/spec/dummy/public/assets/select2_locale_no-450ea11297318434f9c5e427302333062ba0b4497f866f8010a85294604cf801.js.gz +0 -0
  503. data/spec/dummy/public/assets/select2_locale_pl-54e8b177a932b0c6f70ccc81f3c650e3c488bb99bd56e1d8e6187415de649b86.js +26 -0
  504. data/spec/dummy/public/assets/select2_locale_pl-54e8b177a932b0c6f70ccc81f3c650e3c488bb99bd56e1d8e6187415de649b86.js.gz +0 -0
  505. data/spec/dummy/public/assets/select2_locale_pt-BR-bb12e4123097c6327ec6cbc82159dbe1574cb2fa6f1dcfc1a6af3c00755c31d5.js +18 -0
  506. data/spec/dummy/public/assets/select2_locale_pt-BR-bb12e4123097c6327ec6cbc82159dbe1574cb2fa6f1dcfc1a6af3c00755c31d5.js.gz +0 -0
  507. data/spec/dummy/public/assets/select2_locale_pt-PT-2dc9ef1f7bf4ce21d4be57f85c304d525b2b5f19ad62b714ba94d2b118c84498.js +18 -0
  508. data/spec/dummy/public/assets/select2_locale_pt-PT-2dc9ef1f7bf4ce21d4be57f85c304d525b2b5f19ad62b714ba94d2b118c84498.js.gz +0 -0
  509. data/spec/dummy/public/assets/select2_locale_ro-8c0bb8fa885ab577e50d6643d9ec68f87d9ba2a99b3e436c6cb21f67421d870a.js +18 -0
  510. data/spec/dummy/public/assets/select2_locale_ro-8c0bb8fa885ab577e50d6643d9ec68f87d9ba2a99b3e436c6cb21f67421d870a.js.gz +0 -0
  511. data/spec/dummy/public/assets/select2_locale_rs-1016c79a680bca3c3b8095ad04e67c9b89412ff6f6051dbc196627828e592c9b.js +20 -0
  512. data/spec/dummy/public/assets/select2_locale_rs-1016c79a680bca3c3b8095ad04e67c9b89412ff6f6051dbc196627828e592c9b.js.gz +0 -0
  513. data/spec/dummy/public/assets/select2_locale_ru-4c1cd4a76b568e7452b09b8a665a28f5808d5854aec120985101c17b7b960687.js +24 -0
  514. data/spec/dummy/public/assets/select2_locale_ru-4c1cd4a76b568e7452b09b8a665a28f5808d5854aec120985101c17b7b960687.js.gz +0 -0
  515. data/spec/dummy/public/assets/select2_locale_sk-c91946ae59a294854489563706f97cb3b690617ec2dbac799b184c6336189f1b.js +51 -0
  516. data/spec/dummy/public/assets/select2_locale_sk-c91946ae59a294854489563706f97cb3b690617ec2dbac799b184c6336189f1b.js.gz +0 -0
  517. data/spec/dummy/public/assets/select2_locale_sv-92964e4300e520e23f5f83492c2e750b5875484b6420ed54c5c7422e50bff49e.js +20 -0
  518. data/spec/dummy/public/assets/select2_locale_sv-92964e4300e520e23f5f83492c2e750b5875484b6420ed54c5c7422e50bff49e.js.gz +0 -0
  519. data/spec/dummy/public/assets/select2_locale_th-9d64c8b41fcc2d5d28d505f0d7b325b04edc51ca0ac74b3d9c5dd0275fa4dcbd.js +20 -0
  520. data/spec/dummy/public/assets/select2_locale_th-9d64c8b41fcc2d5d28d505f0d7b325b04edc51ca0ac74b3d9c5dd0275fa4dcbd.js.gz +0 -0
  521. data/spec/dummy/public/assets/select2_locale_tr-22bf3c62ec7c4d81cd046c1ce7b60f3921ab75099438d5e547d2beab674cd5f6.js +20 -0
  522. data/spec/dummy/public/assets/select2_locale_tr-22bf3c62ec7c4d81cd046c1ce7b60f3921ab75099438d5e547d2beab674cd5f6.js.gz +0 -0
  523. data/spec/dummy/public/assets/select2_locale_ug-CN-3a320caea8f59ef6c10c7fa462697a38029ab59a4450390c2ca9ec509b4a8263.js +17 -0
  524. data/spec/dummy/public/assets/select2_locale_ug-CN-3a320caea8f59ef6c10c7fa462697a38029ab59a4450390c2ca9ec509b4a8263.js.gz +0 -0
  525. data/spec/dummy/public/assets/select2_locale_uk-e912e0547b8a72e9caa72693c78a0e88db81dcd03f1cee8db45456c4eacbfab3.js +26 -0
  526. data/spec/dummy/public/assets/select2_locale_uk-e912e0547b8a72e9caa72693c78a0e88db81dcd03f1cee8db45456c4eacbfab3.js.gz +0 -0
  527. data/spec/dummy/public/assets/select2_locale_vi-29766aff66ab669df184f4e4402f1d67ea7a5c3369a553e7cf0c64bbc46f6db6.js +21 -0
  528. data/spec/dummy/public/assets/select2_locale_vi-29766aff66ab669df184f4e4402f1d67ea7a5c3369a553e7cf0c64bbc46f6db6.js.gz +0 -0
  529. data/spec/dummy/public/assets/select2_locale_zh-CN-86b8afaa82c0b8de71d37c2cfe3949a130055880c203c785022e32a6cb7f7aaa.js +17 -0
  530. data/spec/dummy/public/assets/select2_locale_zh-CN-86b8afaa82c0b8de71d37c2cfe3949a130055880c203c785022e32a6cb7f7aaa.js.gz +0 -0
  531. data/spec/dummy/public/assets/select2_locale_zh-TW-a408bf991b2672ab5d537ff08915acecd2c043311c31f6b4041b8e04b51ba2a4.js +17 -0
  532. data/spec/dummy/public/assets/select2_locale_zh-TW-a408bf991b2672ab5d537ff08915acecd2c043311c31f6b4041b8e04b51ba2a4.js.gz +0 -0
  533. data/spec/dummy/public/assets/select2x2-6fe28d687dc0ed4d96016238c608ba1e7198c9c9accfa0b360b78018b9fb9bc2.png +0 -0
  534. data/spec/dummy/public/assets/spree/backend/address_states-76840b8177a1aba71ee06233175b713fb4855f7b4fe28db303c47be7807ae36b.js +33 -0
  535. data/spec/dummy/public/assets/spree/backend/address_states-76840b8177a1aba71ee06233175b713fb4855f7b4fe28db303c47be7807ae36b.js.gz +0 -0
  536. data/spec/dummy/public/assets/spree/backend/all-7a9f9297e55c2d8089e033e69e2a1458be789bdf1ea980f6d285886026badd52.css +10939 -0
  537. data/spec/dummy/public/assets/spree/backend/all-7a9f9297e55c2d8089e033e69e2a1458be789bdf1ea980f6d285886026badd52.css.gz +0 -0
  538. data/spec/dummy/public/assets/spree/backend/all-da2e1beed5f92ec67ec299f8a83b4d6cf6858f47fe7f75de11c11732253a9542.js +33204 -0
  539. data/spec/dummy/public/assets/spree/backend/all-da2e1beed5f92ec67ec299f8a83b4d6cf6858f47fe7f75de11c11732253a9542.js.gz +0 -0
  540. data/spec/dummy/public/assets/spree/frontend/all-18b1bdb166c10b8b6e8a17fc67461e63abe20eac64986802a13d71e1894b0918.js +16398 -0
  541. data/spec/dummy/public/assets/spree/frontend/all-18b1bdb166c10b8b6e8a17fc67461e63abe20eac64986802a13d71e1894b0918.js.gz +0 -0
  542. data/spec/dummy/public/assets/spree/frontend/all-46820e63933a6180828e01f6fc77d4535d878536540a5d13f08f40d4aa0ac5c6.css +5868 -0
  543. data/spec/dummy/public/assets/spree/frontend/all-46820e63933a6180828e01f6fc77d4535d878536540a5d13f08f40d4aa0ac5c6.css.gz +0 -0
  544. data/spec/dummy/public/assets/spree/frontend/checkout/shipment-9295a502364634d0279a37cf8b01f068adc338048fb1319162372ab527b86d4e.js +49 -0
  545. data/spec/dummy/public/assets/spree/frontend/checkout/shipment-9295a502364634d0279a37cf8b01f068adc338048fb1319162372ab527b86d4e.js.gz +0 -0
  546. data/spec/dummy/public/favicon.ico +0 -0
  547. data/spec/dummy/tmp/development_secret.txt +1 -0
  548. data/spec/dummy/vendor/assets/javascripts/spree/backend/all.js +15 -0
  549. data/spec/dummy/vendor/assets/javascripts/spree/frontend/all.js +16 -0
  550. data/spec/dummy/vendor/assets/stylesheets/spree/backend/all.css +14 -0
  551. data/spec/dummy/vendor/assets/stylesheets/spree/frontend/all.css +14 -0
  552. data/spec/features/administer_spec.rb +48 -0
  553. data/spec/features/callback_spec.rb +88 -0
  554. data/spec/features/checkout_spec.rb +74 -0
  555. data/spec/features/creditcard_spec.rb +63 -0
  556. data/spec/features/paypal_spec.rb +63 -0
  557. data/spec/models/spree/billing_integration_spec.rb +26 -0
  558. data/spec/models/spree/payment_method/sisow_billing/bancontact_spec.rb +34 -0
  559. data/spec/models/spree/payment_method/sisow_billing/ideal_spec.rb +42 -0
  560. data/spec/models/spree/payment_method/sisow_billing/paypalec_spec.rb +66 -0
  561. data/spec/models/spree/payment_method/sisow_billing/purchase_spec.rb +20 -0
  562. data/spec/models/spree/payment_method/sisow_billing/sisow_payment_method_spec.rb +19 -0
  563. data/spec/models/spree/payment_method/sisow_billing/sofort_spec.rb +34 -0
  564. data/spec/models/spree/payment_method/sisow_billing_spec.rb +268 -0
  565. data/spec/models/spree/sisow_transaction.rb +4 -0
  566. data/spec/sisow.yml +4 -0
  567. data/spec/spec_helper.rb +99 -0
  568. data/spec/support/spree/spree_stubs.rb +17 -0
  569. data/spec/support/webmock/web_mock_fixture_helpers.rb +6 -0
  570. data/spec/webmock_files/bancontact_redirect_url_output +10 -0
  571. data/spec/webmock_files/creditcard_redirect_url_output +10 -0
  572. data/spec/webmock_files/ideal_issuer_output +10 -0
  573. data/spec/webmock_files/ideal_redirect_url_output +10 -0
  574. data/spec/webmock_files/paypal_redirect_url_output +10 -0
  575. data/spec/webmock_files/sofort_redirect_url_output +10 -0
  576. metadata +1106 -4
@@ -0,0 +1,71 @@
1
+ # This migration comes from spree (originally 20150515211137)
2
+ class FixAdjustmentOrderId < ActiveRecord::Migration[4.2]
3
+ def change
4
+ say 'Populate order_id from adjustable_id where appropriate'
5
+ execute(<<-SQL.squish)
6
+ UPDATE
7
+ spree_adjustments
8
+ SET
9
+ order_id = adjustable_id
10
+ WHERE
11
+ adjustable_type = 'Spree::Order'
12
+ ;
13
+ SQL
14
+
15
+ # Submitter of change does not care about MySQL, as it is not officially supported.
16
+ # Still spree officials decided to provide a working code path for MySQL users, hence
17
+ # submitter made a AR code path he could validate on PostgreSQL.
18
+ #
19
+ # Whoever runs a big enough MySQL installation where the AR solution hurts:
20
+ # Will have to write a better MySQL specific equivalent.
21
+ if Spree::Order.connection.adapter_name.eql?('MySQL')
22
+ Spree::Adjustment.where(adjustable_type: 'Spree::LineItem').find_each do |adjustment|
23
+ adjustment.update_columns(order_id: Spree::LineItem.find(adjustment.adjustable_id).order_id)
24
+ end
25
+ else
26
+ execute(<<-SQL.squish)
27
+ UPDATE
28
+ spree_adjustments
29
+ SET
30
+ order_id =
31
+ (SELECT order_id FROM spree_line_items WHERE spree_line_items.id = spree_adjustments.adjustable_id)
32
+ WHERE
33
+ adjustable_type = 'Spree::LineItem'
34
+ SQL
35
+ end
36
+
37
+ say 'Fix schema for spree_adjustments order_id column'
38
+ change_table :spree_adjustments do |t|
39
+ t.change :order_id, :integer, null: false
40
+ end
41
+
42
+ # Improved schema for postgresql, uncomment if you like it:
43
+ #
44
+ # # Negated Logical implication.
45
+ # #
46
+ # # When adjustable_type is 'Spree::Order' (p) the adjustable_id must be order_id (q).
47
+ # #
48
+ # # When adjustable_type is NOT 'Spree::Order' the adjustable id allowed to be any value (including of order_id in
49
+ # # case foreign keys match). XOR does not work here.
50
+ # #
51
+ # # Postgresql does not have an operator for logical implication. So we need to build the following truth table
52
+ # # via AND with OR:
53
+ # #
54
+ # # p q | CHECK = !(p -> q)
55
+ # # -----------
56
+ # # t t | t
57
+ # # t f | f
58
+ # # f t | t
59
+ # # f f | t
60
+ # #
61
+ # # According to de-morgans law the logical implication q -> p is equivalent to !p || q
62
+ # #
63
+ # execute(<<-SQL.squish)
64
+ # ALTER TABLE ONLY spree_adjustments
65
+ # ADD CONSTRAINT fk_spree_adjustments FOREIGN KEY (order_id)
66
+ # REFERENCES spree_orders(id) ON UPDATE RESTRICT ON DELETE RESTRICT,
67
+ # ADD CONSTRAINT check_spree_adjustments_order_id CHECK
68
+ # (adjustable_type <> 'Spree::Order' OR order_id = adjustable_id);
69
+ # SQL
70
+ end
71
+ end
@@ -0,0 +1,6 @@
1
+ # This migration comes from spree (originally 20150522071831)
2
+ class AddPositionToSpreePaymentMethods < ActiveRecord::Migration[4.2]
3
+ def change
4
+ add_column :spree_payment_methods, :position, :integer, default: 0
5
+ end
6
+ end
@@ -0,0 +1,7 @@
1
+ # This migration comes from spree (originally 20150522181728)
2
+ class AddDeletedAtToFriendlyIdSlugs < ActiveRecord::Migration[4.2]
3
+ def change
4
+ add_column :friendly_id_slugs, :deleted_at, :datetime
5
+ add_index :friendly_id_slugs, :deleted_at
6
+ end
7
+ end
@@ -0,0 +1,17 @@
1
+ # This migration comes from spree (originally 20150609093816)
2
+ class IncreaseScaleOnPreTaxAmounts < ActiveRecord::Migration[4.2]
3
+ def change
4
+ # set pre_tax_amount on shipments to discounted_amount - included_tax_total
5
+ # so that the null: false option on the shipment pre_tax_amount doesn't generate
6
+ # errors.
7
+ #
8
+ execute(<<-SQL)
9
+ UPDATE spree_shipments
10
+ SET pre_tax_amount = (cost + promo_total) - included_tax_total
11
+ WHERE pre_tax_amount IS NULL;
12
+ SQL
13
+
14
+ change_column :spree_line_items, :pre_tax_amount, :decimal, precision: 12, scale: 4, default: 0.0, null: false
15
+ change_column :spree_shipments, :pre_tax_amount, :decimal, precision: 12, scale: 4, default: 0.0, null: false
16
+ end
17
+ end
@@ -0,0 +1,20 @@
1
+ # This migration comes from spree (originally 20150626181949)
2
+ class AddTaxableAdjustmentTotalToLineItem < ActiveRecord::Migration[4.2]
3
+ def change
4
+ add_column :spree_line_items, :taxable_adjustment_total, :decimal,
5
+ precision: 10, scale: 2, default: 0.0, null: false
6
+ add_column :spree_line_items, :non_taxable_adjustment_total, :decimal,
7
+ precision: 10, scale: 2, default: 0.0, null: false
8
+
9
+ add_column :spree_shipments, :taxable_adjustment_total, :decimal,
10
+ precision: 10, scale: 2, default: 0.0, null: false
11
+ add_column :spree_shipments, :non_taxable_adjustment_total, :decimal,
12
+ precision: 10, scale: 2, default: 0.0, null: false
13
+
14
+ add_column :spree_orders, :taxable_adjustment_total, :decimal,
15
+ precision: 10, scale: 2, default: 0.0, null: false
16
+ add_column :spree_orders, :non_taxable_adjustment_total, :decimal,
17
+ precision: 10, scale: 2, default: 0.0, null: false
18
+ # TODO migration that updates old orders
19
+ end
20
+ end
@@ -0,0 +1,13 @@
1
+ # This migration comes from spree (originally 20150627090949)
2
+ class MigratePaymentMethodsDisplay < ActiveRecord::Migration[4.2]
3
+ def change
4
+ Spree::PaymentMethod.all.each do |method|
5
+ if method.display_on.blank?
6
+ method.display_on = "both"
7
+ method.save
8
+ end
9
+ end
10
+
11
+ change_column :spree_payment_methods, :display_on, :string, default: "both"
12
+ end
13
+ end
@@ -0,0 +1,7 @@
1
+ # This migration comes from spree (originally 20150707204155)
2
+ class EnableActsAsParanoidOnCalculators < ActiveRecord::Migration[4.2]
3
+ def change
4
+ add_column :spree_calculators, :deleted_at, :datetime
5
+ add_index :spree_calculators, :deleted_at
6
+ end
7
+ end
@@ -0,0 +1,13 @@
1
+ # This migration comes from spree (originally 20150714154102)
2
+ class SpreePaymentMethodStoreCredits < ActiveRecord::Migration[4.2]
3
+ def up
4
+ # Reload to pick up new position column for acts_as_list
5
+ Spree::PaymentMethod.reset_column_information
6
+ Spree::PaymentMethod::StoreCredit.find_or_create_by(name: 'Store Credit', description: 'Store Credit',
7
+ active: true, display_on: 'back_end')
8
+ end
9
+
10
+ def down
11
+ Spree::PaymentMethod.find_by(type: 'Spree::PaymentMethod::StoreCredit', name: 'Store Credit').try(&:destroy)
12
+ end
13
+ end
@@ -0,0 +1,19 @@
1
+ # This migration comes from spree (originally 20150726141425)
2
+ class RenameHasAndBelongsToAssociationsToModelNames < ActiveRecord::Migration[4.2]
3
+ def change
4
+ {
5
+ 'spree_option_types_prototypes' => 'spree_option_type_prototypes',
6
+ 'spree_option_values_variants' => 'spree_option_value_variants',
7
+ 'spree_orders_promotions' => 'spree_order_promotions',
8
+ 'spree_products_promotion_rules' => 'spree_product_promotion_rules',
9
+ 'spree_taxons_promotion_rules' => 'spree_promotion_rule_taxons',
10
+ 'spree_promotion_rules_users' => 'spree_promotion_rule_users',
11
+ 'spree_properties_prototypes' => 'spree_property_prototypes',
12
+ 'spree_taxons_prototypes' => 'spree_prototype_taxons',
13
+ 'spree_roles_users' => 'spree_role_users',
14
+ 'spree_shipping_methods_zones' => 'spree_shipping_method_zones'
15
+ }.each do |old_name, new_name|
16
+ rename_table old_name, new_name
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,12 @@
1
+ # This migration comes from spree (originally 20150727191614)
2
+ class SpreeStoreCreditTypes < ActiveRecord::Migration[4.2]
3
+ def up
4
+ Spree::StoreCreditType.find_or_create_by(name: 'Expiring', priority: 1)
5
+ Spree::StoreCreditType.find_or_create_by(name: 'Non-expiring', priority: 2)
6
+ end
7
+
8
+ def down
9
+ Spree::StoreCreditType.find_by(name: 'Expiring').try(&:destroy)
10
+ Spree::StoreCreditType.find_by(name: 'Non-expiring').try(&:destroy)
11
+ end
12
+ end
@@ -0,0 +1,69 @@
1
+ # This migration comes from spree (originally 20150819154308)
2
+ class AddDiscontinuedToProductsAndVariants < ActiveRecord::Migration[4.2]
3
+ def up
4
+ add_column :spree_products, :discontinue_on, :datetime, after: :available_on
5
+ add_column :spree_variants, :discontinue_on, :datetime, after: :deleted_at
6
+
7
+ add_index :spree_products, :discontinue_on
8
+ add_index :spree_variants, :discontinue_on
9
+
10
+ puts "Warning: This migration changes the meaning of 'deleted'. Before this change, 'deleted' meant products that were no longer being sold in your store. After this change, you can only delete a product or variant if it has not already been sold to a customer (a model-level check enforces this). Instead, you should use the new field 'discontinue_on' for products or variants which were sold in the past but no longer for sale. This fixes bugs when other objects are attached to deleted products and variants. (Even though acts_as_paranoid gem keeps the records in the database, most associations are automatically scoped to exclude the deleted records.) In thew meaning of 'deleted,' you can still use the delete function on products & variants which are *truly user-error mistakes*, specifically before an order has been placed or the items have gone on sale. You also must use the soft-delete function (which still works after this change) to clean up slug (product) and SKU (variant) duplicates. Otherwise, you should generally over ever need to discontinue products.
11
+
12
+ Data Fix: We will attempt to reverse engineer the old meaning of 'deleted' (no longer for sale) to the new database field 'discontinue_on'. However, since Slugs and SKUs cannot be duplicated on Products and Variants, we cannot gaurantee this to be foolproof if you have deteled Products and Variants that have duplicate Slugs or SKUs in non-deleted records. In these cases, we recommend you use the additional rake task to clean up your old records (see rake db:fix_orphan_line_items). If you have such records, this migration will leave them in place, preferring the non-deleted records over the deleted ones. However, since old line items will still be associated with deleted objects, you will still the bugs in your app until you run:
13
+
14
+ rake db:fix_orphan_line_items
15
+
16
+ We will print out a report of the data we are fixing now: "
17
+
18
+ Spree::Product.only_deleted.each do |product|
19
+ # determine if there is a slug duplicate
20
+ the_dup = Spree::Product.find_by(slug: product.slug)
21
+ if the_dup.nil?
22
+ # check to see if there are line items attached to any variants
23
+ if Spree::Variant.with_deleted.where(product_id: product.id).map(&:line_items).any?
24
+ puts "recovering deleted product id #{product.id} ... this will un-delete the record and set it to be discontinued"
25
+
26
+ old_deleted = product.deleted_at
27
+ product.update_column(:deleted_at, nil) # for some reason .recover doesn't appear to be a method
28
+ product.update_column(:discontinue_on, old_deleted)
29
+ else
30
+ puts "leaving product id #{product.id} deleted because there are no line items attached to it..."
31
+ end
32
+ else
33
+ puts "leaving product id #{product.id} deleted because there is a duplicate slug for '#{product.slug}' (product id #{the_dup.id}) "
34
+ if product.variants.map(&:line_items).any?
35
+ puts "WARNING: You may still have bugs with product id #{product.id} (#{product.name}) until you run rake db:fix_orphan_line_items"
36
+ end
37
+ end
38
+ end
39
+
40
+ Spree::Variant.only_deleted.each do |variant|
41
+ # determine if there is a slug duplicate
42
+ the_dup = Spree::Variant.find_by(sku: variant.sku)
43
+ if the_dup.nil?
44
+ # check to see if there are line items attached to any variants
45
+ if variant.line_items.any?
46
+ puts "recovering deleted variant id #{variant.id} ... this will un-delete the record and set it to be discontinued"
47
+ old_deleted = variant.deleted_at
48
+ variant.update_column(:deleted_at, nil) # for some reason .recover doesn't appear to be a method
49
+ variant.update_column(:discontinue_on, old_deleted)
50
+ else
51
+ puts "leaving variant id #{variant.id} deleted because there are no line items attached to it..."
52
+ end
53
+ else
54
+ puts "leaving variant id #{variant.id} deleted because there is a duplicate SKU for '#{variant.sku}' (variant id #{the_dup.id}) "
55
+ if variant.line_items.any?
56
+ puts "WARNING: You may still have bugs with variant id #{variant.id} (#{variant.name}) until you run rake db:fix_orphan_line_items"
57
+ end
58
+ end
59
+ end
60
+ end
61
+
62
+ def down
63
+ execute "UPDATE spree_products SET deleted_at = discontinue_on WHERE deleted_at IS NULL"
64
+ execute "UPDATE spree_variants SET deleted_at = discontinue_on WHERE deleted_at IS NULL"
65
+
66
+ remove_column :spree_products, :discontinue_on
67
+ remove_column :spree_variants, :discontinue_on
68
+ end
69
+ end
@@ -0,0 +1,14 @@
1
+ # This migration comes from spree (originally 20151220072838)
2
+ class RemoveShippingMethodIdFromSpreeOrders < ActiveRecord::Migration[4.2]
3
+ def up
4
+ if column_exists?(:spree_orders, :shipping_method_id, :integer)
5
+ remove_column :spree_orders, :shipping_method_id, :integer
6
+ end
7
+ end
8
+
9
+ def down
10
+ unless column_exists?(:spree_orders, :shipping_method_id, :integer)
11
+ add_column :spree_orders, :shipping_method_id, :integer
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,17 @@
1
+ # This migration comes from spree (originally 20160207191757)
2
+ class AddIdColumnToEarlierHabtmTables < ActiveRecord::Migration[4.2]
3
+ def up
4
+ add_column :spree_option_type_prototypes, :id, :primary_key
5
+ add_column :spree_option_value_variants, :id, :primary_key
6
+ add_column :spree_order_promotions, :id, :primary_key
7
+ add_column :spree_product_promotion_rules, :id, :primary_key
8
+ add_column :spree_promotion_rule_users, :id, :primary_key
9
+ add_column :spree_property_prototypes, :id, :primary_key
10
+ add_column :spree_role_users, :id, :primary_key
11
+ add_column :spree_shipping_method_zones, :id, :primary_key
12
+ end
13
+
14
+ def down
15
+ raise ActiveRecord::IrreversibleMigration
16
+ end
17
+ end
@@ -0,0 +1,15 @@
1
+ # This migration comes from spree (originally 20160219165458)
2
+ class AddIndexes < ActiveRecord::Migration[4.2]
3
+ def change
4
+ add_index :spree_assets, :position
5
+ add_index :spree_option_types, :name
6
+ add_index :spree_option_values, :name
7
+ add_index :spree_prices, :variant_id
8
+ add_index :spree_properties, :name
9
+ add_index :spree_roles, :name
10
+ add_index :spree_shipping_categories, :name
11
+ add_index :spree_taxons, :lft
12
+ add_index :spree_taxons, :rgt
13
+ add_index :spree_taxons, :name
14
+ end
15
+ end
@@ -0,0 +1,11 @@
1
+ # This migration comes from spree (originally 20160509064646)
2
+ class RemoveCounterCacheFromSpreeVariantsToSpreeStockItems < ActiveRecord::Migration[4.2]
3
+ def up
4
+ if column_exists?(:spree_variants, :stock_items_count)
5
+ remove_column :spree_variants, :stock_items_count
6
+ end
7
+ end
8
+
9
+ def down
10
+ end
11
+ end
@@ -0,0 +1,41 @@
1
+ # This migration comes from spree (originally 20160511071954)
2
+ class ActsAsTaggableOnSpreeMigration < ActiveRecord::Migration[4.2]
3
+ def self.up
4
+ create_table :spree_tags do |t|
5
+ t.string :name
6
+ t.integer :taggings_count, default: 0
7
+ end
8
+
9
+ create_table :spree_taggings do |t|
10
+ t.references :tag
11
+
12
+ # You should make sure that the column created is
13
+ # long enough to store the required class names.
14
+ t.references :taggable, polymorphic: true
15
+ t.references :tagger, polymorphic: true
16
+
17
+ # Limit is created to prevent MySQL error on index
18
+ # length for MyISAM table type: http://bit.ly/vgW2Ql
19
+ t.string :context, limit: 128
20
+
21
+ t.datetime :created_at
22
+ end
23
+
24
+ add_index :spree_tags, :name, unique: true
25
+ add_index :spree_taggings,
26
+ [
27
+ :tag_id,
28
+ :taggable_id,
29
+ :taggable_type,
30
+ :context,
31
+ :tagger_id,
32
+ :tagger_type
33
+ ],
34
+ unique: true, name: "spree_taggings_idx"
35
+ end
36
+
37
+ def self.down
38
+ drop_table :spree_taggings
39
+ drop_table :spree_tags
40
+ end
41
+ end
@@ -0,0 +1,10 @@
1
+ # This migration comes from spree (originally 20160511072249)
2
+ # This migration is added to circumvent issue #623 and have special characters
3
+ # work properly
4
+ class ChangeCollationForSpreeTagNames < ActiveRecord::Migration[4.2]
5
+ def up
6
+ if ActsAsTaggableOn::Utils.using_mysql?
7
+ execute("ALTER TABLE spree_tags MODIFY name varchar(255) CHARACTER SET utf8 COLLATE utf8_bin;")
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,15 @@
1
+ # This migration comes from spree (originally 20160511072335)
2
+ class AddMissingIndexesToSpreeTaggings < ActiveRecord::Migration[4.2]
3
+ def change
4
+ add_index :spree_taggings, :tag_id
5
+ add_index :spree_taggings, :taggable_id
6
+ add_index :spree_taggings, :taggable_type
7
+ add_index :spree_taggings, :tagger_id
8
+ add_index :spree_taggings, :context
9
+
10
+ add_index :spree_taggings, [:tagger_id, :tagger_type]
11
+ add_index :spree_taggings,
12
+ [:taggable_id, :taggable_type, :tagger_id, :context],
13
+ name: "spree_taggings_idy"
14
+ end
15
+ end
@@ -0,0 +1,8 @@
1
+ # This migration comes from spree (originally 20160608090604)
2
+ class AddZipcodeRequiredToSpreeCountries < ActiveRecord::Migration[4.2]
3
+ def change
4
+ add_column :spree_countries, :zipcode_required, :boolean, default: true
5
+ Spree::Country.reset_column_information
6
+ Spree::Country.where(iso: Spree::Address::NO_ZIPCODE_ISO_CODES).update_all(zipcode_required: false)
7
+ end
8
+ end
@@ -0,0 +1,9 @@
1
+ # This migration comes from spree (originally 20161014145148)
2
+ class AddCreatedAtToVariant < ActiveRecord::Migration[5.0]
3
+ def change
4
+ add_column :spree_variants, :created_at, :datetime
5
+ Spree::Variant.reset_column_information
6
+ Spree::Variant.unscoped.where.not(updated_at: nil).update_all('created_at = updated_at')
7
+ Spree::Variant.unscoped.where(updated_at: nil).update_all(created_at: Time.current, updated_at: Time.current)
8
+ end
9
+ end
@@ -0,0 +1,7 @@
1
+ # This migration comes from spree (originally 20161014152814)
2
+ class AddNullFalseToSpreeVariantsTimestamps < ActiveRecord::Migration[5.0]
3
+ def change
4
+ change_column_null :spree_variants, :created_at, false
5
+ change_column_null :spree_variants, :updated_at, false
6
+ end
7
+ end
@@ -0,0 +1,6 @@
1
+ # This migration comes from spree (originally 20161125065505)
2
+ class AddQuantityToInventoryUnits < ActiveRecord::Migration[5.0]
3
+ def change
4
+ add_column :spree_inventory_units, :quantity, :integer, default: 1
5
+ end
6
+ end
@@ -0,0 +1,30 @@
1
+ # This migration comes from spree (originally 20170119122701)
2
+ class AddOriginalReturnItemIdToSpreeInventoryUnits < ActiveRecord::Migration[5.0]
3
+ def up
4
+ add_reference :spree_inventory_units, :original_return_item, references: :spree_return_items, index: true
5
+
6
+ Spree::InventoryUnit.reset_column_information
7
+
8
+ Spree::ReturnItem.where.not(exchange_inventory_unit_id: nil).find_each do |return_item|
9
+ if (inventory_unit = Spree::InventoryUnit.find_by(id: return_item.exchange_inventory_unit_id)).present?
10
+ inventory_unit.update_column(:original_return_item_id, return_item.id)
11
+ end
12
+ end
13
+
14
+ remove_column :spree_return_items, :exchange_inventory_unit_id
15
+ end
16
+
17
+ def down
18
+ add_reference :spree_return_items, :exchange_inventory_unit, references: :spree_inventory_units, index: true
19
+
20
+ Spree::InventoryUnit.reset_column_information
21
+
22
+ Spree::InventoryUnit.where.not(original_return_item_id: nil).find_each do |inventory_unit|
23
+ if (return_item = Spree::ReturnItem.find_by(id: inventory_unit.original_return_item_id)).present?
24
+ return_item.update_column(:exchange_inventory_unit_id, inventory_unit.id)
25
+ end
26
+ end
27
+
28
+ remove_reference :spree_inventory_units, :original_return_item
29
+ end
30
+ end
@@ -0,0 +1,17 @@
1
+ # This migration comes from spree (originally 20170315152755)
2
+ class AddUniqueIndexOnNumberToSpreeOrders < ActiveRecord::Migration[5.0]
3
+ def change
4
+ unless index_exists?(:spree_orders, :number, unique: true)
5
+ numbers = Spree::Order.group(:number).having('sum(1) > 1').pluck(:number)
6
+ orders = Spree::Order.where(number: numbers)
7
+
8
+ orders.find_each do |order|
9
+ order.number = order.class.number_generator.method(:generate_permalink).call(order.class)
10
+ order.save
11
+ end
12
+
13
+ remove_index :spree_orders, :number if index_exists?(:spree_orders, :number)
14
+ add_index :spree_orders, :number, unique: true
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,17 @@
1
+ # This migration comes from spree (originally 20170316154338)
2
+ class AddUniqueIndexOnNumberToSpreeStockTransfer < ActiveRecord::Migration[5.0]
3
+ def change
4
+ unless index_exists?(:spree_stock_transfers, :number, unique: true)
5
+ numbers = Spree::StockTransfer.group(:number).having('sum(1) > 1').pluck(:number)
6
+ transfers = Spree::StockTransfer.where(number: numbers)
7
+
8
+ transfers.find_each do |transfer|
9
+ transfer.number = transfer.class.number_generator.method(:generate_permalink).call(transfer.class)
10
+ transfer.save
11
+ end
12
+
13
+ remove_index :spree_stock_transfers, :number if index_exists?(:spree_stock_transfers, :number)
14
+ add_index :spree_stock_transfers, :number, unique: true
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,17 @@
1
+ # This migration comes from spree (originally 20170316205511)
2
+ class AddUniqueIndexOnNumberToSpreeShipment < ActiveRecord::Migration[5.0]
3
+ def change
4
+ unless index_exists?(:spree_shipments, :number, unique: true)
5
+ numbers = Spree::Shipment.group(:number).having('sum(1) > 1').pluck(:number)
6
+ shipments = Spree::Shipment.where(number: numbers)
7
+
8
+ shipments.find_each do |shipment|
9
+ shipment.number = shipment.class.number_generator.method(:generate_permalink).call(shipment.class)
10
+ shipment.save
11
+ end
12
+
13
+ remove_index :spree_shipments, :number if index_exists?(:spree_shipments, :number)
14
+ add_index :spree_shipments, :number, unique: true
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,18 @@
1
+ # This migration comes from spree (originally 20170320134043)
2
+ class AddUniqueIndexOnNumberToSpreePayments < ActiveRecord::Migration[5.0]
3
+ def change
4
+ unless index_exists?(:spree_payments, :number, unique: true)
5
+ # default scope in Spree::Payment disturbs Postgres, hence `unscoped` is needed.
6
+ numbers = Spree::Payment.unscoped.group(:number).having('sum(1) > 1').pluck(:number)
7
+ payments = Spree::Payment.where(number: numbers)
8
+
9
+ payments.find_each do |payment|
10
+ payment.number = payment.class.number_generator.method(:generate_permalink).call(payment.class)
11
+ payment.save
12
+ end
13
+
14
+ remove_index :spree_payments, :number if index_exists?(:spree_payments, :number)
15
+ add_index :spree_payments, :number, unique: true
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,17 @@
1
+ # This migration comes from spree (originally 20170320142750)
2
+ class AddUniqueIndexOnNumberToSpreeReturnAuthorizations < ActiveRecord::Migration[5.0]
3
+ def change
4
+ unless index_exists?(:spree_return_authorizations, :number, unique: true)
5
+ numbers = Spree::ReturnAuthorization.group(:number).having('sum(1) > 1').pluck(:number)
6
+ authorizations = Spree::ReturnAuthorization.where(number: numbers)
7
+
8
+ authorizations.find_each do |authorization|
9
+ authorization.number = authorization.class.number_generator.method(:generate_permalink).call(authorization.class)
10
+ authorization.save
11
+ end
12
+
13
+ remove_index :spree_return_authorizations, :number if index_exists?(:spree_return_authorizations, :number)
14
+ add_index :spree_return_authorizations, :number, unique: true
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,17 @@
1
+ # This migration comes from spree (originally 20170320145040)
2
+ class AddUniqueIndexOnNumberToSpreeCustomerReturns < ActiveRecord::Migration[5.0]
3
+ def change
4
+ unless index_exists?(:spree_customer_returns, :number, unique: true)
5
+ numbers = Spree::CustomerReturn.group(:number).having('sum(1) > 1').pluck(:number)
6
+ returns = Spree::CustomerReturn.where(number: numbers)
7
+
8
+ returns.find_each do |r|
9
+ r.number = r.class.number_generator.method(:generate_permalink).call(r.class)
10
+ r.save
11
+ end
12
+
13
+ remove_index :spree_customer_returns, :number if index_exists?(:spree_customer_returns, :number)
14
+ add_index :spree_customer_returns, :number, unique: true
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,17 @@
1
+ # This migration comes from spree (originally 20170320145518)
2
+ class AddUniqueIndexOnNumberToSpreeReimbursements < ActiveRecord::Migration[5.0]
3
+ def change
4
+ unless index_exists?(:spree_reimbursements, :number, unique: true)
5
+ numbers = Spree::Reimbursement.group(:number).having('sum(1) > 1').pluck(:number)
6
+ reimbursements = Spree::Reimbursement.where(number: numbers)
7
+
8
+ reimbursements.find_each do |reimbursement|
9
+ reimbursement.number = reimbursement.class.number_generator.method(:generate_permalink).call(reimbursement.class)
10
+ reimbursement.save
11
+ end
12
+
13
+ remove_index :spree_reimbursements, :number if index_exists?(:spree_reimbursements, :number)
14
+ add_index :spree_reimbursements, :number, unique: true
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,38 @@
1
+ # This migration comes from spree (originally 20170323151450)
2
+ class AddMissingUniqueIndexesForUniqueAttributes < ActiveRecord::Migration[5.0]
3
+ def change
4
+ tables = {
5
+ country: [:name, :iso_name],
6
+ refund_reason: [:name],
7
+ reimbursement_type: [:name],
8
+ return_authorization_reason: [:name],
9
+ role: [:name],
10
+ store: [:code]
11
+ }
12
+
13
+ tables.each do |table, columns|
14
+ table_class = "Spree::#{table.to_s.classify}".constantize
15
+ table_name = table_class.table_name
16
+
17
+ columns.each do |column|
18
+ unless index_exists?(table_name, column, unique: true)
19
+ attributes = table_class.unscoped.group(column).having('sum(1) > 1').pluck(column)
20
+ instances = table_class.where(column => [nil, attributes])
21
+
22
+ instances.find_each do |instance|
23
+ column_value = 'Unique String ' + SecureRandom.urlsafe_base64(8).upcase.delete('/+=_-')[0, 8]
24
+ instance.send("#{column}=", column_value)
25
+ instance.save
26
+ end
27
+
28
+ remove_index table_name, column if index_exists?(table_name, column)
29
+ if supports_expression_index?
30
+ add_index table_name, "lower(#{column})", unique: true
31
+ else
32
+ add_index table_name, column, unique: true
33
+ end
34
+ end
35
+ end
36
+ end
37
+ end
38
+ end
@@ -0,0 +1,6 @@
1
+ # This migration comes from spree (originally 20170329110859)
2
+ class AddIndexOnStockLocationToSpreeCustomerReturns < ActiveRecord::Migration[5.0]
3
+ def change
4
+ add_index :spree_customer_returns, :stock_location_id
5
+ end
6
+ end