diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..b5fbf94 --- /dev/null +++ b/Gemfile @@ -0,0 +1,53 @@ +source 'https://rubygems.org' + +git_source(:github) do |repo_name| + repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/") + "https://github.com/#{repo_name}.git" +end + + +# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' +gem 'rails', '~> 5.0.2' +# Use sqlite3 as the database for Active Record +gem 'sqlite3' +# Use Puma as the app server +gem 'puma', '~> 3.0' +# Use SCSS for stylesheets +gem 'sass-rails', '~> 5.0' +# Use Uglifier as compressor for JavaScript assets +gem 'uglifier', '>= 1.3.0' +# Use CoffeeScript for .coffee assets and views +gem 'coffee-rails', '~> 4.2' +# See https://github.com/rails/execjs#readme for more supported runtimes +# gem 'therubyracer', platforms: :ruby + +# Use jquery as the JavaScript library +gem 'jquery-rails' +# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks +gem 'turbolinks', '~> 5' +# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder +gem 'jbuilder', '~> 2.5' +# Use Redis adapter to run Action Cable in production +# gem 'redis', '~> 3.0' +# Use ActiveModel has_secure_password +# gem 'bcrypt', '~> 3.1.7' + +# Use Capistrano for deployment +# gem 'capistrano-rails', group: :development + +group :development, :test do + # Call 'byebug' anywhere in the code to stop execution and get a debugger console + gem 'byebug', platform: :mri +end + +group :development do + # Access an IRB console on exception pages or by using <%= console %> anywhere in the code. + gem 'web-console', '>= 3.3.0' + gem 'listen', '~> 3.0.5' + # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring + gem 'spring' + gem 'spring-watcher-listen', '~> 2.0.0' +end + +# Windows does not include zoneinfo files, so bundle the tzinfo-data gem +gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..fbb8ced --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,174 @@ +GEM + remote: https://rubygems.org/ + specs: + actioncable (5.0.2) + actionpack (= 5.0.2) + nio4r (>= 1.2, < 3.0) + websocket-driver (~> 0.6.1) + actionmailer (5.0.2) + actionpack (= 5.0.2) + actionview (= 5.0.2) + activejob (= 5.0.2) + mail (~> 2.5, >= 2.5.4) + rails-dom-testing (~> 2.0) + actionpack (5.0.2) + actionview (= 5.0.2) + activesupport (= 5.0.2) + rack (~> 2.0) + rack-test (~> 0.6.3) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.0, >= 1.0.2) + actionview (5.0.2) + activesupport (= 5.0.2) + builder (~> 3.1) + erubis (~> 2.7.0) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.0, >= 1.0.3) + activejob (5.0.2) + activesupport (= 5.0.2) + globalid (>= 0.3.6) + activemodel (5.0.2) + activesupport (= 5.0.2) + activerecord (5.0.2) + activemodel (= 5.0.2) + activesupport (= 5.0.2) + arel (~> 7.0) + activesupport (5.0.2) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (~> 0.7) + minitest (~> 5.1) + tzinfo (~> 1.1) + arel (7.1.4) + bindex (0.5.0) + builder (3.2.3) + byebug (9.0.6) + coffee-rails (4.2.1) + coffee-script (>= 2.2.0) + railties (>= 4.0.0, < 5.2.x) + coffee-script (2.4.1) + coffee-script-source + execjs + coffee-script-source (1.12.2) + concurrent-ruby (1.0.5) + erubis (2.7.0) + execjs (2.7.0) + ffi (1.9.18) + globalid (0.4.0) + activesupport (>= 4.2.0) + i18n (0.8.1) + jbuilder (2.6.3) + activesupport (>= 3.0.0, < 5.2) + multi_json (~> 1.2) + jquery-rails (4.3.1) + rails-dom-testing (>= 1, < 3) + railties (>= 4.2.0) + thor (>= 0.14, < 2.0) + listen (3.0.8) + rb-fsevent (~> 0.9, >= 0.9.4) + rb-inotify (~> 0.9, >= 0.9.7) + loofah (2.0.3) + nokogiri (>= 1.5.9) + mail (2.6.4) + mime-types (>= 1.16, < 4) + method_source (0.8.2) + mime-types (3.1) + mime-types-data (~> 3.2015) + mime-types-data (3.2016.0521) + mini_portile2 (2.1.0) + minitest (5.10.1) + multi_json (1.12.1) + nio4r (2.0.0) + nokogiri (1.7.1) + mini_portile2 (~> 2.1.0) + puma (3.8.2) + rack (2.0.1) + rack-test (0.6.3) + rack (>= 1.0) + rails (5.0.2) + actioncable (= 5.0.2) + actionmailer (= 5.0.2) + actionpack (= 5.0.2) + actionview (= 5.0.2) + activejob (= 5.0.2) + activemodel (= 5.0.2) + activerecord (= 5.0.2) + activesupport (= 5.0.2) + bundler (>= 1.3.0, < 2.0) + railties (= 5.0.2) + sprockets-rails (>= 2.0.0) + rails-dom-testing (2.0.2) + activesupport (>= 4.2.0, < 6.0) + nokogiri (~> 1.6) + rails-html-sanitizer (1.0.3) + loofah (~> 2.0) + railties (5.0.2) + actionpack (= 5.0.2) + activesupport (= 5.0.2) + method_source + rake (>= 0.8.7) + thor (>= 0.18.1, < 2.0) + rake (12.0.0) + rb-fsevent (0.9.8) + rb-inotify (0.9.8) + ffi (>= 0.5.0) + sass (3.4.23) + sass-rails (5.0.6) + railties (>= 4.0.0, < 6) + sass (~> 3.1) + sprockets (>= 2.8, < 4.0) + sprockets-rails (>= 2.0, < 4.0) + tilt (>= 1.1, < 3) + spring (2.0.1) + activesupport (>= 4.2) + spring-watcher-listen (2.0.1) + listen (>= 2.7, < 4.0) + spring (>= 1.2, < 3.0) + sprockets (3.7.1) + concurrent-ruby (~> 1.0) + rack (> 1, < 3) + sprockets-rails (3.2.0) + actionpack (>= 4.0) + activesupport (>= 4.0) + sprockets (>= 3.0.0) + sqlite3 (1.3.13) + thor (0.19.4) + thread_safe (0.3.6) + tilt (2.0.7) + turbolinks (5.0.1) + turbolinks-source (~> 5) + turbolinks-source (5.0.0) + tzinfo (1.2.3) + thread_safe (~> 0.1) + uglifier (3.2.0) + execjs (>= 0.3.0, < 3) + web-console (3.5.0) + actionview (>= 5.0) + activemodel (>= 5.0) + bindex (>= 0.4.0) + railties (>= 5.0) + websocket-driver (0.6.5) + websocket-extensions (>= 0.1.0) + websocket-extensions (0.1.2) + +PLATFORMS + ruby + +DEPENDENCIES + byebug + coffee-rails (~> 4.2) + jbuilder (~> 2.5) + jquery-rails + listen (~> 3.0.5) + puma (~> 3.0) + rails (~> 5.0.2) + sass-rails (~> 5.0) + spring + spring-watcher-listen (~> 2.0.0) + sqlite3 + turbolinks (~> 5) + tzinfo-data + uglifier (>= 1.3.0) + web-console (>= 3.3.0) + +BUNDLED WITH + 1.14.6 diff --git a/README.md b/README.md index 22c03a6..b657e1d 100644 --- a/README.md +++ b/README.md @@ -1 +1,2 @@ -# Library-RoR-V1 \ No newline at end of file +Версія Rails -- 5.0.2 +Додана модель книг, додана можливість редагування, додавання видаляння diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..e85f913 --- /dev/null +++ b/Rakefile @@ -0,0 +1,6 @@ +# Add your own tasks in files placed in lib/tasks ending in .rake, +# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. + +require_relative 'config/application' + +Rails.application.load_tasks diff --git a/app/assets/config/manifest.js b/app/assets/config/manifest.js new file mode 100644 index 0000000..b16e53d --- /dev/null +++ b/app/assets/config/manifest.js @@ -0,0 +1,3 @@ +//= link_tree ../images +//= link_directory ../javascripts .js +//= link_directory ../stylesheets .css diff --git a/app/assets/images/.keep b/app/assets/images/.keep new file mode 100644 index 0000000..e69de29 diff --git a/app/assets/javascripts/application.js b/app/assets/javascripts/application.js new file mode 100644 index 0000000..b12018d --- /dev/null +++ b/app/assets/javascripts/application.js @@ -0,0 +1,16 @@ +// This is a manifest file that'll be compiled into application.js, which will include all the files +// listed below. +// +// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts, +// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path. +// +// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the +// compiled file. JavaScript code in this file should be added after the last require_* statement. +// +// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details +// about supported directives. +// +//= require jquery +//= require jquery_ujs +//= require turbolinks +//= require_tree . diff --git a/app/assets/javascripts/books.coffee b/app/assets/javascripts/books.coffee new file mode 100644 index 0000000..24f83d1 --- /dev/null +++ b/app/assets/javascripts/books.coffee @@ -0,0 +1,3 @@ +# Place all the behaviors and hooks related to the matching controller here. +# All this logic will automatically be available in application.js. +# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/app/assets/javascripts/cable.js b/app/assets/javascripts/cable.js new file mode 100644 index 0000000..71ee1e6 --- /dev/null +++ b/app/assets/javascripts/cable.js @@ -0,0 +1,13 @@ +// Action Cable provides the framework to deal with WebSockets in Rails. +// You can generate new channels where WebSocket features live using the rails generate channel command. +// +//= require action_cable +//= require_self +//= require_tree ./channels + +(function() { + this.App || (this.App = {}); + + App.cable = ActionCable.createConsumer(); + +}).call(this); diff --git a/app/assets/javascripts/channels/.keep b/app/assets/javascripts/channels/.keep new file mode 100644 index 0000000..e69de29 diff --git a/app/assets/javascripts/line_items.coffee b/app/assets/javascripts/line_items.coffee new file mode 100644 index 0000000..24f83d1 --- /dev/null +++ b/app/assets/javascripts/line_items.coffee @@ -0,0 +1,3 @@ +# Place all the behaviors and hooks related to the matching controller here. +# All this logic will automatically be available in application.js. +# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/app/assets/javascripts/products.coffee b/app/assets/javascripts/products.coffee new file mode 100644 index 0000000..24f83d1 --- /dev/null +++ b/app/assets/javascripts/products.coffee @@ -0,0 +1,3 @@ +# Place all the behaviors and hooks related to the matching controller here. +# All this logic will automatically be available in application.js. +# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/app/assets/javascripts/user.coffee b/app/assets/javascripts/user.coffee new file mode 100644 index 0000000..24f83d1 --- /dev/null +++ b/app/assets/javascripts/user.coffee @@ -0,0 +1,3 @@ +# Place all the behaviors and hooks related to the matching controller here. +# All this logic will automatically be available in application.js. +# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css new file mode 100644 index 0000000..0ebd7fe --- /dev/null +++ b/app/assets/stylesheets/application.css @@ -0,0 +1,15 @@ +/* + * This is a manifest file that'll be compiled into application.css, which will include all the files + * listed below. + * + * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets, + * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path. + * + * You're free to add application-wide styles to this file and they'll appear at the bottom of the + * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS + * files in this directory. Styles in this file should be added after the last require_* statement. + * It is generally better to create a new file per style scope. + * + *= require_tree . + *= require_self + */ diff --git a/app/assets/stylesheets/books.scss b/app/assets/stylesheets/books.scss new file mode 100644 index 0000000..9fab565 --- /dev/null +++ b/app/assets/stylesheets/books.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the Books controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/assets/stylesheets/line_items.scss b/app/assets/stylesheets/line_items.scss new file mode 100644 index 0000000..0906a2c --- /dev/null +++ b/app/assets/stylesheets/line_items.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the Line_items controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/assets/stylesheets/products.scss b/app/assets/stylesheets/products.scss new file mode 100644 index 0000000..bff386e --- /dev/null +++ b/app/assets/stylesheets/products.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the Products controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/assets/stylesheets/scaffolds.scss b/app/assets/stylesheets/scaffolds.scss new file mode 100644 index 0000000..4ce4266 --- /dev/null +++ b/app/assets/stylesheets/scaffolds.scss @@ -0,0 +1,89 @@ +body { + background-color: #fff; + color: #333; + font-family: verdana, arial, helvetica, sans-serif; + font-size: 13px; + line-height: 18px; + margin: 33px; +} + +p, ol, ul, td { + font-family: verdana, arial, helvetica, sans-serif; + font-size: 13px; + line-height: 18px; + margin: 33px; +} + +pre { + background-color: #eee; + padding: 10px; + font-size: 11px; +} + +a { + color: #000; + + &:visited { + color: #666; + } + + &:hover { + color: #fff; + background-color: #000; + } +} + +th { + padding-bottom: 5px; +} + +td { + padding-bottom: 7px; + padding-left: 5px; + padding-right: 5px; +} + +div { + &.field, &.actions { + margin-bottom: 10px; + } +} + +#notice { + color: green; +} + +.field_with_errors { + padding: 2px; + background-color: red; + display: table; +} + +#error_explanation { + width: 450px; + border: 2px solid red; + padding: 7px; + padding-bottom: 0; + margin-bottom: 20px; + background-color: #f0f0f0; + + h2 { + text-align: left; + font-weight: bold; + padding: 5px 5px 5px 15px; + font-size: 12px; + margin: -7px; + margin-bottom: 0; + background-color: #c00; + color: #fff; + } + + ul li { + font-size: 12px; + list-style: square; + } +} + +label { + display: block; +} diff --git a/app/assets/stylesheets/user.scss b/app/assets/stylesheets/user.scss new file mode 100644 index 0000000..c47a13e --- /dev/null +++ b/app/assets/stylesheets/user.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the User controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/channels/application_cable/channel.rb b/app/channels/application_cable/channel.rb new file mode 100644 index 0000000..d672697 --- /dev/null +++ b/app/channels/application_cable/channel.rb @@ -0,0 +1,4 @@ +module ApplicationCable + class Channel < ActionCable::Channel::Base + end +end diff --git a/app/channels/application_cable/connection.rb b/app/channels/application_cable/connection.rb new file mode 100644 index 0000000..0ff5442 --- /dev/null +++ b/app/channels/application_cable/connection.rb @@ -0,0 +1,4 @@ +module ApplicationCable + class Connection < ActionCable::Connection::Base + end +end diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb new file mode 100644 index 0000000..1c07694 --- /dev/null +++ b/app/controllers/application_controller.rb @@ -0,0 +1,3 @@ +class ApplicationController < ActionController::Base + protect_from_forgery with: :exception +end diff --git a/app/controllers/books_controller.rb b/app/controllers/books_controller.rb new file mode 100644 index 0000000..ac9504c --- /dev/null +++ b/app/controllers/books_controller.rb @@ -0,0 +1,74 @@ +class BooksController < ApplicationController + before_action :set_book, only: [:show, :edit, :update, :destroy] + + # GET /books + # GET /books.json + def index + @books = Book.all + end + + # GET /books/1 + # GET /books/1.json + def show + end + + # GET /books/new + def new + @book = Book.new + end + + # GET /books/1/edit + def edit + end + + # POST /books + # POST /books.json + def create + @book = Book.new(book_params) + + respond_to do |format| + if @book.save + format.html { redirect_to @book, notice: 'Книга успішно додана' } + format.json { render :show, status: :created, location: @book } + else + format.html { render :new } + format.json { render json: @book.errors, status: :unprocessable_entity } + end + end + end + + # PATCH/PUT /books/1 + # PATCH/PUT /books/1.json + def update + respond_to do |format| + if @book.update(book_params) + format.html { redirect_to @book, notice: 'Книга успішно змінена' } + format.json { render :show, status: :ok, location: @book } + else + format.html { render :edit } + format.json { render json: @book.errors, status: :unprocessable_entity } + end + end + end + + # DELETE /books/1 + # DELETE /books/1.json + def destroy + @book.destroy + respond_to do |format| + format.html { redirect_to books_url, notice: 'Книга успішно видалена' } + format.json { head :no_content } + end + end + + private + # Use callbacks to share common setup or constraints between actions. + def set_book + @book = Book.find(params[:id]) + end + + # Never trust parameters from the scary internet, only allow the white list through. + def book_params + params.require(:book).permit(:title, :auth, :zhanr, :pages_qty, :description, :image_url) + end +end diff --git a/app/controllers/concerns/.keep b/app/controllers/concerns/.keep new file mode 100644 index 0000000..e69de29 diff --git a/app/controllers/line_items_controller.rb b/app/controllers/line_items_controller.rb new file mode 100644 index 0000000..c9b1cff --- /dev/null +++ b/app/controllers/line_items_controller.rb @@ -0,0 +1,91 @@ +class LineItemsController < ApplicationController + before_action :set_line_item, only: [:show, :edit, :update, :destroy] + + # GET /line_items + # GET /line_items.json + def index + @line_items = LineItem.all + + respond_to do |format| + format.html # index.html.erb + format.json { render json: @line_items } + end + end + + # GET /line_items/1 + # GET /line_items/1.json + def show + @line_item = LineItem.find(params[:id]) + + respond_to do |format| + format.html # show.html.erb + format.json { render json: @line_item } + end + end + + # GET /line_items/new + def new + @line_item = LineItem.new + + respond_to do |format| + format.html # new.html.erb + format.json { render json: @line_item } + end + end + + # GET /line_items/1/edit + def edit + @line_item = LineItem.find(params[:id]) + end + + # POST /line_items + # POST /line_items.json + def create + @line_item = LineItem.new(line_item_params) + + respond_to do |format| + if @line_item.save + format.html { redirect_to @line_item, notice: 'Line item was successfully created.' } + format.json { render :show, status: :created, location: @line_item } + else + format.html { render :new } + format.json { render json: @line_item.errors, status: :unprocessable_entity } + end + end + end + + # PATCH/PUT /line_items/1 + # PATCH/PUT /line_items/1.json + def update + respond_to do |format| + if @line_item.update(line_item_params) + format.html { redirect_to @line_item, notice: 'Line item was successfully updated.' } + format.json { render :show, status: :ok, location: @line_item } + else + format.html { render :edit } + format.json { render json: @line_item.errors, status: :unprocessable_entity } + end + end + end + + # DELETE /line_items/1 + # DELETE /line_items/1.json + def destroy + @line_item.destroy + respond_to do |format| + format.html { redirect_to line_items_url, notice: 'Line item was successfully destroyed.' } + format.json { head :no_content } + end + end + + private + # Use callbacks to share common setup or constraints between actions. + def set_line_item + @line_item = LineItem.find(params[:id]) + end + + # Never trust parameters from the scary internet, only allow the white list through. + def line_item_params + params.require(:line_item).permit(:product_id) + end +end diff --git a/app/controllers/products_controller.rb b/app/controllers/products_controller.rb new file mode 100644 index 0000000..bc0840b --- /dev/null +++ b/app/controllers/products_controller.rb @@ -0,0 +1,92 @@ +class ProductsController < ApplicationController + + before_action :set_product, only: [:show, :edit, :update, :destroy] + + # GET /products + # GET /products.json + def index + @products = Product.all + + respond_to do |format| + format.html # index.html.erb + format.json { render json: @products } + end + end + + # GET /products/1 + # GET /products/1.json + def show + @product = Product.find(params[:id]) + + respond_to do |format| + format.html # show.html.erb + format.json { render json: @product } + end + end + + # GET /products/new + def new + @product = Product.new + + respond_to do |format| + format.html # new.html.erb + format.json { render json: @product } + end + end + + # GET /products/1/edit + def edit + @product = Product.find(params[:id]) + end + + # POST /products + # POST /products.json + def create + @product = Product.new(product_params) + + respond_to do |format| + if @product.save + format.html { redirect_to @product, notice: 'Product was successfully created.' } + format.json { render :show, status: :created, location: @product } + else + format.html { render :new } + format.json { render json: @product.errors, status: :unprocessable_entity } + end + end + end + + # PATCH/PUT /products/1 + # PATCH/PUT /products/1.json + def update + respond_to do |format| + if @product.update(product_params) + format.html { redirect_to @product, notice: 'Product was successfully updated.' } + format.json { render :show, status: :ok, location: @product } + else + format.html { render :edit } + format.json { render json: @product.errors, status: :unprocessable_entity } + end + end + end + + # DELETE /products/1 + # DELETE /products/1.json + def destroy + @product.destroy + respond_to do |format| + format.html { redirect_to products_url, notice: 'Product was successfully destroyed.' } + format.json { head :no_content } + end + end + + private + # Use callbacks to share common setup or constraints between actions. + def set_product + @product = Product.find(params[:id]) + end + + # Never trust parameters from the scary internet, only allow the white list through. + def product_params + params.require(:product).permit(:title, :auth, :zhanr, :pages_qty, :description, :image_url) + end +end diff --git a/app/controllers/user_controller.rb b/app/controllers/user_controller.rb new file mode 100644 index 0000000..e22e26a --- /dev/null +++ b/app/controllers/user_controller.rb @@ -0,0 +1,69 @@ +class UserController < ApplicationController + def new + @user = User.new +end + + + +def create + @user=User.new(params[:user]) + + #p @user + + if @user.save + redirect_to root_path + + + else + render 'new' + end +end + + def login + @user = User.new + end + + def result + form_user = User.new(params[:user]) + @user = User.find_by_email_and_password(form_user.email,form_user.password) + if @user + session[:id]=@user.id + redirect_to member_path + else + @user = User.new + render 'login' + end + end + + + end + + def logout + session[:id]==nil + redirect_to root_path + end + + def profile + @user = User.find(session[:id]) + + end + + + def edit + @user = User.find(session[:id]) + + end + + def update + @user = User.find(session[:id]) + if @user.update_attributes(params[:user]) + redirect_to root_path + else + render 'edit' + end + + + end +end + +end diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb new file mode 100644 index 0000000..de6be79 --- /dev/null +++ b/app/helpers/application_helper.rb @@ -0,0 +1,2 @@ +module ApplicationHelper +end diff --git a/app/helpers/books_helper.rb b/app/helpers/books_helper.rb new file mode 100644 index 0000000..4b9311e --- /dev/null +++ b/app/helpers/books_helper.rb @@ -0,0 +1,2 @@ +module BooksHelper +end diff --git a/app/helpers/line_items_helper.rb b/app/helpers/line_items_helper.rb new file mode 100644 index 0000000..8f607da --- /dev/null +++ b/app/helpers/line_items_helper.rb @@ -0,0 +1,2 @@ +module LineItemsHelper +end diff --git a/app/helpers/products_helper.rb b/app/helpers/products_helper.rb new file mode 100644 index 0000000..ab5c42b --- /dev/null +++ b/app/helpers/products_helper.rb @@ -0,0 +1,2 @@ +module ProductsHelper +end diff --git a/app/helpers/user_helper.rb b/app/helpers/user_helper.rb new file mode 100644 index 0000000..0147c3f --- /dev/null +++ b/app/helpers/user_helper.rb @@ -0,0 +1,2 @@ +module UserHelper +end diff --git a/app/jobs/application_job.rb b/app/jobs/application_job.rb new file mode 100644 index 0000000..a009ace --- /dev/null +++ b/app/jobs/application_job.rb @@ -0,0 +1,2 @@ +class ApplicationJob < ActiveJob::Base +end diff --git a/app/mailers/application_mailer.rb b/app/mailers/application_mailer.rb new file mode 100644 index 0000000..286b223 --- /dev/null +++ b/app/mailers/application_mailer.rb @@ -0,0 +1,4 @@ +class ApplicationMailer < ActionMailer::Base + default from: 'from@example.com' + layout 'mailer' +end diff --git a/app/models/application_record.rb b/app/models/application_record.rb new file mode 100644 index 0000000..10a4cba --- /dev/null +++ b/app/models/application_record.rb @@ -0,0 +1,3 @@ +class ApplicationRecord < ActiveRecord::Base + self.abstract_class = true +end diff --git a/app/models/book.rb b/app/models/book.rb new file mode 100644 index 0000000..bc64071 --- /dev/null +++ b/app/models/book.rb @@ -0,0 +1,8 @@ +class Book < ApplicationRecord + #Валідність даних + + + #before_destroy :ensure_not_referenced_by_any_line_item + + validates :title, :auth, :zhanr, :pages_qty, :description, :image_url, :presence => true +end diff --git a/app/models/concerns/.keep b/app/models/concerns/.keep new file mode 100644 index 0000000..e69de29 diff --git a/app/models/line_item.rb b/app/models/line_item.rb new file mode 100644 index 0000000..be972cd --- /dev/null +++ b/app/models/line_item.rb @@ -0,0 +1,3 @@ +class LineItem < ApplicationRecord::Base + belongs_to :product +end diff --git a/app/models/product.rb b/app/models/product.rb new file mode 100644 index 0000000..17bebf0 --- /dev/null +++ b/app/models/product.rb @@ -0,0 +1,27 @@ +class Product < ActiveRecord::Base + #Валідність даних + + has_many :line_items + #before_destroy :ensure_not_referenced_by_any_line_item + + validates :title, :auth, :zhanr, :pages_qty, :description, :image_url, :presence => true + #validates :price, :numericality # {greater_than_or_equal_to: 0.01 } + #validates :name , :uniqueness => true + #validates :image_url, :allow_blank => true, :format => { + #with: %r{\.(gif|jpg|png)$}i, + #message: 'must be a URL for GIF, JPG or PNG image.' + # Картинка має бути GIF, JPG або PNG формату. + #} + + + #private + # убеждаемся в отсутствии товарных позиций, ссылающихся на данный товар + #def ensure_not_referenced_by_any_line_item + # if line_items.empty? + # return true + # else + # errors.add(:base, 'существуют товарные позиции') + # return false + # end + #end +end \ No newline at end of file diff --git a/app/models/user.rb b/app/models/user.rb new file mode 100644 index 0000000..25253ae --- /dev/null +++ b/app/models/user.rb @@ -0,0 +1,9 @@ +class User < ApplicationRecord + attr_accessible :name, :password, :password_confirmation + + validates :name, :presence => true, + :length => {:maximum => 50} + validates :password, :presence => true, + :confirmation => true, + :length => {:within => 6..40} +end diff --git a/app/views/books/_book.json.jbuilder b/app/views/books/_book.json.jbuilder new file mode 100644 index 0000000..5d13e9c --- /dev/null +++ b/app/views/books/_book.json.jbuilder @@ -0,0 +1,2 @@ +json.extract! book, :id, :title, :auth, :zhanr, :pages_qty, :description, :image_url, :created_at, :updated_at +json.url book_url(book, format: :json) diff --git a/app/views/books/_form.html.erb b/app/views/books/_form.html.erb new file mode 100644 index 0000000..dc1a4ff --- /dev/null +++ b/app/views/books/_form.html.erb @@ -0,0 +1,47 @@ +<%= form_for(book) do |f| %> + <% if book.errors.any? %> +
+

<%= pluralize(book.errors.count, "error") %> prohibited this book from being saved:

+ + +
+ <% end %> + +
+ <%= f.label :"Назва" %> + <%= f.text_field :title %> +
+ +
+ <%= f.label :"Автор" %> + <%= f.text_field :auth %> +
+ +
+ <%= f.label :"Жанр" %> + <%= f.text_field :zhanr %> +
+ +
+ <%= f.label :"Кількість сторінок" %> + <%= f.text_field :pages_qty %> +
+ +
+ <%= f.label :"Опис" %> + <%= f.text_area :description %> +
+ +
+ <%= f.label :"Адреса до картинки" %> + <%= f.text_field :image_url %> +
+ +
+ <%= f.submit %> +
+<% end %> diff --git a/app/views/books/edit.html.erb b/app/views/books/edit.html.erb new file mode 100644 index 0000000..8d48441 --- /dev/null +++ b/app/views/books/edit.html.erb @@ -0,0 +1,6 @@ +

Редагування книги

+ +<%= render 'form', book: @book %> + +<%= link_to 'Показати', @book %> | +<%= link_to 'Назад', books_path %> diff --git a/app/views/books/index.html.erb b/app/views/books/index.html.erb new file mode 100644 index 0000000..9116af6 --- /dev/null +++ b/app/views/books/index.html.erb @@ -0,0 +1,37 @@ +

<%= notice %>

+ +

Книги

+ + + + + + + + + + + + + + + + <% @books.each do |book| %> + + + + + + + + + + + + <% end %> + +
НазваАвторЖанрКільність сторінокОписАдреса до картинки
<%= book.title %><%= book.auth %><%= book.zhanr %><%= book.pages_qty %><%= book.description %><%= book.image_url %><%= link_to 'Показати', book %><%= link_to 'Редагувати', edit_book_path(book) %><%= link_to 'Видалити', book, method: :delete, data: { confirm: 'Ви впевнені?' } %>
+ +
+ +<%= link_to 'Додати нову книгу', new_book_path %> diff --git a/app/views/books/index.json.jbuilder b/app/views/books/index.json.jbuilder new file mode 100644 index 0000000..7ee9cfe --- /dev/null +++ b/app/views/books/index.json.jbuilder @@ -0,0 +1 @@ +json.array! @books, partial: 'books/book', as: :book diff --git a/app/views/books/new.html.erb b/app/views/books/new.html.erb new file mode 100644 index 0000000..9e13717 --- /dev/null +++ b/app/views/books/new.html.erb @@ -0,0 +1,5 @@ +

Додати нову книгу

+ +<%= render 'form', book: @book %> + +<%= link_to 'Назад', books_path %> diff --git a/app/views/books/show.html.erb b/app/views/books/show.html.erb new file mode 100644 index 0000000..688f2ca --- /dev/null +++ b/app/views/books/show.html.erb @@ -0,0 +1,34 @@ +

<%= notice %>

+ +

+ Назва: + <%= @book.title %> +

+ +

+ Автор: + <%= @book.auth %> +

+ +

+ Жанр: + <%= @book.zhanr %> +

+ +

+ Кількість сторінок: + <%= @book.pages_qty %> +

+ +

+ Опис: + <%= @book.description %> +

+ +

+ Адреса до картинки: + <%= @book.image_url %> +

+ +<%= link_to 'Редагувати', edit_book_path(@book) %> | +<%= link_to 'Назад', books_path %> diff --git a/app/views/books/show.json.jbuilder b/app/views/books/show.json.jbuilder new file mode 100644 index 0000000..c1e5174 --- /dev/null +++ b/app/views/books/show.json.jbuilder @@ -0,0 +1 @@ +json.partial! "books/book", book: @book diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb new file mode 100644 index 0000000..f8c6d2d --- /dev/null +++ b/app/views/layouts/application.html.erb @@ -0,0 +1,14 @@ + + + + Lproj1 + <%= csrf_meta_tags %> + + <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %> + <%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %> + + + + <%= yield %> + + diff --git a/app/views/layouts/mailer.html.erb b/app/views/layouts/mailer.html.erb new file mode 100644 index 0000000..cbd34d2 --- /dev/null +++ b/app/views/layouts/mailer.html.erb @@ -0,0 +1,13 @@ + + + + + + + + + <%= yield %> + + diff --git a/app/views/layouts/mailer.text.erb b/app/views/layouts/mailer.text.erb new file mode 100644 index 0000000..37f0bdd --- /dev/null +++ b/app/views/layouts/mailer.text.erb @@ -0,0 +1 @@ +<%= yield %> diff --git a/app/views/line_items/_form.html.erb b/app/views/line_items/_form.html.erb new file mode 100644 index 0000000..ae5298f --- /dev/null +++ b/app/views/line_items/_form.html.erb @@ -0,0 +1,22 @@ +<%= form_for(@line_item) do |f| %> + <% if @line_item.errors.any? %> +
+

