├── .gitignore ├── .rspec ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── Versionfile ├── app ├── assets │ ├── javascripts │ │ └── store │ │ │ └── advanced_cart.js │ └── stylesheets │ │ └── store │ │ └── advanced_cart.scss ├── controllers │ └── orders_controller_decorator.rb ├── models │ └── spree │ │ └── advanced_cart_configuration.rb ├── overrides │ └── advanced_cart_outside_cart_form.rb └── views │ └── spree │ └── orders │ ├── _estimate_shipping_cost_table.html.erb │ ├── _shipping_cost_calculation.html.erb │ └── estimate_shipping_cost.js.erb ├── config ├── locales │ ├── en.yml │ └── ru.yml └── routes.rb ├── lib ├── generators │ └── spree_advanced_cart │ │ └── install_generator.rb ├── spree │ └── advanced_cart │ │ └── engine.rb └── spree_advanced_cart.rb ├── spec ├── controllers │ └── order_controller_spec.rb └── spec_helper.rb └── spree_advanced_cart.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romul/spree_advanced_cart/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format 3 | progress 4 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romul/spree_advanced_cart/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romul/spree_advanced_cart/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romul/spree_advanced_cart/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romul/spree_advanced_cart/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romul/spree_advanced_cart/HEAD/Rakefile -------------------------------------------------------------------------------- /Versionfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romul/spree_advanced_cart/HEAD/Versionfile -------------------------------------------------------------------------------- /app/assets/javascripts/store/advanced_cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romul/spree_advanced_cart/HEAD/app/assets/javascripts/store/advanced_cart.js -------------------------------------------------------------------------------- /app/assets/stylesheets/store/advanced_cart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romul/spree_advanced_cart/HEAD/app/assets/stylesheets/store/advanced_cart.scss -------------------------------------------------------------------------------- /app/controllers/orders_controller_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romul/spree_advanced_cart/HEAD/app/controllers/orders_controller_decorator.rb -------------------------------------------------------------------------------- /app/models/spree/advanced_cart_configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romul/spree_advanced_cart/HEAD/app/models/spree/advanced_cart_configuration.rb -------------------------------------------------------------------------------- /app/overrides/advanced_cart_outside_cart_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romul/spree_advanced_cart/HEAD/app/overrides/advanced_cart_outside_cart_form.rb -------------------------------------------------------------------------------- /app/views/spree/orders/_estimate_shipping_cost_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romul/spree_advanced_cart/HEAD/app/views/spree/orders/_estimate_shipping_cost_table.html.erb -------------------------------------------------------------------------------- /app/views/spree/orders/_shipping_cost_calculation.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romul/spree_advanced_cart/HEAD/app/views/spree/orders/_shipping_cost_calculation.html.erb -------------------------------------------------------------------------------- /app/views/spree/orders/estimate_shipping_cost.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romul/spree_advanced_cart/HEAD/app/views/spree/orders/estimate_shipping_cost.js.erb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romul/spree_advanced_cart/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romul/spree_advanced_cart/HEAD/config/locales/ru.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romul/spree_advanced_cart/HEAD/config/routes.rb -------------------------------------------------------------------------------- /lib/generators/spree_advanced_cart/install_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romul/spree_advanced_cart/HEAD/lib/generators/spree_advanced_cart/install_generator.rb -------------------------------------------------------------------------------- /lib/spree/advanced_cart/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romul/spree_advanced_cart/HEAD/lib/spree/advanced_cart/engine.rb -------------------------------------------------------------------------------- /lib/spree_advanced_cart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romul/spree_advanced_cart/HEAD/lib/spree_advanced_cart.rb -------------------------------------------------------------------------------- /spec/controllers/order_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romul/spree_advanced_cart/HEAD/spec/controllers/order_controller_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romul/spree_advanced_cart/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spree_advanced_cart.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romul/spree_advanced_cart/HEAD/spree_advanced_cart.gemspec --------------------------------------------------------------------------------