CRUD product on venshop
Showing
| source 'https://rubygems.org' | source 'https://rubygems.org' | ||
| gem 'rails', '4.2.0.beta4' | |||
| # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | gem 'carrierwave', '0.10.0' | ||
| gem 'rails', '4.1.7' | gem 'mini_magick', '3.8.0' | ||
| # Use sqlite3 as the database for Active Record | gem 'fog', '1.23.0' | ||
| gem 'sqlite3' | gem 'bcrypt', '3.1.7' | ||
| # Use SCSS for stylesheets | gem 'faker', '1.4.2' | ||
| gem 'sass-rails', '~> 4.0.3' | gem 'will_paginate', '3.0.7' | ||
| # Use Uglifier as compressor for JavaScript assets | gem 'bootstrap-will_paginate', '0.0.10' | ||
| gem 'uglifier', '>= 1.3.0' | gem 'bootstrap-sass', '3.2.0.0' | ||
| # Use CoffeeScript for .js.coffee assets and views | gem 'unicorn', '4.8.3' | ||
| gem 'coffee-rails', '~> 4.0.0' | gem 'sass-rails', '5.0.0.beta1' | ||
| # See https://github.com/sstephenson/execjs#readme for more supported runtimes | gem 'uglifier', '2.5.3' | ||
| # gem 'therubyracer', platforms: :ruby | gem 'coffee-rails', '4.0.1' | ||
| gem 'jquery-rails', '4.0.0.beta2' | |||
| # Use jquery as the JavaScript library | gem 'turbolinks', '2.3.0' | ||
| gem 'jquery-rails' | gem 'jbuilder', '2.2.3' | ||
| # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks | gem 'rails-html-sanitizer', '1.0.1' | ||
| gem 'turbolinks' | gem 'sdoc', '0.4.0', group: :doc | ||
| # 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 'mysql2' | gem 'mysql2' | ||
| gem 'vacuum' | gem 'vacuum' | ||
| # Use ActiveModel has_secure_password | group :development, :test do | ||
| # gem 'bcrypt', '~> 3.1.7' | gem 'sqlite3', '1.3.9' | ||
| gem 'byebug', '3.4.0' | |||
| # Use unicorn as the app server | gem 'web-console', '2.0.0.beta3' | ||
| # gem 'unicorn' | gem 'spring', '1.1.3' | ||
| end | |||
| # Use Capistrano for deployment | group :test do | ||
| # gem 'capistrano-rails', group: :development | gem 'minitest-reporters', '1.0.5' | ||
| gem 'mini_backtrace', '0.1.3' | |||
| gem 'guard-minitest', '2.3.1' | |||
| gem 'shoulda' | |||
| end | |||
| # Use debugger | group :production do | ||
| # gem 'debugger', group: [:development, :test] | gem 'rails_12factor', '0.0.2' | ||
| gem 'unicorn', '4.8.3' | |||
| end |
app/assets/javascripts/products.js.coffee
0 → 100644
app/assets/stylesheets/custom.css.scss
0 → 100644
app/assets/stylesheets/products.css.scss
0 → 100644
app/controllers/products_controller.rb
0 → 100644
app/helpers/products_helper.rb
0 → 100644
app/uploaders/image_uploader.rb
0 → 100644
app/views/products/_form.html.erb
0 → 100644
app/views/products/_product.html.erb
0 → 100644
app/views/products/edit.html.erb
0 → 100644
app/views/products/index.html.erb
0 → 100644
app/views/products/new.html.erb
0 → 100644
app/views/products/show.html.erb
0 → 100644
app/views/shared/_error_messages.html.erb
0 → 100644
public/uploads/product/photo/3/images.jpg
0 → 100644
7.71 KB
test/controllers/product_controller_test.rb
0 → 100644
test/controllers/products_controller_test.rb
0 → 100644
test/helpers/product_helper_test.rb
0 → 100644
test/helpers/products_helper_test.rb
0 → 100644
Please
register
or
sign in
to comment