solidus_starter_frontend 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.circleci/config.yml +57 -0
- data/.erb-lint.yml +22 -0
- data/.eslintrc +5 -0
- data/.gem_release.yml +5 -0
- data/.github/pull_request_template.md +28 -0
- data/.github/stale.yml +17 -0
- data/.gitignore +17 -0
- data/.hound.yml +16 -0
- data/.rspec +2 -0
- data/.rubocop.yml +19 -0
- data/.rubocop_todo.yml +229 -0
- data/.scss-lint.yml +4 -0
- data/Gemfile +34 -0
- data/LICENSE +26 -0
- data/README.md +69 -0
- data/Rakefile +6 -0
- data/app/assets/config/solidus_starter_frontend_manifest.js +2 -0
- data/app/assets/javascripts/spree/frontend.js +6 -0
- data/app/assets/javascripts/spree/frontend/cart.js +26 -0
- data/app/assets/javascripts/spree/frontend/checkout.js +34 -0
- data/app/assets/javascripts/spree/frontend/checkout/address.js +124 -0
- data/app/assets/javascripts/spree/frontend/checkout/payment.js +44 -0
- data/app/assets/javascripts/spree/frontend/locale_selector.js +9 -0
- data/app/assets/javascripts/spree/frontend/product.js +21 -0
- data/app/assets/javascripts/spree/frontend/solidus_starter_frontend.js +9 -0
- data/app/assets/javascripts/spree/frontend/utils.js.erb +18 -0
- data/app/assets/stylesheets/spree/frontend.css +8 -0
- data/app/assets/stylesheets/spree/frontend/base/_base.scss +29 -0
- data/app/assets/stylesheets/spree/frontend/base/_reset.scss +179 -0
- data/app/assets/stylesheets/spree/frontend/base/_responsive.scss +21 -0
- data/app/assets/stylesheets/spree/frontend/components/account/_account_order.scss +23 -0
- data/app/assets/stylesheets/spree/frontend/components/account/_account_summary.scss +17 -0
- data/app/assets/stylesheets/spree/frontend/components/auth/_auth_container.scss +11 -0
- data/app/assets/stylesheets/spree/frontend/components/auth/_auth_form.scss +5 -0
- data/app/assets/stylesheets/spree/frontend/components/brand/_logo.scss +4 -0
- data/app/assets/stylesheets/spree/frontend/components/buttons/_button_inline.scss +8 -0
- data/app/assets/stylesheets/spree/frontend/components/buttons/_button_primary.scss +26 -0
- data/app/assets/stylesheets/spree/frontend/components/cart/_cart_adjustments.scss +6 -0
- data/app/assets/stylesheets/spree/frontend/components/cart/_cart_amount_row.scss +11 -0
- data/app/assets/stylesheets/spree/frontend/components/cart/_cart_empty.scss +10 -0
- data/app/assets/stylesheets/spree/frontend/components/cart/_cart_footer.scss +20 -0
- data/app/assets/stylesheets/spree/frontend/components/cart/_cart_header.scss +12 -0
- data/app/assets/stylesheets/spree/frontend/components/cart/_cart_item.scss +86 -0
- data/app/assets/stylesheets/spree/frontend/components/cart/_cart_link.scss +22 -0
- data/app/assets/stylesheets/spree/frontend/components/cart/_cart_page.scss +15 -0
- data/app/assets/stylesheets/spree/frontend/components/cart/_cart_secondary_actions.scss +19 -0
- data/app/assets/stylesheets/spree/frontend/components/cart/_coupon_code.scss +8 -0
- data/app/assets/stylesheets/spree/frontend/components/cart/_item_info.scss +19 -0
- data/app/assets/stylesheets/spree/frontend/components/checkout/_checkout.scss +27 -0
- data/app/assets/stylesheets/spree/frontend/components/checkout/_checkout_header.scss +19 -0
- data/app/assets/stylesheets/spree/frontend/components/checkout/_checkout_summary.scss +31 -0
- data/app/assets/stylesheets/spree/frontend/components/checkout/_existing_cards.scss +27 -0
- data/app/assets/stylesheets/spree/frontend/components/checkout/_payment_method_controls.scss +5 -0
- data/app/assets/stylesheets/spree/frontend/components/checkout/_payment_method_selector.scss +14 -0
- data/app/assets/stylesheets/spree/frontend/components/checkout/_progress_steps.scss +38 -0
- data/app/assets/stylesheets/spree/frontend/components/checkout/_proposed_shipment.scss +18 -0
- data/app/assets/stylesheets/spree/frontend/components/checkout/_shipment_items.scss +50 -0
- data/app/assets/stylesheets/spree/frontend/components/checkout/_shipping_methods.scss +9 -0
- data/app/assets/stylesheets/spree/frontend/components/checkout/payments/_gateway_payment_method.scss +11 -0
- data/app/assets/stylesheets/spree/frontend/components/checkout/steps/_address_step.scss +20 -0
- data/app/assets/stylesheets/spree/frontend/components/checkout/steps/_confirm_step.scss +13 -0
- data/app/assets/stylesheets/spree/frontend/components/checkout/steps/_delivery_step.scss +13 -0
- data/app/assets/stylesheets/spree/frontend/components/checkout/steps/_payment_step.scss +13 -0
- data/app/assets/stylesheets/spree/frontend/components/forms/_address_inputs.scss +13 -0
- data/app/assets/stylesheets/spree/frontend/components/forms/inputs/_checkbox_input.scss +3 -0
- data/app/assets/stylesheets/spree/frontend/components/forms/inputs/_radio_input.scss +3 -0
- data/app/assets/stylesheets/spree/frontend/components/forms/inputs/_select_input.scss +27 -0
- data/app/assets/stylesheets/spree/frontend/components/forms/inputs/_text.scss +32 -0
- data/app/assets/stylesheets/spree/frontend/components/forms/inputs/_textarea_input.scss +25 -0
- data/app/assets/stylesheets/spree/frontend/components/general/_flash.scss +20 -0
- data/app/assets/stylesheets/spree/frontend/components/layout/_aside.scss +4 -0
- data/app/assets/stylesheets/spree/frontend/components/layout/_breadcrumbs.scss +16 -0
- data/app/assets/stylesheets/spree/frontend/components/layout/_category_navigation.scss +3 -0
- data/app/assets/stylesheets/spree/frontend/components/layout/_footer.scss +8 -0
- data/app/assets/stylesheets/spree/frontend/components/layout/_header.scss +12 -0
- data/app/assets/stylesheets/spree/frontend/components/layout/_horizontal_input_group.scss +7 -0
- data/app/assets/stylesheets/spree/frontend/components/layout/_top_bar.scss +44 -0
- data/app/assets/stylesheets/spree/frontend/components/navigation/_auth_link.scss +11 -0
- data/app/assets/stylesheets/spree/frontend/components/navigation/_categories.scss +29 -0
- data/app/assets/stylesheets/spree/frontend/components/navigation/_locale_selector.scss +21 -0
- data/app/assets/stylesheets/spree/frontend/components/navigation/_taxonomies.scss +7 -0
- data/app/assets/stylesheets/spree/frontend/components/navigation/_taxonomy.scss +28 -0
- data/app/assets/stylesheets/spree/frontend/components/orders/_address_overview.scss +27 -0
- data/app/assets/stylesheets/spree/frontend/components/orders/_coupon_codes.scss +4 -0
- data/app/assets/stylesheets/spree/frontend/components/orders/_line_items.scss +20 -0
- data/app/assets/stylesheets/spree/frontend/components/orders/_order_details.scss +18 -0
- data/app/assets/stylesheets/spree/frontend/components/orders/_order_item.scss +85 -0
- data/app/assets/stylesheets/spree/frontend/components/orders/_order_page.scss +41 -0
- data/app/assets/stylesheets/spree/frontend/components/orders/_order_shipments.scss +27 -0
- data/app/assets/stylesheets/spree/frontend/components/orders/_payment_info.scss +29 -0
- data/app/assets/stylesheets/spree/frontend/components/presentation/_hero.scss +18 -0
- data/app/assets/stylesheets/spree/frontend/components/products/_product_card.scss +35 -0
- data/app/assets/stylesheets/spree/frontend/components/products/_product_image.scss +7 -0
- data/app/assets/stylesheets/spree/frontend/components/products/_product_info.scss +14 -0
- data/app/assets/stylesheets/spree/frontend/components/products/_product_page.scss +31 -0
- data/app/assets/stylesheets/spree/frontend/components/products/_product_properties.scss +23 -0
- data/app/assets/stylesheets/spree/frontend/components/products/_product_submit.scss +9 -0
- data/app/assets/stylesheets/spree/frontend/components/products/_product_taxons.scss +27 -0
- data/app/assets/stylesheets/spree/frontend/components/products/_product_thumbnails.scss +7 -0
- data/app/assets/stylesheets/spree/frontend/components/products/_product_variants.scss +20 -0
- data/app/assets/stylesheets/spree/frontend/components/products/_products.scss +13 -0
- data/app/assets/stylesheets/spree/frontend/components/products/_products_by_taxon.scss +6 -0
- data/app/assets/stylesheets/spree/frontend/components/products/_products_grid.scss +18 -0
- data/app/assets/stylesheets/spree/frontend/components/search/_filter.scss +32 -0
- data/app/assets/stylesheets/spree/frontend/components/search/_search_bar.scss +34 -0
- data/app/assets/stylesheets/spree/frontend/components/typography/_hero_title.scss +6 -0
- data/app/assets/stylesheets/spree/frontend/components/typography/_subtitle.scss +7 -0
- data/app/assets/stylesheets/spree/frontend/placeholders/main.scss +5 -0
- data/app/assets/stylesheets/spree/frontend/screen.scss +89 -0
- data/app/assets/stylesheets/spree/frontend/solidus_starter_frontend.css +7 -0
- data/app/assets/stylesheets/spree/frontend/variables/_colors.scss +20 -0
- data/app/controllers/concerns/solidus_starter_frontend/auth_views.rb +16 -0
- data/app/controllers/concerns/solidus_starter_frontend/taxonomies.rb +16 -0
- data/app/controllers/spree/checkout_controller.rb +249 -0
- data/app/controllers/spree/coupon_codes_controller.rb +35 -0
- data/app/controllers/spree/home_controller.rb +13 -0
- data/app/controllers/spree/locale_controller.rb +20 -0
- data/app/controllers/spree/orders_controller.rb +126 -0
- data/app/controllers/spree/products_controller.rb +51 -0
- data/app/controllers/spree/store_controller.rb +31 -0
- data/app/controllers/spree/taxons_controller.rb +30 -0
- data/app/helpers/spree/orders_helper.rb +18 -0
- data/app/helpers/spree/taxon_filters_helper.rb +13 -0
- data/app/views/spree/address/_form_hidden.html.erb +12 -0
- data/app/views/spree/checkout/_terms_and_conditions.en.html.erb +1 -0
- data/app/views/spree/checkout/edit.html.erb +16 -0
- data/app/views/spree/checkout/existing_payment/_gateway.html.erb +9 -0
- data/app/views/spree/checkout/payment/_check.html.erb +0 -0
- data/app/views/spree/checkout/payment/_gateway.html.erb +43 -0
- data/app/views/spree/components/auth/_change_form.html.erb +40 -0
- data/app/views/spree/components/auth/_forgot_form.html.erb +28 -0
- data/app/views/spree/components/auth/_guest_form.html.erb +31 -0
- data/app/views/spree/components/auth/_login_form.html.erb +42 -0
- data/app/views/spree/components/auth/_signup_form.html.erb +48 -0
- data/app/views/spree/components/brand/_logo.html.erb +3 -0
- data/app/views/spree/components/buttons/_button_inline.html.erb +23 -0
- data/app/views/spree/components/buttons/_button_primary.html.erb +29 -0
- data/app/views/spree/components/cart/_cart_adjustment.html.erb +15 -0
- data/app/views/spree/components/cart/_cart_adjustments.html.erb +47 -0
- data/app/views/spree/components/cart/_cart_amount_row.html.erb +12 -0
- data/app/views/spree/components/cart/_cart_empty.html.erb +9 -0
- data/app/views/spree/components/cart/_cart_footer.html.erb +15 -0
- data/app/views/spree/components/cart/_cart_header.html.erb +17 -0
- data/app/views/spree/components/cart/_cart_item.html.erb +52 -0
- data/app/views/spree/components/cart/_cart_items.html.erb +23 -0
- data/app/views/spree/components/cart/_cart_link.html.erb +9 -0
- data/app/views/spree/components/cart/_cart_secondary_actions.html.erb +17 -0
- data/app/views/spree/components/cart/_item_info.html.erb +26 -0
- data/app/views/spree/components/checkout/_checkout_header.html.erb +8 -0
- data/app/views/spree/components/checkout/_checkout_step.html.erb +21 -0
- data/app/views/spree/components/checkout/_checkout_summary.html.erb +70 -0
- data/app/views/spree/components/checkout/_existing_cards.html.erb +39 -0
- data/app/views/spree/components/checkout/_payment_method_controls.html.erb +10 -0
- data/app/views/spree/components/checkout/_payment_method_selector.html.erb +14 -0
- data/app/views/spree/components/checkout/_proposed_shipment.erb +18 -0
- data/app/views/spree/components/checkout/_shipment_items.html.erb +22 -0
- data/app/views/spree/components/checkout/_shipping_methods.html.erb +20 -0
- data/app/views/spree/components/checkout/_unshippable_items.html.erb +7 -0
- data/app/views/spree/components/checkout/steps/_address_step.html.erb +60 -0
- data/app/views/spree/components/checkout/steps/_confirm_step.html.erb +31 -0
- data/app/views/spree/components/checkout/steps/_delivery_step.html.erb +31 -0
- data/app/views/spree/components/checkout/steps/_payment_step.html.erb +25 -0
- data/app/views/spree/components/forms/_address_inputs.html.erb +152 -0
- data/app/views/spree/components/forms/inputs/_checkbox_input.html.erb +29 -0
- data/app/views/spree/components/forms/inputs/_collection_select.html.erb +42 -0
- data/app/views/spree/components/forms/inputs/_radio_input.html.erb +29 -0
- data/app/views/spree/components/forms/inputs/_select_input.html.erb +31 -0
- data/app/views/spree/components/forms/inputs/_text.html.erb +54 -0
- data/app/views/spree/components/forms/inputs/_textarea_input.html.erb +42 -0
- data/app/views/spree/components/layout/_category_navigation.html.erb +3 -0
- data/app/views/spree/components/layout/_footer.html.erb +7 -0
- data/app/views/spree/components/layout/_header.html.erb +8 -0
- data/app/views/spree/components/layout/_top_bar.html.erb +8 -0
- data/app/views/spree/components/navigation/_auth_link.html.erb +1 -0
- data/app/views/spree/components/navigation/_breadcrumbs.html.erb +47 -0
- data/app/views/spree/components/navigation/_categories.html.erb +12 -0
- data/app/views/spree/components/navigation/_locale_selector.html.erb +25 -0
- data/app/views/spree/components/navigation/_taxonomies.html.erb +17 -0
- data/app/views/spree/components/navigation/_taxons.html.erb +17 -0
- data/app/views/spree/components/navigation/_taxons_tree.html.erb +29 -0
- data/app/views/spree/components/orders/_address_overview.html.erb +40 -0
- data/app/views/spree/components/orders/_coupon_code.html.erb +22 -0
- data/app/views/spree/components/orders/_line_items.html.erb +55 -0
- data/app/views/spree/components/orders/_order_details.html.erb +35 -0
- data/app/views/spree/components/orders/_order_item.html.erb +33 -0
- data/app/views/spree/components/orders/_order_items.html.erb +5 -0
- data/app/views/spree/components/orders/_order_shipments.html.erb +25 -0
- data/app/views/spree/components/orders/_payment_info.html.erb +31 -0
- data/app/views/spree/components/presentation/_hero.html.erb +14 -0
- data/app/views/spree/components/products/_product-card.html.erb +36 -0
- data/app/views/spree/components/products/_product_availability.html.erb +19 -0
- data/app/views/spree/components/products/_product_form.html.erb +21 -0
- data/app/views/spree/components/products/_product_image.html.erb +6 -0
- data/app/views/spree/components/products/_product_info.html.erb +9 -0
- data/app/views/spree/components/products/_product_promotions.html.erb +25 -0
- data/app/views/spree/components/products/_product_properties.html.erb +19 -0
- data/app/views/spree/components/products/_product_submit.html.erb +39 -0
- data/app/views/spree/components/products/_product_taxons.html.erb +15 -0
- data/app/views/spree/components/products/_product_thumbnails.html.erb +19 -0
- data/app/views/spree/components/products/_product_variants.html.erb +36 -0
- data/app/views/spree/components/products/_products-grid.html.erb +13 -0
- data/app/views/spree/components/products/_products.html.erb +28 -0
- data/app/views/spree/components/products/_products_by_taxon.html.erb +7 -0
- data/app/views/spree/components/products/_variants_list.html.erb +12 -0
- data/app/views/spree/components/search/_filter.html.erb +42 -0
- data/app/views/spree/components/search/_filters.html.erb +20 -0
- data/app/views/spree/components/search/_form.html.erb +12 -0
- data/app/views/spree/components/search/_products_search.html.erb +36 -0
- data/app/views/spree/components/search/_search_bar.html.erb +36 -0
- data/app/views/spree/components/typography/_hero_title.html.erb +11 -0
- data/app/views/spree/components/typography/_subtitle.html.erb +11 -0
- data/app/views/spree/home/index.html.erb +7 -0
- data/app/views/spree/layouts/spree_application.html.erb +27 -0
- data/app/views/spree/orders/edit.html.erb +21 -0
- data/app/views/spree/orders/show.html.erb +29 -0
- data/app/views/spree/products/index.html.erb +22 -0
- data/app/views/spree/products/show.html.erb +18 -0
- data/app/views/spree/shared/_image.html.erb +12 -0
- data/app/views/spree/shared/_link_to_cart.html.erb +1 -0
- data/app/views/spree/shared/_login_bar_items.html.erb +1 -0
- data/app/views/spree/shared/_shipment_tracking.html.erb +11 -0
- data/app/views/spree/shared/unauthorized.html.erb +0 -0
- data/app/views/spree/taxons/show.html.erb +17 -0
- data/bin/console +17 -0
- data/bin/r +13 -0
- data/bin/rails +7 -0
- data/bin/rake +7 -0
- data/bin/rspec +29 -0
- data/bin/sandbox +84 -0
- data/bin/sandbox_rails +18 -0
- data/bin/setup +8 -0
- data/bin/solidus_compare +155 -0
- data/config/initializers/assets.rb +1 -0
- data/config/initializers/canonical_rails.rb +16 -0
- data/config/locales/en.yml +5 -0
- data/config/routes.rb +33 -0
- data/config/solidus_compare.yml +33 -0
- data/docs/development.md +28 -0
- data/exe/solidus_starter_frontend +9 -0
- data/lib/generators/solidus_starter_frontend/install/install_generator.rb +15 -0
- data/lib/generators/solidus_starter_frontend/solidus_starter_frontend_generator.rb +30 -0
- data/lib/generators/solidus_starter_frontend/views/override_generator.rb +50 -0
- data/lib/solidus_starter_frontend.rb +12 -0
- data/lib/solidus_starter_frontend/config.rb +7 -0
- data/lib/solidus_starter_frontend/engine.rb +34 -0
- data/lib/solidus_starter_frontend/factories.rb +4 -0
- data/lib/solidus_starter_frontend/solidus_support_extensions.rb +9 -0
- data/lib/solidus_starter_frontend/version.rb +5 -0
- data/lib/solidus_starter_frontend_configuration.rb +8 -0
- data/lib/views/auth/spree/checkout/registration.html.erb +7 -0
- data/lib/views/auth/spree/components/navigation/_auth_link.html.erb +5 -0
- data/lib/views/auth/spree/user_passwords/edit.html.erb +7 -0
- data/lib/views/auth/spree/user_passwords/new.html.erb +5 -0
- data/lib/views/auth/spree/user_registrations/new.html.erb +7 -0
- data/lib/views/auth/spree/user_sessions/guest.html.erb +5 -0
- data/lib/views/auth/spree/user_sessions/new.html.erb +7 -0
- data/lib/views/auth/spree/users/edit.html.erb +45 -0
- data/lib/views/auth/spree/users/show.html.erb +55 -0
- data/solidus_starter_frontend.gemspec +43 -0
- data/spec/controllers/controller_helpers_spec.rb +29 -0
- data/spec/controllers/locale_controller_spec.rb +57 -0
- data/spec/controllers/spree/checkout_controller_spec.rb +563 -0
- data/spec/controllers/spree/checkout_controller_with_views_spec.rb +37 -0
- data/spec/controllers/spree/current_order_tracking_spec.rb +33 -0
- data/spec/controllers/spree/home_controller_spec.rb +29 -0
- data/spec/controllers/spree/orders_controller_ability_spec.rb +90 -0
- data/spec/controllers/spree/orders_controller_spec.rb +241 -0
- data/spec/controllers/spree/orders_controller_transitions_spec.rb +33 -0
- data/spec/controllers/spree/products_controller_spec.rb +38 -0
- data/spec/controllers/spree/taxons_controller_spec.rb +14 -0
- data/spec/fixtures/thinking-cat.jpg +0 -0
- data/spec/generators/solidus/views/override_generator_spec.rb +50 -0
- data/spec/helpers/base_helper_spec.rb +13 -0
- data/spec/helpers/order_helper_spec.rb +14 -0
- data/spec/helpers/taxon_filters_helper_spec.rb +12 -0
- data/spec/spec_helper.rb +64 -0
- data/spec/support/shared_contexts/checkout_setup.rb +12 -0
- data/spec/support/shared_contexts/custom_products.rb +28 -0
- data/spec/support/shared_contexts/locales.rb +16 -0
- data/spec/system/address_spec.rb +87 -0
- data/spec/system/automatic_promotion_adjustments_spec.rb +49 -0
- data/spec/system/caching/products_spec.rb +48 -0
- data/spec/system/caching/taxons_spec.rb +35 -0
- data/spec/system/cart_spec.rb +81 -0
- data/spec/system/checkout_confirm_insufficient_stock_spec.rb +71 -0
- data/spec/system/checkout_spec.rb +699 -0
- data/spec/system/checkout_unshippable_spec.rb +37 -0
- data/spec/system/coupon_code_spec.rb +267 -0
- data/spec/system/currency_spec.rb +20 -0
- data/spec/system/first_order_promotion_spec.rb +59 -0
- data/spec/system/free_shipping_promotions_spec.rb +60 -0
- data/spec/system/locale_spec.rb +26 -0
- data/spec/system/order_spec.rb +57 -0
- data/spec/system/products_spec.rb +302 -0
- data/spec/system/promotion_code_invalidation_spec.rb +54 -0
- data/spec/system/quantity_promotions_spec.rb +130 -0
- data/spec/system/taxons_spec.rb +158 -0
- data/spec/system/template_rendering_spec.rb +20 -0
- data/spec/views/spree/checkout/_summary_spec.rb +11 -0
- metadata +542 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: fbdfd9b3be79667ea3f08460e20bdab87c574957b9ca86d7debe9927afbba28a
|
|
4
|
+
data.tar.gz: 50e72594e425a1070bcc55310c70278325e22bd30a41f9336e1d6fc4d78f7dfb
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: c6b8b3cf3727a92acfcfc858604e5eadb8279ea113c3c84785741b46134ecf327dcd5e26334f5fcb8920cd366d2f6aac9fd9ee363ba4bb9f9574606933f4d0c7
|
|
7
|
+
data.tar.gz: 9be7dd108b1e60d405118f744e8587bec061d3e7a08538c8cec97fd9a6f65080d73ffdecf08f56702fb42fedafba10c397b056aabc1a605ecea60827fbfac77d
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
version: 2.1
|
|
2
|
+
|
|
3
|
+
orbs:
|
|
4
|
+
# Always take the latest version of the orb, this allows us to
|
|
5
|
+
# run specs against Solidus supported versions only without the need
|
|
6
|
+
# to change this configuration every time a Solidus version is released
|
|
7
|
+
# or goes EOL.
|
|
8
|
+
solidusio_extensions: solidusio/extensions@volatile
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
run-specs-with-postgres:
|
|
12
|
+
executor: solidusio_extensions/postgres
|
|
13
|
+
steps:
|
|
14
|
+
- checkout
|
|
15
|
+
- solidusio_extensions/run-tests-solidus-master
|
|
16
|
+
- solidusio_extensions/store-test-results
|
|
17
|
+
run-specs-with-mysql:
|
|
18
|
+
executor: solidusio_extensions/mysql
|
|
19
|
+
steps:
|
|
20
|
+
- checkout
|
|
21
|
+
- solidusio_extensions/run-tests-solidus-master
|
|
22
|
+
- solidusio_extensions/store-test-results
|
|
23
|
+
solidus-compare:
|
|
24
|
+
docker:
|
|
25
|
+
- image: circleci/ruby:latest
|
|
26
|
+
steps:
|
|
27
|
+
- checkout
|
|
28
|
+
- run:
|
|
29
|
+
name: Prepare compare diff
|
|
30
|
+
command: bin/solidus_compare > /tmp/solidus_compare_results.diff
|
|
31
|
+
- store_artifacts:
|
|
32
|
+
path: /tmp/solidus_compare_results.diff
|
|
33
|
+
destination: solidus_compare_results.diff
|
|
34
|
+
- run:
|
|
35
|
+
name: Prepare test results
|
|
36
|
+
command: mkdir -p /tmp/test_results && bin/solidus_compare -s > /tmp/test_results/results.xml
|
|
37
|
+
- store_test_results:
|
|
38
|
+
path: /tmp/test_results
|
|
39
|
+
|
|
40
|
+
workflows:
|
|
41
|
+
"Run specs on supported Solidus versions":
|
|
42
|
+
jobs:
|
|
43
|
+
- run-specs-with-postgres
|
|
44
|
+
- run-specs-with-mysql
|
|
45
|
+
- solidus-compare
|
|
46
|
+
"Weekly run specs against master":
|
|
47
|
+
triggers:
|
|
48
|
+
- schedule:
|
|
49
|
+
cron: "0 0 * * 4" # every Thursday
|
|
50
|
+
filters:
|
|
51
|
+
branches:
|
|
52
|
+
only:
|
|
53
|
+
- master
|
|
54
|
+
jobs:
|
|
55
|
+
- run-specs-with-postgres
|
|
56
|
+
- run-specs-with-mysql
|
|
57
|
+
- solidus-compare
|
data/.erb-lint.yml
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
linters:
|
|
2
|
+
Rubocop:
|
|
3
|
+
enabled: true
|
|
4
|
+
rubocop_config:
|
|
5
|
+
inherit_from:
|
|
6
|
+
- .rubocop.yml
|
|
7
|
+
Layout/InitialIndentation:
|
|
8
|
+
Enabled: false
|
|
9
|
+
Layout/TrailingBlankLines:
|
|
10
|
+
Enabled: false
|
|
11
|
+
Layout/TrailingWhitespace:
|
|
12
|
+
Enabled: false
|
|
13
|
+
Naming/FileName:
|
|
14
|
+
Enabled: false
|
|
15
|
+
Style/FrozenStringLiteralComment:
|
|
16
|
+
Enabled: false
|
|
17
|
+
Metrics/LineLength:
|
|
18
|
+
Enabled: false
|
|
19
|
+
Lint/UselessAssignment:
|
|
20
|
+
Enabled: false
|
|
21
|
+
Rails/OutputSafety:
|
|
22
|
+
Enabled: false
|
data/.gem_release.yml
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<!--- Provide a general summary of your changes in the Title above -->
|
|
2
|
+
|
|
3
|
+
## Description
|
|
4
|
+
<!--- Describe your changes in detail -->
|
|
5
|
+
|
|
6
|
+
## Motivation and Context
|
|
7
|
+
<!--- Why is this change required? What problem does it solve? -->
|
|
8
|
+
<!--- If it fixes an open issue, please link to the issue here. -->
|
|
9
|
+
|
|
10
|
+
## How Has This Been Tested?
|
|
11
|
+
<!--- Please describe in detail how you tested your changes. -->
|
|
12
|
+
<!--- Include details of your testing environment, tests ran to see how -->
|
|
13
|
+
<!--- your change affects other areas of the code, etc. -->
|
|
14
|
+
|
|
15
|
+
## Screenshots (if appropriate):
|
|
16
|
+
|
|
17
|
+
## Types of changes
|
|
18
|
+
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->
|
|
19
|
+
- [ ] Bug fix (non-breaking change which fixes an issue)
|
|
20
|
+
- [ ] New feature (non-breaking change which adds functionality)
|
|
21
|
+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
|
|
22
|
+
|
|
23
|
+
## Checklist:
|
|
24
|
+
<!--- Go over all the following points, and put an `x` in all the boxes that apply. -->
|
|
25
|
+
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
|
|
26
|
+
- [ ] My code follows the code style of this project.
|
|
27
|
+
- [ ] My change requires a change to the documentation.
|
|
28
|
+
- [ ] I have updated the documentation accordingly.
|
data/.github/stale.yml
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Number of days of inactivity before an issue becomes stale
|
|
2
|
+
daysUntilStale: 60
|
|
3
|
+
# Number of days of inactivity before a stale issue is closed
|
|
4
|
+
daysUntilClose: 7
|
|
5
|
+
# Issues with these labels will never be considered stale
|
|
6
|
+
exemptLabels:
|
|
7
|
+
- pinned
|
|
8
|
+
- security
|
|
9
|
+
# Label to use when marking an issue as stale
|
|
10
|
+
staleLabel: wontfix
|
|
11
|
+
# Comment to post when marking an issue as stale. Set to `false` to disable
|
|
12
|
+
markComment: >
|
|
13
|
+
This issue has been automatically marked as stale because it has not had
|
|
14
|
+
recent activity. It will be closed if no further activity occurs. Thank you
|
|
15
|
+
for your contributions.
|
|
16
|
+
# Comment to post when closing a stale issue. Set to `false` to disable
|
|
17
|
+
closeComment: false
|
data/.gitignore
ADDED
data/.hound.yml
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
erblint:
|
|
2
|
+
enabled: true
|
|
3
|
+
config_file: .erb-lint.yml
|
|
4
|
+
|
|
5
|
+
rubocop:
|
|
6
|
+
version: 0.75.0
|
|
7
|
+
config_file: .rubocop.yml
|
|
8
|
+
|
|
9
|
+
scss-lint:
|
|
10
|
+
enabled: true
|
|
11
|
+
version: 0.57.1
|
|
12
|
+
config_file: .scss-lint.yml
|
|
13
|
+
|
|
14
|
+
eslint:
|
|
15
|
+
enabled: true
|
|
16
|
+
config_file: .eslintrc
|
data/.rspec
ADDED
data/.rubocop.yml
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
inherit_from:
|
|
2
|
+
- .rubocop_todo.yml
|
|
3
|
+
|
|
4
|
+
AllCops:
|
|
5
|
+
Exclude:
|
|
6
|
+
- sandbox/**/*
|
|
7
|
+
- spec/dummy/**/*
|
|
8
|
+
- vendor/**/*
|
|
9
|
+
|
|
10
|
+
Documentation:
|
|
11
|
+
Enabled: false
|
|
12
|
+
|
|
13
|
+
Metrics/BlockLength:
|
|
14
|
+
Exclude:
|
|
15
|
+
- spec/**/*
|
|
16
|
+
|
|
17
|
+
Metrics/LineLength:
|
|
18
|
+
Enabled: true
|
|
19
|
+
Max: 175
|
data/.rubocop_todo.yml
ADDED
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
# This configuration was generated by
|
|
2
|
+
# `rubocop --auto-gen-config`
|
|
3
|
+
# on 2020-07-31 10:58:59 +0200 using RuboCop version 0.76.0.
|
|
4
|
+
# The point is for the user to remove these configuration records
|
|
5
|
+
# one by one as the offenses are removed from the code base.
|
|
6
|
+
# Note that changes in the inspected code, or installation of new
|
|
7
|
+
# versions of RuboCop, may require this file to be generated again.
|
|
8
|
+
|
|
9
|
+
# Offense count: 1
|
|
10
|
+
# Cop supports --auto-correct.
|
|
11
|
+
# Configuration parameters: TreatCommentsAsGroupSeparators, Include.
|
|
12
|
+
# Include: **/*.gemfile, **/Gemfile, **/gems.rb
|
|
13
|
+
Bundler/OrderedGems:
|
|
14
|
+
Exclude:
|
|
15
|
+
- 'Gemfile'
|
|
16
|
+
|
|
17
|
+
# Offense count: 2
|
|
18
|
+
# Cop supports --auto-correct.
|
|
19
|
+
# Configuration parameters: EnforcedStyle, IndentationWidth.
|
|
20
|
+
# SupportedStyles: with_first_argument, with_fixed_indentation
|
|
21
|
+
Layout/AlignArguments:
|
|
22
|
+
Exclude:
|
|
23
|
+
- 'bin/rspec'
|
|
24
|
+
- 'lib/generators/solidus_starter_frontend/views/override_generator.rb'
|
|
25
|
+
|
|
26
|
+
# Offense count: 3
|
|
27
|
+
# Cop supports --auto-correct.
|
|
28
|
+
# Configuration parameters: AllowMultipleStyles, EnforcedHashRocketStyle, EnforcedColonStyle, EnforcedLastArgumentHashStyle.
|
|
29
|
+
# SupportedHashRocketStyles: key, separator, table
|
|
30
|
+
# SupportedColonStyles: key, separator, table
|
|
31
|
+
# SupportedLastArgumentHashStyles: always_inspect, always_ignore, ignore_implicit, ignore_explicit
|
|
32
|
+
Layout/AlignHash:
|
|
33
|
+
Exclude:
|
|
34
|
+
- 'spec/system/coupon_code_spec.rb'
|
|
35
|
+
|
|
36
|
+
# Offense count: 5
|
|
37
|
+
# Cop supports --auto-correct.
|
|
38
|
+
# Configuration parameters: EnforcedStyle.
|
|
39
|
+
# SupportedStyles: leading, trailing
|
|
40
|
+
Layout/DotPosition:
|
|
41
|
+
Exclude:
|
|
42
|
+
- 'app/controllers/spree/products_controller.rb'
|
|
43
|
+
- 'spec/controllers/spree/orders_controller_spec.rb'
|
|
44
|
+
|
|
45
|
+
# Offense count: 1
|
|
46
|
+
# Cop supports --auto-correct.
|
|
47
|
+
Layout/EmptyLineAfterGuardClause:
|
|
48
|
+
Exclude:
|
|
49
|
+
- 'spec/generators/solidus/views/override_generator_spec.rb'
|
|
50
|
+
|
|
51
|
+
# Offense count: 1
|
|
52
|
+
# Cop supports --auto-correct.
|
|
53
|
+
# Configuration parameters: AllowForAlignment, AllowBeforeTrailingComments, ForceEqualSignAlignment.
|
|
54
|
+
Layout/ExtraSpacing:
|
|
55
|
+
Exclude:
|
|
56
|
+
- 'spec/controllers/spree/checkout_controller_spec.rb'
|
|
57
|
+
|
|
58
|
+
# Offense count: 4
|
|
59
|
+
# Cop supports --auto-correct.
|
|
60
|
+
# Configuration parameters: IndentationWidth.
|
|
61
|
+
# SupportedStyles: special_inside_parentheses, consistent, align_braces
|
|
62
|
+
Layout/IndentFirstHashElement:
|
|
63
|
+
EnforcedStyle: consistent
|
|
64
|
+
|
|
65
|
+
# Offense count: 1
|
|
66
|
+
# Cop supports --auto-correct.
|
|
67
|
+
# Configuration parameters: Width, IgnoredPatterns.
|
|
68
|
+
Layout/IndentationWidth:
|
|
69
|
+
Exclude:
|
|
70
|
+
- 'spec/system/products_spec.rb'
|
|
71
|
+
|
|
72
|
+
# Offense count: 4
|
|
73
|
+
# Cop supports --auto-correct.
|
|
74
|
+
# Configuration parameters: EnforcedStyle, IndentationWidth.
|
|
75
|
+
# SupportedStyles: aligned, indented, indented_relative_to_receiver
|
|
76
|
+
Layout/MultilineMethodCallIndentation:
|
|
77
|
+
Exclude:
|
|
78
|
+
- 'app/controllers/spree/products_controller.rb'
|
|
79
|
+
|
|
80
|
+
# Offense count: 6
|
|
81
|
+
Lint/AmbiguousBlockAssociation:
|
|
82
|
+
Exclude:
|
|
83
|
+
- 'spec/controllers/spree/checkout_controller_spec.rb'
|
|
84
|
+
- 'spec/controllers/spree/current_order_tracking_spec.rb'
|
|
85
|
+
|
|
86
|
+
# Offense count: 1
|
|
87
|
+
# Configuration parameters: AllowSafeAssignment.
|
|
88
|
+
Lint/AssignmentInCondition:
|
|
89
|
+
Exclude:
|
|
90
|
+
- 'app/controllers/spree/orders_controller.rb'
|
|
91
|
+
|
|
92
|
+
# Offense count: 12
|
|
93
|
+
Metrics/AbcSize:
|
|
94
|
+
Max: 41
|
|
95
|
+
|
|
96
|
+
# Offense count: 1
|
|
97
|
+
# Configuration parameters: CountComments, ExcludedMethods.
|
|
98
|
+
# ExcludedMethods: refine
|
|
99
|
+
Metrics/BlockLength:
|
|
100
|
+
Max: 27
|
|
101
|
+
|
|
102
|
+
# Offense count: 1
|
|
103
|
+
# Configuration parameters: CountComments.
|
|
104
|
+
Metrics/ClassLength:
|
|
105
|
+
Max: 186
|
|
106
|
+
|
|
107
|
+
# Offense count: 3
|
|
108
|
+
Metrics/CyclomaticComplexity:
|
|
109
|
+
Max: 9
|
|
110
|
+
|
|
111
|
+
# Offense count: 11
|
|
112
|
+
# Configuration parameters: CountComments, ExcludedMethods.
|
|
113
|
+
Metrics/MethodLength:
|
|
114
|
+
Max: 24
|
|
115
|
+
|
|
116
|
+
# Offense count: 2
|
|
117
|
+
Metrics/PerceivedComplexity:
|
|
118
|
+
Max: 9
|
|
119
|
+
|
|
120
|
+
# Offense count: 8
|
|
121
|
+
# Cop supports --auto-correct.
|
|
122
|
+
# Configuration parameters: EnforcedStyle, ProceduralMethods, FunctionalMethods, IgnoredMethods, AllowBracesOnProceduralOneLiners.
|
|
123
|
+
# SupportedStyles: line_count_based, semantic, braces_for_chaining, always_braces
|
|
124
|
+
# ProceduralMethods: benchmark, bm, bmbm, create, each_with_object, measure, new, realtime, tap, with_object
|
|
125
|
+
# FunctionalMethods: let, let!, subject, watch
|
|
126
|
+
# IgnoredMethods: lambda, proc, it
|
|
127
|
+
Style/BlockDelimiters:
|
|
128
|
+
Exclude:
|
|
129
|
+
- 'spec/controllers/spree/checkout_controller_spec.rb'
|
|
130
|
+
- 'spec/controllers/spree/current_order_tracking_spec.rb'
|
|
131
|
+
- 'spec/controllers/spree/orders_controller_ability_spec.rb'
|
|
132
|
+
- 'spec/controllers/spree/products_controller_spec.rb'
|
|
133
|
+
|
|
134
|
+
# Offense count: 1
|
|
135
|
+
# Cop supports --auto-correct.
|
|
136
|
+
# Configuration parameters: EnforcedStyle, SingleLineConditionsOnly, IncludeTernaryExpressions.
|
|
137
|
+
# SupportedStyles: assign_to_condition, assign_inside_condition
|
|
138
|
+
Style/ConditionalAssignment:
|
|
139
|
+
Exclude:
|
|
140
|
+
- 'app/controllers/spree/products_controller.rb'
|
|
141
|
+
|
|
142
|
+
# Offense count: 1
|
|
143
|
+
# Cop supports --auto-correct.
|
|
144
|
+
Style/ExpandPathArguments:
|
|
145
|
+
Exclude:
|
|
146
|
+
- 'bin/rspec'
|
|
147
|
+
|
|
148
|
+
# Offense count: 2
|
|
149
|
+
# Cop supports --auto-correct.
|
|
150
|
+
# Configuration parameters: EnforcedStyle.
|
|
151
|
+
# SupportedStyles: always, never
|
|
152
|
+
Style/FrozenStringLiteralComment:
|
|
153
|
+
Exclude:
|
|
154
|
+
- 'bin/r'
|
|
155
|
+
- 'config/initializers/assets.rb'
|
|
156
|
+
|
|
157
|
+
# Offense count: 8
|
|
158
|
+
# Configuration parameters: MinBodyLength.
|
|
159
|
+
Style/GuardClause:
|
|
160
|
+
Exclude:
|
|
161
|
+
- 'app/controllers/spree/checkout_controller.rb'
|
|
162
|
+
- 'app/controllers/spree/coupon_codes_controller.rb'
|
|
163
|
+
- 'app/controllers/spree/orders_controller.rb'
|
|
164
|
+
|
|
165
|
+
# Offense count: 1
|
|
166
|
+
# Cop supports --auto-correct.
|
|
167
|
+
Style/IfUnlessModifier:
|
|
168
|
+
Exclude:
|
|
169
|
+
- 'app/controllers/spree/checkout_controller.rb'
|
|
170
|
+
|
|
171
|
+
# Offense count: 2
|
|
172
|
+
# Cop supports --auto-correct.
|
|
173
|
+
# Configuration parameters: PreferredDelimiters.
|
|
174
|
+
Style/PercentLiteralDelimiters:
|
|
175
|
+
Exclude:
|
|
176
|
+
- 'spec/generators/solidus/views/override_generator_spec.rb'
|
|
177
|
+
|
|
178
|
+
# Offense count: 2
|
|
179
|
+
# Cop supports --auto-correct.
|
|
180
|
+
# Configuration parameters: ConvertCodeThatCanStartToReturnNil, Whitelist.
|
|
181
|
+
# Whitelist: present?, blank?, presence, try, try!
|
|
182
|
+
Style/SafeNavigation:
|
|
183
|
+
Exclude:
|
|
184
|
+
- 'app/controllers/spree/checkout_controller.rb'
|
|
185
|
+
- 'app/controllers/spree/orders_controller.rb'
|
|
186
|
+
|
|
187
|
+
# Offense count: 3
|
|
188
|
+
# Cop supports --auto-correct.
|
|
189
|
+
# Configuration parameters: EnforcedStyle.
|
|
190
|
+
# SupportedStyles: use_perl_names, use_english_names
|
|
191
|
+
Style/SpecialGlobalVars:
|
|
192
|
+
Exclude:
|
|
193
|
+
- 'bin/solidus_compare'
|
|
194
|
+
|
|
195
|
+
# Offense count: 787
|
|
196
|
+
# Cop supports --auto-correct.
|
|
197
|
+
# Configuration parameters: EnforcedStyle, ConsistentQuotesInMultiline.
|
|
198
|
+
# SupportedStyles: single_quotes, double_quotes
|
|
199
|
+
Style/StringLiterals:
|
|
200
|
+
Enabled: false
|
|
201
|
+
|
|
202
|
+
# Offense count: 7
|
|
203
|
+
# Cop supports --auto-correct.
|
|
204
|
+
# Configuration parameters: MinSize.
|
|
205
|
+
# SupportedStyles: percent, brackets
|
|
206
|
+
Style/SymbolArray:
|
|
207
|
+
EnforcedStyle: brackets
|
|
208
|
+
|
|
209
|
+
# Offense count: 1
|
|
210
|
+
# Cop supports --auto-correct.
|
|
211
|
+
# Configuration parameters: EnforcedStyleForMultiline.
|
|
212
|
+
# SupportedStylesForMultiline: comma, consistent_comma, no_comma
|
|
213
|
+
Style/TrailingCommaInArguments:
|
|
214
|
+
Exclude:
|
|
215
|
+
- 'spec/system/free_shipping_promotions_spec.rb'
|
|
216
|
+
|
|
217
|
+
# Offense count: 1
|
|
218
|
+
# Cop supports --auto-correct.
|
|
219
|
+
Style/WhileUntilModifier:
|
|
220
|
+
Exclude:
|
|
221
|
+
- 'spec/controllers/spree/checkout_controller_spec.rb'
|
|
222
|
+
|
|
223
|
+
# Offense count: 1
|
|
224
|
+
# Cop supports --auto-correct.
|
|
225
|
+
# Configuration parameters: EnforcedStyle, MinSize, WordRegex.
|
|
226
|
+
# SupportedStyles: percent, brackets
|
|
227
|
+
Style/WordArray:
|
|
228
|
+
Exclude:
|
|
229
|
+
- 'spec/controllers/spree/checkout_controller_spec.rb'
|
data/.scss-lint.yml
ADDED