Add add to cart feature
Showing
| ... | ... | @@ -48,6 +48,10 @@ gem 'rubocop', '~> 0.49.1' |
| gem 'activeadmin', '~> 1.0' | ||
| # CKEditor is a WYSIWYG editor to be used inside web pages | ||
| gem 'ckeditor', '~> 4.2', '>= 4.2.3' | ||
| # I like font-awesome. I like the asset pipeline. I like semantic versioning. If you do too, you're welcome. | ||
| gem 'font-awesome-rails', '~> 4.7', '>= 4.7.0.2' | ||
| # Use jquery as the JavaScript library | ||
| gem 'jquery-rails' | ||
| # Use Capistrano for deployment | ||
| # gem 'capistrano-rails', group: :development | ||
| ... | ... |
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/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/models/line_item.rb
0 → 100644
app/models/order.rb
0 → 100644
app/views/carts/_cart_quantity.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/line_items/new.html.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