<%= pluralize(@line_item.errors.count, "error") %> prohibited this line_item from being saved:

+ + +
+ <% end %> + +
+ <%= f.label :product_id %> + <%= f.number_field :product_id %> +
+ +
+ <%= f.submit %> +
+<% end %> diff --git a/app/views/line_items/_line_item.json.jbuilder b/app/views/line_items/_line_item.json.jbuilder new file mode 100644 index 0000000..17a2626 --- /dev/null +++ b/app/views/line_items/_line_item.json.jbuilder @@ -0,0 +1,2 @@ +json.extract! line_item, :id, :product_id, :created_at, :updated_at +json.url line_item_url(line_item, format: :json) diff --git a/app/views/line_items/edit.html.erb b/app/views/line_items/edit.html.erb new file mode 100644 index 0000000..984e144 --- /dev/null +++ b/app/views/line_items/edit.html.erb @@ -0,0 +1,6 @@ +

Editing Line Item

+ +<%= render 'form' %> + +<%= link_to 'Show', @line_item %> | +<%= link_to 'Back', line_items_path %> diff --git a/app/views/line_items/index.html.erb b/app/views/line_items/index.html.erb new file mode 100644 index 0000000..010d4ae --- /dev/null +++ b/app/views/line_items/index.html.erb @@ -0,0 +1,26 @@ +

Listing line_items

+ + + + + + + + + + + + <% @line_items.each do |line_item| %> + + + + + + + <% end %> + +
Product
<%= line_item.product_id %><%= link_to 'Show', line_item %><%= link_to 'Edit', edit_line_item_path(line_item) %><%= link_to 'Destroy', line_item, method: :delete, data: { confirm: 'Are you sure?' } %>
+ +
+ +<%= link_to 'New Line Item', new_line_item_path %> diff --git a/app/views/line_items/index.json.jbuilder b/app/views/line_items/index.json.jbuilder new file mode 100644 index 0000000..0948629 --- /dev/null +++ b/app/views/line_items/index.json.jbuilder @@ -0,0 +1 @@ +json.array! @line_items, partial: 'line_items/line_item', as: :line_item diff --git a/app/views/line_items/new.html.erb b/app/views/line_items/new.html.erb new file mode 100644 index 0000000..4c2d0a0 --- /dev/null +++ b/app/views/line_items/new.html.erb @@ -0,0 +1,5 @@ +

New Line Item

+ +<%= render 'form' %> + +<%= link_to 'Back', line_items_path %> diff --git a/app/views/line_items/show.html.erb b/app/views/line_items/show.html.erb new file mode 100644 index 0000000..6a5c382 --- /dev/null +++ b/app/views/line_items/show.html.erb @@ -0,0 +1,9 @@ +

<%= notice %>

+ +

+ Product: + <%= @line_item.product_id %> +

+ +<%= link_to 'Edit', edit_line_item_path(@line_item) %> | +<%= link_to 'Back', line_items_path %> diff --git a/app/views/line_items/show.json.jbuilder b/app/views/line_items/show.json.jbuilder new file mode 100644 index 0000000..de785f8 --- /dev/null +++ b/app/views/line_items/show.json.jbuilder @@ -0,0 +1 @@ +json.partial! "line_items/line_item", line_item: @line_item diff --git a/app/views/products/_form.html.erb b/app/views/products/_form.html.erb new file mode 100644 index 0000000..dc82662 --- /dev/null +++ b/app/views/products/_form.html.erb @@ -0,0 +1,43 @@ +<%= form_for(@product) do |f| %> + <% if @product.errors.any? %> +
+

<%= pluralize(@product.errors.count, "error") %> prohibited this product from being saved:

+ + +
+ <% end %> + +
+ <%= f.label :title %> + <%= f.text_field :title %> +
+
+ <%= f.label :auth %> + <%= f.text_field :auth %> +
+
+ <%= f.label :zhanr %> + <%= f.text_field :zhanr %> +
+
+ <%= f.label :pages_qty %> + <%= f.text_field :pages_qty %> +
+
+ <%= f.label :description %> + <%= f.text_area :description, rows: 5%> +
+ +
+ <%= f.label :image_url %> + <%= f.text_field :image_url %> +
+ +
+ <%= f.submit %> +
+<% end %> diff --git a/app/views/products/_product.json.jbuilder b/app/views/products/_product.json.jbuilder new file mode 100644 index 0000000..d2cddd5 --- /dev/null +++ b/app/views/products/_product.json.jbuilder @@ -0,0 +1,2 @@ +json.extract! product, :id, :title, :auth, :zhanr, :pages_qty, :description, :image_url, :created_at, :updated_at +json.url product_url(product, format: :json) diff --git a/app/views/products/edit.html.erb b/app/views/products/edit.html.erb new file mode 100644 index 0000000..39f848b --- /dev/null +++ b/app/views/products/edit.html.erb @@ -0,0 +1,6 @@ +

Editing Product

+ +<%= render 'form' %> + +<%= link_to 'Show', @product %> | +<%= link_to 'Back', products_path %> diff --git a/app/views/products/index.html.erb b/app/views/products/index.html.erb new file mode 100644 index 0000000..5ed6ed7 --- /dev/null +++ b/app/views/products/index.html.erb @@ -0,0 +1,35 @@ +

<%= notice %>

+ +

Products

+ + + + + + + + + + + + + + <% @products.each do |product| %> + + + + + + + + + + + + <% end %> + +
TitleCategoriesDescriptionImage url
<%= product.title %><%= product.auth %><%= product.zhanr %><%= product.pages_qty %><%= product.description %><%= product.image_url %><%= link_to 'Show', product %><%= link_to 'Edit', edit_product_path(product) %><%= link_to 'Destroy', product, method: :delete, data: { confirm: 'Are you sure?' } %>
+ +
+ +<%= link_to 'New Product', new_product_path %> diff --git a/app/views/products/index.json.jbuilder b/app/views/products/index.json.jbuilder new file mode 100644 index 0000000..4eec33e --- /dev/null +++ b/app/views/products/index.json.jbuilder @@ -0,0 +1 @@ +json.array! @products, partial: 'products/product', as: :product diff --git a/app/views/products/new.html.erb b/app/views/products/new.html.erb new file mode 100644 index 0000000..18db96a --- /dev/null +++ b/app/views/products/new.html.erb @@ -0,0 +1,5 @@ +

New Product

+ +<%= render 'form' %> + +<%= link_to 'Back', products_path %> diff --git a/app/views/products/show.html.erb b/app/views/products/show.html.erb new file mode 100644 index 0000000..3158fa3 --- /dev/null +++ b/app/views/products/show.html.erb @@ -0,0 +1,30 @@ +

<%= notice %>

+ +

+ Title: + <%= @product.title %> +

+

+ Author: + <%= @product.auth %> +

+

+ Zhanr: + <%= @product.zhanr %> +

+

+ pages_qty: + <%= @product.pages_qty %> +

+

+ Description: + <%= @product.description %> +

+ +

+ Image url: + <%= @product.image_url %> +

+ +<%= link_to 'Edit', edit_product_path(@product) %> | +<%= link_to 'Back', products_path %> diff --git a/app/views/products/show.json.jbuilder b/app/views/products/show.json.jbuilder new file mode 100644 index 0000000..03b16ec --- /dev/null +++ b/app/views/products/show.json.jbuilder @@ -0,0 +1 @@ +json.partial! "products/product", product: @product diff --git a/app/views/user/edit.html.erb b/app/views/user/edit.html.erb new file mode 100644 index 0000000..73ef48b --- /dev/null +++ b/app/views/user/edit.html.erb @@ -0,0 +1,15 @@ +<%= form_for @user, :url => {:action => "update"} do |f|%> +<%= render 'shared/error' %> + + <%= f.label :name %>
+ <%= f.text_field :name %>
+ + <%= f.label :password %>
+ <%= f.password_field :password %>
+ + <%= f.label :password_confirmation, "Confirmation" %>
+ <%= f.password_field :password_confirmation %>
+ + <%= f.submit "Edit"%> + +<% end %> \ No newline at end of file diff --git a/app/views/user/login.html.erb b/app/views/user/login.html.erb new file mode 100644 index 0000000..7862e75 --- /dev/null +++ b/app/views/user/login.html.erb @@ -0,0 +1,11 @@ +<%= form_for @user, :url => {:action => "result"} do |f|%> + + <%= f.label :login %>
+ <%= f.text_field :login %>
+ + <%= f.label :password %>
+ <%= f.password_field :password %>
+ + <%= f.submit "login"%> + +<% end %> \ No newline at end of file diff --git a/app/views/user/new.html.erb b/app/views/user/new.html.erb new file mode 100644 index 0000000..7324a3c --- /dev/null +++ b/app/views/user/new.html.erb @@ -0,0 +1,19 @@ +<%= form_for @user, :url => {:action => "create"}, :html => { :multipart => true } do |f|%> +<%= render 'shared/error' %> + + <%= f.label :name %>
+ <%= f.text_field :name %>
+ + <%= f.label :email %>
+ <%= f.text_field :email %>
+ + <%= f.label :password %>
+ <%= f.password_field :password %>
+ + <%= f.label :password_confirmation, "Confirmation" %>
+ <%= f.password_field :password_confirmation %>
+ + + <%= f.submit "Singup"%> + +<% end %> \ No newline at end of file diff --git a/bin/bundle b/bin/bundle new file mode 100755 index 0000000..66e9889 --- /dev/null +++ b/bin/bundle @@ -0,0 +1,3 @@ +#!/usr/bin/env ruby +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) +load Gem.bin_path('bundler', 'bundle') diff --git a/bin/rails b/bin/rails new file mode 100755 index 0000000..5badb2f --- /dev/null +++ b/bin/rails @@ -0,0 +1,9 @@ +#!/usr/bin/env ruby +begin + load File.expand_path('../spring', __FILE__) +rescue LoadError => e + raise unless e.message.include?('spring') +end +APP_PATH = File.expand_path('../config/application', __dir__) +require_relative '../config/boot' +require 'rails/commands' diff --git a/bin/rake b/bin/rake new file mode 100755 index 0000000..d87d5f5 --- /dev/null +++ b/bin/rake @@ -0,0 +1,9 @@ +#!/usr/bin/env ruby +begin + load File.expand_path('../spring', __FILE__) +rescue LoadError => e + raise unless e.message.include?('spring') +end +require_relative '../config/boot' +require 'rake' +Rake.application.run diff --git a/bin/setup b/bin/setup new file mode 100755 index 0000000..e620b4d --- /dev/null +++ b/bin/setup @@ -0,0 +1,34 @@ +#!/usr/bin/env ruby +require 'pathname' +require 'fileutils' +include FileUtils + +# path to your application root. +APP_ROOT = Pathname.new File.expand_path('../../', __FILE__) + +def system!(*args) + system(*args) || abort("\n== Command #{args} failed ==") +end + +chdir APP_ROOT do + # This script is a starting point to setup your application. + # Add necessary setup steps to this file. + + puts '== Installing dependencies ==' + system! 'gem install bundler --conservative' + system('bundle check') || system!('bundle install') + + # puts "\n== Copying sample files ==" + # unless File.exist?('config/database.yml') + # cp 'config/database.yml.sample', 'config/database.yml' + # end + + puts "\n== Preparing database ==" + system! 'bin/rails db:setup' + + puts "\n== Removing old logs and tempfiles ==" + system! 'bin/rails log:clear tmp:clear' + + puts "\n== Restarting application server ==" + system! 'bin/rails restart' +end diff --git a/bin/spring b/bin/spring new file mode 100755 index 0000000..fb2ec2e --- /dev/null +++ b/bin/spring @@ -0,0 +1,17 @@ +#!/usr/bin/env ruby + +# This file loads spring without using Bundler, in order to be fast. +# It gets overwritten when you run the `spring binstub` command. + +unless defined?(Spring) + require 'rubygems' + require 'bundler' + + lockfile = Bundler::LockfileParser.new(Bundler.default_lockfile.read) + spring = lockfile.specs.detect { |spec| spec.name == "spring" } + if spring + Gem.use_paths Gem.dir, Bundler.bundle_path.to_s, *Gem.path + gem 'spring', spring.version + require 'spring/binstub' + end +end diff --git a/bin/update b/bin/update new file mode 100755 index 0000000..a8e4462 --- /dev/null +++ b/bin/update @@ -0,0 +1,29 @@ +#!/usr/bin/env ruby +require 'pathname' +require 'fileutils' +include FileUtils + +# path to your application root. +APP_ROOT = Pathname.new File.expand_path('../../', __FILE__) + +def system!(*args) + system(*args) || abort("\n== Command #{args} failed ==") +end + +chdir APP_ROOT do + # This script is a way to update your development environment automatically. + # Add necessary update steps to this file. + + puts '== Installing dependencies ==' + system! 'gem install bundler --conservative' + system('bundle check') || system!('bundle install') + + puts "\n== Updating database ==" + system! 'bin/rails db:migrate' + + puts "\n== Removing old logs and tempfiles ==" + system! 'bin/rails log:clear tmp:clear' + + puts "\n== Restarting application server ==" + system! 'bin/rails restart' +end diff --git a/config.ru b/config.ru new file mode 100644 index 0000000..f7ba0b5 --- /dev/null +++ b/config.ru @@ -0,0 +1,5 @@ +# This file is used by Rack-based servers to start the application. + +require_relative 'config/environment' + +run Rails.application diff --git a/config/application.rb b/config/application.rb new file mode 100644 index 0000000..828e43d --- /dev/null +++ b/config/application.rb @@ -0,0 +1,15 @@ +require_relative 'boot' + +require 'rails/all' + +# Require the gems listed in Gemfile, including any gems +# you've limited to :test, :development, or :production. +Bundler.require(*Rails.groups) + +module Lproj1 + class Application < Rails::Application + # Settings in config/environments/* take precedence over those specified here. + # Application configuration should go into files in config/initializers + # -- all .rb files in that directory are automatically loaded. + end +end diff --git a/config/boot.rb b/config/boot.rb new file mode 100644 index 0000000..30f5120 --- /dev/null +++ b/config/boot.rb @@ -0,0 +1,3 @@ +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__) + +require 'bundler/setup' # Set up gems listed in the Gemfile. diff --git a/config/cable.yml b/config/cable.yml new file mode 100644 index 0000000..0bbde6f --- /dev/null +++ b/config/cable.yml @@ -0,0 +1,9 @@ +development: + adapter: async + +test: + adapter: async + +production: + adapter: redis + url: redis://localhost:6379/1 diff --git a/config/database.yml b/config/database.yml new file mode 100644 index 0000000..1c1a37c --- /dev/null +++ b/config/database.yml @@ -0,0 +1,25 @@ +# SQLite version 3.x +# gem install sqlite3 +# +# Ensure the SQLite 3 gem is defined in your Gemfile +# gem 'sqlite3' +# +default: &default + adapter: sqlite3 + pool: 5 + timeout: 5000 + +development: + <<: *default + database: db/development.sqlite3 + +# Warning: The database defined as "test" will be erased and +# re-generated from your development database when you run "rake". +# Do not set this db to the same as development or production. +test: + <<: *default + database: db/test.sqlite3 + +production: + <<: *default + database: db/production.sqlite3 diff --git a/config/environment.rb b/config/environment.rb new file mode 100644 index 0000000..426333b --- /dev/null +++ b/config/environment.rb @@ -0,0 +1,5 @@ +# Load the Rails application. +require_relative 'application' + +# Initialize the Rails application. +Rails.application.initialize! diff --git a/config/environments/development.rb b/config/environments/development.rb new file mode 100644 index 0000000..6f71970 --- /dev/null +++ b/config/environments/development.rb @@ -0,0 +1,54 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # In the development environment your application's code is reloaded on + # every request. This slows down response time but is perfect for development + # since you don't have to restart the web server when you make code changes. + config.cache_classes = false + + # Do not eager load code on boot. + config.eager_load = false + + # Show full error reports. + config.consider_all_requests_local = true + + # Enable/disable caching. By default caching is disabled. + if Rails.root.join('tmp/caching-dev.txt').exist? + config.action_controller.perform_caching = true + + config.cache_store = :memory_store + config.public_file_server.headers = { + 'Cache-Control' => 'public, max-age=172800' + } + else + config.action_controller.perform_caching = false + + config.cache_store = :null_store + end + + # Don't care if the mailer can't send. + config.action_mailer.raise_delivery_errors = false + + config.action_mailer.perform_caching = false + + # Print deprecation notices to the Rails logger. + config.active_support.deprecation = :log + + # Raise an error on page load if there are pending migrations. + config.active_record.migration_error = :page_load + + # Debug mode disables concatenation and preprocessing of assets. + # This option may cause significant delays in view rendering with a large + # number of complex assets. + config.assets.debug = true + + # Suppress logger output for asset requests. + config.assets.quiet = true + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true + + # Use an evented file watcher to asynchronously detect changes in source code, + # routes, locales, etc. This feature depends on the listen gem. + config.file_watcher = ActiveSupport::EventedFileUpdateChecker +end diff --git a/config/environments/production.rb b/config/environments/production.rb new file mode 100644 index 0000000..b9ee662 --- /dev/null +++ b/config/environments/production.rb @@ -0,0 +1,86 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # Code is not reloaded between requests. + config.cache_classes = true + + # Eager load code on boot. This eager loads most of Rails and + # your application in memory, allowing both threaded web servers + # and those relying on copy on write to perform better. + # Rake tasks automatically ignore this option for performance. + config.eager_load = true + + # Full error reports are disabled and caching is turned on. + config.consider_all_requests_local = false + config.action_controller.perform_caching = true + + # Disable serving static files from the `/public` folder by default since + # Apache or NGINX already handles this. + config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present? + + # Compress JavaScripts and CSS. + config.assets.js_compressor = :uglifier + # config.assets.css_compressor = :sass + + # Do not fallback to assets pipeline if a precompiled asset is missed. + config.assets.compile = false + + # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb + + # Enable serving of images, stylesheets, and JavaScripts from an asset server. + # config.action_controller.asset_host = 'http://assets.example.com' + + # Specifies the header that your server uses for sending files. + # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache + # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX + + # Mount Action Cable outside main process or domain + # config.action_cable.mount_path = nil + # config.action_cable.url = 'wss://example.com/cable' + # config.action_cable.allowed_request_origins = [ 'http://example.com', /http:\/\/example.*/ ] + + # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. + # config.force_ssl = true + + # Use the lowest log level to ensure availability of diagnostic information + # when problems arise. + config.log_level = :debug + + # Prepend all log lines with the following tags. + config.log_tags = [ :request_id ] + + # Use a different cache store in production. + # config.cache_store = :mem_cache_store + + # Use a real queuing backend for Active Job (and separate queues per environment) + # config.active_job.queue_adapter = :resque + # config.active_job.queue_name_prefix = "lproj1_#{Rails.env}" + config.action_mailer.perform_caching = false + + # Ignore bad email addresses and do not raise email delivery errors. + # Set this to true and configure the email server for immediate delivery to raise delivery errors. + # config.action_mailer.raise_delivery_errors = false + + # Enable locale fallbacks for I18n (makes lookups for any locale fall back to + # the I18n.default_locale when a translation cannot be found). + config.i18n.fallbacks = true + + # Send deprecation notices to registered listeners. + config.active_support.deprecation = :notify + + # Use default logging formatter so that PID and timestamp are not suppressed. + config.log_formatter = ::Logger::Formatter.new + + # Use a different logger for distributed setups. + # require 'syslog/logger' + # config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name') + + if ENV["RAILS_LOG_TO_STDOUT"].present? + logger = ActiveSupport::Logger.new(STDOUT) + logger.formatter = config.log_formatter + config.logger = ActiveSupport::TaggedLogging.new(logger) + end + + # Do not dump schema after migrations. + config.active_record.dump_schema_after_migration = false +end diff --git a/config/environments/test.rb b/config/environments/test.rb new file mode 100644 index 0000000..30587ef --- /dev/null +++ b/config/environments/test.rb @@ -0,0 +1,42 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # The test environment is used exclusively to run your application's + # test suite. You never need to work with it otherwise. Remember that + # your test database is "scratch space" for the test suite and is wiped + # and recreated between test runs. Don't rely on the data there! + config.cache_classes = true + + # Do not eager load code on boot. This avoids loading your whole application + # just for the purpose of running a single test. If you are using a tool that + # preloads Rails for running tests, you may have to set it to true. + config.eager_load = false + + # Configure public file server for tests with Cache-Control for performance. + config.public_file_server.enabled = true + config.public_file_server.headers = { + 'Cache-Control' => 'public, max-age=3600' + } + + # Show full error reports and disable caching. + config.consider_all_requests_local = true + config.action_controller.perform_caching = false + + # Raise exceptions instead of rendering exception templates. + config.action_dispatch.show_exceptions = false + + # Disable request forgery protection in test environment. + config.action_controller.allow_forgery_protection = false + config.action_mailer.perform_caching = false + + # Tell Action Mailer not to deliver emails to the real world. + # The :test delivery method accumulates sent emails in the + # ActionMailer::Base.deliveries array. + config.action_mailer.delivery_method = :test + + # Print deprecation notices to the stderr. + config.active_support.deprecation = :stderr + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true +end diff --git a/config/initializers/application_controller_renderer.rb b/config/initializers/application_controller_renderer.rb new file mode 100644 index 0000000..51639b6 --- /dev/null +++ b/config/initializers/application_controller_renderer.rb @@ -0,0 +1,6 @@ +# Be sure to restart your server when you modify this file. + +# ApplicationController.renderer.defaults.merge!( +# http_host: 'example.org', +# https: false +# ) diff --git a/config/initializers/assets.rb b/config/initializers/assets.rb new file mode 100644 index 0000000..01ef3e6 --- /dev/null +++ b/config/initializers/assets.rb @@ -0,0 +1,11 @@ +# Be sure to restart your server when you modify this file. + +# Version of your assets, change this if you want to expire all your assets. +Rails.application.config.assets.version = '1.0' + +# Add additional assets to the asset load path +# Rails.application.config.assets.paths << Emoji.images_path + +# Precompile additional assets. +# application.js, application.css, and all non-JS/CSS in app/assets folder are already added. +# Rails.application.config.assets.precompile += %w( search.js ) diff --git a/config/initializers/backtrace_silencers.rb b/config/initializers/backtrace_silencers.rb new file mode 100644 index 0000000..59385cd --- /dev/null +++ b/config/initializers/backtrace_silencers.rb @@ -0,0 +1,7 @@ +# Be sure to restart your server when you modify this file. + +# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. +# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ } + +# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code. +# Rails.backtrace_cleaner.remove_silencers! diff --git a/config/initializers/cookies_serializer.rb b/config/initializers/cookies_serializer.rb new file mode 100644 index 0000000..5a6a32d --- /dev/null +++ b/config/initializers/cookies_serializer.rb @@ -0,0 +1,5 @@ +# Be sure to restart your server when you modify this file. + +# Specify a serializer for the signed and encrypted cookie jars. +# Valid options are :json, :marshal, and :hybrid. +Rails.application.config.action_dispatch.cookies_serializer = :json diff --git a/config/initializers/filter_parameter_logging.rb b/config/initializers/filter_parameter_logging.rb new file mode 100644 index 0000000..4a994e1 --- /dev/null +++ b/config/initializers/filter_parameter_logging.rb @@ -0,0 +1,4 @@ +# Be sure to restart your server when you modify this file. + +# Configure sensitive parameters which will be filtered from the log file. +Rails.application.config.filter_parameters += [:password] diff --git a/config/initializers/inflections.rb b/config/initializers/inflections.rb new file mode 100644 index 0000000..ac033bf --- /dev/null +++ b/config/initializers/inflections.rb @@ -0,0 +1,16 @@ +# Be sure to restart your server when you modify this file. + +# Add new inflection rules using the following format. Inflections +# are locale specific, and you may define rules for as many different +# locales as you wish. All of these examples are active by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.plural /^(ox)$/i, '\1en' +# inflect.singular /^(ox)en/i, '\1' +# inflect.irregular 'person', 'people' +# inflect.uncountable %w( fish sheep ) +# end + +# These inflection rules are supported but not enabled by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.acronym 'RESTful' +# end diff --git a/config/initializers/mime_types.rb b/config/initializers/mime_types.rb new file mode 100644 index 0000000..dc18996 --- /dev/null +++ b/config/initializers/mime_types.rb @@ -0,0 +1,4 @@ +# Be sure to restart your server when you modify this file. + +# Add new mime types for use in respond_to blocks: +# Mime::Type.register "text/richtext", :rtf diff --git a/config/initializers/new_framework_defaults.rb b/config/initializers/new_framework_defaults.rb new file mode 100644 index 0000000..671abb6 --- /dev/null +++ b/config/initializers/new_framework_defaults.rb @@ -0,0 +1,24 @@ +# Be sure to restart your server when you modify this file. +# +# This file contains migration options to ease your Rails 5.0 upgrade. +# +# Read the Guide for Upgrading Ruby on Rails for more info on each option. + +# Enable per-form CSRF tokens. Previous versions had false. +Rails.application.config.action_controller.per_form_csrf_tokens = true + +# Enable origin-checking CSRF mitigation. Previous versions had false. +Rails.application.config.action_controller.forgery_protection_origin_check = true + +# Make Ruby 2.4 preserve the timezone of the receiver when calling `to_time`. +# Previous versions had false. +ActiveSupport.to_time_preserves_timezone = true + +# Require `belongs_to` associations by default. Previous versions had false. +Rails.application.config.active_record.belongs_to_required_by_default = true + +# Do not halt callback chains when a callback returns false. Previous versions had true. +ActiveSupport.halt_callback_chains_on_return_false = false + +# Configure SSL options to enable HSTS with subdomains. Previous versions had false. +Rails.application.config.ssl_options = { hsts: { subdomains: true } } diff --git a/config/initializers/session_store.rb b/config/initializers/session_store.rb new file mode 100644 index 0000000..478e2d3 --- /dev/null +++ b/config/initializers/session_store.rb @@ -0,0 +1,3 @@ +# Be sure to restart your server when you modify this file. + +Rails.application.config.session_store :cookie_store, key: '_lproj1_session' diff --git a/config/initializers/wrap_parameters.rb b/config/initializers/wrap_parameters.rb new file mode 100644 index 0000000..bbfc396 --- /dev/null +++ b/config/initializers/wrap_parameters.rb @@ -0,0 +1,14 @@ +# Be sure to restart your server when you modify this file. + +# This file contains settings for ActionController::ParamsWrapper which +# is enabled by default. + +# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array. +ActiveSupport.on_load(:action_controller) do + wrap_parameters format: [:json] +end + +# To enable root element in JSON for ActiveRecord objects. +# ActiveSupport.on_load(:active_record) do +# self.include_root_in_json = true +# end diff --git a/config/locales/en.yml b/config/locales/en.yml new file mode 100644 index 0000000..0653957 --- /dev/null +++ b/config/locales/en.yml @@ -0,0 +1,23 @@ +# Files in the config/locales directory are used for internationalization +# and are automatically loaded by Rails. If you want to use locales other +# than English, add the necessary files in this directory. +# +# To use the locales, use `I18n.t`: +# +# I18n.t 'hello' +# +# In views, this is aliased to just `t`: +# +# <%= t('hello') %> +# +# To use a different locale, set it with `I18n.locale`: +# +# I18n.locale = :es +# +# This would use the information in config/locales/es.yml. +# +# To learn more, please read the Rails Internationalization guide +# available at http://guides.rubyonrails.org/i18n.html. + +en: + hello: "Hello world" diff --git a/config/puma.rb b/config/puma.rb new file mode 100644 index 0000000..c7f311f --- /dev/null +++ b/config/puma.rb @@ -0,0 +1,47 @@ +# Puma can serve each request in a thread from an internal thread pool. +# The `threads` method setting takes two numbers a minimum and maximum. +# Any libraries that use thread pools should be configured to match +# the maximum value specified for Puma. Default is set to 5 threads for minimum +# and maximum, this matches the default thread size of Active Record. +# +threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }.to_i +threads threads_count, threads_count + +# Specifies the `port` that Puma will listen on to receive requests, default is 3000. +# +port ENV.fetch("PORT") { 3000 } + +# Specifies the `environment` that Puma will run in. +# +environment ENV.fetch("RAILS_ENV") { "development" } + +# Specifies the number of `workers` to boot in clustered mode. +# Workers are forked webserver processes. If using threads and workers together +# the concurrency of the application would be max `threads` * `workers`. +# Workers do not work on JRuby or Windows (both of which do not support +# processes). +# +# workers ENV.fetch("WEB_CONCURRENCY") { 2 } + +# Use the `preload_app!` method when specifying a `workers` number. +# This directive tells Puma to first boot the application and load code +# before forking the application. This takes advantage of Copy On Write +# process behavior so workers use less memory. If you use this option +# you need to make sure to reconnect any threads in the `on_worker_boot` +# block. +# +# preload_app! + +# The code in the `on_worker_boot` will be called if you are using +# clustered mode by specifying a number of `workers`. After each worker +# process is booted this block will be run, if you are using `preload_app!` +# option you will want to use this block to reconnect to any threads +# or connections that may have been created at application boot, Ruby +# cannot share connections between processes. +# +# on_worker_boot do +# ActiveRecord::Base.establish_connection if defined?(ActiveRecord) +# end + +# Allow puma to be restarted by `rails restart` command. +plugin :tmp_restart diff --git a/config/routes.rb b/config/routes.rb new file mode 100644 index 0000000..852b952 --- /dev/null +++ b/config/routes.rb @@ -0,0 +1,14 @@ +Rails.application.routes.draw do + resources :books + resources :line_items + resources :products + get "products/index" + + root :to => 'books#index' + + get 'edit', to: 'books#edit' + get'index', to: 'books#index' + get 'new', to:'books#new' + get 'show', to: 'books#show' + # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html +end diff --git a/config/secrets.yml b/config/secrets.yml new file mode 100644 index 0000000..5cf7131 --- /dev/null +++ b/config/secrets.yml @@ -0,0 +1,22 @@ +# Be sure to restart your server when you modify this file. + +# Your secret key is used for verifying the integrity of signed cookies. +# If you change this key, all old signed cookies will become invalid! + +# Make sure the secret is at least 30 characters and all random, +# no regular words or you'll be exposed to dictionary attacks. +# You can use `rails secret` to generate a secure secret key. + +# Make sure the secrets in this file are kept private +# if you're sharing your code publicly. + +development: + secret_key_base: b1957e30721e6627001f787272ac228e9d2abf95047e435dce86c2edbc1d94f57908f2cca53fb25c0aaa0f63bc5455e2d4747ff8e98b21d80786ee6017c5ddcc + +test: + secret_key_base: 80564ad3b9fc588742dc925e0aaa6d97ecd078501fb9dc30f776b813600cfba5dd4849badf468d8e9793dbaa9b4a26163e9749ad1003dc25c59a7b51656e34a3 + +# Do not keep production secrets in the repository, +# instead read values from the environment. +production: + secret_key_base: <%= ENV["SECRET_KEY_BASE"] %> diff --git a/config/spring.rb b/config/spring.rb new file mode 100644 index 0000000..c9119b4 --- /dev/null +++ b/config/spring.rb @@ -0,0 +1,6 @@ +%w( + .ruby-version + .rbenv-vars + tmp/restart.txt + tmp/caching-dev.txt +).each { |path| Spring.watch(path) } diff --git a/db/development.sqlite3 b/db/development.sqlite3 new file mode 100644 index 0000000..e949943 Binary files /dev/null and b/db/development.sqlite3 differ diff --git a/db/migrate/20170425123850_create_products.rb b/db/migrate/20170425123850_create_products.rb new file mode 100644 index 0000000..3e9f122 --- /dev/null +++ b/db/migrate/20170425123850_create_products.rb @@ -0,0 +1,14 @@ +class CreateProducts < ActiveRecord::Migration[5.0] + def change + create_table :products do |t| + t.string :title + t.string :auth + t.string :zhanr + t.string :pages_qty + t.text :description + t.string :image_url + + t.timestamps + end + end +end diff --git a/db/migrate/20170425130558_create_line_items.rb b/db/migrate/20170425130558_create_line_items.rb new file mode 100644 index 0000000..982306b --- /dev/null +++ b/db/migrate/20170425130558_create_line_items.rb @@ -0,0 +1,9 @@ +class CreateLineItems < ActiveRecord::Migration[5.0] + def change + create_table :line_items do |t| + t.integer :product_id + + t.timestamps + end + end +end diff --git a/db/migrate/20170425131758_create_users.rb b/db/migrate/20170425131758_create_users.rb new file mode 100644 index 0000000..14be3d6 --- /dev/null +++ b/db/migrate/20170425131758_create_users.rb @@ -0,0 +1,11 @@ +class CreateUsers < ActiveRecord::Migration[5.0] + def change + create_table :users do |t| + t.string :name + t.string :login + t.string :password + + t.timestamps + end + end +end diff --git a/db/migrate/20170427210209_create_books.rb b/db/migrate/20170427210209_create_books.rb new file mode 100644 index 0000000..eb8fcb0 --- /dev/null +++ b/db/migrate/20170427210209_create_books.rb @@ -0,0 +1,14 @@ +class CreateBooks < ActiveRecord::Migration[5.0] + def change + create_table :books do |t| + t.string :title + t.string :auth + t.string :zhanr + t.string :pages_qty + t.text :description + t.string :image_url + + t.timestamps + end + end +end diff --git a/db/schema.rb b/db/schema.rb new file mode 100644 index 0000000..167f4c3 --- /dev/null +++ b/db/schema.rb @@ -0,0 +1,49 @@ +# This file is auto-generated from the current state of the database. Instead +# of editing this file, please use the migrations feature of Active Record to +# incrementally modify your database, and then regenerate this schema definition. +# +# Note that this schema.rb definition is the authoritative source for your +# database schema. If you need to create the application database on another +# system, you should be using db:schema:load, not running all the migrations +# from scratch. The latter is a flawed and unsustainable approach (the more migrations +# you'll amass, the slower it'll run and the greater likelihood for issues). +# +# It's strongly recommended that you check this file into your version control system. + +ActiveRecord::Schema.define(version: 20170427210209) do + + create_table "books", force: :cascade do |t| + t.string "title" + t.string "auth" + t.string "zhanr" + t.string "pages_qty" + t.text "description" + t.string "image_url" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + + create_table "line_items", force: :cascade do |t| + t.integer "product_id" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + + create_table "products", force: :cascade do |t| + t.string "title" + t.string "categories" + t.text "description" + t.string "image_url" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + + create_table "users", force: :cascade do |t| + t.string "name" + t.string "login" + t.string "password" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + +end diff --git a/db/seeds.rb b/db/seeds.rb new file mode 100644 index 0000000..1beea2a --- /dev/null +++ b/db/seeds.rb @@ -0,0 +1,7 @@ +# This file should contain all the record creation needed to seed the database with its default values. +# The data can then be loaded with the rails db:seed command (or created alongside the database with db:setup). +# +# Examples: +# +# movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }]) +# Character.create(name: 'Luke', movie: movies.first) diff --git a/lib/assets/.keep b/lib/assets/.keep new file mode 100644 index 0000000..e69de29 diff --git a/lib/tasks/.keep b/lib/tasks/.keep new file mode 100644 index 0000000..e69de29 diff --git a/log/.keep b/log/.keep new file mode 100644 index 0000000..e69de29 diff --git a/log/development.log b/log/development.log new file mode 100644 index 0000000..4fee3aa --- /dev/null +++ b/log/development.log @@ -0,0 +1,3386 @@ +  (2201.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY) +  (3335.2ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) + ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateProducts (20170425123850) +  (0.1ms) begin transaction +  (2.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "categories" varchar, "description" text, "image_url" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) + SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20170425123850"]] +  (4538.9ms) commit transaction + ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (5.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", 2017-04-25 12:39:41 UTC], ["updated_at", 2017-04-25 12:39:41 UTC]] +  (4500.6ms) commit transaction + ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" +Started GET "/" for 127.0.0.1 at 2017-04-25 15:43:53 +0300 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by ProductsController#index as HTML + Rendering products/index.html.erb within layouts/application + Product Load (0.5ms) SELECT "products".* FROM "products" + Rendered products/index.html.erb within layouts/application (563.0ms) +Completed 500 Internal Server Error in 611ms (ActiveRecord: 1.3ms) + + + +ActionView::Template::Error (undefined local variable or method `new_product_path' for #<#:0x00000004886220> +Did you mean? new_polymorphic_path): + 30: + 31:
+ 32: + 33: <%= link_to 'New Product', new_product_path %> + +app/views/products/index.html.erb:33:in `_app_views_products_index_html_erb___1576657245229042191_38043380' + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (13.8ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.7ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (91.8ms) +Started GET "/" for 127.0.0.1 at 2017-04-25 15:43:57 +0300 +Processing by ProductsController#index as HTML + Rendering products/index.html.erb within layouts/application + Product Load (1.0ms) SELECT "products".* FROM "products" + Rendered products/index.html.erb within layouts/application (540.6ms) +Completed 500 Internal Server Error in 552ms (ActiveRecord: 1.0ms) + + + +ActionView::Template::Error (undefined local variable or method `new_product_path' for #<#:0x00000004635868> +Did you mean? new_polymorphic_path): + 30: + 31:
+ 32: + 33: <%= link_to 'New Product', new_product_path %> + +app/views/products/index.html.erb:33:in `_app_views_products_index_html_erb___1576657245229042191_36811140' + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (11.5ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.8ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.6ms) + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (78.3ms) +Started POST "/__web_console/repl_sessions/71ea4518de6c7962ce3bb73769ec64cd/trace" for 127.0.0.1 at 2017-04-25 15:44:03 +0300 +Started GET "/" for 127.0.0.1 at 2017-04-25 15:45:00 +0300 +Processing by ProductsController#index as HTML + Rendering products/index.html.erb within layouts/application + Product Load (0.3ms) SELECT "products".* FROM "products" + Rendered products/index.html.erb within layouts/application (17.4ms) +Completed 200 OK in 5750ms (Views: 5747.8ms | ActiveRecord: 0.3ms) + + +Started GET "/new" for 127.0.0.1 at 2017-04-25 15:45:09 +0300 +Processing by ProductsController#new as HTML + Rendering products/new.html.erb within layouts/application + Rendered products/_form.html.erb (610.0ms) + Rendered products/new.html.erb within layouts/application (614.0ms) +Completed 500 Internal Server Error in 672ms (ActiveRecord: 1.1ms) + + + +ActionView::Template::Error (undefined method `products_path' for #<#:0x00000004b13cb8> +Did you mean? products_new_path): + 1: <%= form_for(product) do |f| %> + 2: <% if product.errors.any? %> + 3:
+ 4:

