Merge branch 'feature/crud_product' into 'master'
Feature/crud product CRUD products on venshop See merge request !1
Showing
| source 'https://rubygems.org' | ||
| # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | ||
| gem 'rails', '4.1.7' | ||
| # Use sqlite3 as the database for Active Record | ||
| gem 'sqlite3' | ||
| # Use SCSS for stylesheets | ||
| gem 'sass-rails', '~> 4.0.3' | ||
| # Use Uglifier as compressor for JavaScript assets | ||
| gem 'uglifier', '>= 1.3.0' | ||
| # Use CoffeeScript for .js.coffee assets and views | ||
| gem 'coffee-rails', '~> 4.0.0' | ||
| # See https://github.com/sstephenson/execjs#readme for more supported runtimes | ||
| # gem 'therubyracer', platforms: :ruby | ||
| # Use jquery as the JavaScript library | ||
| gem 'jquery-rails' | ||
| # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks | ||
| gem 'turbolinks' | ||
| # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder | ||
| gem 'jbuilder', '~> 2.0' | ||
| # bundle exec rake doc:rails generates the API under doc/api. | ||
| gem 'sdoc', '~> 0.4.0', group: :doc | ||
| gem 'rails', '4.2.0.beta4' | ||
| gem 'carrierwave', '0.10.0' | ||
| gem 'mini_magick', '3.8.0' | ||
| gem 'fog', '1.23.0' | ||
| gem 'bcrypt', '3.1.7' | ||
| gem 'faker', '1.4.2' | ||
| gem 'bootstrap-sass', '3.2.0.0' | ||
| gem 'sass-rails', '5.0.0.beta1' | ||
| gem 'uglifier', '2.5.3' | ||
| gem 'coffee-rails', '4.0.1' | ||
| gem 'jquery-rails', '4.0.0.beta2' | ||
| gem 'turbolinks', '2.3.0' | ||
| gem 'jbuilder', '2.2.3' | ||
| gem 'rails-html-sanitizer', '1.0.1' | ||
| gem 'sdoc', '0.4.0', group: :doc | ||
| gem 'mysql2' | ||
| gem 'vacuum' | ||
| gem 'kaminari' | ||
| # Use ActiveModel has_secure_password | ||
| # gem 'bcrypt', '~> 3.1.7' | ||
| # Use unicorn as the app server | ||
| # gem 'unicorn' | ||
| group :development, :test do | ||
| gem 'sqlite3', '1.3.9' | ||
| gem 'byebug', '3.4.0' | ||
| gem 'web-console', '2.0.0.beta3' | ||
| gem 'spring', '1.1.3' | ||
| gem 'pry' | ||
| end | ||
| # Use Capistrano for deployment | ||
| # gem 'capistrano-rails', group: :development | ||
| group :test do | ||
| gem 'minitest-reporters', '1.0.5' | ||
| gem 'mini_backtrace', '0.1.3' | ||
| gem 'guard-minitest', '2.3.1' | ||
| gem 'shoulda' | ||
| end | ||
| # Use debugger | ||
| # gem 'debugger', group: [:development, :test] | ||
| group :production do | ||
| gem 'rails_12factor', '0.0.2' | ||
| gem 'unicorn', '4.8.3' | ||
| end |
app/assets/javascripts/category.js.coffee
0 → 100644
app/assets/javascripts/home.js.coffee
0 → 100644
app/assets/javascripts/products.js.coffee
0 → 100644
app/assets/stylesheets/category.css.scss
0 → 100644
app/assets/stylesheets/custom.css.scss
0 → 100644
app/assets/stylesheets/home.css.scss
0 → 100644
app/assets/stylesheets/products.css.scss
0 → 100644
app/controllers/admin/products_controller.rb
0 → 100644
app/controllers/categories_controller.rb
0 → 100644
app/controllers/home_controller.rb
0 → 100644
app/controllers/products_controller.rb
0 → 100644
app/helpers/admin/products_helper.rb
0 → 100644
app/helpers/categories_helper.rb
0 → 100644
app/helpers/home_helper.rb
0 → 100644
app/helpers/products_helper.rb
0 → 100644
app/uploaders/image_uploader.rb
0 → 100644
app/views/admin/products/_form.html.erb
0 → 100644
app/views/admin/products/_product.html.erb
0 → 100644
app/views/admin/products/edit.html.erb
0 → 100644
app/views/admin/products/index.html.erb
0 → 100644
app/views/admin/products/new.html.erb
0 → 100644
app/views/admin/products/show.html.erb
0 → 100644
app/views/categories/_category.html.erb
0 → 100644
app/views/categories/show.html.erb
0 → 100644
app/views/home/index.html.erb
0 → 100644
app/views/layouts/_footer.html.erb
0 → 100644
app/views/layouts/_header.html.erb
0 → 100644
app/views/products/_product.html.erb
0 → 100644
app/views/products/show.html.erb
0 → 100644
app/views/shared/_error_messages.html.erb
0 → 100644
test/controllers/home_controller_test.rb
0 → 100644
test/controllers/products_controller_test.rb
0 → 100644
test/helpers/products_helper_test.rb
0 → 100644
Please
register
or
sign in
to comment