Merge branch 'dhp_apply_bootstrap' into 'development'
[REVIEW] Apply bootstrap See merge request !1
Showing
| ... | @@ -30,6 +30,17 @@ gem 'jbuilder', '~> 2.5' | ... | @@ -30,6 +30,17 @@ gem 'jbuilder', '~> 2.5' |
| # Use ActiveModel has_secure_password | # Use ActiveModel has_secure_password | ||
| # gem 'bcrypt', '~> 3.1.7' | # gem 'bcrypt', '~> 3.1.7' | ||
| # Provides a simple and extremely flexible way to upload files from Ruby applications | |||
| gem 'carrierwave', '~> 1.0' | |||
| # A ruby wrapper for ImageMagick or GraphicsMagick command line. | |||
| gem 'mini_magick' | |||
| # bootstrap-sass is a Sass-powered version of Bootstrap 3 | |||
| gem 'bootstrap-sass', '~> 3.3.6' | |||
| # Faker, a port of Data::Faker from Perl, is used to easily generate fake data: names, addresses, phone numbers, etc. | |||
| gem 'faker', '~> 1.6', '>= 1.6.3' | |||
| # Kaminari is a Scope & Engine based, clean, powerful, agnostic, customizable and sophisticated paginator for Rails 4+ | |||
| gem 'kaminari', '~> 1.0', '>= 1.0.1' | |||
| # Use Capistrano for deployment | # Use Capistrano for deployment | ||
| # gem 'capistrano-rails', group: :development | # gem 'capistrano-rails', group: :development | ||
| ... | ... |
458 Bytes
app/assets/stylesheets/custom.scss
0 → 100644
app/assets/stylesheets/main_style.css
0 → 100644
app/controllers/categories_controller.rb
0 → 100644
app/controllers/products_controller.rb
0 → 100644
app/controllers/static_pages_controller.rb
0 → 100644
app/helpers/products_helper.rb
0 → 100644
app/models/category.rb
0 → 100644
app/models/product.rb
0 → 100644
app/views/categories/show.html.erb
0 → 100644
app/views/kaminari/_first_page.html.erb
0 → 100644
app/views/kaminari/_gap.html.erb
0 → 100644
app/views/kaminari/_last_page.html.erb
0 → 100644
app/views/kaminari/_next_page.html.erb
0 → 100644
app/views/kaminari/_page.html.erb
0 → 100644
app/views/kaminari/_paginator.html.erb
0 → 100644
app/views/kaminari/_prev_page.html.erb
0 → 100644
app/views/products/_product.html.erb
0 → 100644
app/views/products/_recommended.html.erb
0 → 100644
app/views/shared/_sidebar.html.erb
0 → 100644
app/views/static_pages/index.html.erb
0 → 100644
db/migrate/20170606060101_create_products.rb
0 → 100644
db/schema.rb
0 → 100644
Please
register
or
sign in
to comment