<%= pluralize(product.errors.count, "error") %> prohibited this product from being saved:

+ +app/views/products/_form.html.erb:1:in `_app_views_products__form_html_erb__2416697821105653895_38668700' +app/views/products/new.html.erb:3:in `_app_views_products_new_html_erb__1320688303924252066_39436520' + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (20.0ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (117.9ms) +Started GET "/new" for 127.0.0.1 at 2017-04-25 15:45:45 +0300 +Processing by ProductsController#new as HTML + Rendering products/new.html.erb within layouts/application + Rendered products/_form.html.erb (245.2ms) + Rendered products/new.html.erb within layouts/application (247.7ms) +Completed 500 Internal Server Error in 276ms (ActiveRecord: 0.0ms) + + + +ActionView::Template::Error (undefined method `products_path' for #<#:0x007f86b4ab5148> +Did you mean? products_new_path): + 1: <%= form_for(@product) do |f| %> + 2: <% if @product.errors.any? %> + 3:
+ 4:

<%= pluralize(@product.errors.count, "error") %> prohibited this product from being saved:

+ +app/views/products/_form.html.erb:1:in `_app_views_products__form_html_erb__2416697821105653895_70108340744180' +app/views/products/new.html.erb:3:in `_app_views_products_new_html_erb__1320688303924252066_70108266737040' + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (17.6ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.6ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (88.0ms) +Started GET "/new" for 127.0.0.1 at 2017-04-25 15:45:48 +0300 +Processing by ProductsController#new as HTML + Rendering products/new.html.erb within layouts/application + Rendered products/_form.html.erb (256.6ms) + Rendered products/new.html.erb within layouts/application (259.3ms) +Completed 500 Internal Server Error in 273ms (ActiveRecord: 0.0ms) + + + +ActionView::Template::Error (undefined method `products_path' for #<#:0x007f86b20c6e18> +Did you mean? products_new_path): + 1: <%= form_for(@product) do |f| %> + 2: <% if @product.errors.any? %> + 3:
+ 4:

<%= pluralize(@product.errors.count, "error") %> prohibited this product from being saved:

