Merge branch 'dhp_cart' into 'development'
[Review] Cart feature See merge request !3
Showing
| ... | ... | @@ -44,6 +44,14 @@ gem 'kaminari', '~> 1.0', '>= 1.0.1' |
| gem 'devise', '~> 4.3' | ||
| # Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. | ||
| gem 'rubocop', '~> 0.49.1' | ||
| # Use jquery as the JavaScript library | ||
| gem 'jquery-rails' | ||
| # FontAwesome | ||
| gem 'font-awesome-rails', '~> 4.7', '>= 4.7.0.2' | ||
| # Bootstrap TouchSpin is a mobile and touch friendly input spinner component for Bootstrap | ||
| gem 'rails-assets-bootstrap-touchspin', source: 'https://rails-assets.org' | ||
| # Simple, efficient background processing for Ruby. | ||
| gem 'sidekiq', '~> 5.0', '>= 5.0.2' | ||
| # Use Capistrano for deployment | ||
| # gem 'capistrano-rails', group: :development | ||
| ... | ... | @@ -63,6 +71,8 @@ group :development do |
| # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring | ||
| gem 'spring' | ||
| gem 'spring-watcher-listen', '~> 2.0.0' | ||
| # When mail is sent from your application, Letter Opener will open a preview in the browser instead of sending. | ||
| gem 'letter_opener', '~> 1.4', '>= 1.4.1' | ||
| end | ||
| # Windows does not include zoneinfo files, so bundle the tzinfo-data gem | ||
| ... | ... |
app/assets/fonts/minicart-font.eot
0 → 100644
File added
app/assets/fonts/minicart-font.svg
0 → 100644
app/assets/fonts/minicart-font.ttf
0 → 100644
File added
app/assets/fonts/minicart-font.woff
0 → 100644
File added
app/assets/javascripts/cart/cart.js
0 → 100644
app/assets/javascripts/shop-14.js
0 → 100644
app/assets/javascripts/theme-main.js
0 → 100644
This diff is collapsed.
Click to expand it.
app/controllers/carts_controller.rb
0 → 100644
app/controllers/line_items_controller.rb
0 → 100644
app/controllers/orders_controller.rb
0 → 100644
app/helpers/carts_helper.rb
0 → 100644
app/helpers/line_items_helper.rb
0 → 100644
app/mailers/order_mailer.rb
0 → 100644
app/models/line_item.rb
0 → 100644
app/models/order.rb
0 → 100644
app/views/carts/_cart_actions.html.erb
0 → 100644
app/views/carts/_cart_quantity.html.erb
0 → 100644
app/views/carts/_cart_table.html.erb
0 → 100644
app/views/carts/_line_item.html.erb
0 → 100644
app/views/carts/index.html.erb
0 → 100644
app/views/line_items/_line_item.html.erb
0 → 100644
app/views/line_items/create.js.erb
0 → 100644
app/views/orders/new.html.erb
0 → 100644
db/migrate/20170612024228_create_orders.rb
0 → 100644
Please
register
or
sign in
to comment