Merge branch 'vietth_feat_product_management' into 'develop'
Vietth feature product management See merge request !3
Showing
| ... | @@ -42,6 +42,7 @@ group :development, :test do | ... | @@ -42,6 +42,7 @@ group :development, :test do |
| # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring | # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring | ||
| gem 'spring' | gem 'spring' | ||
| gem 'pry-rails', '~> 0.3.4' | gem 'pry-rails', '~> 0.3.4' | ||
| gem 'letter_opener', '~> 1.4.1' | |||
| end | end | ||
| # template | # template | ||
| ... | @@ -60,3 +61,12 @@ gem 'settingslogic', '~> 2.0.9' | ... | @@ -60,3 +61,12 @@ gem 'settingslogic', '~> 2.0.9' |
| gem 'draper', '~> 2.1.0' | gem 'draper', '~> 2.1.0' | ||
| gem 'devise', '~> 3.5.1' | gem 'devise', '~> 3.5.1' | ||
| gem 'carrierwave', '~> 0.10.0' | |||
| gem 'mini_magick', '~> 3.8.1' | |||
| # Background job | |||
| gem 'sidekiq', '~> 3.4.1' | |||
| # pagination | |||
| gem 'kaminari', '~> 0.16.3' | |||
| \ No newline at end of file |
app/assets/javascripts/product.js.coffee
0 → 100644
app/assets/javascripts/ready.js.coffee
0 → 100644
app/assets/stylesheets/cart.css.scss
0 → 100644
app/assets/stylesheets/product.css.scss
0 → 100644
app/controllers/carts_controller.rb
0 → 100644
app/controllers/categories_controller.rb
0 → 100644
app/controllers/concerns/carts_management.rb
0 → 100644
app/controllers/products_controller.rb
0 → 100644
app/mailers/cart_mailer.rb
0 → 100644
app/models/cart.rb
0 → 100644
app/models/cart_item.rb
0 → 100644
app/uploaders/image_uploader.rb
0 → 100644
app/views/cart_mailer/checkout.html.haml
0 → 100644
app/views/carts/create.html.haml
0 → 100644
app/views/carts/index.html.haml
0 → 100644
app/views/categories/show.html.haml
0 → 100644
app/views/layouts/_cart.html.haml
0 → 100644
app/views/products/add_cart.html.haml
0 → 100644
app/views/products/new.html.haml
0 → 100644
app/views/products/show.html.haml
0 → 100644
config/initializers/kaminari_config.rb
0 → 100644
db/migrate/20150706065803_create_carts.rb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
Please
register
or
sign in
to comment