+ +app/views/products/_form.html.erb:1:in `_app_views_products__form_html_erb__2416697821105653895_70108242547960' +app/views/products/new.html.erb:3:in `_app_views_products_new_html_erb__1320688303924252066_70108244753420' + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (20.4ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.5ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (80.1ms) +Started POST "/__web_console/repl_sessions/5bfda901a4657b03b7d9b9254890d09a/trace" for 127.0.0.1 at 2017-04-25 15:45:52 +0300 +Started POST "/__web_console/repl_sessions/5bfda901a4657b03b7d9b9254890d09a/trace" for 127.0.0.1 at 2017-04-25 15:45:53 +0300 +Started POST "/__web_console/repl_sessions/5bfda901a4657b03b7d9b9254890d09a/trace" for 127.0.0.1 at 2017-04-25 15:45:55 +0300 +Started GET "/new" for 127.0.0.1 at 2017-04-25 15:47:45 +0300 +Processing by ProductsController#new as HTML + Rendering products/new.html.erb within layouts/application + Rendered products/_form.html.erb (7.0ms) + Rendered products/new.html.erb within layouts/application (21.2ms) +Completed 500 Internal Server Error in 31ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/home/usertrav/lfpr/lproj1/app/views/products/_form.html.erb:26: syntax error, unexpected tIDENTIFIER, expecting ')' +...( f.text_area :description rows:5);@output_buffer.safe_appen... +... ^): + +app/views/products/_form.html.erb:26: syntax error, unexpected tIDENTIFIER, expecting ')' +app/views/products/new.html.erb:3:in `_app_views_products_new_html_erb__1320688303924252066_70108341883060' + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (31.5ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (66.1ms) +Started GET "/new" for 127.0.0.1 at 2017-04-25 15:48:00 +0300 +Processing by ProductsController#new as HTML + Rendering products/new.html.erb within layouts/application + Rendered products/_form.html.erb (246.6ms) + Rendered products/new.html.erb within layouts/application (257.3ms) +Completed 500 Internal Server Error in 279ms (ActiveRecord: 0.0ms) + + + +ActionView::Template::Error (undefined method `products_path' for #<#:0x007f86bddc19a0> +Did you mean? products_new_path): + 1: <%= form_for(@product) do |f| %> + 2: <% if @product.errors.any? %> + 3:
+ 4:

<%= pluralize(@product.errors.count, "error") %> prohibited this product from being saved:

+ +app/views/products/_form.html.erb:1:in `_app_views_products__form_html_erb__2416697821105653895_70108343739860' +app/views/products/new.html.erb:3:in `_app_views_products_new_html_erb__1320688303924252066_70108343833380' + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (25.1ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.6ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (88.3ms) +Started GET "/new" for 127.0.0.1 at 2017-04-25 15:49:12 +0300 +Processing by ProductsController#new as HTML + Rendering products/new.html.erb within layouts/application + Rendered products/_form.html.erb (336.5ms) + Rendered products/new.html.erb within layouts/application (340.5ms) +Completed 500 Internal Server Error in 366ms (ActiveRecord: 0.0ms) + + + +ActionView::Template::Error (undefined method `products_path' for #<#:0x007f86bdd935c8> +Did you mean? products_new_path): + 1: <%= form_for(@product) do |f| %> + 2: <% if @product.errors.any? %> + 3:
+ 4:

<%= pluralize(@product.errors.count, "error") %> prohibited this product from being saved:

+ +app/views/products/_form.html.erb:1:in `_app_views_products__form_html_erb__2416697821105653895_70108343818720' +app/views/products/new.html.erb:3:in `_app_views_products_new_html_erb__1320688303924252066_70108343738320' + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (16.0ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.9ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (68.4ms) +Started GET "/new" for 127.0.0.1 at 2017-04-25 15:49:14 +0300 +Processing by ProductsController#new as HTML + Rendering products/new.html.erb within layouts/application + Rendered products/_form.html.erb (264.8ms) + Rendered products/new.html.erb within layouts/application (266.7ms) +Completed 500 Internal Server Error in 281ms (ActiveRecord: 0.0ms) + + + +ActionView::Template::Error (undefined method `products_path' for #<#:0x00000003285d68> +Did you mean? products_new_path): + 1: <%= form_for(@product) do |f| %> + 2: <% if @product.errors.any? %> + 3:
+ 4:

<%= pluralize(@product.errors.count, "error") %> prohibited this product from being saved:

+ +app/views/products/_form.html.erb:1:in `_app_views_products__form_html_erb__2416697821105653895_26229780' +app/views/products/new.html.erb:3:in `_app_views_products_new_html_erb__1320688303924252066_26515840' + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (32.5ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.2ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.2ms) + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (90.8ms) +Started GET "/new" for 127.0.0.1 at 2017-04-25 15:49:16 +0300 +Processing by ProductsController#new as HTML + Rendering products/new.html.erb within layouts/application + Rendered products/_form.html.erb (301.2ms) + Rendered products/new.html.erb within layouts/application (303.6ms) +Completed 500 Internal Server Error in 331ms (ActiveRecord: 0.0ms) + + + +ActionView::Template::Error (undefined method `products_path' for #<#:0x007f86bdaa8ea8> +Did you mean? products_new_path): + 1: <%= form_for(@product) do |f| %> + 2: <% if @product.errors.any? %> + 3:
+ 4:

<%= pluralize(@product.errors.count, "error") %> prohibited this product from being saved:

+ +app/views/products/_form.html.erb:1:in `_app_views_products__form_html_erb__2416697821105653895_70108342281500' +app/views/products/new.html.erb:3:in `_app_views_products_new_html_erb__1320688303924252066_70108342209600' + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (16.5ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.2ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (63.1ms) +Started GET "/new" for 127.0.0.1 at 2017-04-25 15:53:56 +0300 + +SyntaxError (/home/usertrav/lfpr/lproj1/app/controllers/products_controller.rb:88: syntax error, unexpected end-of-input, expecting keyword_end): + +app/controllers/products_controller.rb:88: syntax error, unexpected end-of-input, expecting keyword_end + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (11.3ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (78.4ms) +Started GET "/new" for 127.0.0.1 at 2017-04-25 15:54:19 +0300 + +SyntaxError (/home/usertrav/lfpr/lproj1/app/controllers/products_controller.rb:88: syntax error, unexpected end-of-input, expecting keyword_end): + +app/controllers/products_controller.rb:88: syntax error, unexpected end-of-input, expecting keyword_end + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (11.2ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.2ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (68.2ms) +Started GET "/new" for 127.0.0.1 at 2017-04-25 15:54:21 +0300 + +SyntaxError (/home/usertrav/lfpr/lproj1/app/controllers/products_controller.rb:88: syntax error, unexpected end-of-input, expecting keyword_end): + +app/controllers/products_controller.rb:88: syntax error, unexpected end-of-input, expecting keyword_end + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (7.4ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.2ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (75.7ms) +Started GET "/new" for 127.0.0.1 at 2017-04-25 15:55:03 +0300 +Processing by ProductsController#new as HTML +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms) + + + +ArgumentError (The provided regular expression is using multiline anchors (^ or $), which may present a security risk. Did you mean to use \A and \z, or forgot to add the :multiline => true option?): + +app/models/product.rb:5:in `' +app/models/product.rb:1:in `' +app/controllers/products_controller.rb:28:in `new' + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (13.5ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.8ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (64.6ms) +Started GET "/new" for 127.0.0.1 at 2017-04-25 15:55:05 +0300 +Processing by ProductsController#new as HTML +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms) + + + +ArgumentError (The provided regular expression is using multiline anchors (^ or $), which may present a security risk. Did you mean to use \A and \z, or forgot to add the :multiline => true option?): + +app/models/product.rb:5:in `' +app/models/product.rb:1:in `' +app/controllers/products_controller.rb:28:in `new' + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (12.6ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (8.3ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (27.5ms) + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (94.5ms) +Started GET "/new" for 127.0.0.1 at 2017-04-25 15:55:39 +0300 +Processing by ProductsController#new as HTML +Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.0ms) + + + +ArgumentError (The provided regular expression is using multiline anchors (^ or $), which may present a security risk. Did you mean to use \A and \z, or forgot to add the :multiline => true option?): + +app/models/product.rb:5:in `' +app/models/product.rb:1:in `' +app/controllers/products_controller.rb:28:in `new' + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (13.1ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms) + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (77.2ms) +Started GET "/new" for 127.0.0.1 at 2017-04-25 15:55:41 +0300 +Processing by ProductsController#new as HTML +Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.0ms) + + + +ArgumentError (The provided regular expression is using multiline anchors (^ or $), which may present a security risk. Did you mean to use \A and \z, or forgot to add the :multiline => true option?): + +app/models/product.rb:5:in `' +app/models/product.rb:1:in `' +app/controllers/products_controller.rb:28:in `new' + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (15.5ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (68.8ms) +Started GET "/new" for 127.0.0.1 at 2017-04-25 15:56:05 +0300 +Processing by ProductsController#new as HTML +Completed 500 Internal Server Error in 22ms (ActiveRecord: 0.0ms) + + + +ArgumentError (The provided regular expression is using multiline anchors (^ or $), which may present a security risk. Did you mean to use \A and \z, or forgot to add the :multiline => true option?): + +app/models/product.rb:5:in `' +app/models/product.rb:1:in `' +app/controllers/products_controller.rb:28:in `new' + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (20.7ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (63.2ms) +Started GET "/new" for 127.0.0.1 at 2017-04-25 15:57:27 +0300 +Processing by ProductsController#new as HTML +Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.0ms) + + + +ArgumentError (The provided regular expression is using multiline anchors (^ or $), which may present a security risk. Did you mean to use \A and \z, or forgot to add the :multiline => true option?): + +app/models/product.rb:5:in `' +app/models/product.rb:1:in `' +app/controllers/products_controller.rb:28:in `new' + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (17.7ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.3ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (70.8ms) +Started GET "/new" for 127.0.0.1 at 2017-04-25 15:57:28 +0300 +Processing by ProductsController#new as HTML +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms) + + + +ArgumentError (The provided regular expression is using multiline anchors (^ or $), which may present a security risk. Did you mean to use \A and \z, or forgot to add the :multiline => true option?): + +app/models/product.rb:5:in `' +app/models/product.rb:1:in `' +app/controllers/products_controller.rb:28:in `new' + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (21.4ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (94.6ms) +Started GET "/new" for 127.0.0.1 at 2017-04-25 15:57:31 +0300 +Processing by ProductsController#new as HTML +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + + + +ArgumentError (The provided regular expression is using multiline anchors (^ or $), which may present a security risk. Did you mean to use \A and \z, or forgot to add the :multiline => true option?): + +app/models/product.rb:5:in `' +app/models/product.rb:1:in `' +app/controllers/products_controller.rb:28:in `new' + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (24.2ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (91.5ms) +Started GET "/index" for 127.0.0.1 at 2017-04-25 15:57:55 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.0ms) + + + +ArgumentError (The provided regular expression is using multiline anchors (^ or $), which may present a security risk. Did you mean to use \A and \z, or forgot to add the :multiline => true option?): + +app/models/product.rb:5:in `' +app/models/product.rb:1:in `' +app/controllers/products_controller.rb:7:in `index' + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (12.9ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.5ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (67.1ms) +Started GET "/index" for 127.0.0.1 at 2017-04-25 15:57:59 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms) + + + +ArgumentError (The provided regular expression is using multiline anchors (^ or $), which may present a security risk. Did you mean to use \A and \z, or forgot to add the :multiline => true option?): + +app/models/product.rb:5:in `' +app/models/product.rb:1:in `' +app/controllers/products_controller.rb:7:in `index' + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (14.6ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.9ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (85.4ms) +Started GET "/index" for 127.0.0.1 at 2017-04-25 15:58:51 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 19ms (ActiveRecord: 0.0ms) + + + +NameError (uninitialized constant ApplicationRecord::Base): + +app/models/product.rb:1:in `' +app/controllers/products_controller.rb:7:in `index' + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (9.8ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (63.3ms) +Started GET "/index" for 127.0.0.1 at 2017-04-25 15:58:52 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.0ms) + + + +NameError (uninitialized constant ApplicationRecord::Base): + +app/models/product.rb:1:in `' +app/controllers/products_controller.rb:7:in `index' + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (13.1ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.3ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.4ms) + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (70.9ms) +Started POST "/__web_console/repl_sessions/6ba02dc04c0e3f2055ba3731a1f95211/trace" for 127.0.0.1 at 2017-04-25 15:58:56 +0300 +Started GET "/index" for 127.0.0.1 at 2017-04-25 15:59:16 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.0ms) + + + +ArgumentError (The provided regular expression is using multiline anchors (^ or $), which may present a security risk. Did you mean to use \A and \z, or forgot to add the :multiline => true option?): + +app/models/product.rb:5:in `' +app/models/product.rb:1:in `' +app/controllers/products_controller.rb:7:in `index' + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (15.3ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.6ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (74.1ms) +Started GET "/index" for 127.0.0.1 at 2017-04-25 16:05:17 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.0ms) + + + +ArgumentError (The provided regular expression is using multiline anchors (^ or $), which may present a security risk. Did you mean to use \A and \z, or forgot to add the :multiline => true option?): + +app/models/product.rb:5:in `' +app/models/product.rb:1:in `' +app/controllers/products_controller.rb:7:in `index' + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (18.7ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) + Rendering /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (70.7ms) + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateLineItems (20170425130558) +  (0.1ms) begin transaction +  (61.6ms) CREATE TABLE "line_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) + SQL (1.7ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20170425130558"]] +  (20.3ms) commit transaction + ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]] +  (0.2ms) begin transaction +  (0.1ms) commit transaction + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Started GET "/" for 127.0.0.1 at 2017-04-25 17:34:11 +0300 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" + +ActiveRecord::PendingMigrationError ( + +Migrations are pending. To resolve this issue, run: + + bin/rails db:migrate RAILS_ENV=development + +): + +activerecord (5.0.2) lib/active_record/migration.rb:573:in `check_pending!' +activerecord (5.0.2) lib/active_record/migration.rb:549:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.5.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.1ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (47.8ms) +Started GET "/" for 127.0.0.1 at 2017-04-25 17:34:22 +0300 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" + +ActiveRecord::PendingMigrationError ( + +Migrations are pending. To resolve this issue, run: + + bin/rails db:migrate RAILS_ENV=development + +): + +activerecord (5.0.2) lib/active_record/migration.rb:573:in `check_pending!' +activerecord (5.0.2) lib/active_record/migration.rb:549:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.5.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.5ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (43.5ms) +Started GET "/" for 127.0.0.1 at 2017-04-25 17:34:24 +0300 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" + +ActiveRecord::PendingMigrationError ( + +Migrations are pending. To resolve this issue, run: + + bin/rails db:migrate RAILS_ENV=development + +): + +activerecord (5.0.2) lib/active_record/migration.rb:573:in `check_pending!' +activerecord (5.0.2) lib/active_record/migration.rb:549:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.5.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.3ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (29.5ms) +Started GET "/user" for 127.0.0.1 at 2017-04-25 17:34:41 +0300 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" + +ActiveRecord::PendingMigrationError ( + +Migrations are pending. To resolve this issue, run: + + bin/rails db:migrate RAILS_ENV=development + +): + +activerecord (5.0.2) lib/active_record/migration.rb:573:in `check_pending!' +activerecord (5.0.2) lib/active_record/migration.rb:549:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.5.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (6.0ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.2ms) +Started GET "/user/login" for 127.0.0.1 at 2017-04-25 17:34:47 +0300 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + +ActiveRecord::PendingMigrationError ( + +Migrations are pending. To resolve this issue, run: + + bin/rails db:migrate RAILS_ENV=development + +): + +activerecord (5.0.2) lib/active_record/migration.rb:573:in `check_pending!' +activerecord (5.0.2) lib/active_record/migration.rb:549:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.5.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.8ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (33.9ms) +Started GET "/" for 127.0.0.1 at 2017-04-25 17:34:51 +0300 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + +ActiveRecord::PendingMigrationError ( + +Migrations are pending. To resolve this issue, run: + + bin/rails db:migrate RAILS_ENV=development + +): + +activerecord (5.0.2) lib/active_record/migration.rb:573:in `check_pending!' +activerecord (5.0.2) lib/active_record/migration.rb:549:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.5.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.2ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (31.5ms) +Started GET "/" for 127.0.0.1 at 2017-04-25 17:37:05 +0300 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" + +ActiveRecord::PendingMigrationError ( + +Migrations are pending. To resolve this issue, run: + + bin/rails db:migrate RAILS_ENV=development + +): + +activerecord (5.0.2) lib/active_record/migration.rb:573:in `check_pending!' +activerecord (5.0.2) lib/active_record/migration.rb:549:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.5.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.0ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (36.5ms) +Started POST "/__web_console/repl_sessions/49f589e43e803b652461e3811a3a08d3/trace" for 127.0.0.1 at 2017-04-25 17:37:11 +0300 +Started POST "/__web_console/repl_sessions/49f589e43e803b652461e3811a3a08d3/trace" for 127.0.0.1 at 2017-04-25 17:37:14 +0300 + ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateUsers (20170425131758) +  (0.1ms) begin transaction +  (31.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "login" varchar, "password" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) + SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20170425131758"]] +  (134.8ms) commit transaction + ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Started GET "/" for 127.0.0.1 at 2017-04-25 17:38:51 +0300 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 31ms (ActiveRecord: 0.0ms) + + + +NameError (uninitialized constant ApplicationRecord::Base): + +app/models/product.rb:1:in `' +app/controllers/products_controller.rb:7:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.4ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.3ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (41.7ms) +Started POST "/__web_console/repl_sessions/352eae586093893337e0f389826c1bb3/trace" for 127.0.0.1 at 2017-04-25 17:40:36 +0300 +Started GET "/" for 127.0.0.1 at 2017-04-25 17:42:25 +0300 +Processing by ProductsController#index as HTML +Started POST "/__web_console/repl_sessions/352eae586093893337e0f389826c1bb3/trace" for 127.0.0.1 at 2017-04-25 17:42:35 +0300 +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms) + + + +NameError (uninitialized constant ApplicationRecord::Base): + +app/models/product.rb:1:in `' +app/controllers/products_controller.rb:7:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (6.8ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (38.5ms) +Started POST "/__web_console/repl_sessions/1ce72c60cffcba4ed4d122b67b07f19c/trace" for 127.0.0.1 at 2017-04-25 17:42:41 +0300 +Started GET "/" for 127.0.0.1 at 2017-04-25 17:44:38 +0300 + +ActionController::RoutingError (uninitialized constant ApplicationRecord::Base): + +app/controllers/products_controller.rb:2:in `' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered collection of /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [22 times] (45.5ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (24.8ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (126.3ms) +Started POST "/__web_console/repl_sessions/7b522796fa4b66cce42b604167eaac24/trace" for 127.0.0.1 at 2017-04-25 17:44:44 +0300 +Started GET "/user/login" for 127.0.0.1 at 2017-04-25 17:45:31 +0300 + +ActionController::RoutingError (No route matches [GET] "/user/login"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.5.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered collection of /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [22 times] (13.6ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (53.3ms) +Started GET "/user/login" for 127.0.0.1 at 2017-04-25 17:46:47 +0300 + +ActionController::RoutingError (No route matches [GET] "/user/login"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.5.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered collection of /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [22 times] (11.1ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (47.8ms) +Started GET "/" for 127.0.0.1 at 2017-04-25 17:46:51 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + + + +NameError (uninitialized constant ApplicationRecord::Base): + +app/models/product.rb:1:in `' +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.5ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (36.9ms) +Started POST "/__web_console/repl_sessions/dde902bc3c1e897003c1191d4d1caabf/trace" for 127.0.0.1 at 2017-04-25 17:47:55 +0300 +Started POST "/__web_console/repl_sessions/dde902bc3c1e897003c1191d4d1caabf/trace" for 127.0.0.1 at 2017-04-25 17:47:57 +0300 +Started POST "/__web_console/repl_sessions/dde902bc3c1e897003c1191d4d1caabf/trace" for 127.0.0.1 at 2017-04-25 17:48:01 +0300 +Started GET "/" for 127.0.0.1 at 2017-04-25 17:49:32 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + + + +NameError (uninitialized constant ApplicationRecord::Base): + +app/models/product.rb:1:in `' +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.4ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (34.7ms) +Started GET "/" for 127.0.0.1 at 2017-04-25 17:49:35 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + + + +NameError (uninitialized constant ApplicationRecord::Base): + +app/models/product.rb:1:in `' +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (8.2ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.7ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (42.2ms) +Started GET "/" for 127.0.0.1 at 2017-04-25 17:50:16 +0300 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 19ms (ActiveRecord: 0.0ms) + + + +NameError (uninitialized constant ApplicationRecord::Base): + +app/models/product.rb:1:in `' +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.4ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (42.5ms) +Started POST "/__web_console/repl_sessions/d48010ea49f1a7423bc28b2a357cf258/trace" for 127.0.0.1 at 2017-04-25 17:50:20 +0300 +Started POST "/__web_console/repl_sessions/d48010ea49f1a7423bc28b2a357cf258/trace" for 127.0.0.1 at 2017-04-25 17:50:22 +0300 +Started GET "/" for 127.0.0.1 at 2017-04-25 17:51:07 +0300 +Started GET "/" for 127.0.0.1 at 2017-04-25 17:51:50 +0300 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 29ms (ActiveRecord: 0.0ms) + + + +ArgumentError (The provided regular expression is using multiline anchors (^ or $), which may present a security risk. Did you mean to use \A and \z, or forgot to add the :multiline => true option?): + +app/models/product.rb:5:in `' +app/models/product.rb:1:in `' +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (7.2ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.5ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.5ms) +Started GET "/" for 127.0.0.1 at 2017-04-25 17:53:23 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:5: syntax error, unexpected { arg, expecting => +allow_blank => true, :format { + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:6: syntax error, unexpected ',', expecting keyword_end +with => %r{\.(gif|jpg|png)$}i, + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:9: syntax error, unexpected '}', expecting keyword_end): + +app/models/product.rb:5: syntax error, unexpected { arg, expecting => +app/models/product.rb:6: syntax error, unexpected ',', expecting keyword_end +app/models/product.rb:9: syntax error, unexpected '}', expecting keyword_end +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (6.8ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (36.7ms) +Started GET "/" for 127.0.0.1 at 2017-04-25 17:59:46 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:5: syntax error, unexpected { arg, expecting => +allow_blank => true, :format { + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:6: syntax error, unexpected ',', expecting keyword_end + with: %r{\.(gif|jpg|png)$}i, + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:9: syntax error, unexpected '}', expecting keyword_end): + +app/models/product.rb:5: syntax error, unexpected { arg, expecting => +app/models/product.rb:6: syntax error, unexpected ',', expecting keyword_end +app/models/product.rb:9: syntax error, unexpected '}', expecting keyword_end +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (9.6ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.5ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (42.8ms) +Started GET "/" for 127.0.0.1 at 2017-04-25 18:02:55 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:4: syntax error, unexpected => +idates :title , uniqueness: => true + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:5: syntax error, unexpected => +es :image_url, allow_blank: => true, :format { + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:5: Can't assign to true +age_url, allow_blank: => true, :format { + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:5: syntax error, unexpected { arg, expecting &. or :: or '[' or '.' +llow_blank: => true, :format { + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:6: syntax error, unexpected ',', expecting keyword_end + with: %r{\.(gif|jpg|png)$}i, + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:9: syntax error, unexpected '}', expecting keyword_end): + +app/models/product.rb:4: syntax error, unexpected => +app/models/product.rb:5: syntax error, unexpected => +app/models/product.rb:5: Can't assign to true +app/models/product.rb:5: syntax error, unexpected { arg, expecting &. or :: or '[' or '.' +app/models/product.rb:6: syntax error, unexpected ',', expecting keyword_end +app/models/product.rb:9: syntax error, unexpected '}', expecting keyword_end +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (8.4ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (35.8ms) +Started GET "/" for 127.0.0.1 at 2017-04-25 18:03:26 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:5: syntax error, unexpected { arg, expecting => +, allow_blank: true, :format { + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:6: syntax error, unexpected ',', expecting keyword_end + with: %r{\.(gif|jpg|png)$}i, + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:9: syntax error, unexpected '}', expecting keyword_end): + +app/models/product.rb:5: syntax error, unexpected { arg, expecting => +app/models/product.rb:6: syntax error, unexpected ',', expecting keyword_end +app/models/product.rb:9: syntax error, unexpected '}', expecting keyword_end +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.9ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (32.6ms) +Started GET "/" for 127.0.0.1 at 2017-04-25 18:05:00 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 37ms (ActiveRecord: 0.0ms) + + + +ArgumentError (The provided regular expression is using multiline anchors (^ or $), which may present a security risk. Did you mean to use \A and \z, or forgot to add the :multiline => true option?): + +app/models/product.rb:10:in `' +app/models/product.rb:1:in `' +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (7.7ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (35.5ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 21:08:45 +0300 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 21ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:8: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' + validates :price, :numericality {greater_ + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:9: syntax error, unexpected keyword_true, expecting keyword_end +ates :title , :uniqueness true + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:14: syntax error, unexpected '\n', expecting =>): + +app/models/product.rb:8: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' +app/models/product.rb:9: syntax error, unexpected keyword_true, expecting keyword_end +app/models/product.rb:14: syntax error, unexpected '\n', expecting => +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (6.1ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (47.8ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 21:09:10 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:8: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' + validates :price, :numericality ,{greater + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:9: syntax error, unexpected keyword_true, expecting keyword_end +ates :title , :uniqueness true + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:14: syntax error, unexpected '\n', expecting =>): + +app/models/product.rb:8: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' +app/models/product.rb:9: syntax error, unexpected keyword_true, expecting keyword_end +app/models/product.rb:14: syntax error, unexpected '\n', expecting => +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (10.8ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (37.9ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 21:09:41 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:8: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' + validates :price, :numericality => {grea + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:9: syntax error, unexpected keyword_true, expecting keyword_end +ates :title , :uniqueness true + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:14: syntax error, unexpected '\n', expecting =>): + +app/models/product.rb:8: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' +app/models/product.rb:9: syntax error, unexpected keyword_true, expecting keyword_end +app/models/product.rb:14: syntax error, unexpected '\n', expecting => +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.9ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (33.8ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 21:10:29 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:8: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' + validates :price, :numericality # {great + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:9: syntax error, unexpected keyword_true, expecting keyword_end +ates :title , :uniqueness true + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:14: syntax error, unexpected '\n', expecting =>): + +app/models/product.rb:8: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' +app/models/product.rb:9: syntax error, unexpected keyword_true, expecting keyword_end +app/models/product.rb:14: syntax error, unexpected '\n', expecting => +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (6.0ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (33.3ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 21:11:05 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:8: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' + validates :price, numericality: # {great + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:14: syntax error, unexpected '\n', expecting =>): + +app/models/product.rb:8: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' +app/models/product.rb:14: syntax error, unexpected '\n', expecting => +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.7ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (33.3ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 21:13:05 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:8: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' + validates :price, :numericality # {great + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:14: syntax error, unexpected '\n', expecting =>): + +app/models/product.rb:8: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' +app/models/product.rb:14: syntax error, unexpected '\n', expecting => +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (6.2ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (33.9ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 21:13:29 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:8: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' + validates :price => :numericality # {gre + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:14: syntax error, unexpected '\n', expecting =>): + +app/models/product.rb:8: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' +app/models/product.rb:14: syntax error, unexpected '\n', expecting => +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (6.2ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (33.2ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 21:13:31 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:8: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' + validates :price => :numericality # {gre + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:14: syntax error, unexpected '\n', expecting =>): + +app/models/product.rb:8: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' +app/models/product.rb:14: syntax error, unexpected '\n', expecting => +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.9ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (33.7ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 21:16:14 +0300 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:8: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' + validates :price => :numericality # {gre + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:14: syntax error, unexpected '\n', expecting =>): + +app/models/product.rb:8: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' +app/models/product.rb:14: syntax error, unexpected '\n', expecting => +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (8.2ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (39.5ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 21:16:41 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:9: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' + validates :title , :uniqueness => true + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:14: syntax error, unexpected '\n', expecting =>): + +app/models/product.rb:9: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' +app/models/product.rb:14: syntax error, unexpected '\n', expecting => +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (7.0ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (35.0ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 21:17:56 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:10: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' + validates :image_url, :allow_blank => tru + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:10: Can't assign to true +ge_url, :allow_blank => true , { + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:14: syntax error, unexpected '\n', expecting &. or :: or '[' or '.'): + +app/models/product.rb:10: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' +app/models/product.rb:10: Can't assign to true +app/models/product.rb:14: syntax error, unexpected '\n', expecting &. or :: or '[' or '.' +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (6.5ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (34.8ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 21:18:26 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:17: syntax error, unexpected '\n', expecting =>): + +app/models/product.rb:17: syntax error, unexpected '\n', expecting => +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.9ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (33.1ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 21:19:05 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:27: syntax error, unexpected keyword_end): + +app/models/product.rb:27: syntax error, unexpected keyword_end +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (7.1ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (34.0ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 21:21:02 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:9: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' + validates :title, presence: true, + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:9: Can't assign to true +idates :title, presence: true, + ^): + +app/models/product.rb:9: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' +app/models/product.rb:9: Can't assign to true +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (6.3ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (34.2ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 21:21:28 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:9: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' + validates :title, :presence => true, + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:9: Can't assign to true +tes :title, :presence => true, + ^): + +app/models/product.rb:9: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' +app/models/product.rb:9: Can't assign to true +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.9ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (32.9ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 21:22:27 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:9: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' + validates :title, :presence => true, + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:9: Can't assign to true +tes :title, :presence => true, + ^ +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:10: syntax error, unexpected =>, expecting &. or :: or '[' or '.' + :length => {:maximum => 50} + ^): + +app/models/product.rb:9: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' +app/models/product.rb:9: Can't assign to true +app/models/product.rb:10: syntax error, unexpected =>, expecting &. or :: or '[' or '.' +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (6.8ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (34.0ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 21:23:28 +0300 +Processing by ProductsController#index as HTML + Rendering products/index.html.erb within layouts/application + Product Load (0.4ms) SELECT "products".* FROM "products" + Rendered products/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 1242ms (Views: 1196.6ms | ActiveRecord: 0.7ms) + + +Started GET "/products/new" for 127.0.0.1 at 2017-04-27 21:23:32 +0300 +Processing by ProductsController#new as HTML + Rendering products/new.html.erb within layouts/application + Rendered products/_form.html.erb (240.0ms) + Rendered products/new.html.erb within layouts/application (254.1ms) +Completed 200 OK in 329ms (Views: 281.0ms | ActiveRecord: 0.8ms) + + +Started GET "/products/new" for 127.0.0.1 at 2017-04-27 21:25:13 +0300 +Processing by ProductsController#new as HTML + Rendering products/new.html.erb within layouts/application + Rendered products/_form.html.erb (4.8ms) + Rendered products/new.html.erb within layouts/application (6.6ms) +Completed 200 OK in 40ms (Views: 38.6ms | ActiveRecord: 0.0ms) + + +Started GET "/products/new" for 127.0.0.1 at 2017-04-27 21:25:18 +0300 +Processing by ProductsController#new as HTML + Rendering products/new.html.erb within layouts/application + Rendered products/_form.html.erb (3.6ms) + Rendered products/new.html.erb within layouts/application (5.9ms) +Completed 200 OK in 40ms (Views: 37.3ms | ActiveRecord: 0.0ms) + + +Started POST "/products" for 127.0.0.1 at 2017-04-27 21:25:30 +0300 +Processing by ProductsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"rML3CaFaoyxS7Ory2wkQJkXUCE1y1G/hMndQx+DJnpWFqXFlEU5AcBf6L8C+23LMZzITurzDv0ZATGgUKVh0kQ==", "product"=>{"title"=>"Title", "categories"=>"прсорс", "description"=>"рсопрл", "image_url"=>"http://www.uzhnu.edu.ua/images/layout/uzhnu_logo2.png"}, "commit"=>"Create Product"} +  (0.3ms) begin transaction + SQL (0.4ms) INSERT INTO "products" ("title", "categories", "description", "image_url", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Title"], ["categories", "прсорс"], ["description", "рсопрл"], ["image_url", "http://www.uzhnu.edu.ua/images/layout/uzhnu_logo2.png"], ["created_at", 2017-04-27 18:25:30 UTC], ["updated_at", 2017-04-27 18:25:30 UTC]] +  (121.6ms) commit transaction +Redirected to http://localhost:3000/products/1 +Completed 302 Found in 129ms (ActiveRecord: 122.3ms) + + +Started GET "/products/1" for 127.0.0.1 at 2017-04-27 21:25:30 +0300 +Processing by ProductsController#show as HTML + Parameters: {"id"=>"1"} + Product Load (0.4ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + CACHE (0.0ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering products/show.html.erb within layouts/application + Rendered products/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 61ms (Views: 28.4ms | ActiveRecord: 0.4ms) + + +Started GET "/products" for 127.0.0.1 at 2017-04-27 21:25:35 +0300 +Processing by ProductsController#index as HTML + Rendering products/index.html.erb within layouts/application + Product Load (0.2ms) SELECT "products".* FROM "products" + Rendered products/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 39ms (Views: 37.2ms | ActiveRecord: 0.2ms) + + +Started GET "/products" for 127.0.0.1 at 2017-04-27 21:26:24 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + + + +ArgumentError (The provided regular expression is using multiline anchors (^ or $), which may present a security risk. Did you mean to use \A and \z, or forgot to add the :multiline => true option?): + +app/models/product.rb:10:in `' +app/models/product.rb:1:in `' +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (6.9ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (34.2ms) +Started GET "/products" for 127.0.0.1 at 2017-04-27 21:27:18 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + + + +ArgumentError (The provided regular expression is using multiline anchors (^ or $), which may present a security risk. Did you mean to use \A and \z, or forgot to add the :multiline => true option?): + +app/models/product.rb:10:in `' +app/models/product.rb:1:in `' +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (6.9ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (34.9ms) +Started GET "/products" for 127.0.0.1 at 2017-04-27 21:31:05 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:11: syntax error, unexpected '\n', expecting => +/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:14: syntax error, unexpected '}', expecting keyword_end): + +app/models/product.rb:11: syntax error, unexpected '\n', expecting => +app/models/product.rb:14: syntax error, unexpected '}', expecting keyword_end +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (6.5ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (34.2ms) +Started GET "/products" for 127.0.0.1 at 2017-04-27 21:31:44 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/home/vital-l/Ruby_On_Rails/lproj1/app/models/product.rb:11: syntax error, unexpected '\n', expecting =>): + +app/models/product.rb:11: syntax error, unexpected '\n', expecting => +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (6.2ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (33.8ms) +Started GET "/products" for 127.0.0.1 at 2017-04-27 21:34:45 +0300 +Processing by ProductsController#index as HTML +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + + + +ArgumentError (You need to supply at least one validation): + +app/models/product.rb:10:in `' +app/models/product.rb:1:in `' +app/controllers/products_controller.rb:8:in `index' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (7.1ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (35.4ms) +Started GET "/products" for 127.0.0.1 at 2017-04-27 21:35:26 +0300 +Processing by ProductsController#index as HTML + Rendering products/index.html.erb within layouts/application + Product Load (0.4ms) SELECT "products".* FROM "products" + Rendered products/index.html.erb within layouts/application (21.5ms) +Completed 200 OK in 55ms (Views: 48.5ms | ActiveRecord: 1.1ms) + + +Started GET "/products/new" for 127.0.0.1 at 2017-04-27 23:08:49 +0300 +Processing by ProductsController#new as HTML + Rendering products/new.html.erb within layouts/application + Rendered products/_form.html.erb (6.5ms) + Rendered products/new.html.erb within layouts/application (8.8ms) +Completed 200 OK in 106ms (Views: 104.4ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2017-04-27 23:13:09 +0300 +Processing by ProductsController#index as HTML + Rendering products/index.html.erb within layouts/application + Product Load (0.6ms) SELECT "products".* FROM "products" + Rendered products/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 38ms (Views: 34.8ms | ActiveRecord: 0.6ms) + + + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Started GET "/" for 127.0.0.1 at 2017-04-27 23:26:02 +0300 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by ProductsController#index as HTML + Rendering products/index.html.erb within layouts/application + Product Load (0.2ms) SELECT "products".* FROM "products" + Rendered products/index.html.erb within layouts/application (23.0ms) +Completed 500 Internal Server Error in 50ms (ActiveRecord: 1.0ms) + + + +ActionView::Template::Error (undefined method `author' for #): + 17: <% @products.each do |product| %> + 18: + 19: <%= product.title %> + 20: <%= product.author %> + 21: <%= product.zhanr %> + 22: <%= product.pages_qty %> + 23: <%= product.description %> + +app/views/products/index.html.erb:20:in `block in _app_views_products_index_html_erb__912902497329138010_70261945487300' +app/views/products/index.html.erb:17:in `_app_views_products_index_html_erb__912902497329138010_70261945487300' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (10.5ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.1ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.5ms) + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateUsers (20170425131758) +  (0.1ms) begin transaction +  (12.0ms) DROP TABLE "users" + SQL (0.3ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = ? [["version", "20170425131758"]] +  (125.9ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateUsers (20170425131758) +  (0.1ms) begin transaction +  (1.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "login" varchar, "password" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) + SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20170425131758"]] +  (114.6ms) commit transaction + ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Started GET "/" for 127.0.0.1 at 2017-04-27 23:35:35 +0300 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by ProductsController#index as HTML + Rendering products/index.html.erb within layouts/application + Product Load (0.2ms) SELECT "products".* FROM "products" + Rendered products/index.html.erb within layouts/application (19.9ms) +Completed 500 Internal Server Error in 55ms (ActiveRecord: 1.0ms) + + + +ActionView::Template::Error (undefined method `author' for #): + 17: <% @products.each do |product| %> + 18: + 19: <%= product.title %> + 20: <%= product.author %> + 21: <%= product.zhanr %> + 22: <%= product.pages_qty %> + 23: <%= product.description %> + +app/views/products/index.html.erb:20:in `block in _app_views_products_index_html_erb___740728541739972935_70181144046940' +app/views/products/index.html.erb:17:in `_app_views_products_index_html_erb___740728541739972935_70181144046940' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (7.9ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.0ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.4ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 23:35:47 +0300 +Processing by ProductsController#index as HTML + Rendering products/index.html.erb within layouts/application + Product Load (0.4ms) SELECT "products".* FROM "products" + Rendered products/index.html.erb within layouts/application (11.5ms) +Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.4ms) + + + +ActionView::Template::Error (undefined method `author' for #): + 17: <% @products.each do |product| %> + 18: + 19: <%= product.title %> + 20: <%= product.author %> + 21: <%= product.zhanr %> + 22: <%= product.pages_qty %> + 23: <%= product.description %> + +app/views/products/index.html.erb:20:in `block in _app_views_products_index_html_erb___740728541739972935_13650240' +app/views/products/index.html.erb:17:in `_app_views_products_index_html_erb___740728541739972935_13650240' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (8.3ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (35.6ms) +Started POST "/__web_console/repl_sessions/c86e98800e2d52797d1199e0a1629e82/trace" for 127.0.0.1 at 2017-04-27 23:35:51 +0300 +Started GET "/" for 127.0.0.1 at 2017-04-27 23:36:26 +0300 +Processing by ProductsController#index as HTML + Rendering products/index.html.erb within layouts/application + Product Load (0.2ms) SELECT "products".* FROM "products" + Rendered products/index.html.erb within layouts/application (11.6ms) +Completed 500 Internal Server Error in 18ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `author' for #): + 17: <% @products.each do |product| %> + 18: + 19: <%= product.title %> + 20: <%= product.author %> + 21: <%= product.zhanr %> + 22: <%= product.pages_qty %> + 23: <%= product.description %> + +app/views/products/index.html.erb:20:in `block in _app_views_products_index_html_erb___740728541739972935_70181145230060' +app/views/products/index.html.erb:17:in `_app_views_products_index_html_erb___740728541739972935_70181145230060' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (7.3ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (35.3ms) +Started GET "/users/new" for 127.0.0.1 at 2017-04-27 23:36:59 +0300 + +ActionController::RoutingError (No route matches [GET] "/users/new"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.5.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered collection of /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [22 times] (100.9ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (159.9ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (343.4ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 23:37:42 +0300 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by ProductsController#index as HTML + Rendering products/index.html.erb within layouts/application + Product Load (0.2ms) SELECT "products".* FROM "products" + Rendered products/index.html.erb within layouts/application (25.8ms) +Completed 500 Internal Server Error in 109ms (ActiveRecord: 1.0ms) + + + +ActionView::Template::Error (undefined method `author' for #): + 17: <% @products.each do |product| %> + 18: + 19: <%= product.title %> + 20: <%= product.author %> + 21: <%= product.zhanr %> + 22: <%= product.pages_qty %> + 23: <%= product.description %> + +app/views/products/index.html.erb:20:in `block in _app_views_products_index_html_erb___4183294293838247353_69844125729240' +app/views/products/index.html.erb:17:in `_app_views_products_index_html_erb___4183294293838247353_69844125729240' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (13.4ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.3ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (58.9ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 23:38:15 +0300 +Processing by ProductsController#index as HTML +Started GET "/" for 127.0.0.1 at 2017-04-27 23:38:25 +0300 + Rendering products/index.html.erb within layouts/application + Product Load (0.8ms) SELECT "products".* FROM "products" + Rendered products/index.html.erb within layouts/application (26.1ms) +Completed 500 Internal Server Error in 36ms (ActiveRecord: 1.6ms) + + + +ActionView::Template::Error (undefined method `auth' for #): + 17: <% @products.each do |product| %> + 18: + 19: <%= product.title %> + 20: <%= product.auth %> + 21: <%= product.zhanr %> + 22: <%= product.pages_qty %> + 23: <%= product.description %> + +app/views/products/index.html.erb:20:in `block in _app_views_products_index_html_erb___4183294293838247353_69844124521540' +app/views/products/index.html.erb:17:in `_app_views_products_index_html_erb___4183294293838247353_69844124521540' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (9.1ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (38.8ms) +Processing by ProductsController#index as HTML + Rendering products/index.html.erb within layouts/application + Product Load (0.5ms) SELECT "products".* FROM "products" + Rendered products/index.html.erb within layouts/application (29.6ms) +Completed 500 Internal Server Error in 37ms (ActiveRecord: 1.6ms) + + + +ActionView::Template::Error (undefined method `auth' for #): + 17: <% @products.each do |product| %> + 18: + 19: <%= product.title %> + 20: <%= product.auth %> + 21: <%= product.zhanr %> + 22: <%= product.pages_qty %> + 23: <%= product.description %> + +app/views/products/index.html.erb:20:in `block in _app_views_products_index_html_erb___4183294293838247353_69844124521540' +app/views/products/index.html.erb:17:in `_app_views_products_index_html_erb___4183294293838247353_69844124521540' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (8.5ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (37.5ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 23:38:39 +0300 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by ProductsController#index as HTML + Rendering products/index.html.erb within layouts/application + Product Load (0.2ms) SELECT "products".* FROM "products" + Rendered products/index.html.erb within layouts/application (18.9ms) +Completed 500 Internal Server Error in 45ms (ActiveRecord: 0.9ms) + + + +ActionView::Template::Error (undefined method `auth' for #): + 17: <% @products.each do |product| %> + 18: + 19: <%= product.title %> + 20: <%= product.auth %> + 21: <%= product.zhanr %> + 22: <%= product.pages_qty %> + 23: <%= product.description %> + +app/views/products/index.html.erb:20:in `block in _app_views_products_index_html_erb__1037773636404272471_69950661015840' +app/views/products/index.html.erb:17:in `_app_views_products_index_html_erb__1037773636404272471_69950661015840' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (8.8ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.4ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (42.6ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 23:39:10 +0300 +Processing by ProductsController#index as HTML + Rendering products/index.html.erb within layouts/application + Product Load (0.5ms) SELECT "products".* FROM "products" + Rendered products/index.html.erb within layouts/application (11.1ms) +Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.5ms) + + + +ActionView::Template::Error (undefined method `zhanr' for #): + 18: + 19: <%= product.title %> + 20: + 21: <%= product.zhanr %> + 22: <%= product.pages_qty %> + 23: <%= product.description %> + 24: <%= product.image_url %> + +app/views/products/index.html.erb:21:in `block in _app_views_products_index_html_erb__1037773636404272471_69950661978260' +app/views/products/index.html.erb:17:in `_app_views_products_index_html_erb__1037773636404272471_69950661978260' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (7.4ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (35.4ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 23:40:51 +0300 +Processing by ProductsController#index as HTML + Rendering products/index.html.erb within layouts/application + Product Load (0.5ms) SELECT "products".* FROM "products" + Rendered products/index.html.erb within layouts/application (17.3ms) +Completed 500 Internal Server Error in 25ms (ActiveRecord: 1.3ms) + + + +ActionView::Template::Error (undefined method `auth' for #): + 17: <% @products.each do |product| %> + 18: + 19: <%= product.title %> + 20: <%= product.auth %> + 21: <%= product.zhanr %> + 22: <%= product.pages_qty %> + 23: <%= product.description %> + +app/views/products/index.html.erb:20:in `block in _app_views_products_index_html_erb__1037773636404272471_69950658744700' +app/views/products/index.html.erb:17:in `_app_views_products_index_html_erb__1037773636404272471_69950658744700' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (9.0ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (37.8ms) +Started POST "/__web_console/repl_sessions/ea3785e78925466857f6d30aa14ce68f/trace" for 127.0.0.1 at 2017-04-27 23:41:10 +0300 +Started POST "/__web_console/repl_sessions/ea3785e78925466857f6d30aa14ce68f/trace" for 127.0.0.1 at 2017-04-27 23:41:13 +0300 +Started POST "/__web_console/repl_sessions/ea3785e78925466857f6d30aa14ce68f/trace" for 127.0.0.1 at 2017-04-27 23:41:14 +0300 +Started POST "/__web_console/repl_sessions/ea3785e78925466857f6d30aa14ce68f/trace" for 127.0.0.1 at 2017-04-27 23:41:26 +0300 +Started POST "/__web_console/repl_sessions/ea3785e78925466857f6d30aa14ce68f/trace" for 127.0.0.1 at 2017-04-27 23:41:28 +0300 +Started GET "/" for 127.0.0.1 at 2017-04-27 23:43:19 +0300 +Processing by ProductsController#index as HTML + Rendering products/index.html.erb within layouts/application + Product Load (0.4ms) SELECT "products".* FROM "products" + Rendered products/index.html.erb within layouts/application (19.0ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 1.2ms) + + + +ActionView::Template::Error (undefined method `auth' for #): + 17: <% @products.each do |product| %> + 18: + 19: <%= product.title %> + 20: <%= product.auth %> + 21: <%= product.zhanr %> + 22: <%= product.pages_qty %> + 23: <%= product.description %> + +app/views/products/index.html.erb:20:in `block in _app_views_products_index_html_erb__1037773636404272471_69950660379920' +app/views/products/index.html.erb:17:in `_app_views_products_index_html_erb__1037773636404272471_69950660379920' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (8.8ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.4ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (38.1ms) + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateUsers (20170425131758) +  (0.1ms) begin transaction +  (2.0ms) DROP TABLE "users" + SQL (0.2ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = ? [["version", "20170425131758"]] +  (190.5ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateUsers (20170425131758) +  (0.1ms) begin transaction +  (1.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "login" varchar, "password" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) + SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20170425131758"]] +  (66.8ms) commit transaction + ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Started GET "/" for 127.0.0.1 at 2017-04-27 23:44:02 +0300 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by ProductsController#index as HTML + Rendering products/index.html.erb within layouts/application + Product Load (0.2ms) SELECT "products".* FROM "products" + Rendered products/index.html.erb within layouts/application (19.5ms) +Completed 500 Internal Server Error in 46ms (ActiveRecord: 0.9ms) + + + +ActionView::Template::Error (undefined method `auth' for #): + 17: <% @products.each do |product| %> + 18: + 19: <%= product.title %> + 20: <%= product.auth %> + 21: <%= product.zhanr %> + 22: <%= product.pages_qty %> + 23: <%= product.description %> + +app/views/products/index.html.erb:20:in `block in _app_views_products_index_html_erb__998838993158854712_70204668245260' +app/views/products/index.html.erb:17:in `_app_views_products_index_html_erb__998838993158854712_70204668245260' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (9.2ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (8.7ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (44.5ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 23:44:04 +0300 +Processing by ProductsController#index as HTML + Rendering products/index.html.erb within layouts/application + Product Load (0.6ms) SELECT "products".* FROM "products" + Rendered products/index.html.erb within layouts/application (10.2ms) +Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.6ms) + + + +ActionView::Template::Error (undefined method `auth' for #): + 17: <% @products.each do |product| %> + 18: + 19: <%= product.title %> + 20: <%= product.auth %> + 21: <%= product.zhanr %> + 22: <%= product.pages_qty %> + 23: <%= product.description %> + +app/views/products/index.html.erb:20:in `block in _app_views_products_index_html_erb__998838993158854712_70204668132600' +app/views/products/index.html.erb:17:in `_app_views_products_index_html_erb__998838993158854712_70204668132600' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (7.6ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (35.0ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 23:47:01 +0300 +Started GET "/" for 127.0.0.1 at 2017-04-27 23:47:15 +0300 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by ProductsController#index as HTML + Rendering products/index.html.erb within layouts/application + Product Load (0.2ms) SELECT "products".* FROM "products" + Rendered products/index.html.erb within layouts/application (22.1ms) +Completed 500 Internal Server Error in 52ms (ActiveRecord: 1.2ms) + + + +ActionView::Template::Error (undefined method `auth' for #): + 17: <% @products.each do |product| %> + 18: + 19: <%= product.title %> + 20: <%= product.auth %> + 21: <%= product.zhanr %> + 22: <%= product.pages_qty %> + 23: <%= product.description %> + +app/views/products/index.html.erb:20:in `block in _app_views_products_index_html_erb___1888505423770508491_27985540' +app/views/products/index.html.erb:17:in `_app_views_products_index_html_erb___1888505423770508491_27985540' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (13.6ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (44.9ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 23:47:19 +0300 +Processing by ProductsController#index as HTML + Rendering products/index.html.erb within layouts/application + Product Load (0.6ms) SELECT "products".* FROM "products" + Rendered products/index.html.erb within layouts/application (10.4ms) +Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.6ms) + + + +ActionView::Template::Error (undefined method `auth' for #): + 17: <% @products.each do |product| %> + 18: + 19: <%= product.title %> + 20: <%= product.auth %> + 21: <%= product.zhanr %> + 22: <%= product.pages_qty %> + 23: <%= product.description %> + +app/views/products/index.html.erb:20:in `block in _app_views_products_index_html_erb___1888505423770508491_69955691876720' +app/views/products/index.html.erb:17:in `_app_views_products_index_html_erb___1888505423770508491_69955691876720' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (7.1ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (34.6ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 23:48:22 +0300 +Processing by ProductsController#index as HTML + Rendering products/index.html.erb within layouts/application + Product Load (0.2ms) SELECT "products".* FROM "products" + Rendered products/index.html.erb within layouts/application (10.6ms) +Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `auth' for #): + 17: <% @products.each do |product| %> + 18: + 19: <%= product.title %> + 20: <%= product.auth %> + 21: <%= product.zhanr %> + 22: <%= product.pages_qty %> + 23: <%= product.description %> + +app/views/products/index.html.erb:20:in `block in _app_views_products_index_html_erb___1888505423770508491_27575440' +app/views/products/index.html.erb:17:in `_app_views_products_index_html_erb___1888505423770508491_27575440' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (10.5ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (37.2ms) +Started GET "/products/new" for 127.0.0.1 at 2017-04-27 23:48:44 +0300 +Processing by ProductsController#new as HTML + Rendering products/new.html.erb within layouts/application + Rendered products/_form.html.erb (96.1ms) + Rendered products/new.html.erb within layouts/application (97.7ms) +Completed 500 Internal Server Error in 112ms (ActiveRecord: 0.0ms) + + + +ActionView::Template::Error (undefined method `auth' for #): + 17:
+ 18:
+ 19: <%= f.label :auth %> + 20: <%= f.text_field :auth %> + 21:
+ 22:
+ 23: <%= f.label :zhanr %> + +app/views/products/_form.html.erb:20:in `block in _app_views_products__form_html_erb___1988174811435694386_69955692198880' +app/views/products/_form.html.erb:1:in `_app_views_products__form_html_erb___1988174811435694386_69955692198880' +app/views/products/new.html.erb:3:in `_app_views_products_new_html_erb___3786829434988983662_69955692280040' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (10.6ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (38.6ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 23:50:46 +0300 +Processing by ProductsController#index as HTML + Rendering products/index.html.erb within layouts/application + Product Load (0.2ms) SELECT "products".* FROM "products" + Rendered products/index.html.erb within layouts/application (9.0ms) +Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `auth' for #): + 17: <% @products.each do |product| %> + 18: + 19: <%= product.title %> + 20: <%= product.auth %> + 21: <%= product.zhanr %> + 22: <%= product.pages_qty %> + 23: <%= product.description %> + +app/views/products/index.html.erb:20:in `block in _app_views_products_index_html_erb___1888505423770508491_69955691203020' +app/views/products/index.html.erb:17:in `_app_views_products_index_html_erb___1888505423770508491_69955691203020' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (8.8ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (36.7ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 23:51:50 +0300 +Processing by ProductsController#index as HTML + Rendering products/index.html.erb within layouts/application + Product Load (0.3ms) SELECT "products".* FROM "products" + Rendered products/index.html.erb within layouts/application (14.8ms) +Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined method `auth' for #): + 17: <% @products.each do |product| %> + 18: + 19: <%= product.title %> + 20: <%= product.auth %> + 21: <%= product.zhanr %> + 22: <%= product.pages_qty %> + 23: <%= product.description %> + +app/views/products/index.html.erb:20:in `block in _app_views_products_index_html_erb___1888505423770508491_23249880' +app/views/products/index.html.erb:17:in `_app_views_products_index_html_erb___1888505423770508491_23249880' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (8.6ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (35.3ms) +Started POST "/__web_console/repl_sessions/81ee1283ae01f19f7dbaa97374bbd29b/trace" for 127.0.0.1 at 2017-04-27 23:51:58 +0300 +Started POST "/__web_console/repl_sessions/81ee1283ae01f19f7dbaa97374bbd29b/trace" for 127.0.0.1 at 2017-04-27 23:52:00 +0300 +Started GET "/" for 127.0.0.1 at 2017-04-27 23:53:20 +0300 +Processing by ProductsController#index as HTML + Rendering products/index.html.erb within layouts/application + Product Load (0.4ms) SELECT "products".* FROM "products" + Rendered products/index.html.erb within layouts/application (18.5ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 1.1ms) + + + +ActionView::Template::Error (undefined method `auth' for #): + 17: <% @products.each do |product| %> + 18: + 19: <%= product.title %> + 20: <%= product.auth %> + 21: <%= product.zhanr %> + 22: <%= product.pages_qty %> + 23: <%= product.description %> + +app/views/products/index.html.erb:20:in `block in _app_views_products_index_html_erb___1888505423770508491_28225800' +app/views/products/index.html.erb:17:in `_app_views_products_index_html_erb___1888505423770508491_28225800' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (8.7ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.6ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (37.3ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 23:53:39 +0300 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by ProductsController#index as HTML + Rendering products/index.html.erb within layouts/application + Product Load (0.5ms) SELECT "products".* FROM "products" + Rendered products/index.html.erb within layouts/application (20.8ms) +Completed 500 Internal Server Error in 48ms (ActiveRecord: 1.7ms) + + + +ActionView::Template::Error (undefined method `auth' for #): + 17: <% @products.each do |product| %> + 18: + 19: <%= product.title %> + 20: <%= product.auth %> + 21: <%= product.zhanr %> + 22: <%= product.pages_qty %> + 23: <%= product.description %> + +app/views/products/index.html.erb:20:in `block in _app_views_products_index_html_erb___1705245604405927998_69901637380900' +app/views/products/index.html.erb:17:in `_app_views_products_index_html_erb___1705245604405927998_69901637380900' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (8.2ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (38.7ms) +Started GET "/" for 127.0.0.1 at 2017-04-27 23:53:43 +0300 +Processing by ProductsController#index as HTML + Rendering products/index.html.erb within layouts/application + Product Load (0.4ms) SELECT "products".* FROM "products" + Rendered products/index.html.erb within layouts/application (8.3ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.4ms) + + + +ActionView::Template::Error (undefined method `auth' for #): + 17: <% @products.each do |product| %> + 18: + 19: <%= product.title %> + 20: <%= product.auth %> + 21: <%= product.zhanr %> + 22: <%= product.pages_qty %> + 23: <%= product.description %> + +app/views/products/index.html.erb:20:in `block in _app_views_products_index_html_erb___1705245604405927998_29519920' +app/views/products/index.html.erb:17:in `_app_views_products_index_html_erb___1705245604405927998_29519920' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (8.1ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.3ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (37.6ms) +Started GET "/" for 127.0.0.1 at 2017-04-28 00:04:14 +0300 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" + +ActiveRecord::PendingMigrationError ( + +Migrations are pending. To resolve this issue, run: + + bin/rails db:migrate RAILS_ENV=development + +): + +activerecord (5.0.2) lib/active_record/migration.rb:573:in `check_pending!' +activerecord (5.0.2) lib/active_record/migration.rb:549:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.5.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.8ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (36.4ms) + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateBooks (20170427210209) + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateBooks (20170427210209) +  (0.1ms) begin transaction +  (1.3ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "auth" varchar, "zhanr" varchar, "pages_qty" varchar, "description" text, "image_url" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) + SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20170427210209"]] +  (69.1ms) commit transaction + ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Started GET "/" for 127.0.0.1 at 2017-04-28 00:08:06 +0300 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by BooksController#index as HTML + Rendering books/index.html.erb within layouts/application + Book Load (0.2ms) SELECT "books".* FROM "books" + Rendered books/index.html.erb within layouts/application (8.8ms) +Completed 200 OK in 1142ms (Views: 1120.2ms | ActiveRecord: 0.5ms) + + +Started GET "/books/new" for 127.0.0.1 at 2017-04-28 00:08:11 +0300 +Processing by BooksController#new as HTML + Rendering books/new.html.erb within layouts/application + Rendered books/_form.html.erb (54.8ms) + Rendered books/new.html.erb within layouts/application (56.9ms) +Completed 200 OK in 109ms (Views: 90.5ms | ActiveRecord: 0.8ms) + + +Started POST "/books" for 127.0.0.1 at 2017-04-28 00:08:39 +0300 +Processing by BooksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"vp7mMZn1/qRVtOBAUSJUtX6/9dbbiYJ93lDEDNOi9D8Tj04cR13g7U5+TVmUggZowaDeYSMFZgOhFgJTl9Q1GQ==", "book"=>{"title"=>"Title", "auth"=>"Auth", "zhanr"=>"Zhanr", "pages_qty"=>"Zhanr", "description"=>"Zhanr", "image_url"=>"Image url"}, "commit"=>"Create Book"} +  (0.5ms) begin transaction + SQL (0.5ms) INSERT INTO "books" ("title", "auth", "zhanr", "pages_qty", "description", "image_url", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["title", "Title"], ["auth", "Auth"], ["zhanr", "Zhanr"], ["pages_qty", "Zhanr"], ["description", "Zhanr"], ["image_url", "Image url"], ["created_at", 2017-04-27 21:08:39 UTC], ["updated_at", 2017-04-27 21:08:39 UTC]] +  (152.2ms) commit transaction +Redirected to http://localhost:3000/books/1 +Completed 302 Found in 159ms (ActiveRecord: 153.2ms) + + +Started GET "/books/1" for 127.0.0.1 at 2017-04-28 00:08:39 +0300 +Processing by BooksController#show as HTML + Parameters: {"id"=>"1"} + Book Load (0.5ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering books/show.html.erb within layouts/application + Rendered books/show.html.erb within layouts/application (2.3ms) +Completed 200 OK in 69ms (Views: 46.7ms | ActiveRecord: 0.5ms) + + +Started GET "/books" for 127.0.0.1 at 2017-04-28 00:08:42 +0300 +Processing by BooksController#index as HTML + Rendering books/index.html.erb within layouts/application + Book Load (0.7ms) SELECT "books".* FROM "books" + Rendered books/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 57ms (Views: 54.3ms | ActiveRecord: 0.7ms) + + +Started GET "/books" for 127.0.0.1 at 2017-04-28 00:16:32 +0300 +Processing by BooksController#index as HTML + Rendering books/index.html.erb within layouts/application + Book Load (0.6ms) SELECT "books".* FROM "books" + Rendered books/index.html.erb within layouts/application (17.6ms) +Completed 200 OK in 72ms (Views: 62.4ms | ActiveRecord: 2.8ms) + + +Started GET "/books/new" for 127.0.0.1 at 2017-04-28 00:16:35 +0300 +Processing by BooksController#new as HTML + Rendering books/new.html.erb within layouts/application + Rendered books/_form.html.erb (10.5ms) + Rendered books/new.html.erb within layouts/application (12.5ms) +Completed 200 OK in 64ms (Views: 61.5ms | ActiveRecord: 0.0ms) + + +Started GET "/books/new" for 127.0.0.1 at 2017-04-28 00:16:56 +0300 +Processing by BooksController#new as HTML + Rendering books/new.html.erb within layouts/application + Rendered books/_form.html.erb (5.0ms) + Rendered books/new.html.erb within layouts/application (6.4ms) +Completed 200 OK in 43ms (Views: 39.6ms | ActiveRecord: 0.0ms) + + +Started POST "/books" for 127.0.0.1 at 2017-04-28 00:21:10 +0300 +Processing by BooksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"vIfPFPSNWo32ovgxdARIhs7Kq2Kw+22f+8CHM1G3s7DIh0vFMqGsAzA55GdXr24CrvqaIqqdAyqs4XYaJaznjw==", "book"=>{"title"=>"451 за Фаренгейтом", "auth"=>"Рей Бредбері ", "zhanr"=>"Фантастика", "pages_qty"=>"451", "description"=>"Пожежники, які розпалюють пожежі, книги, які заборонено читати, і люди, які вже майже перестали бути людьми... Роман Рея Бредбері «451° за Фаренгейтом» — це класика наукової фантастики.", "image_url"=>""}, "commit"=>"Create Book"} +  (0.6ms) begin transaction +  (0.1ms) rollback transaction + Rendering books/new.html.erb within layouts/application + Rendered books/_form.html.erb (9.4ms) + Rendered books/new.html.erb within layouts/application (11.5ms) +Completed 200 OK in 54ms (Views: 48.6ms | ActiveRecord: 0.7ms) + + +Started POST "/books" for 127.0.0.1 at 2017-04-28 00:21:16 +0300 +Processing by BooksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"nA3AlniEs1GP5+/NKc5NA4UHAKeLHNgC/wfmhWs/3sToDURHvqhF30l885sKZWuH5Tcx55F6treoJhesHySK+w==", "book"=>{"title"=>"451 за Фаренгейтом", "auth"=>"Рей Бредбері ", "zhanr"=>"Фантастика", "pages_qty"=>"451", "description"=>"Пожежники, які розпалюють пожежі, книги, які заборонено читати, і люди, які вже майже перестали бути людьми... Роман Рея Бредбері «451° за Фаренгейтом» — це класика наукової фантастики.", "image_url"=>"Image url"}, "commit"=>"Create Book"} +  (0.4ms) begin transaction + SQL (0.3ms) INSERT INTO "books" ("title", "auth", "zhanr", "pages_qty", "description", "image_url", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["title", "451 за Фаренгейтом"], ["auth", "Рей Бредбері "], ["zhanr", "Фантастика"], ["pages_qty", "451"], ["description", "Пожежники, які розпалюють пожежі, книги, які заборонено читати, і люди, які вже майже перестали бути людьми... Роман Рея Бредбері «451° за Фаренгейтом» — це класика наукової фантастики."], ["image_url", "Image url"], ["created_at", 2017-04-27 21:21:16 UTC], ["updated_at", 2017-04-27 21:21:16 UTC]] +  (131.9ms) commit transaction +Redirected to http://localhost:3000/books/2 +Completed 302 Found in 138ms (ActiveRecord: 132.7ms) + + +Started GET "/books/2" for 127.0.0.1 at 2017-04-28 00:21:16 +0300 +Processing by BooksController#show as HTML + Parameters: {"id"=>"2"} + Book Load (0.8ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering books/show.html.erb within layouts/application + Rendered books/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 50ms (Views: 44.8ms | ActiveRecord: 0.8ms) + + +Started GET "/books" for 127.0.0.1 at 2017-04-28 00:21:18 +0300 +Processing by BooksController#index as HTML + Rendering books/index.html.erb within layouts/application + Book Load (0.2ms) SELECT "books".* FROM "books" + Rendered books/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 41ms (Views: 39.0ms | ActiveRecord: 0.2ms) + + +Started GET "/books/new" for 127.0.0.1 at 2017-04-28 00:22:04 +0300 +Processing by BooksController#new as HTML + Rendering books/new.html.erb within layouts/application + Rendered books/_form.html.erb (5.4ms) + Rendered books/new.html.erb within layouts/application (7.3ms) +Completed 200 OK in 47ms (Views: 45.4ms | ActiveRecord: 0.0ms) + + +Started POST "/books" for 127.0.0.1 at 2017-04-28 00:24:20 +0300 +Processing by BooksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"A6+7DXPv1a4+O9K9nQCXnq+rpA9msHnCgtiOLGERvBWuvhMgrUfL5yXxf6RYoMVDELSPuJ48nbz9nkhzJWd9Mw==", "book"=>{"title"=>"Сто років самотності", "auth"=>"Габріель Гарсіа Маркес", "zhanr"=>"Фантастика", "pages_qty"=>"100", "description"=>"Одна з найбільших книг XX століття. Дивна, поетична, химерна історія міста Макондо, загубленого десь у джунглях, – від створення до занепаду. Історія роду Буэндиа – сім'ї, в якій чудеса настільки повседневны, що на них навіть не звертають уваги. Клан Буэндиа породжує святих і грішників, революціонерів, героїв і зрадників, відважних авантюристів – і жінок, занадто прекрасних для звичайного життя. У ньому киплять надзвичайні пристрасті – і відбуваються неймовірні події. Однак ці неймовірні події знову і знову стають своєрідним «чарівним дзеркалом», крізь яке читачеві є справжня історія Латинської Америки...", "image_url"=>"Image url"}, "commit"=>"Create Book"} +  (0.1ms) begin transaction + SQL (0.8ms) INSERT INTO "books" ("title", "auth", "zhanr", "pages_qty", "description", "image_url", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["title", "Сто років самотності"], ["auth", "Габріель Гарсіа Маркес"], ["zhanr", "Фантастика"], ["pages_qty", "100"], ["description", "Одна з найбільших книг XX століття. Дивна, поетична, химерна історія міста Макондо, загубленого десь у джунглях, – від створення до занепаду. Історія роду Буэндиа – сім'ї, в якій чудеса настільки повседневны, що на них навіть не звертають уваги. Клан Буэндиа породжує святих і грішників, революціонерів, героїв і зрадників, відважних авантюристів – і жінок, занадто прекрасних для звичайного життя. У ньому киплять надзвичайні пристрасті – і відбуваються неймовірні події. Однак ці неймовірні події знову і знову стають своєрідним «чарівним дзеркалом», крізь яке читачеві є справжня історія Латинської Америки..."], ["image_url", "Image url"], ["created_at", 2017-04-27 21:24:20 UTC], ["updated_at", 2017-04-27 21:24:20 UTC]] +  (178.4ms) commit transaction +Redirected to http://localhost:3000/books/3 +Completed 302 Found in 185ms (ActiveRecord: 179.4ms) + + +Started GET "/books/3" for 127.0.0.1 at 2017-04-28 00:24:20 +0300 +Processing by BooksController#show as HTML + Parameters: {"id"=>"3"} + Book Load (0.3ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering books/show.html.erb within layouts/application + Rendered books/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 44ms (Views: 41.5ms | ActiveRecord: 0.3ms) + + +Started GET "/books" for 127.0.0.1 at 2017-04-28 00:24:23 +0300 +Processing by BooksController#index as HTML + Rendering books/index.html.erb within layouts/application + Book Load (0.4ms) SELECT "books".* FROM "books" + Rendered books/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 61ms (Views: 58.6ms | ActiveRecord: 0.4ms) + + +Started GET "/books/new" for 127.0.0.1 at 2017-04-28 00:24:27 +0300 +Processing by BooksController#new as HTML + Rendering books/new.html.erb within layouts/application + Rendered books/_form.html.erb (5.9ms) + Rendered books/new.html.erb within layouts/application (7.3ms) +Completed 200 OK in 50ms (Views: 48.1ms | ActiveRecord: 0.0ms) + + +Started POST "/books" for 127.0.0.1 at 2017-04-28 00:26:10 +0300 +Processing by BooksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"fMhLudFWeBW/KU3vGDLRCsjzfrC+nnTAyQR+ol/pfBvR2eOUD/5mXKTj4PbdkoPXd+xVB0YSkL62Qrj9G5+9PQ==", "book"=>{"title"=>"Марсіанин", "auth"=>"Енді Вейєр", "zhanr"=>"Фантастика", "pages_qty"=>"300", "description"=>"Я дуже пишався тим, що потрапив в команду для польоту на Марс — хто б відмовився прогулятися по чужій планеті! Але… мене забули. Кинули, пораненого і розгубленого, і корабель полетів. У кращому випадку я зможу протягнути в рятувальному модулі 400 доби. Що ж робити — розшукати в безмежних червоних пісках пошкоджену бурею антену, спробувати полагодити її, щоб зв'язатися із базовим кораблем і нагадати про своє існування? Або чекати прибуття наступної експедиції, яка прилетить тільки через ЧОТИРИ РОКИ? Де брати їжу? Воду? Повітря? Як не зійти з розуму від самотності? Робінзону було легше… У нього хоча б був П'ятниця.", "image_url"=>"Image url"}, "commit"=>"Create Book"} +  (0.4ms) begin transaction + SQL (0.3ms) INSERT INTO "books" ("title", "auth", "zhanr", "pages_qty", "description", "image_url", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["title", "Марсіанин"], ["auth", "Енді Вейєр"], ["zhanr", "Фантастика"], ["pages_qty", "300"], ["description", "Я дуже пишався тим, що потрапив в команду для польоту на Марс — хто б відмовився прогулятися по чужій планеті! Але… мене забули. Кинули, пораненого і розгубленого, і корабель полетів. У кращому випадку я зможу протягнути в рятувальному модулі 400 доби. Що ж робити — розшукати в безмежних червоних пісках пошкоджену бурею антену, спробувати полагодити її, щоб зв'язатися із базовим кораблем і нагадати про своє існування? Або чекати прибуття наступної експедиції, яка прилетить тільки через ЧОТИРИ РОКИ? Де брати їжу? Воду? Повітря? Як не зійти з розуму від самотності? Робінзону було легше… У нього хоча б був П'ятниця."], ["image_url", "Image url"], ["created_at", 2017-04-27 21:26:10 UTC], ["updated_at", 2017-04-27 21:26:10 UTC]] +  (212.6ms) commit transaction +Redirected to http://localhost:3000/books/4 +Completed 302 Found in 218ms (ActiveRecord: 213.4ms) + + +Started GET "/books/4" for 127.0.0.1 at 2017-04-28 00:26:10 +0300 +Processing by BooksController#show as HTML + Parameters: {"id"=>"4"} + Book Load (0.3ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + Rendering books/show.html.erb within layouts/application + Rendered books/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 40ms (Views: 38.0ms | ActiveRecord: 0.3ms) + + +Started GET "/books" for 127.0.0.1 at 2017-04-28 00:26:13 +0300 +Processing by BooksController#index as HTML + Rendering books/index.html.erb within layouts/application + Book Load (0.2ms) SELECT "books".* FROM "books" + Rendered books/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 50ms (Views: 48.2ms | ActiveRecord: 0.2ms) + + +Started GET "/books/new" for 127.0.0.1 at 2017-04-28 00:28:42 +0300 +Processing by BooksController#new as HTML + Rendering books/new.html.erb within layouts/application + Rendered books/_form.html.erb (7.4ms) + Rendered books/new.html.erb within layouts/application (9.9ms) +Completed 200 OK in 48ms (Views: 46.9ms | ActiveRecord: 0.0ms) + + +Started POST "/books" for 127.0.0.1 at 2017-04-28 00:29:29 +0300 +Processing by BooksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"iBBNo9LjQYr4K5kS61XCMCAUjSjARlj9Lytdj3MwpFslAeWODEtfw+PhNAsu9ZDtnwumnzjKvINQbZvQN0ZlfQ==", "book"=>{"title"=>"Хроніки Амбера", "auth"=>"Роджер Желязни", "zhanr"=>"Фентезі", "pages_qty"=>"1600", "description"=>"Хроніки Амбера складаються з десяти книг, де розкривається дивовижна всесвіт. Амбер складається зі світу Порядку та світу Хаосу. У центрі подій дев'ять дітей давно зниклого короля Амбера Оберона. Вони всі спадкоємці наймогутнішого престолу. Вони забули про родинних зв'язках, і плетуть інтриги, щоб домогтися влади. Хроніки розділені на дві частини. У першій головний герой Корвін, член королівської сім'ї. Йому належить пройти безліч випробувань, щоб, врешті-решт, зрозуміти, що йому не потрібна влада. (П'ятикнижжя Корвіна - «Дев'ять принців Амбера», «Рушниці Авалона», «Знак Єдинорога», «Рука Оберона», «Володіння Хаосу»). У другій частині в центрі оповідання його син Мерлін. Йому доведеться зробити нелегкий вибір. Від його рішення залежить рівновага сил і світів. (П'ятикнижжя Мерліна - «Карти долі», «Кров Амбера», «Знак Хаосу», «Лицар Тіней», «Принц Хаосу»). Розповісти весь сюжет Хронік просто неможливо. Це дивовижні історії, які наповнені пригодами і інтригами. Кожна книга відкриває щось нове і неповторне. Хроніки Амбера - класика жанру фентезі.", "image_url"=>"Image url"}, "commit"=>"Create Book"} +  (0.1ms) begin transaction + SQL (1.7ms) INSERT INTO "books" ("title", "auth", "zhanr", "pages_qty", "description", "image_url", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["title", "Хроніки Амбера"], ["auth", "Роджер Желязни"], ["zhanr", "Фентезі"], ["pages_qty", "1600"], ["description", "Хроніки Амбера складаються з десяти книг, де розкривається дивовижна всесвіт. Амбер складається зі світу Порядку та світу Хаосу. У центрі подій дев'ять дітей давно зниклого короля Амбера Оберона. Вони всі спадкоємці наймогутнішого престолу. Вони забули про родинних зв'язках, і плетуть інтриги, щоб домогтися влади. Хроніки розділені на дві частини. У першій головний герой Корвін, член королівської сім'ї. Йому належить пройти безліч випробувань, щоб, врешті-решт, зрозуміти, що йому не потрібна влада. (П'ятикнижжя Корвіна - «Дев'ять принців Амбера», «Рушниці Авалона», «Знак Єдинорога», «Рука Оберона», «Володіння Хаосу»). У другій частині в центрі оповідання його син Мерлін. Йому доведеться зробити нелегкий вибір. Від його рішення залежить рівновага сил і світів. (П'ятикнижжя Мерліна - «Карти долі», «Кров Амбера», «Знак Хаосу», «Лицар Тіней», «Принц Хаосу»). Розповісти весь сюжет Хронік просто неможливо. Це дивовижні історії, які наповнені пригодами і інтригами. Кожна книга відкриває щось нове і неповторне. Хроніки Амбера - класика жанру фентезі."], ["image_url", "Image url"], ["created_at", 2017-04-27 21:29:29 UTC], ["updated_at", 2017-04-27 21:29:29 UTC]] +  (199.4ms) commit transaction +Redirected to http://localhost:3000/books/5 +Completed 302 Found in 212ms (ActiveRecord: 201.2ms) + + +Started GET "/books/5" for 127.0.0.1 at 2017-04-28 00:29:29 +0300 +Processing by BooksController#show as HTML + Parameters: {"id"=>"5"} + Book Load (0.3ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering books/show.html.erb within layouts/application + Rendered books/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 38ms (Views: 36.2ms | ActiveRecord: 0.3ms) + + +Started GET "/books" for 127.0.0.1 at 2017-04-28 00:29:31 +0300 +Processing by BooksController#index as HTML + Rendering books/index.html.erb within layouts/application + Book Load (0.4ms) SELECT "books".* FROM "books" + Rendered books/index.html.erb within layouts/application (6.7ms) +Completed 200 OK in 55ms (Views: 52.8ms | ActiveRecord: 0.4ms) + + +Started GET "/books/new" for 127.0.0.1 at 2017-04-28 00:29:33 +0300 +Processing by BooksController#new as HTML + Rendering books/new.html.erb within layouts/application + Rendered books/_form.html.erb (6.0ms) + Rendered books/new.html.erb within layouts/application (42.3ms) +Completed 200 OK in 87ms (Views: 85.2ms | ActiveRecord: 0.0ms) + + +Started POST "/books" for 127.0.0.1 at 2017-04-28 00:30:46 +0300 +Processing by BooksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"mx+8lagAogv85OLk4dBIVhestX4sEnja139yhb89c3s2DhS4dqi8QucuT/0kcBqLqLOeydSenKSoObTa+0uyXQ==", "book"=>{"title"=>"Володар кілець", "auth"=>"Джон Рональд Руел Толкін", "zhanr"=>"Фентезі", "pages_qty"=>"800", "description"=>"рилогію під назвою «Володар кілець» знає кожна людина в світі. Перш, ніж автор створив світ Середзем'я, який ми його бачимо в сазі. Толкін написав книгу «Хоббіт, або Туди і назад». Ця книга стала своєрідним прологом до тих подій, які ми побачимо у Володарі кілець. Роман-епопея став класикою жанру, де є все - ельфи, гноми, дракони, маги, орки, гобліни, люди і хоббіти. Ви напевно дивилися фільми про пригоди Більбо і Фродо. І якщо ще не читали сагу, то обов'язково прочитайте, щоб повністю відчути чудеса Середзем'я.", "image_url"=>"Image url"}, "commit"=>"Create Book"} +  (0.1ms) begin transaction + SQL (1.3ms) INSERT INTO "books" ("title", "auth", "zhanr", "pages_qty", "description", "image_url", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["title", "Володар кілець"], ["auth", "Джон Рональд Руел Толкін"], ["zhanr", "Фентезі"], ["pages_qty", "800"], ["description", "рилогію під назвою «Володар кілець» знає кожна людина в світі. Перш, ніж автор створив світ Середзем'я, який ми його бачимо в сазі. Толкін написав книгу «Хоббіт, або Туди і назад». Ця книга стала своєрідним прологом до тих подій, які ми побачимо у Володарі кілець. Роман-епопея став класикою жанру, де є все - ельфи, гноми, дракони, маги, орки, гобліни, люди і хоббіти. Ви напевно дивилися фільми про пригоди Більбо і Фродо. І якщо ще не читали сагу, то обов'язково прочитайте, щоб повністю відчути чудеса Середзем'я."], ["image_url", "Image url"], ["created_at", 2017-04-27 21:30:46 UTC], ["updated_at", 2017-04-27 21:30:46 UTC]] +  (194.9ms) commit transaction +Redirected to http://localhost:3000/books/6 +Completed 302 Found in 203ms (ActiveRecord: 196.4ms) + + +Started GET "/books/6" for 127.0.0.1 at 2017-04-28 00:30:47 +0300 +Processing by BooksController#show as HTML + Parameters: {"id"=>"6"} + Book Load (0.3ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering books/show.html.erb within layouts/application + Rendered books/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 43ms (Views: 32.0ms | ActiveRecord: 0.3ms) + + +Started GET "/books" for 127.0.0.1 at 2017-04-28 00:30:50 +0300 +Processing by BooksController#index as HTML + Rendering books/index.html.erb within layouts/application + Book Load (0.3ms) SELECT "books".* FROM "books" + Rendered books/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 42ms (Views: 40.3ms | ActiveRecord: 0.3ms) + + +Started GET "/books/new" for 127.0.0.1 at 2017-04-28 00:30:52 +0300 +Processing by BooksController#new as HTML + Rendering books/new.html.erb within layouts/application + Rendered books/_form.html.erb (9.2ms) + Rendered books/new.html.erb within layouts/application (11.7ms) +Completed 200 OK in 57ms (Views: 54.8ms | ActiveRecord: 0.0ms) + + +Started POST "/books" for 127.0.0.1 at 2017-04-28 00:32:06 +0300 +Processing by BooksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"M7y0uk1A4rcAxDnISzPk5FYmYvnwgIhQUAQGbt+BK5ierRyXk+j8/hsOlNGOk7Y56TlJTggMbC4vQsAxm/fqvg==", "book"=>{"title"=>"Гаррі Поттер", "auth"=>"Джоан Роулінг", "zhanr"=>"Фентезі", "pages_qty"=>"1400", "description"=>"Історія про хлопчика, який вижив - знайома всім не з чуток. Багато виросли на книгах про Гаррі, а багато хто тільки дивилися фільми. Ніхто не сперечається, що екранізації дуже гарні, але книги більш повно відображають світ магії і почуття і характер героїв. Ви знайдете цікаві моменти, які не ввійшли в фільми. Книги про Гаррі дуже повчальні і заслуговують того, щоб їх читати і перечитувати. Ця історія вчить цінувати дружбу, залишатися вірним, добрим і не сумніватися в своєму виборі.", "image_url"=>"Image url"}, "commit"=>"Create Book"} +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "books" ("title", "auth", "zhanr", "pages_qty", "description", "image_url", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["title", "Гаррі Поттер"], ["auth", "Джоан Роулінг"], ["zhanr", "Фентезі"], ["pages_qty", "1400"], ["description", "Історія про хлопчика, який вижив - знайома всім не з чуток. Багато виросли на книгах про Гаррі, а багато хто тільки дивилися фільми. Ніхто не сперечається, що екранізації дуже гарні, але книги більш повно відображають світ магії і почуття і характер героїв. Ви знайдете цікаві моменти, які не ввійшли в фільми. Книги про Гаррі дуже повчальні і заслуговують того, щоб їх читати і перечитувати. Ця історія вчить цінувати дружбу, залишатися вірним, добрим і не сумніватися в своєму виборі."], ["image_url", "Image url"], ["created_at", 2017-04-27 21:32:06 UTC], ["updated_at", 2017-04-27 21:32:06 UTC]] +  (164.6ms) commit transaction +Redirected to http://localhost:3000/books/7 +Completed 302 Found in 170ms (ActiveRecord: 165.2ms) + + +Started GET "/books/7" for 127.0.0.1 at 2017-04-28 00:32:06 +0300 +Processing by BooksController#show as HTML + Parameters: {"id"=>"7"} + Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT ? [["id", 7], ["LIMIT", 1]] + Rendering books/show.html.erb within layouts/application + Rendered books/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 37ms (Views: 34.6ms | ActiveRecord: 0.1ms) + + +Started GET "/books" for 127.0.0.1 at 2017-04-28 00:32:11 +0300 +Processing by BooksController#index as HTML + Rendering books/index.html.erb within layouts/application + Book Load (0.3ms) SELECT "books".* FROM "books" + Rendered books/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 49ms (Views: 47.6ms | ActiveRecord: 0.3ms) + + +Started GET "/books/new" for 127.0.0.1 at 2017-04-28 00:34:03 +0300 +Processing by BooksController#new as HTML + Rendering books/new.html.erb within layouts/application + Rendered books/_form.html.erb (9.1ms) + Rendered books/new.html.erb within layouts/application (11.1ms) +Completed 200 OK in 56ms (Views: 53.8ms | ActiveRecord: 0.0ms) + + +Started POST "/books" for 127.0.0.1 at 2017-04-28 00:34:35 +0300 +Processing by BooksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"E2rtxG7y426v/ffXE1BHWUbx7RW1k9qIzTwplSBdiY++e0XpsFr9J7Q3Ws7W8BWE+e7Gok0fPvayeu/KZCtIqQ==", "book"=>{"title"=>"Меч істини", "auth"=>"Террі Гудкайнд", "zhanr"=>"Фентезі", "pages_qty"=>"1400", "description"=>"Серія складається з 11 книг, і декількох приквелів і сіквелів. Світ, який змінився після страшної війни. Світ став жорстоким і похмурим, тут не залишилося місця добру. Головний герой Річард - лісовий провідник, який став Бойовим чародія і шукачем Істини. На сторінках серії ви зустрінете багато персонажів, які ведуть вічну боротьбу за владу. Не обійшлося і без найбільшого лиходія - чорний маг Дарка Рал. Річарду доведеться битися з чорним магом, щоб роздобути три чарівних шкатулки, кожна з яких містить великий дар. Якщо ви фанат боїв, інтриг і бойової магії, то ця серія для вас.", "image_url"=>"Image url"}, "commit"=>"Create Book"} +  (0.1ms) begin transaction + SQL (1.2ms) INSERT INTO "books" ("title", "auth", "zhanr", "pages_qty", "description", "image_url", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["title", "Меч істини"], ["auth", "Террі Гудкайнд"], ["zhanr", "Фентезі"], ["pages_qty", "1400"], ["description", "Серія складається з 11 книг, і декількох приквелів і сіквелів. Світ, який змінився після страшної війни. Світ став жорстоким і похмурим, тут не залишилося місця добру. Головний герой Річард - лісовий провідник, який став Бойовим чародія і шукачем Істини. На сторінках серії ви зустрінете багато персонажів, які ведуть вічну боротьбу за владу. Не обійшлося і без найбільшого лиходія - чорний маг Дарка Рал. Річарду доведеться битися з чорним магом, щоб роздобути три чарівних шкатулки, кожна з яких містить великий дар. Якщо ви фанат боїв, інтриг і бойової магії, то ця серія для вас."], ["image_url", "Image url"], ["created_at", 2017-04-27 21:34:35 UTC], ["updated_at", 2017-04-27 21:34:35 UTC]] +  (179.2ms) commit transaction +Redirected to http://localhost:3000/books/8 +Completed 302 Found in 186ms (ActiveRecord: 180.5ms) + + +Started GET "/books/8" for 127.0.0.1 at 2017-04-28 00:34:36 +0300 +Processing by BooksController#show as HTML + Parameters: {"id"=>"8"} + Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + Rendering books/show.html.erb within layouts/application + Rendered books/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 39ms (Views: 37.1ms | ActiveRecord: 0.1ms) + + +Started GET "/books" for 127.0.0.1 at 2017-04-28 00:34:55 +0300 +Processing by BooksController#index as HTML + Rendering books/index.html.erb within layouts/application + Book Load (0.3ms) SELECT "books".* FROM "books" + Rendered books/index.html.erb within layouts/application (5.8ms) +Completed 200 OK in 43ms (Views: 41.2ms | ActiveRecord: 0.3ms) + + +Started GET "/books/new" for 127.0.0.1 at 2017-04-28 00:35:21 +0300 +Processing by BooksController#new as HTML + Rendering books/new.html.erb within layouts/application + Rendered books/_form.html.erb (14.4ms) + Rendered books/new.html.erb within layouts/application (16.0ms) +Completed 200 OK in 53ms (Views: 51.3ms | ActiveRecord: 0.0ms) + + +Started POST "/books" for 127.0.0.1 at 2017-04-28 00:35:50 +0300 +Processing by BooksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"urKqyn/u3NXeKyocEBMTvcHq7iGecLGYJIC+6hr8jD4XowLnoUbCnMXhhwXVs0FgfvXFlmb8VeZbxni1XopNGA==", "book"=>{"title"=>"Темна Вежа", "auth"=>"Стівен Кінг", "zhanr"=>"Фентезі", "pages_qty"=>"900", "description"=>" Серія «Темна Вежа» складається з 8 книг. Історія про Стрілку Роланда Діскейна, який шукає Темну Вежу. Ця вежа є центром всіх світів і знаходиться поза часом і простором. Роланду необхідно відшукати Темну Вежу, щоб пасти свій світ від руйнування. Роланду доведеться пройти безліч випробувань, щоб дійти до кінцевої мети. Відразу необхідно попередити, що читати серію буде нелегко, але Темна Вежа стоїть того, щоб її прочитали.", "image_url"=>"Image url"}, "commit"=>"Create Book"} +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "books" ("title", "auth", "zhanr", "pages_qty", "description", "image_url", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["title", "Темна Вежа"], ["auth", "Стівен Кінг"], ["zhanr", "Фентезі"], ["pages_qty", "900"], ["description", " Серія «Темна Вежа» складається з 8 книг. Історія про Стрілку Роланда Діскейна, який шукає Темну Вежу. Ця вежа є центром всіх світів і знаходиться поза часом і простором. Роланду необхідно відшукати Темну Вежу, щоб пасти свій світ від руйнування. Роланду доведеться пройти безліч випробувань, щоб дійти до кінцевої мети. Відразу необхідно попередити, що читати серію буде нелегко, але Темна Вежа стоїть того, щоб її прочитали."], ["image_url", "Image url"], ["created_at", 2017-04-27 21:35:50 UTC], ["updated_at", 2017-04-27 21:35:50 UTC]] +  (225.2ms) commit transaction +Redirected to http://localhost:3000/books/9 +Completed 302 Found in 232ms (ActiveRecord: 225.8ms) + + +Started GET "/books/9" for 127.0.0.1 at 2017-04-28 00:35:51 +0300 +Processing by BooksController#show as HTML + Parameters: {"id"=>"9"} + Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT ? [["id", 9], ["LIMIT", 1]] + Rendering books/show.html.erb within layouts/application + Rendered books/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 35ms (Views: 33.6ms | ActiveRecord: 0.1ms) + + +Started GET "/books" for 127.0.0.1 at 2017-04-28 00:35:55 +0300 +Processing by BooksController#index as HTML + Rendering books/index.html.erb within layouts/application + Book Load (0.3ms) SELECT "books".* FROM "books" + Rendered books/index.html.erb within layouts/application (5.8ms) +Completed 200 OK in 44ms (Views: 42.7ms | ActiveRecord: 0.3ms) + + +Started GET "/books" for 127.0.0.1 at 2017-04-28 00:42:02 +0300 +Processing by BooksController#index as HTML + Rendering books/index.html.erb within layouts/application + Book Load (1.9ms) SELECT "books".* FROM "books" + Rendered books/index.html.erb within layouts/application (27.9ms) +Completed 200 OK in 76ms (Views: 65.4ms | ActiveRecord: 3.0ms) + + +Started GET "/books" for 127.0.0.1 at 2017-04-28 00:42:44 +0300 +Processing by BooksController#index as HTML + Rendering books/index.html.erb within layouts/application + Book Load (0.3ms) SELECT "books".* FROM "books" + Rendered books/index.html.erb within layouts/application (6.6ms) +Completed 200 OK in 44ms (Views: 42.0ms | ActiveRecord: 0.3ms) + + +Started GET "/books/1" for 127.0.0.1 at 2017-04-28 00:42:49 +0300 +Processing by BooksController#show as HTML + Parameters: {"id"=>"1"} + Book Load (0.7ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering books/show.html.erb within layouts/application + Rendered books/show.html.erb within layouts/application (3.7ms) +Completed 200 OK in 52ms (Views: 48.1ms | ActiveRecord: 0.7ms) + + +Started GET "/books" for 127.0.0.1 at 2017-04-28 00:42:57 +0300 +Processing by BooksController#index as HTML + Rendering books/index.html.erb within layouts/application + Book Load (0.5ms) SELECT "books".* FROM "books" + Rendered books/index.html.erb within layouts/application (5.2ms) +Completed 200 OK in 49ms (Views: 46.9ms | ActiveRecord: 0.5ms) + + +Started DELETE "/books/1" for 127.0.0.1 at 2017-04-28 00:43:02 +0300 +Processing by BooksController#destroy as HTML + Parameters: {"authenticity_token"=>"1fM/DGmDP/SPtU6C1wbbt9Kmp9RXdGN/JKMVV+K5eLKh87vdr6/JekkuUtT0rf0zspaWlE0SDcpzguR+lqIsjQ==", "id"=>"1"} + Book Load (0.7ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.1ms) DELETE FROM "books" WHERE "books"."id" = ? [["id", 1]] +  (121.1ms) commit transaction +Redirected to http://localhost:3000/books +Completed 302 Found in 128ms (ActiveRecord: 123.0ms) + + +Started GET "/books" for 127.0.0.1 at 2017-04-28 00:43:03 +0300 +Processing by BooksController#index as HTML + Rendering books/index.html.erb within layouts/application + Book Load (0.3ms) SELECT "books".* FROM "books" + Rendered books/index.html.erb within layouts/application (7.1ms) +Completed 200 OK in 43ms (Views: 41.4ms | ActiveRecord: 0.3ms) + + +Started GET "/books/2" for 127.0.0.1 at 2017-04-28 00:43:06 +0300 +Processing by BooksController#show as HTML + Parameters: {"id"=>"2"} + Book Load (0.5ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering books/show.html.erb within layouts/application + Rendered books/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 38ms (Views: 35.6ms | ActiveRecord: 0.5ms) + + +Started GET "/books/2/edit" for 127.0.0.1 at 2017-04-28 00:43:10 +0300 +Processing by BooksController#edit as HTML + Parameters: {"id"=>"2"} + Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering books/edit.html.erb within layouts/application + Rendered books/_form.html.erb (5.4ms) + Rendered books/edit.html.erb within layouts/application (7.1ms) +Completed 200 OK in 47ms (Views: 45.0ms | ActiveRecord: 0.1ms) + + +Started GET "/books/new" for 127.0.0.1 at 2017-04-28 00:43:18 +0300 +Processing by BooksController#new as HTML + Rendering books/new.html.erb within layouts/application + Rendered books/_form.html.erb (7.7ms) + Rendered books/new.html.erb within layouts/application (9.4ms) +Completed 200 OK in 50ms (Views: 48.2ms | ActiveRecord: 0.0ms) + + +Started POST "/books" for 127.0.0.1 at 2017-04-28 00:44:03 +0300 +Processing by BooksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"OrMqS/l90OrfdpLdbceKre48YO9SjyliSROX3D6oLMyXooJmJ9XOo8S8P8SoZ9hwUSNLWKoDzRw2VVGDet7t6g==", "book"=>{"title"=>"Пісня льоду і полум'я", "auth"=>"Джордж Мартін", "zhanr"=>"Фентезі", "pages_qty"=>"3000", "description"=>"Ви вже знайомі з цим циклом творів. Це не зовсім фантастичний світ, хоча там є і дракони і маги, і дивовижні магічні істоти. Світ написаний Мартіном - альтернативне середньовіччі. Серія ще не дописана, на даний момент вийшло тільки 5 книг. Автор планує написати ще дві історії.", "image_url"=>"Image url"}, "commit"=>"Create Book"} +  (0.1ms) begin transaction + SQL (1.1ms) INSERT INTO "books" ("title", "auth", "zhanr", "pages_qty", "description", "image_url", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["title", "Пісня льоду і полум'я"], ["auth", "Джордж Мартін"], ["zhanr", "Фентезі"], ["pages_qty", "3000"], ["description", "Ви вже знайомі з цим циклом творів. Це не зовсім фантастичний світ, хоча там є і дракони і маги, і дивовижні магічні істоти. Світ написаний Мартіном - альтернативне середньовіччі. Серія ще не дописана, на даний момент вийшло тільки 5 книг. Автор планує написати ще дві історії."], ["image_url", "Image url"], ["created_at", 2017-04-27 21:44:03 UTC], ["updated_at", 2017-04-27 21:44:03 UTC]] +  (208.6ms) commit transaction +Redirected to http://localhost:3000/books/10 +Completed 302 Found in 215ms (ActiveRecord: 209.8ms) + + +Started GET "/books/10" for 127.0.0.1 at 2017-04-28 00:44:03 +0300 +Processing by BooksController#show as HTML + Parameters: {"id"=>"10"} + Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]] + Rendering books/show.html.erb within layouts/application + Rendered books/show.html.erb within layouts/application (2.6ms) +Completed 200 OK in 40ms (Views: 37.6ms | ActiveRecord: 0.2ms) + + +Started GET "/books" for 127.0.0.1 at 2017-04-28 00:44:06 +0300 +Processing by BooksController#index as HTML + Rendering books/index.html.erb within layouts/application + Book Load (0.3ms) SELECT "books".* FROM "books" + Rendered books/index.html.erb within layouts/application (6.4ms) +Completed 200 OK in 58ms (Views: 56.7ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-04-28 18:45:26 +0300 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by BooksController#index as HTML + Rendering books/index.html.erb within layouts/application + Book Load (14.4ms) SELECT "books".* FROM "books" + Rendered books/index.html.erb within layouts/application (40.4ms) +Completed 200 OK in 2262ms (Views: 2186.0ms | ActiveRecord: 15.4ms) + + +Started GET "/login" for 127.0.0.1 at 2017-04-28 18:45:58 +0300 + +ActionController::RoutingError (No route matches [GET] "/login"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.5.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered collection of /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [30 times] (23.3ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (27.6ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.3ms) +Started GET "/user" for 127.0.0.1 at 2017-04-28 18:47:09 +0300 + +ActionController::RoutingError (No route matches [GET] "/user"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.5.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered collection of /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [30 times] (14.0ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (56.4ms) +Started GET "/user/login" for 127.0.0.1 at 2017-04-28 18:47:15 +0300 + +ActionController::RoutingError (No route matches [GET] "/user/login"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.5.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) + Rendered collection of /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [30 times] (15.4ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (56.6ms) + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Started GET "/user" for 127.0.0.1 at 2017-04-28 18:47:50 +0300 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" + +ActionController::RoutingError (No route matches [GET] "/user"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.5.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered collection of /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [30 times] (14.1ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (10.9ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (13.4ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (81.0ms) +Started GET "/user/new" for 127.0.0.1 at 2017-04-28 18:48:30 +0300 + +ActionController::RoutingError (No route matches [GET] "/user/new"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.5.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered collection of /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [30 times] (19.4ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms) + Rendering /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) + Rendered /home/vital-l/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (57.9ms) +Started GET "/" for 127.0.0.1 at 2017-05-01 00:10:55 +0300 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by BooksController#index as HTML + Rendering books/index.html.erb within layouts/application + Book Load (17.6ms) SELECT "books".* FROM "books" + Rendered books/index.html.erb within layouts/application (51.3ms) +Completed 200 OK in 1340ms (Views: 1252.2ms | ActiveRecord: 18.7ms) + + +Started GET "/" for 127.0.0.1 at 2017-05-03 23:33:38 +0300 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by BooksController#index as HTML + Rendering books/index.html.erb within layouts/application + Book Load (0.3ms) SELECT "books".* FROM "books" + Rendered books/index.html.erb within layouts/application (22.5ms) +Completed 200 OK in 390ms (Views: 366.8ms | ActiveRecord: 1.0ms) + + +Started GET "/index?lang=ua" for 127.0.0.1 at 2017-05-04 22:44:18 +0300 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by BooksController#index as HTML + Parameters: {"lang"=>"ua"} + Rendering books/index.html.erb within layouts/application + Book Load (14.3ms) SELECT "books".* FROM "books" + Rendered books/index.html.erb within layouts/application (37.4ms) +Completed 200 OK in 1600ms (Views: 1377.5ms | ActiveRecord: 15.1ms) + + +Started GET "/" for 127.0.0.1 at 2017-05-05 14:02:23 +0300 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by BooksController#index as HTML + Rendering books/index.html.erb within layouts/application + Book Load (14.4ms) SELECT "books".* FROM "books" + Rendered books/index.html.erb within layouts/application (36.1ms) +Completed 200 OK in 1370ms (Views: 1277.7ms | ActiveRecord: 15.2ms) + + diff --git a/public/404.html b/public/404.html new file mode 100644 index 0000000..b612547 --- /dev/null +++ b/public/404.html @@ -0,0 +1,67 @@ + + + + The page you were looking for doesn't exist (404) + + + + + + +
+
+

The page you were looking for doesn't exist.

+

You may have mistyped the address or the page may have moved.

+
+

If you are the application owner check the logs for more information.

+
+ + diff --git a/public/422.html b/public/422.html new file mode 100644 index 0000000..a21f82b --- /dev/null +++ b/public/422.html @@ -0,0 +1,67 @@ + + + + The change you wanted was rejected (422) + + + + + + +
+
+

The change you wanted was rejected.

+

Maybe you tried to change something you didn't have access to.

+
+

If you are the application owner check the logs for more information.

+
+ + diff --git a/public/500.html b/public/500.html new file mode 100644 index 0000000..061abc5 --- /dev/null +++ b/public/500.html @@ -0,0 +1,66 @@ + + + + We're sorry, but something went wrong (500) + + + + + + +
+
+

We're sorry, but something went wrong.

+
+

If you are the application owner check the logs for more information.

+
+ + diff --git a/public/apple-touch-icon-precomposed.png b/public/apple-touch-icon-precomposed.png new file mode 100644 index 0000000..e69de29 diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png new file mode 100644 index 0000000..e69de29 diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..e69de29 diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 0000000..3c9c7c0 --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,5 @@ +# See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file +# +# To ban all spiders from the entire site uncomment the next two lines: +# User-agent: * +# Disallow: / diff --git a/test/controllers/.keep b/test/controllers/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/controllers/books_controller_test.rb b/test/controllers/books_controller_test.rb new file mode 100644 index 0000000..7593a5b --- /dev/null +++ b/test/controllers/books_controller_test.rb @@ -0,0 +1,48 @@ +require 'test_helper' + +class BooksControllerTest < ActionDispatch::IntegrationTest + setup do + @book = books(:one) + end + + test "should get index" do + get books_url + assert_response :success + end + + test "should get new" do + get new_book_url + assert_response :success + end + + test "should create book" do + assert_difference('Book.count') do + post books_url, params: { book: { title: @book. title, auth: @book.auth, description: @book.description, image_url: @book.image_url, pages_qty: @book.pages_qty, zhanr: @book.zhanr } } + end + + assert_redirected_to book_url(Book.last) + end + + test "should show book" do + get book_url(@book) + assert_response :success + end + + test "should get edit" do + get edit_book_url(@book) + assert_response :success + end + + test "should update book" do + patch book_url(@book), params: { book: { title: @book. title, auth: @book.auth, description: @book.description, image_url: @book.image_url, pages_qty: @book.pages_qty, zhanr: @book.zhanr } } + assert_redirected_to book_url(@book) + end + + test "should destroy book" do + assert_difference('Book.count', -1) do + delete book_url(@book) + end + + assert_redirected_to books_url + end +end diff --git a/test/controllers/line_items_controller_test.rb b/test/controllers/line_items_controller_test.rb new file mode 100644 index 0000000..e28b50f --- /dev/null +++ b/test/controllers/line_items_controller_test.rb @@ -0,0 +1,48 @@ +require 'test_helper' + +class LineItemsControllerTest < ActionDispatch::IntegrationTest + setup do + @line_item = line_items(:one) + end + + test "should get index" do + get line_items_url + assert_response :success + end + + test "should get new" do + get new_line_item_url + assert_response :success + end + + test "should create line_item" do + assert_difference('LineItem.count') do + post line_items_url, params: { line_item: { product_id: @line_item.product_id } } + end + + assert_redirected_to line_item_url(LineItem.last) + end + + test "should show line_item" do + get line_item_url(@line_item) + assert_response :success + end + + test "should get edit" do + get edit_line_item_url(@line_item) + assert_response :success + end + + test "should update line_item" do + patch line_item_url(@line_item), params: { line_item: { product_id: @line_item.product_id } } + assert_redirected_to line_item_url(@line_item) + end + + test "should destroy line_item" do + assert_difference('LineItem.count', -1) do + delete line_item_url(@line_item) + end + + assert_redirected_to line_items_url + end +end diff --git a/test/controllers/products_controller_test.rb b/test/controllers/products_controller_test.rb new file mode 100644 index 0000000..ffdf6e9 --- /dev/null +++ b/test/controllers/products_controller_test.rb @@ -0,0 +1,48 @@ +require 'test_helper' + +class ProductsControllerTest < ActionDispatch::IntegrationTest + setup do + @product = products(:one) + end + + test "should get index" do + get products_url + assert_response :success + end + + test "should get new" do + get new_product_url + assert_response :success + end + + test "should create product" do + assert_difference('Product.count') do + post products_url, params: { product: { categories: @product.categories, description: @product.description, image_url: @product.image_url, title: @product.title } } + end + + assert_redirected_to product_url(Product.last) + end + + test "should show product" do + get product_url(@product) + assert_response :success + end + + test "should get edit" do + get edit_product_url(@product) + assert_response :success + end + + test "should update product" do + patch product_url(@product), params: { product: { categories: @product.categories, description: @product.description, image_url: @product.image_url, title: @product.title } } + assert_redirected_to product_url(@product) + end + + test "should destroy product" do + assert_difference('Product.count', -1) do + delete product_url(@product) + end + + assert_redirected_to products_url + end +end diff --git a/test/controllers/user_controller_test.rb b/test/controllers/user_controller_test.rb new file mode 100644 index 0000000..314cd5a --- /dev/null +++ b/test/controllers/user_controller_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class UserControllerTest < ActionDispatch::IntegrationTest + # test "the truth" do + # assert true + # end +end diff --git a/test/fixtures/.keep b/test/fixtures/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/fixtures/books.yml b/test/fixtures/books.yml new file mode 100644 index 0000000..d8850bb --- /dev/null +++ b/test/fixtures/books.yml @@ -0,0 +1,17 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + title: MyString + auth: MyString + zhanr: MyString + pages_qty: MyString + description: MyText + image_url: MyString + +two: + title: MyString + auth: MyString + zhanr: MyString + pages_qty: MyString + description: MyText + image_url: MyString diff --git a/test/fixtures/files/.keep b/test/fixtures/files/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/fixtures/line_items.yml b/test/fixtures/line_items.yml new file mode 100644 index 0000000..22325c9 --- /dev/null +++ b/test/fixtures/line_items.yml @@ -0,0 +1,7 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + product_id: 1 + +two: + product_id: 1 diff --git a/test/fixtures/products.yml b/test/fixtures/products.yml new file mode 100644 index 0000000..5e7df1a --- /dev/null +++ b/test/fixtures/products.yml @@ -0,0 +1,13 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + title: MyString + categories: MyString + description: MyText + image_url: MyString + +two: + title: MyString + categories: MyString + description: MyText + image_url: MyString diff --git a/test/fixtures/users.yml b/test/fixtures/users.yml new file mode 100644 index 0000000..4faffdb --- /dev/null +++ b/test/fixtures/users.yml @@ -0,0 +1,11 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + name: MyString + login: MyString + password: MyString + +two: + name: MyString + login: MyString + password: MyString diff --git a/test/helpers/.keep b/test/helpers/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/integration/.keep b/test/integration/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/mailers/.keep b/test/mailers/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/models/.keep b/test/models/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/models/book_test.rb b/test/models/book_test.rb new file mode 100644 index 0000000..e48079d --- /dev/null +++ b/test/models/book_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class BookTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end diff --git a/test/models/line_item_test.rb b/test/models/line_item_test.rb new file mode 100644 index 0000000..9371a40 --- /dev/null +++ b/test/models/line_item_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class LineItemTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end diff --git a/test/models/product_test.rb b/test/models/product_test.rb new file mode 100644 index 0000000..211cdd0 --- /dev/null +++ b/test/models/product_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class ProductTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end diff --git a/test/models/user_test.rb b/test/models/user_test.rb new file mode 100644 index 0000000..82f61e0 --- /dev/null +++ b/test/models/user_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class UserTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end diff --git a/test/test_helper.rb b/test/test_helper.rb new file mode 100644 index 0000000..92e39b2 --- /dev/null +++ b/test/test_helper.rb @@ -0,0 +1,10 @@ +ENV['RAILS_ENV'] ||= 'test' +require File.expand_path('../../config/environment', __FILE__) +require 'rails/test_help' + +class ActiveSupport::TestCase + # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order. + fixtures :all + + # Add more helper methods to be used by all tests here... +end diff --git a/tmp/.keep b/tmp/.keep new file mode 100644 index 0000000..e69de29 diff --git a/tmp/cache/assets/sprockets/v3.0/-U/-U06-oJKAONm0QB-o1Wt4-jIfWsoMkEz33ILZJzRPwY.cache b/tmp/cache/assets/sprockets/v3.0/-U/-U06-oJKAONm0QB-o1Wt4-jIfWsoMkEz33ILZJzRPwY.cache new file mode 100644 index 0000000..4524513 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/-U/-U06-oJKAONm0QB-o1Wt4-jIfWsoMkEz33ILZJzRPwY.cache @@ -0,0 +1 @@ +I"app/assets/stylesheets/books.scss?type=text/css&pipeline=self&id=4b9a392bb645164cc8b6d6d706d550b4684fa0d8a9141d1153abeba2f6331703:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/-o/-oXRvx-k6dG6W47lXCKRhg15vCzZ29fPNDsFLS6TAHA.cache b/tmp/cache/assets/sprockets/v3.0/-o/-oXRvx-k6dG6W47lXCKRhg15vCzZ29fPNDsFLS6TAHA.cache new file mode 100644 index 0000000..c9d45b6 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/-o/-oXRvx-k6dG6W47lXCKRhg15vCzZ29fPNDsFLS6TAHA.cache @@ -0,0 +1 @@ +I"app/assets/javascripts/cable.js?type=application/javascript&pipeline=self&id=0d041ca4bc897c49763989f5112eba928a645fd192124f8507a7cb0016e3cc6c:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/-p/-phRrD6_5mTmlevmkCTv7_Hv76ViKcPAmKbK7aw3efk.cache b/tmp/cache/assets/sprockets/v3.0/-p/-phRrD6_5mTmlevmkCTv7_Hv76ViKcPAmKbK7aw3efk.cache new file mode 100644 index 0000000..46434ba --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/-p/-phRrD6_5mTmlevmkCTv7_Hv76ViKcPAmKbK7aw3efk.cache @@ -0,0 +1 @@ +"%aY})vH`=Ty-0@g~ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/0n/0nhUpIC385CXy-DvEOGdOKOFHA2f7z2dhKLmccGXKXM.cache b/tmp/cache/assets/sprockets/v3.0/0n/0nhUpIC385CXy-DvEOGdOKOFHA2f7z2dhKLmccGXKXM.cache new file mode 100644 index 0000000..a9fce71 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/0n/0nhUpIC385CXy-DvEOGdOKOFHA2f7z2dhKLmccGXKXM.cache @@ -0,0 +1 @@ +I"app/assets/stylesheets/user.scss?type=text/css&pipeline=self&id=0c55daf1a0f76249ab2a2fd9a50d00ca1ac79b50c2d8605739145cbd9e8f02a0:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/10/10sJT3j6wJG6XP4OJvAzh_rbypK4Z-4-5eKY6iwjx2c.cache b/tmp/cache/assets/sprockets/v3.0/10/10sJT3j6wJG6XP4OJvAzh_rbypK4Z-4-5eKY6iwjx2c.cache new file mode 100644 index 0000000..edcdea4 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/10/10sJT3j6wJG6XP4OJvAzh_rbypK4Z-4-5eKY6iwjx2c.cache @@ -0,0 +1 @@ +I"app/assets/stylesheets/scaffolds.scss?type=text/css&pipeline=self&id=29aca0753c24fd09a8d7a87b1f18e1c3e069c4cc30bdcc06d8819026068e90c0:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/2d/2dXa9gYbXZXEEVzYaYN4OS538oUICMUTbKmz3XfPqLw.cache b/tmp/cache/assets/sprockets/v3.0/2d/2dXa9gYbXZXEEVzYaYN4OS538oUICMUTbKmz3XfPqLw.cache new file mode 100644 index 0000000..ae2f9b4 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/2d/2dXa9gYbXZXEEVzYaYN4OS538oUICMUTbKmz3XfPqLw.cache @@ -0,0 +1 @@ +I"app/assets/javascripts/application.js?type=application/javascript&pipeline=debug&id=5e1f36341578a49088ac524830dced9ad478af5f5cc9d3a9b636f576939bef07:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/3e/3eUb170xyWWYYSSoT4ZsonDRJSjhp6yQQYDqvWklFYk.cache b/tmp/cache/assets/sprockets/v3.0/3e/3eUb170xyWWYYSSoT4ZsonDRJSjhp6yQQYDqvWklFYk.cache new file mode 100644 index 0000000..a254460 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/3e/3eUb170xyWWYYSSoT4ZsonDRJSjhp6yQQYDqvWklFYk.cache @@ -0,0 +1 @@ +I"app/assets/stylesheets/application.css?type=text/css&pipeline=debug&id=2991a80bceaf614066c3054eb8fc5b62a3beb979dfc0b620610ffd3208433e67:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/4e/4eSc9jJ8EimSwebvjNIdL-nlqjfAykZarwX7W9-690Y.cache b/tmp/cache/assets/sprockets/v3.0/4e/4eSc9jJ8EimSwebvjNIdL-nlqjfAykZarwX7W9-690Y.cache new file mode 100644 index 0000000..2c204b9 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/4e/4eSc9jJ8EimSwebvjNIdL-nlqjfAykZarwX7W9-690Y.cache @@ -0,0 +1 @@ +I"app/assets/stylesheets/products.scss?type=text/css&pipeline=self&id=9d530f1f5f12f98a323137baf41668b896f8a88dcc520b7fda8de22fda8ff2b3:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/4v/4v4Y5lRtnA2tMozcI7DOFUmGH4fWKuXEQQHI6vLEmQ8.cache b/tmp/cache/assets/sprockets/v3.0/4v/4v4Y5lRtnA2tMozcI7DOFUmGH4fWKuXEQQHI6vLEmQ8.cache new file mode 100644 index 0000000..4f60e70 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/4v/4v4Y5lRtnA2tMozcI7DOFUmGH4fWKuXEQQHI6vLEmQ8.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/4z/4z_BvqP2j5hiUcMLwdM65jHA9XWkjBEmygPDPKE08MM.cache b/tmp/cache/assets/sprockets/v3.0/4z/4z_BvqP2j5hiUcMLwdM65jHA9XWkjBEmygPDPKE08MM.cache new file mode 100644 index 0000000..74a1192 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/4z/4z_BvqP2j5hiUcMLwdM65jHA9XWkjBEmygPDPKE08MM.cache @@ -0,0 +1 @@ +I"app/assets/stylesheets/application.css?type=text/css&pipeline=debug&id=142c7591ac44e6feefe0b4ee435b08b81d1d2924343a1bac15a920f13da8f9dd:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/50/500biPrqytDVhcHhLujXV7DkTN8DnrgwqEtLEaA-zBs.cache b/tmp/cache/assets/sprockets/v3.0/50/500biPrqytDVhcHhLujXV7DkTN8DnrgwqEtLEaA-zBs.cache new file mode 100644 index 0000000..844398d --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/50/500biPrqytDVhcHhLujXV7DkTN8DnrgwqEtLEaA-zBs.cache @@ -0,0 +1 @@ +"%Ɠ7^~e/`_"-:ue& \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/5C/5C4jS72zInGHZFDrLl1ybH44D9-U4-ZsMhmgLYptx0c.cache b/tmp/cache/assets/sprockets/v3.0/5C/5C4jS72zInGHZFDrLl1ybH44D9-U4-ZsMhmgLYptx0c.cache new file mode 100644 index 0000000..1d0d460 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/5C/5C4jS72zInGHZFDrLl1ybH44D9-U4-ZsMhmgLYptx0c.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/5h/5hjyEp7GIhlUPbMyb8ibZYUGTGXqxCTXmqXEfxsih_U.cache b/tmp/cache/assets/sprockets/v3.0/5h/5hjyEp7GIhlUPbMyb8ibZYUGTGXqxCTXmqXEfxsih_U.cache new file mode 100644 index 0000000..cbcf7da Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/5h/5hjyEp7GIhlUPbMyb8ibZYUGTGXqxCTXmqXEfxsih_U.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/5v/5vknyO9Npe_xFqawmBjcKVOjq17gf3O3AYXoTsc8JQ8.cache b/tmp/cache/assets/sprockets/v3.0/5v/5vknyO9Npe_xFqawmBjcKVOjq17gf3O3AYXoTsc8JQ8.cache new file mode 100644 index 0000000..1638f16 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/5v/5vknyO9Npe_xFqawmBjcKVOjq17gf3O3AYXoTsc8JQ8.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/5z/5zfkhWPEIrF0cwXb4hCV2MkSQk2qdxolSn60talD7g8.cache b/tmp/cache/assets/sprockets/v3.0/5z/5zfkhWPEIrF0cwXb4hCV2MkSQk2qdxolSn60talD7g8.cache new file mode 100644 index 0000000..997eddf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/5z/5zfkhWPEIrF0cwXb4hCV2MkSQk2qdxolSn60talD7g8.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/6N/6N3qLFAFzTz8wAl91zcyCKxKG_aQ9V2UlFr_tE4M37s.cache b/tmp/cache/assets/sprockets/v3.0/6N/6N3qLFAFzTz8wAl91zcyCKxKG_aQ9V2UlFr_tE4M37s.cache new file mode 100644 index 0000000..8016266 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/6N/6N3qLFAFzTz8wAl91zcyCKxKG_aQ9V2UlFr_tE4M37s.cache @@ -0,0 +1 @@ +I"app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=bfc219c94c75843467825641c4db5064e2a559afefc353391007edc0a6e6e9c4:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/73/7377s2zY10yYjgGJal_yHvlTORA9YXFvI-7-XqLikLw.cache b/tmp/cache/assets/sprockets/v3.0/73/7377s2zY10yYjgGJal_yHvlTORA9YXFvI-7-XqLikLw.cache new file mode 100644 index 0000000..ab00893 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/73/7377s2zY10yYjgGJal_yHvlTORA9YXFvI-7-XqLikLw.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/7N/7Nh3p0ybbxfaAsUCbPyt1m0EQAeJgvHLk8lw90afVik.cache b/tmp/cache/assets/sprockets/v3.0/7N/7Nh3p0ybbxfaAsUCbPyt1m0EQAeJgvHLk8lw90afVik.cache new file mode 100644 index 0000000..ba8326b --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/7N/7Nh3p0ybbxfaAsUCbPyt1m0EQAeJgvHLk8lw90afVik.cache @@ -0,0 +1 @@ +"%= LgUA!>M)@ǵ#̞ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/8k/8kAW3gvLh9EeQWcYN-LY2z8fKcO3IRhCNJ2yvf6PRWc.cache b/tmp/cache/assets/sprockets/v3.0/8k/8kAW3gvLh9EeQWcYN-LY2z8fKcO3IRhCNJ2yvf6PRWc.cache new file mode 100644 index 0000000..36f83b1 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/8k/8kAW3gvLh9EeQWcYN-LY2z8fKcO3IRhCNJ2yvf6PRWc.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Lprocessors:type=text/css&file_type=text/css&engines=.scss&pipeline=self;TTI"9file-digest://app/assets/stylesheets/line_items.scss;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/8l/8l8bpLvRKQlWtT7a1_TIj76Mh9kozIu04q-nzgdmi3A.cache b/tmp/cache/assets/sprockets/v3.0/8l/8l8bpLvRKQlWtT7a1_TIj76Mh9kozIu04q-nzgdmi3A.cache new file mode 100644 index 0000000..1573510 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/8l/8l8bpLvRKQlWtT7a1_TIj76Mh9kozIu04q-nzgdmi3A.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"|file-digest:///home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actioncable-5.0.2/lib/assets/compiled/action_cable.js;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/9l/9lKizEFZ5FxtNY_llaWdHLfc_aK2Nz6BzNGXoVDv-qc.cache b/tmp/cache/assets/sprockets/v3.0/9l/9lKizEFZ5FxtNY_llaWdHLfc_aK2Nz6BzNGXoVDv-qc.cache new file mode 100644 index 0000000..bf5a719 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/9l/9lKizEFZ5FxtNY_llaWdHLfc_aK2Nz6BzNGXoVDv-qc.cache @@ -0,0 +1 @@ +I"app/assets/stylesheets/scaffolds.scss?type=text/css&pipeline=self&id=9cb1ad72ebdcaae3e8a125d233850575eeaf6f508bcc307efd5721b62dbfcfc9:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/AC/ACL01QjJB63vci4NmWlzBCsR4u_9TsD5DGcpZAxfdtU.cache b/tmp/cache/assets/sprockets/v3.0/AC/ACL01QjJB63vci4NmWlzBCsR4u_9TsD5DGcpZAxfdtU.cache new file mode 100644 index 0000000..3ea3e82 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/AC/ACL01QjJB63vci4NmWlzBCsR4u_9TsD5DGcpZAxfdtU.cache @@ -0,0 +1 @@ +"% quJ:<6-eOVnX \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/AX/AX7nv3MnWXFN30s0iy1lPlp-0qhUyq1WEwXo1wQccjQ.cache b/tmp/cache/assets/sprockets/v3.0/AX/AX7nv3MnWXFN30s0iy1lPlp-0qhUyq1WEwXo1wQccjQ.cache new file mode 100644 index 0000000..e6ecc03 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/AX/AX7nv3MnWXFN30s0iy1lPlp-0qhUyq1WEwXo1wQccjQ.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Aa/Aaak3EETBGEX1s6PQgPdZgbI4--fTrnTGFNmFEILUYc.cache b/tmp/cache/assets/sprockets/v3.0/Aa/Aaak3EETBGEX1s6PQgPdZgbI4--fTrnTGFNmFEILUYc.cache new file mode 100644 index 0000000..2cedef8 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Aa/Aaak3EETBGEX1s6PQgPdZgbI4--fTrnTGFNmFEILUYc.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"jprocessors:type=application/javascript&file_type=application/javascript&engines=.coffee&pipeline=self;TTI";file-digest://app/assets/javascripts/line_items.coffee;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Au/AuAKZiHxjtF8IGH6f0kaJT0AHELswyrA-vBF0p1enNQ.cache b/tmp/cache/assets/sprockets/v3.0/Au/AuAKZiHxjtF8IGH6f0kaJT0AHELswyrA-vBF0p1enNQ.cache new file mode 100644 index 0000000..ff9124f --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Au/AuAKZiHxjtF8IGH6f0kaJT0AHELswyrA-vBF0p1enNQ.cache @@ -0,0 +1 @@ +"%D#+R=@7|( \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/BZ/BZAY7YLNaadgKAxsUmKLeZBh_g_0oUEvaitSQJVr5IE.cache b/tmp/cache/assets/sprockets/v3.0/BZ/BZAY7YLNaadgKAxsUmKLeZBh_g_0oUEvaitSQJVr5IE.cache new file mode 100644 index 0000000..9fca0db --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/BZ/BZAY7YLNaadgKAxsUmKLeZBh_g_0oUEvaitSQJVr5IE.cache @@ -0,0 +1 @@ +I"app/assets/javascripts/application.js?type=application/javascript&pipeline=self&id=d156b4a5d14c23ecc2379b985c514426e91dc3496b9ff9dd65320b811936bf33:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Ba/BaTnHjhe-_VbOFQQDZ14VXMCOdneaYrW0GDofaZ1Zz4.cache b/tmp/cache/assets/sprockets/v3.0/Ba/BaTnHjhe-_VbOFQQDZ14VXMCOdneaYrW0GDofaZ1Zz4.cache new file mode 100644 index 0000000..a4fb79d --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Ba/BaTnHjhe-_VbOFQQDZ14VXMCOdneaYrW0GDofaZ1Zz4.cache @@ -0,0 +1 @@ +I"/home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/actioncable-5.0.2/lib/assets/compiled/action_cable.js?type=application/javascript&pipeline=self&id=bcd7497ab7e63ea54c2979fff6955770d5145b87f2f226890da8de7e1bf433b2:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Bj/Bjau9aShWZtYqDwGGc7yqkMyqiNZRuiA59A3bf1_8RE.cache b/tmp/cache/assets/sprockets/v3.0/Bj/Bjau9aShWZtYqDwGGc7yqkMyqiNZRuiA59A3bf1_8RE.cache new file mode 100644 index 0000000..94de869 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Bj/Bjau9aShWZtYqDwGGc7yqkMyqiNZRuiA59A3bf1_8RE.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"qfile-digest:///home/vital-l/.rvm/gems/ruby-2.4.0/gems/jquery-rails-4.3.1/vendor/assets/javascripts/jquery.js;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Bq/Bqo-hpaTAjSBEwL65HDbTLLO4eGbzMwWTs7wLPX3dkQ.cache b/tmp/cache/assets/sprockets/v3.0/Bq/Bqo-hpaTAjSBEwL65HDbTLLO4eGbzMwWTs7wLPX3dkQ.cache new file mode 100644 index 0000000..c952744 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Bq/Bqo-hpaTAjSBEwL65HDbTLLO4eGbzMwWTs7wLPX3dkQ.cache @@ -0,0 +1 @@ +I"/home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/jquery-rails-4.3.1/vendor/assets/javascripts/jquery.js?type=application/javascript&pipeline=self&id=b1dc12325d0cea09281707714736ffb2b342b6c712411e601bdf8e7c3715b148:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Bx/BxzoG0KxeNLac4xTNeJv3qfeytbNBw58xj2zD-xdbrE.cache b/tmp/cache/assets/sprockets/v3.0/Bx/BxzoG0KxeNLac4xTNeJv3qfeytbNBw58xj2zD-xdbrE.cache new file mode 100644 index 0000000..4449f31 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Bx/BxzoG0KxeNLac4xTNeJv3qfeytbNBw58xj2zD-xdbrE.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/CX/CXQdsq3FaBQS8b0K4fIgZblntMpw6WyLtGR8ay39fYo.cache b/tmp/cache/assets/sprockets/v3.0/CX/CXQdsq3FaBQS8b0K4fIgZblntMpw6WyLtGR8ay39fYo.cache new file mode 100644 index 0000000..95bb780 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/CX/CXQdsq3FaBQS8b0K4fIgZblntMpw6WyLtGR8ay39fYo.cache @@ -0,0 +1 @@ +I"app/assets/javascripts/application.js?type=application/javascript&pipeline=self&id=4856a21315bd65784744de85e03d61be94a7515e2d4e4a9b64bdb699dec428c8:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Cw/CwulcxlkOexITJ87khopqValjBVVhqKiZ4GYVfyvVOs.cache b/tmp/cache/assets/sprockets/v3.0/Cw/CwulcxlkOexITJ87khopqValjBVVhqKiZ4GYVfyvVOs.cache new file mode 100644 index 0000000..ead4747 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Cw/CwulcxlkOexITJ87khopqValjBVVhqKiZ4GYVfyvVOs.cache @@ -0,0 +1 @@ +I"/home/vital-l/.rvm/gems/ruby-2.4.0/gems/jquery-rails-4.3.1/vendor/assets/javascripts/jquery_ujs.js?type=application/javascript&pipeline=self&id=614cd593bd597231293303bf3337e9cda30d8a993d4f479bbe91ab88182f6d49:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/D6/D6GxsxOhiDIkgyDZjb1mt18wHs8E20hETwOfKJHQGPQ.cache b/tmp/cache/assets/sprockets/v3.0/D6/D6GxsxOhiDIkgyDZjb1mt18wHs8E20hETwOfKJHQGPQ.cache new file mode 100644 index 0000000..904cbb9 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/D6/D6GxsxOhiDIkgyDZjb1mt18wHs8E20hETwOfKJHQGPQ.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"jprocessors:type=application/javascript&file_type=application/javascript&engines=.coffee&pipeline=self;TTI"5file-digest://app/assets/javascripts/user.coffee;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Dr/DrHBGCQOHDRkbTGgvGyfbEPca9d2YSNtUGyR3tQfteA.cache b/tmp/cache/assets/sprockets/v3.0/Dr/DrHBGCQOHDRkbTGgvGyfbEPca9d2YSNtUGyR3tQfteA.cache new file mode 100644 index 0000000..a4dc3eb --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Dr/DrHBGCQOHDRkbTGgvGyfbEPca9d2YSNtUGyR3tQfteA.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"}file-digest:///home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/jquery-rails-4.3.1/vendor/assets/javascripts/jquery.js;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/EP/EPgoZtl9QJrdMFA5OwoFMSfiVnPqykmblRF8A7hDqZw.cache b/tmp/cache/assets/sprockets/v3.0/EP/EPgoZtl9QJrdMFA5OwoFMSfiVnPqykmblRF8A7hDqZw.cache new file mode 100644 index 0000000..52ae817 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/EP/EPgoZtl9QJrdMFA5OwoFMSfiVnPqykmblRF8A7hDqZw.cache @@ -0,0 +1,2 @@ +"%hてn]*< +޿z*! \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Ek/Ek-smOolCEHorbale_94Lq9Wipz7p2k-BgIPkgJiCgc.cache b/tmp/cache/assets/sprockets/v3.0/Ek/Ek-smOolCEHorbale_94Lq9Wipz7p2k-BgIPkgJiCgc.cache new file mode 100644 index 0000000..2281403 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Ek/Ek-smOolCEHorbale_94Lq9Wipz7p2k-BgIPkgJiCgc.cache @@ -0,0 +1 @@ +I"}app/assets/stylesheets/application.css?type=text/css&id=4d35576e73902a9704cf9c83cc498bd80a8bbe760098143d5d8e6320a18da7ea:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/FL/FLUSU3oXolF3STDxJnhoFtH6umt4Ba1wgz5mjtlNxDc.cache b/tmp/cache/assets/sprockets/v3.0/FL/FLUSU3oXolF3STDxJnhoFtH6umt4Ba1wgz5mjtlNxDc.cache new file mode 100644 index 0000000..e6c1680 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/FL/FLUSU3oXolF3STDxJnhoFtH6umt4Ba1wgz5mjtlNxDc.cache @@ -0,0 +1,2 @@ +"%LK gFJ +TjVioYq \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/FP/FPbSszfDKcuDpBQ-zX9QCzj8Ffv0dd2hInKDPfWxpa0.cache b/tmp/cache/assets/sprockets/v3.0/FP/FPbSszfDKcuDpBQ-zX9QCzj8Ffv0dd2hInKDPfWxpa0.cache new file mode 100644 index 0000000..f86dffd --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/FP/FPbSszfDKcuDpBQ-zX9QCzj8Ffv0dd2hInKDPfWxpa0.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"jprocessors:type=application/javascript&file_type=application/javascript&engines=.coffee&pipeline=self;TTI"6file-digest://app/assets/javascripts/books.coffee;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/G0/G0kukI-r0q0Vbrg6e_jnYJoYcOX8K__h-mwKbCf4twE.cache b/tmp/cache/assets/sprockets/v3.0/G0/G0kukI-r0q0Vbrg6e_jnYJoYcOX8K__h-mwKbCf4twE.cache new file mode 100644 index 0000000..c8ff18b Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/G0/G0kukI-r0q0Vbrg6e_jnYJoYcOX8K__h-mwKbCf4twE.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/G2/G2PysO4ov2PXk5UTuthbi3msB9NL7jlReHLH5ZqkYQc.cache b/tmp/cache/assets/sprockets/v3.0/G2/G2PysO4ov2PXk5UTuthbi3msB9NL7jlReHLH5ZqkYQc.cache new file mode 100644 index 0000000..77b4749 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/G2/G2PysO4ov2PXk5UTuthbi3msB9NL7jlReHLH5ZqkYQc.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"wfile-digest:///home/vital-l/.rvm/gems/ruby-2.4.0/gems/turbolinks-source-5.0.0/lib/assets/javascripts/turbolinks.js;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/HO/HOy2opYXb_Atjp4FkEgMZJGX_clRtoGbRFEL5iD5NGg.cache b/tmp/cache/assets/sprockets/v3.0/HO/HOy2opYXb_Atjp4FkEgMZJGX_clRtoGbRFEL5iD5NGg.cache new file mode 100644 index 0000000..88fdd09 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/HO/HOy2opYXb_Atjp4FkEgMZJGX_clRtoGbRFEL5iD5NGg.cache @@ -0,0 +1 @@ +I"}app/assets/stylesheets/application.css?type=text/css&id=583b786905a124e6f595093b4c71b2773a115e8f0568a47c348d1f6dc7523082:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Hu/HutJ8RKVfQgDCAaAYn0feDuwsftFvZNiLUq3QqkBd8k.cache b/tmp/cache/assets/sprockets/v3.0/Hu/HutJ8RKVfQgDCAaAYn0feDuwsftFvZNiLUq3QqkBd8k.cache new file mode 100644 index 0000000..035a626 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Hu/HutJ8RKVfQgDCAaAYn0feDuwsftFvZNiLUq3QqkBd8k.cache @@ -0,0 +1 @@ +I"app/assets/javascripts/application.js?type=application/javascript&pipeline=self&id=3672ebf093733da3a991160de80412d1fda6f7706c71b818acb9ea1745f69cc1:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/I4/I43JANzuayNF0rlYMuy7uK6-VGkTJHJvozTWdXhUzVk.cache b/tmp/cache/assets/sprockets/v3.0/I4/I43JANzuayNF0rlYMuy7uK6-VGkTJHJvozTWdXhUzVk.cache new file mode 100644 index 0000000..c36861c --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/I4/I43JANzuayNF0rlYMuy7uK6-VGkTJHJvozTWdXhUzVk.cache @@ -0,0 +1 @@ +"%sA:aN? 42W?]pcs \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/RB/RBXwacLuNiHKvEUgfZfjEQv_I1jecF90e9G3mAugvQU.cache b/tmp/cache/assets/sprockets/v3.0/RB/RBXwacLuNiHKvEUgfZfjEQv_I1jecF90e9G3mAugvQU.cache new file mode 100644 index 0000000..1bce8fa --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/RB/RBXwacLuNiHKvEUgfZfjEQv_I1jecF90e9G3mAugvQU.cache @@ -0,0 +1 @@ +"%EUJf_B*̟BD \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Tl/TlJ4aPQeZvFoDwC8qhP6XRyiMYTRd9uYlsuXR4xrwwM.cache b/tmp/cache/assets/sprockets/v3.0/Tl/TlJ4aPQeZvFoDwC8qhP6XRyiMYTRd9uYlsuXR4xrwwM.cache new file mode 100644 index 0000000..9d3ec75 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Tl/TlJ4aPQeZvFoDwC8qhP6XRyiMYTRd9uYlsuXR4xrwwM.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/U6/U6fgGD3bT98Xy9Es_JNOHzuI7ThE7y6nNRhy4OV9pwA.cache b/tmp/cache/assets/sprockets/v3.0/U6/U6fgGD3bT98Xy9Es_JNOHzuI7ThE7y6nNRhy4OV9pwA.cache new file mode 100644 index 0000000..a5238f0 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/U6/U6fgGD3bT98Xy9Es_JNOHzuI7ThE7y6nNRhy4OV9pwA.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/UI/UIGyJ2SdUGcfGaPobJX3K5cdJPcr2NPr0zAMNX8WRVk.cache b/tmp/cache/assets/sprockets/v3.0/UI/UIGyJ2SdUGcfGaPobJX3K5cdJPcr2NPr0zAMNX8WRVk.cache new file mode 100644 index 0000000..28f1f64 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/UI/UIGyJ2SdUGcfGaPobJX3K5cdJPcr2NPr0zAMNX8WRVk.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/UL/UL-S_yDphIcB2PT7qXNPKBXv_mG9_WO3zvGcWPLq6zY.cache b/tmp/cache/assets/sprockets/v3.0/UL/UL-S_yDphIcB2PT7qXNPKBXv_mG9_WO3zvGcWPLq6zY.cache new file mode 100644 index 0000000..e6c1680 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/UL/UL-S_yDphIcB2PT7qXNPKBXv_mG9_WO3zvGcWPLq6zY.cache @@ -0,0 +1,2 @@ +"%LK gFJ +TjVioYq \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/WE/WEJaKXHlmr6yTIKwELgc264ZrvWlZLW2QZA5K4AYyxI.cache b/tmp/cache/assets/sprockets/v3.0/WE/WEJaKXHlmr6yTIKwELgc264ZrvWlZLW2QZA5K4AYyxI.cache new file mode 100644 index 0000000..1637867 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/WE/WEJaKXHlmr6yTIKwELgc264ZrvWlZLW2QZA5K4AYyxI.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/WO/WOqXfJscgJQ3Y3myhOp6nFyF9M2BosfB83dkREOWIrU.cache b/tmp/cache/assets/sprockets/v3.0/WO/WOqXfJscgJQ3Y3myhOp6nFyF9M2BosfB83dkREOWIrU.cache new file mode 100644 index 0000000..9c22d31 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/WO/WOqXfJscgJQ3Y3myhOp6nFyF9M2BosfB83dkREOWIrU.cache @@ -0,0 +1 @@ +"%<X̀#+,(o \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/WV/WVEY534j4Up9O7ZVQXsIymq8oaGG_cbdmsPMt3lG5zs.cache b/tmp/cache/assets/sprockets/v3.0/WV/WVEY534j4Up9O7ZVQXsIymq8oaGG_cbdmsPMt3lG5zs.cache new file mode 100644 index 0000000..49601f9 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/WV/WVEY534j4Up9O7ZVQXsIymq8oaGG_cbdmsPMt3lG5zs.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/WY/WYAIwVaHDAsMR2CP5vEl3kcpqH9ggcQt0SJ0bIzq_R8.cache b/tmp/cache/assets/sprockets/v3.0/WY/WYAIwVaHDAsMR2CP5vEl3kcpqH9ggcQt0SJ0bIzq_R8.cache new file mode 100644 index 0000000..c285570 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/WY/WYAIwVaHDAsMR2CP5vEl3kcpqH9ggcQt0SJ0bIzq_R8.cache @@ -0,0 +1 @@ +"%|Ҭ*_D`HʎHxx \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/X-/X-X5NEOe5ksRxq4-JecCN2T-GByPAF2vQktUXtlF1S8.cache b/tmp/cache/assets/sprockets/v3.0/X-/X-X5NEOe5ksRxq4-JecCN2T-GByPAF2vQktUXtlF1S8.cache new file mode 100644 index 0000000..d471c84 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/X-/X-X5NEOe5ksRxq4-JecCN2T-GByPAF2vQktUXtlF1S8.cache @@ -0,0 +1 @@ +I"app/assets/javascripts/application.js?type=application/javascript&id=ece14c29ef59b1e94eca56fb35926c59cbfc5695097b404771057ce14b3c29b4:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/XU/XU0Cmc7pUlWhTowWSNT5qKFH5VNH5OCV7GnHeDnrGf0.cache b/tmp/cache/assets/sprockets/v3.0/XU/XU0Cmc7pUlWhTowWSNT5qKFH5VNH5OCV7GnHeDnrGf0.cache new file mode 100644 index 0000000..a934f26 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/XU/XU0Cmc7pUlWhTowWSNT5qKFH5VNH5OCV7GnHeDnrGf0.cache @@ -0,0 +1 @@ +I"app/assets/javascripts/products.coffee?type=application/javascript&pipeline=self&id=0323d282e98b4af798fd427cef5e1333397388939b526498f8a970962320ba81:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/XZ/XZfzx3fo1hg2WYbbHd8r5eFzdGncjgHzv6zPU2DJ06g.cache b/tmp/cache/assets/sprockets/v3.0/XZ/XZfzx3fo1hg2WYbbHd8r5eFzdGncjgHzv6zPU2DJ06g.cache new file mode 100644 index 0000000..f9c07a2 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/XZ/XZfzx3fo1hg2WYbbHd8r5eFzdGncjgHzv6zPU2DJ06g.cache @@ -0,0 +1 @@ +I"app/assets/javascripts/application.js?type=application/javascript&id=fc00fb2a0b12a1e6a51f0c3e752341e12881ec1553b9ff284ba2dcd943743a1d:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Xs/Xsg6oU-FWwdVMDK9TxYpcRv6yXIWgpyKYguUKxTTHz8.cache b/tmp/cache/assets/sprockets/v3.0/Xs/Xsg6oU-FWwdVMDK9TxYpcRv6yXIWgpyKYguUKxTTHz8.cache new file mode 100644 index 0000000..20c8e3a --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Xs/Xsg6oU-FWwdVMDK9TxYpcRv6yXIWgpyKYguUKxTTHz8.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Lprocessors:type=text/css&file_type=text/css&engines=.scss&pipeline=self;TTI"4file-digest://app/assets/stylesheets/books.scss;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Y1/Y1BFNmPTwQaBaek0PTMooh4eOH2CNQoDGa7Efyn-rMo.cache b/tmp/cache/assets/sprockets/v3.0/Y1/Y1BFNmPTwQaBaek0PTMooh4eOH2CNQoDGa7Efyn-rMo.cache new file mode 100644 index 0000000..ff9124f --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Y1/Y1BFNmPTwQaBaek0PTMooh4eOH2CNQoDGa7Efyn-rMo.cache @@ -0,0 +1 @@ +"%D#+R=@7|( \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/YD/YDkrA-y6OCH7QAu0YA9OLWcs1tAzox27CfQR3nE5hCU.cache b/tmp/cache/assets/sprockets/v3.0/YD/YDkrA-y6OCH7QAu0YA9OLWcs1tAzox27CfQR3nE5hCU.cache new file mode 100644 index 0000000..6fa5172 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/YD/YDkrA-y6OCH7QAu0YA9OLWcs1tAzox27CfQR3nE5hCU.cache @@ -0,0 +1 @@ +I"app/assets/javascripts/application.js?type=application/javascript&pipeline=debug&id=401f1c8f085f4f702d5e59986ac014595afe941d73bf83138cf3632ea472522c:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/YN/YN_z8_fPboh5SFxOmBkFVzNc18YeGS28obKeHX88YS0.cache b/tmp/cache/assets/sprockets/v3.0/YN/YN_z8_fPboh5SFxOmBkFVzNc18YeGS28obKeHX88YS0.cache new file mode 100644 index 0000000..60f52bb --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/YN/YN_z8_fPboh5SFxOmBkFVzNc18YeGS28obKeHX88YS0.cache @@ -0,0 +1 @@ +"%AG {h tlmVNEf \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Y_/Y_7XNSc-eAp-S0AyLIcsU8R3YATlwYekmxGMklsj60U.cache b/tmp/cache/assets/sprockets/v3.0/Y_/Y_7XNSc-eAp-S0AyLIcsU8R3YATlwYekmxGMklsj60U.cache new file mode 100644 index 0000000..fcefb43 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Y_/Y_7XNSc-eAp-S0AyLIcsU8R3YATlwYekmxGMklsj60U.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/Ya/YayMISAqD-Y3vBFywwKrXbUovGf5o77HUF5s8mnQgO0.cache b/tmp/cache/assets/sprockets/v3.0/Ya/YayMISAqD-Y3vBFywwKrXbUovGf5o77HUF5s8mnQgO0.cache new file mode 100644 index 0000000..70702ed Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/Ya/YayMISAqD-Y3vBFywwKrXbUovGf5o77HUF5s8mnQgO0.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/ZN/ZNo24wbzfKrFm_VL6UjBbxGPIbCkLdt7LZlyJ2uzqBw.cache b/tmp/cache/assets/sprockets/v3.0/ZN/ZNo24wbzfKrFm_VL6UjBbxGPIbCkLdt7LZlyJ2uzqBw.cache new file mode 100644 index 0000000..59b348e --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/ZN/ZNo24wbzfKrFm_VL6UjBbxGPIbCkLdt7LZlyJ2uzqBw.cache @@ -0,0 +1 @@ +"%d-K`8Y3͹/Ya~K \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/Zv/ZvCEW2ZyS-k4cHH7Gd8P2nKFE9Uh1VOrfR-1PYY2yz8.cache b/tmp/cache/assets/sprockets/v3.0/Zv/ZvCEW2ZyS-k4cHH7Gd8P2nKFE9Uh1VOrfR-1PYY2yz8.cache new file mode 100644 index 0000000..736a554 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/Zv/ZvCEW2ZyS-k4cHH7Gd8P2nKFE9Uh1VOrfR-1PYY2yz8.cache @@ -0,0 +1,5 @@ +I"$(function() { + + +}).call(this); +:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/_O/_OhnnXI8zdLMVM2qzLM5KFcwZ671wdAZb2uc6Rbd8Ys.cache b/tmp/cache/assets/sprockets/v3.0/_O/_OhnnXI8zdLMVM2qzLM5KFcwZ671wdAZb2uc6Rbd8Ys.cache new file mode 100644 index 0000000..59b348e --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/_O/_OhnnXI8zdLMVM2qzLM5KFcwZ671wdAZb2uc6Rbd8Ys.cache @@ -0,0 +1 @@ +"%d-K`8Y3͹/Ya~K \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/_f/_fzJm98MpCHjdeK8DcT_rO3IgsgEbaZf2lAthfGw12M.cache b/tmp/cache/assets/sprockets/v3.0/_f/_fzJm98MpCHjdeK8DcT_rO3IgsgEbaZf2lAthfGw12M.cache new file mode 100644 index 0000000..3b7813e Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/_f/_fzJm98MpCHjdeK8DcT_rO3IgsgEbaZf2lAthfGw12M.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/_o/_oWoToISrt1Dm2Daj8IGByehDY8XoJGup_S4ItVThSA.cache b/tmp/cache/assets/sprockets/v3.0/_o/_oWoToISrt1Dm2Daj8IGByehDY8XoJGup_S4ItVThSA.cache new file mode 100644 index 0000000..ff9124f --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/_o/_oWoToISrt1Dm2Daj8IGByehDY8XoJGup_S4ItVThSA.cache @@ -0,0 +1 @@ +"%D#+R=@7|( \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/_x/_xoURq81aoBJkq7HxpvPvWNmFZXSBnK7qW82_i_jJL0.cache b/tmp/cache/assets/sprockets/v3.0/_x/_xoURq81aoBJkq7HxpvPvWNmFZXSBnK7qW82_i_jJL0.cache new file mode 100644 index 0000000..3a76c0e --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/_x/_xoURq81aoBJkq7HxpvPvWNmFZXSBnK7qW82_i_jJL0.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"|file-digest:///home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/jquery-rails-4.3.1/vendor/assets/javascripts/jquery_ujs.js;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/aK/aKOLQFEkUzffWt2lH-GqocAcjb73Dq-p1xTQ8JGW1oU.cache b/tmp/cache/assets/sprockets/v3.0/aK/aKOLQFEkUzffWt2lH-GqocAcjb73Dq-p1xTQ8JGW1oU.cache new file mode 100644 index 0000000..3bfc1b1 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/aK/aKOLQFEkUzffWt2lH-GqocAcjb73Dq-p1xTQ8JGW1oU.cache @@ -0,0 +1 @@ +I"/home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/turbolinks-source-5.0.0/lib/assets/javascripts/turbolinks.js?type=application/javascript&pipeline=self&id=93c590208ebf7d0176a7ccfac68f860c1a42812470bc9b809bbb998fd8762dcf:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/bN/bNhDV4rixACoqWduAVFIf2l0Jv9vlOa_g9UdzHPqwFM.cache b/tmp/cache/assets/sprockets/v3.0/bN/bNhDV4rixACoqWduAVFIf2l0Jv9vlOa_g9UdzHPqwFM.cache new file mode 100644 index 0000000..2800ad3 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/bN/bNhDV4rixACoqWduAVFIf2l0Jv9vlOa_g9UdzHPqwFM.cache @@ -0,0 +1 @@ +"%Bșo$'AdLxRU \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/bp/bpELoJwhOIvrWoF4LTMSc9RimQdWJBPjpysMFZtXjx8.cache b/tmp/cache/assets/sprockets/v3.0/bp/bpELoJwhOIvrWoF4LTMSc9RimQdWJBPjpysMFZtXjx8.cache new file mode 100644 index 0000000..ca32e0d --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/bp/bpELoJwhOIvrWoF4LTMSc9RimQdWJBPjpysMFZtXjx8.cache @@ -0,0 +1 @@ +I"app/assets/javascripts/products.coffee?type=application/javascript&pipeline=self&id=8434e32620b058db6ab8861efef2389f54f4cd89a9c1e029ea34fc9106eba429:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/cL/cLUPA0Hv4Ek8RdtwbMbXJxulN2DjdUbgmKdl1R4SBfk.cache b/tmp/cache/assets/sprockets/v3.0/cL/cLUPA0Hv4Ek8RdtwbMbXJxulN2DjdUbgmKdl1R4SBfk.cache new file mode 100644 index 0000000..3218a48 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/cL/cLUPA0Hv4Ek8RdtwbMbXJxulN2DjdUbgmKdl1R4SBfk.cache @@ -0,0 +1 @@ +"%~2%a5pLJe5-,$o\2 \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/cM/cMduD15PnTxKGjveJJISst-8Nr6ds3dh8zCHtDwp0rU.cache b/tmp/cache/assets/sprockets/v3.0/cM/cMduD15PnTxKGjveJJISst-8Nr6ds3dh8zCHtDwp0rU.cache new file mode 100644 index 0000000..1aaf951 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/cM/cMduD15PnTxKGjveJJISst-8Nr6ds3dh8zCHtDwp0rU.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/ct/ct4Mt122Qyi2fiYNVU8hXegYbUMa4S8Yx6e7oR4Qn5k.cache b/tmp/cache/assets/sprockets/v3.0/ct/ct4Mt122Qyi2fiYNVU8hXegYbUMa4S8Yx6e7oR4Qn5k.cache new file mode 100644 index 0000000..c70115f Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/ct/ct4Mt122Qyi2fiYNVU8hXegYbUMa4S8Yx6e7oR4Qn5k.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/de/denNAL9a4Cr6abkSEBOLmSIreFFBKG3Punlr9vXWJ8c.cache b/tmp/cache/assets/sprockets/v3.0/de/denNAL9a4Cr6abkSEBOLmSIreFFBKG3Punlr9vXWJ8c.cache new file mode 100644 index 0000000..19ae13b Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/de/denNAL9a4Cr6abkSEBOLmSIreFFBKG3Punlr9vXWJ8c.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/dw/dwo3KUgGE6_dkOyeIhxp0MzwU6S7VW7KVhdNzLo0Gl8.cache b/tmp/cache/assets/sprockets/v3.0/dw/dwo3KUgGE6_dkOyeIhxp0MzwU6S7VW7KVhdNzLo0Gl8.cache new file mode 100644 index 0000000..5525fba Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/dw/dwo3KUgGE6_dkOyeIhxp0MzwU6S7VW7KVhdNzLo0Gl8.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/e4/e4gMMA1pPIbtCfls0lgNWs1oBqnrWq_FYL9VRuM2mUI.cache b/tmp/cache/assets/sprockets/v3.0/e4/e4gMMA1pPIbtCfls0lgNWs1oBqnrWq_FYL9VRuM2mUI.cache new file mode 100644 index 0000000..ff82d34 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/e4/e4gMMA1pPIbtCfls0lgNWs1oBqnrWq_FYL9VRuM2mUI.cache @@ -0,0 +1,3 @@ +[o:Set: +@hash} +I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"~file-digest:///home/usertrav/.rvm/gems/ruby-2.3.0@rails5.0.2/gems/turbolinks-source-5.0.0/lib/assets/javascripts/turbolinks.js;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/ef/efY5huwB4rSFm4EmM1_jq_OjtLzkxg7T9R_KDX2J7uY.cache b/tmp/cache/assets/sprockets/v3.0/ef/efY5huwB4rSFm4EmM1_jq_OjtLzkxg7T9R_KDX2J7uY.cache new file mode 100644 index 0000000..6102ffd Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/ef/efY5huwB4rSFm4EmM1_jq_OjtLzkxg7T9R_KDX2J7uY.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/ej/ejZz6msI4OkhLyWowsi-GOuDRDRLrIK9SN7cY6Ep3YU.cache b/tmp/cache/assets/sprockets/v3.0/ej/ejZz6msI4OkhLyWowsi-GOuDRDRLrIK9SN7cY6Ep3YU.cache new file mode 100644 index 0000000..5c5e1dc --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/ej/ejZz6msI4OkhLyWowsi-GOuDRDRLrIK9SN7cY6Ep3YU.cache @@ -0,0 +1 @@ +"%uWljZ xU>?]pcs \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/ew/ewT4sU74pOjaEvm53qC-NpsIJ-gXWSD-28HtVwQkpTg.cache b/tmp/cache/assets/sprockets/v3.0/ew/ewT4sU74pOjaEvm53qC-NpsIJ-gXWSD-28HtVwQkpTg.cache new file mode 100644 index 0000000..2800ad3 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/ew/ewT4sU74pOjaEvm53qC-NpsIJ-gXWSD-28HtVwQkpTg.cache @@ -0,0 +1 @@ +"%Bșo$'AdLxRU \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/ew/ewp_hR9Ce0NzbMT-oSiPQRiN8t9tOA_Q7O4cHGN6Hw0.cache b/tmp/cache/assets/sprockets/v3.0/ew/ewp_hR9Ce0NzbMT-oSiPQRiN8t9tOA_Q7O4cHGN6Hw0.cache new file mode 100644 index 0000000..5cdfc93 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/ew/ewp_hR9Ce0NzbMT-oSiPQRiN8t9tOA_Q7O4cHGN6Hw0.cache @@ -0,0 +1 @@ +I"}app/assets/stylesheets/application.css?type=text/css&id=5c2bd2bc2b6b04b9bbf560d4c4b0d21e8c48338be903f29682803792cf0447b8:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/fO/fOXli69G3ADtJXfsMGkEGSwuI-YCclVx5nsxqkoAsdo.cache b/tmp/cache/assets/sprockets/v3.0/fO/fOXli69G3ADtJXfsMGkEGSwuI-YCclVx5nsxqkoAsdo.cache new file mode 100644 index 0000000..277b3ca Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/fO/fOXli69G3ADtJXfsMGkEGSwuI-YCclVx5nsxqkoAsdo.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/fY/fYigcByHsvo14s4kKt5U0W3sN_uxLD2XNB79V-6TRn0.cache b/tmp/cache/assets/sprockets/v3.0/fY/fYigcByHsvo14s4kKt5U0W3sN_uxLD2XNB79V-6TRn0.cache new file mode 100644 index 0000000..b862206 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/fY/fYigcByHsvo14s4kKt5U0W3sN_uxLD2XNB79V-6TRn0.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/fa/fapjJtnYn5psOD-G1Sxa_ZEF1g5wlTMPHjOu_ZVeL18.cache b/tmp/cache/assets/sprockets/v3.0/fa/fapjJtnYn5psOD-G1Sxa_ZEF1g5wlTMPHjOu_ZVeL18.cache new file mode 100644 index 0000000..96ddc7d --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/fa/fapjJtnYn5psOD-G1Sxa_ZEF1g5wlTMPHjOu_ZVeL18.cache @@ -0,0 +1 @@ +I"app/assets/javascripts/cable.js?type=application/javascript&pipeline=self&id=ab9160dd6f93b54650f323359b0bf1698463200963af474d195c085fe78bc1e6:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/fb/fbOtgy8hu7d2w_9GBlUHIxLLoHA-RLlVQfcAcbNP7wo.cache b/tmp/cache/assets/sprockets/v3.0/fb/fbOtgy8hu7d2w_9GBlUHIxLLoHA-RLlVQfcAcbNP7wo.cache new file mode 100644 index 0000000..2800ad3 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/fb/fbOtgy8hu7d2w_9GBlUHIxLLoHA-RLlVQfcAcbNP7wo.cache @@ -0,0 +1 @@ +"%Bșo$'AdLxRU \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/hq/hqZC7vwxEgfDJj9bJWh9e2ipKHgY0rPCqVEp5SOSPwI.cache b/tmp/cache/assets/sprockets/v3.0/hq/hqZC7vwxEgfDJj9bJWh9e2ipKHgY0rPCqVEp5SOSPwI.cache new file mode 100644 index 0000000..208acb5 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/hq/hqZC7vwxEgfDJj9bJWh9e2ipKHgY0rPCqVEp5SOSPwI.cache @@ -0,0 +1 @@ +"%kw*2;:B+wd&ާ/:y \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/hu/huyWTXkEeeuuodUgw3yd6kA05m6vi4kPLeBDnd4MdJE.cache b/tmp/cache/assets/sprockets/v3.0/hu/huyWTXkEeeuuodUgw3yd6kA05m6vi4kPLeBDnd4MdJE.cache new file mode 100644 index 0000000..47354c1 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/hu/huyWTXkEeeuuodUgw3yd6kA05m6vi4kPLeBDnd4MdJE.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/hv/hvEExKrV8yv2-JZDJWGE8MnBlOHp7A8yWATYi_WCIco.cache b/tmp/cache/assets/sprockets/v3.0/hv/hvEExKrV8yv2-JZDJWGE8MnBlOHp7A8yWATYi_WCIco.cache new file mode 100644 index 0000000..f729bfc Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/hv/hvEExKrV8yv2-JZDJWGE8MnBlOHp7A8yWATYi_WCIco.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/iK/iKBIlLC89HdpFOT60yCsdum5zYnU6A71KxgWbPDapA0.cache b/tmp/cache/assets/sprockets/v3.0/iK/iKBIlLC89HdpFOT60yCsdum5zYnU6A71KxgWbPDapA0.cache new file mode 100644 index 0000000..a33e90c --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/iK/iKBIlLC89HdpFOT60yCsdum5zYnU6A71KxgWbPDapA0.cache @@ -0,0 +1 @@ +I"/home/vital-l/.rvm/gems/ruby-2.4.0/gems/turbolinks-source-5.0.0/lib/assets/javascripts/turbolinks.js?type=application/javascript&pipeline=self&id=5b826cf9f8ebd88ce3261ebbb0396e47882b8515d6ac7f7403a7d195b3e77d78:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/jR/jR7AW7hJuqCd23bnc0NRDvi8xw0rAwEvNG8dwW7KoR8.cache b/tmp/cache/assets/sprockets/v3.0/jR/jR7AW7hJuqCd23bnc0NRDvi8xw0rAwEvNG8dwW7KoR8.cache new file mode 100644 index 0000000..a9618a0 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/jR/jR7AW7hJuqCd23bnc0NRDvi8xw0rAwEvNG8dwW7KoR8.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/jx/jxmh_cPE8HtgdOYnpGyjglcnrex68UVXLJ9OQPIrWR0.cache b/tmp/cache/assets/sprockets/v3.0/jx/jxmh_cPE8HtgdOYnpGyjglcnrex68UVXLJ9OQPIrWR0.cache new file mode 100644 index 0000000..67a7e99 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/jx/jxmh_cPE8HtgdOYnpGyjglcnrex68UVXLJ9OQPIrWR0.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/kC/kC0S9AN9lEp7AnLOAVD0VsUK_7VdcNRWmQZEJUrp9cI.cache b/tmp/cache/assets/sprockets/v3.0/kC/kC0S9AN9lEp7AnLOAVD0VsUK_7VdcNRWmQZEJUrp9cI.cache new file mode 100644 index 0000000..f9fd1f3 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/kC/kC0S9AN9lEp7AnLOAVD0VsUK_7VdcNRWmQZEJUrp9cI.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/kV/kVXxz6_wxDeduRxgWHUvndmPRVUce0bEEiSjcaTivCI.cache b/tmp/cache/assets/sprockets/v3.0/kV/kVXxz6_wxDeduRxgWHUvndmPRVUce0bEEiSjcaTivCI.cache new file mode 100644 index 0000000..27d4aa0 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/kV/kVXxz6_wxDeduRxgWHUvndmPRVUce0bEEiSjcaTivCI.cache @@ -0,0 +1 @@ +I"app/assets/javascripts/cable.js?type=application/javascript&pipeline=self&id=60cddf8662b9a142d78913f735a44777c3be9b9901f13a720cb263802256c86e:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/kz/kzw210ITXFWNFV8kw5e-_kRlpS48lGotSQWKPlUfMJ4.cache b/tmp/cache/assets/sprockets/v3.0/kz/kzw210ITXFWNFV8kw5e-_kRlpS48lGotSQWKPlUfMJ4.cache new file mode 100644 index 0000000..b39ee88 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/kz/kzw210ITXFWNFV8kw5e-_kRlpS48lGotSQWKPlUfMJ4.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/l6/l67crKewNPwYamlV30GQP-sM2tLHARg5Xl12ukya-zw.cache b/tmp/cache/assets/sprockets/v3.0/l6/l67crKewNPwYamlV30GQP-sM2tLHARg5Xl12ukya-zw.cache new file mode 100644 index 0000000..8a28652 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/l6/l67crKewNPwYamlV30GQP-sM2tLHARg5Xl12ukya-zw.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/m-/m-bTubefQ14R96Io_r4sIIDWQlQjQZKvdPAwoawHQic.cache b/tmp/cache/assets/sprockets/v3.0/m-/m-bTubefQ14R96Io_r4sIIDWQlQjQZKvdPAwoawHQic.cache new file mode 100644 index 0000000..69b072a Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/m-/m-bTubefQ14R96Io_r4sIIDWQlQjQZKvdPAwoawHQic.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/m9/m9XAHbtjWggIMKZTLUgRCwGRlbcdfc_fLIR-5HzKxPk.cache b/tmp/cache/assets/sprockets/v3.0/m9/m9XAHbtjWggIMKZTLUgRCwGRlbcdfc_fLIR-5HzKxPk.cache new file mode 100644 index 0000000..58ded95 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/m9/m9XAHbtjWggIMKZTLUgRCwGRlbcdfc_fLIR-5HzKxPk.cache @@ -0,0 +1 @@ +"%ónx|b[ģYxF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/mA/mAd7VQDpXxaEiHPFkJK6S_H98Oii3KlZRNfnBk3bMX0.cache b/tmp/cache/assets/sprockets/v3.0/mA/mAd7VQDpXxaEiHPFkJK6S_H98Oii3KlZRNfnBk3bMX0.cache new file mode 100644 index 0000000..5eee926 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/mA/mAd7VQDpXxaEiHPFkJK6S_H98Oii3KlZRNfnBk3bMX0.cache @@ -0,0 +1 @@ +I"app/assets/stylesheets/products.scss?type=text/css&pipeline=self&id=ca64953a3976273fbd112f575df8dbfc4dd3108234d4cd86cebddfc517ec5a26:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/mS/mSzfCiF7hQXW4V7zJ_jUyI9odDd3rCf-QdX-ChCEHQI.cache b/tmp/cache/assets/sprockets/v3.0/mS/mSzfCiF7hQXW4V7zJ_jUyI9odDd3rCf-QdX-ChCEHQI.cache new file mode 100644 index 0000000..9d74b60 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/mS/mSzfCiF7hQXW4V7zJ_jUyI9odDd3rCf-QdX-ChCEHQI.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/m_/m_QUSNMcCCd8HDp4C7ma3FBlqYW8LdMQ6RU3PlMjxRM.cache b/tmp/cache/assets/sprockets/v3.0/m_/m_QUSNMcCCd8HDp4C7ma3FBlqYW8LdMQ6RU3PlMjxRM.cache new file mode 100644 index 0000000..2a46073 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/m_/m_QUSNMcCCd8HDp4C7ma3FBlqYW8LdMQ6RU3PlMjxRM.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/n4/n4SGonAo0upGfaXGF5ojmT0pgfsDWrJTRBhPqwCeKoA.cache b/tmp/cache/assets/sprockets/v3.0/n4/n4SGonAo0upGfaXGF5ojmT0pgfsDWrJTRBhPqwCeKoA.cache new file mode 100644 index 0000000..9944c1d --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/n4/n4SGonAo0upGfaXGF5ojmT0pgfsDWrJTRBhPqwCeKoA.cache @@ -0,0 +1 @@ +"%xJg&k"UmXV;Fj \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/n9/n9EFkThrFEfLXiPlfxVEOOdDM2J15uZiQzlGEH5hRnw.cache b/tmp/cache/assets/sprockets/v3.0/n9/n9EFkThrFEfLXiPlfxVEOOdDM2J15uZiQzlGEH5hRnw.cache new file mode 100644 index 0000000..e5ff2ed Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/n9/n9EFkThrFEfLXiPlfxVEOOdDM2J15uZiQzlGEH5hRnw.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/nV/nVrDoRbiYsw_lILKpYVZ8okUOyPB_F3Blts7JhR_Op8.cache b/tmp/cache/assets/sprockets/v3.0/nV/nVrDoRbiYsw_lILKpYVZ8okUOyPB_F3Blts7JhR_Op8.cache new file mode 100644 index 0000000..f4c6312 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/nV/nVrDoRbiYsw_lILKpYVZ8okUOyPB_F3Blts7JhR_Op8.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/n_/n_xYqQYhwEMQknb3jFQnjlxxBE9TzMNHCdJ-bEyZFIw.cache b/tmp/cache/assets/sprockets/v3.0/n_/n_xYqQYhwEMQknb3jFQnjlxxBE9TzMNHCdJ-bEyZFIw.cache new file mode 100644 index 0000000..448496c Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/n_/n_xYqQYhwEMQknb3jFQnjlxxBE9TzMNHCdJ-bEyZFIw.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/nj/nj0_MqrvuysI4jDYRL34rmezQ6Yy5ZjrHTucLdwt6-8.cache b/tmp/cache/assets/sprockets/v3.0/nj/nj0_MqrvuysI4jDYRL34rmezQ6Yy5ZjrHTucLdwt6-8.cache new file mode 100644 index 0000000..17da296 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/nj/nj0_MqrvuysI4jDYRL34rmezQ6Yy5ZjrHTucLdwt6-8.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/nx/nxTv3sKVUQZADJyM3dPaVmUA78MIsMLD_K279yN_GsI.cache b/tmp/cache/assets/sprockets/v3.0/nx/nxTv3sKVUQZADJyM3dPaVmUA78MIsMLD_K279yN_GsI.cache new file mode 100644 index 0000000..51637af Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/nx/nxTv3sKVUQZADJyM3dPaVmUA78MIsMLD_K279yN_GsI.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/o4/o4UU6SA3Q6ICFWCKADTcqOvs2e-0K2DaqfQYuCJRWuE.cache b/tmp/cache/assets/sprockets/v3.0/o4/o4UU6SA3Q6ICFWCKADTcqOvs2e-0K2DaqfQYuCJRWuE.cache new file mode 100644 index 0000000..ac94665 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/o4/o4UU6SA3Q6ICFWCKADTcqOvs2e-0K2DaqfQYuCJRWuE.cache @@ -0,0 +1 @@ +"%On%wn$RP{ ՠ= \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/p4/p4q3Q_ldTlTqmYPh5FD9CGXW2Gs6YYFOIKM389P4ObE.cache b/tmp/cache/assets/sprockets/v3.0/p4/p4q3Q_ldTlTqmYPh5FD9CGXW2Gs6YYFOIKM389P4ObE.cache new file mode 100644 index 0000000..3a3ca79 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/p4/p4q3Q_ldTlTqmYPh5FD9CGXW2Gs6YYFOIKM389P4ObE.cache @@ -0,0 +1 @@ +I"app/assets/javascripts/application.js?type=application/javascript&id=2c0375fa49febd4993f2864337167a470b59e5f3a79a85ba7f4364341713cf34:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/pD/pDLgzHtLLarCa-2UeKtHvwNZ72DZypkpV_vjYiDyxco.cache b/tmp/cache/assets/sprockets/v3.0/pD/pDLgzHtLLarCa-2UeKtHvwNZ72DZypkpV_vjYiDyxco.cache new file mode 100644 index 0000000..2800ad3 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/pD/pDLgzHtLLarCa-2UeKtHvwNZ72DZypkpV_vjYiDyxco.cache @@ -0,0 +1 @@ +"%Bșo$'AdLxRU \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/py/py4EEFiOCadrIMS40XG9wU5dfDZ2wQ2n5JmNfx4Ouxk.cache b/tmp/cache/assets/sprockets/v3.0/py/py4EEFiOCadrIMS40XG9wU5dfDZ2wQ2n5JmNfx4Ouxk.cache new file mode 100644 index 0000000..5b10535 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/py/py4EEFiOCadrIMS40XG9wU5dfDZ2wQ2n5JmNfx4Ouxk.cache @@ -0,0 +1 @@ +"%C6ܦM=Qu/,"c5u \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/q-/q-6kB1mhv2Njo7kVH3IZneXhbWZpwfUMS4FQkxl-VdY.cache b/tmp/cache/assets/sprockets/v3.0/q-/q-6kB1mhv2Njo7kVH3IZneXhbWZpwfUMS4FQkxl-VdY.cache new file mode 100644 index 0000000..3218a48 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/q-/q-6kB1mhv2Njo7kVH3IZneXhbWZpwfUMS4FQkxl-VdY.cache @@ -0,0 +1 @@ +"%~2%a5pLJe5-,$o\2 \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/qP/qPmv5snMrDw830S6hSICDcnIy7kVEWoFKXhGKT38lG4.cache b/tmp/cache/assets/sprockets/v3.0/qP/qPmv5snMrDw830S6hSICDcnIy7kVEWoFKXhGKT38lG4.cache new file mode 100644 index 0000000..1b2e95a Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/qP/qPmv5snMrDw830S6hSICDcnIy7kVEWoFKXhGKT38lG4.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/qP/qPvLGCe25tIPELctyBNI2aQZq2t7d7dillDcrC40LG4.cache b/tmp/cache/assets/sprockets/v3.0/qP/qPvLGCe25tIPELctyBNI2aQZq2t7d7dillDcrC40LG4.cache new file mode 100644 index 0000000..3109401 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/qP/qPvLGCe25tIPELctyBNI2aQZq2t7d7dillDcrC40LG4.cache @@ -0,0 +1 @@ +I"app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=aecfc4b0a780cf9677de3ab30a0ddbb33ef252e3624500145175dec77721bf2c:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/qq/qq_Wpxrp1eUt_u4-goFd-LWMDONv2BR6VrfXF5AGa-E.cache b/tmp/cache/assets/sprockets/v3.0/qq/qq_Wpxrp1eUt_u4-goFd-LWMDONv2BR6VrfXF5AGa-E.cache new file mode 100644 index 0000000..feb53c6 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/qq/qq_Wpxrp1eUt_u4-goFd-LWMDONv2BR6VrfXF5AGa-E.cache @@ -0,0 +1 @@ +"%TT4 )|q~tU%_RLLYt) \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/rA/rA0BSlKlplz6Sl18mo_BsXPoqLnu-FGNSdiLZyr3PWs.cache b/tmp/cache/assets/sprockets/v3.0/rA/rA0BSlKlplz6Sl18mo_BsXPoqLnu-FGNSdiLZyr3PWs.cache new file mode 100644 index 0000000..7999165 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/rA/rA0BSlKlplz6Sl18mo_BsXPoqLnu-FGNSdiLZyr3PWs.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/s1/s1j66n2fTO1CrGyAUsqu33KleHFNibZq7gXBlJ9Hx7k.cache b/tmp/cache/assets/sprockets/v3.0/s1/s1j66n2fTO1CrGyAUsqu33KleHFNibZq7gXBlJ9Hx7k.cache new file mode 100644 index 0000000..203fb05 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/s1/s1j66n2fTO1CrGyAUsqu33KleHFNibZq7gXBlJ9Hx7k.cache @@ -0,0 +1 @@ +I"app/assets/javascripts/line_items.coffee?type=application/javascript&pipeline=self&id=a7009dbf5765561152dd343cc5ff598a324fcf27f76d0b7f44ac5295a8b4552b:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/sA/sA8X_cbvqDodw9HYpYGXRRbmGGglLozapSV0KQpIsiM.cache b/tmp/cache/assets/sprockets/v3.0/sA/sA8X_cbvqDodw9HYpYGXRRbmGGglLozapSV0KQpIsiM.cache new file mode 100644 index 0000000..b2a58c9 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/sA/sA8X_cbvqDodw9HYpYGXRRbmGGglLozapSV0KQpIsiM.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/tD/tDxeQzrwWTPphwTsIYvUCY7fB_gV-gSm4QK_WjdkF6U.cache b/tmp/cache/assets/sprockets/v3.0/tD/tDxeQzrwWTPphwTsIYvUCY7fB_gV-gSm4QK_WjdkF6U.cache new file mode 100644 index 0000000..70d4dfc --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/tD/tDxeQzrwWTPphwTsIYvUCY7fB_gV-gSm4QK_WjdkF6U.cache @@ -0,0 +1 @@ +I"app/assets/stylesheets/line_items.scss?type=text/css&pipeline=self&id=74fe5a2b77d220949550e5fb6cd1c6d05a211eb09d7f8f487e266028080abc1f:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/tG/tGuWWPlVfvOvzAmzRAYfTC0qzud510RviiT0YtSs4Pw.cache b/tmp/cache/assets/sprockets/v3.0/tG/tGuWWPlVfvOvzAmzRAYfTC0qzud510RviiT0YtSs4Pw.cache new file mode 100644 index 0000000..da5ad4a --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/tG/tGuWWPlVfvOvzAmzRAYfTC0qzud510RviiT0YtSs4Pw.cache @@ -0,0 +1 @@ +I"app/assets/javascripts/books.coffee?type=application/javascript&pipeline=self&id=cc3d2ffd1e3357e05f22b55e8f4da63354c258ab18e6472deef11fc71022b097:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/tn/tntHJj_iV2Iiy1a3ycqbahVx9BYeprBC_fJ7uzcSQT8.cache b/tmp/cache/assets/sprockets/v3.0/tn/tntHJj_iV2Iiy1a3ycqbahVx9BYeprBC_fJ7uzcSQT8.cache new file mode 100644 index 0000000..5b10535 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/tn/tntHJj_iV2Iiy1a3ycqbahVx9BYeprBC_fJ7uzcSQT8.cache @@ -0,0 +1 @@ +"%C6ܦM=Qu/,"c5u \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/ub/ubojYENgjNztNeXWkZRcKJpxJC9k88APTokzsif0EEo.cache b/tmp/cache/assets/sprockets/v3.0/ub/ubojYENgjNztNeXWkZRcKJpxJC9k88APTokzsif0EEo.cache new file mode 100644 index 0000000..c7305e4 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/ub/ubojYENgjNztNeXWkZRcKJpxJC9k88APTokzsif0EEo.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/v2/v2g6R1yr4KFGD-1Nc4NDTUfqckUMcaSkFIyz03qJqPM.cache b/tmp/cache/assets/sprockets/v3.0/v2/v2g6R1yr4KFGD-1Nc4NDTUfqckUMcaSkFIyz03qJqPM.cache new file mode 100644 index 0000000..9cb94f5 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/v2/v2g6R1yr4KFGD-1Nc4NDTUfqckUMcaSkFIyz03qJqPM.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/vr/vrsiq1HTYMdcdxCApI2-ffHpQ8lFE7yl_dUQQiOhjPo.cache b/tmp/cache/assets/sprockets/v3.0/vr/vrsiq1HTYMdcdxCApI2-ffHpQ8lFE7yl_dUQQiOhjPo.cache new file mode 100644 index 0000000..064db1f Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/vr/vrsiq1HTYMdcdxCApI2-ffHpQ8lFE7yl_dUQQiOhjPo.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/x7/x7PYh8DJvPykcEqpVab2vcY9-GFz-3cqtoMlRAu94Uc.cache b/tmp/cache/assets/sprockets/v3.0/x7/x7PYh8DJvPykcEqpVab2vcY9-GFz-3cqtoMlRAu94Uc.cache new file mode 100644 index 0000000..60843a8 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/x7/x7PYh8DJvPykcEqpVab2vcY9-GFz-3cqtoMlRAu94Uc.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/xR/xRSJWjXYALzL3j_bt5w5zdo2uCJRUTy3kStP2lQOYS8.cache b/tmp/cache/assets/sprockets/v3.0/xR/xRSJWjXYALzL3j_bt5w5zdo2uCJRUTy3kStP2lQOYS8.cache new file mode 100644 index 0000000..f0277cf Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/xR/xRSJWjXYALzL3j_bt5w5zdo2uCJRUTy3kStP2lQOYS8.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/xW/xWGK7--1vD-RZwDSGhnZZdBranuiAO6c4ORXryY2k90.cache b/tmp/cache/assets/sprockets/v3.0/xW/xWGK7--1vD-RZwDSGhnZZdBranuiAO6c4ORXryY2k90.cache new file mode 100644 index 0000000..222c446 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/xW/xWGK7--1vD-RZwDSGhnZZdBranuiAO6c4ORXryY2k90.cache @@ -0,0 +1 @@ +I"app/assets/javascripts/user.coffee?type=application/javascript&pipeline=self&id=37322f4742fb0075e97950dad397979cd88f710a5ede875acb936d7bbefea2a0:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/xf/xfE02idDxvcdS01LRhpPB4RNCL4C5Mqr3VpJIorbtIE.cache b/tmp/cache/assets/sprockets/v3.0/xf/xfE02idDxvcdS01LRhpPB4RNCL4C5Mqr3VpJIorbtIE.cache new file mode 100644 index 0000000..b4973e1 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/xf/xfE02idDxvcdS01LRhpPB4RNCL4C5Mqr3VpJIorbtIE.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/xl/xlM2FKpwc-WIwBQX1-PyXCGO3tNIyBPwH6kVYXIs0To.cache b/tmp/cache/assets/sprockets/v3.0/xl/xlM2FKpwc-WIwBQX1-PyXCGO3tNIyBPwH6kVYXIs0To.cache new file mode 100644 index 0000000..feb53c6 --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/xl/xlM2FKpwc-WIwBQX1-PyXCGO3tNIyBPwH6kVYXIs0To.cache @@ -0,0 +1 @@ +"%TT4 )|q~tU%_RLLYt) \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v3.0/y5/y5qMCK3OjA5y6GwclFWFYP8TUJdmXjaEdQ2eJvTmTTc.cache b/tmp/cache/assets/sprockets/v3.0/y5/y5qMCK3OjA5y6GwclFWFYP8TUJdmXjaEdQ2eJvTmTTc.cache new file mode 100644 index 0000000..1815e80 Binary files /dev/null and b/tmp/cache/assets/sprockets/v3.0/y5/y5qMCK3OjA5y6GwclFWFYP8TUJdmXjaEdQ2eJvTmTTc.cache differ diff --git a/tmp/cache/assets/sprockets/v3.0/z6/z6RtxUBDgR-6BD4TFl6jMbJa4-5l6C89NSL1qAFx7L0.cache b/tmp/cache/assets/sprockets/v3.0/z6/z6RtxUBDgR-6BD4TFl6jMbJa4-5l6C89NSL1qAFx7L0.cache new file mode 100644 index 0000000..9944c1d --- /dev/null +++ b/tmp/cache/assets/sprockets/v3.0/z6/z6RtxUBDgR-6BD4TFl6jMbJa4-5l6C89NSL1qAFx7L0.cache @@ -0,0 +1 @@ +"%xJg&k"UmXV;Fj \ No newline at end of file diff --git a/tmp/restart.txt b/tmp/restart.txt new file mode 100644 index 0000000..e69de29 diff --git a/vendor/assets/javascripts/.keep b/vendor/assets/javascripts/.keep new file mode 100644 index 0000000..e69de29 diff --git a/vendor/assets/stylesheets/.keep b/vendor/assets/stylesheets/.keep new file mode 100644 index 0000000..e69de29