diff --git a/Gemfile.lock b/Gemfile.lock index 479b583f..c503fa37 100755 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -38,13 +38,12 @@ GEM tzinfo (~> 1.1) arel (6.0.0) bcrypt (3.1.10) + bcrypt (3.1.10-x86-mingw32) binding_of_caller (0.7.2) debug_inspector (>= 0.0.1) builder (3.2.2) - byebug (3.5.1) - columnize (~> 0.8) - debugger-linecache (~> 1.2) - slop (~> 3.6) + byebug (4.0.3) + columnize (= 0.9.0) cancan (1.6.10) carrierwave (0.10.0) activemodel (>= 3.2.0) @@ -57,10 +56,9 @@ GEM coffee-script (2.3.0) coffee-script-source execjs - coffee-script-source (1.9.1) + coffee-script-source (1.8.0) columnize (0.9.0) debug_inspector (0.0.2) - debugger-linecache (1.2.0) devise (3.4.1) bcrypt (~> 3.0) orm_adapter (~> 0.1) @@ -83,7 +81,7 @@ GEM activesupport (>= 4.1.0) hike (1.2.3) i18n (0.7.0) - jbuilder (2.2.11) + jbuilder (2.2.12) activesupport (>= 3.0.0, < 5) multi_json (~> 1.2) jquery-rails (4.0.3) @@ -96,12 +94,14 @@ GEM mail (2.6.3) mime-types (>= 1.16, < 3) mime-types (2.4.3) - mini_magick (4.1.0) + mini_magick (4.2.0) mini_portile (0.6.2) minitest (5.5.1) multi_json (1.11.0) nokogiri (1.6.6.2) mini_portile (~> 0.6.0) + nokogiri (1.6.6.2-x86-mingw32) + mini_portile (~> 0.6.0) orm_adapter (0.5.0) rack (1.6.0) rack-test (0.6.3) @@ -119,11 +119,11 @@ GEM sprockets-rails rails-deprecated_sanitizer (1.0.3) activesupport (>= 4.2.0.alpha) - rails-dom-testing (1.0.5) + rails-dom-testing (1.0.6) activesupport (>= 4.2.0.beta, < 5.0) nokogiri (~> 1.6.0) rails-deprecated_sanitizer (>= 1.0.1) - rails-html-sanitizer (1.0.1) + rails-html-sanitizer (1.0.2) loofah (~> 2.0) railties (4.2.0) actionpack (= 4.2.0) @@ -132,12 +132,12 @@ GEM thor (>= 0.18.1, < 2.0) rake (10.4.2) rdoc (4.2.0) + json (~> 1.4) redactor-rails (0.5.0) devise mime-types orm_adapter responders (2.1.0) - railties (>= 4.2.0, < 5) rspec-core (3.2.3) rspec-support (~> 3.2.0) rspec-expectations (3.2.1) @@ -164,7 +164,6 @@ GEM tilt (~> 1.1) sdoc (0.4.1) json (~> 1.7, >= 1.7.7) - rdoc (~> 4.0) simplecov (0.9.2) docile (~> 1.1.0) multi_json (~> 1.0) @@ -182,8 +181,9 @@ GEM activesupport (>= 3.0) sprockets (>= 2.8, < 4.0) sqlite3 (1.3.10) + sqlite3 (1.3.10-x86-mingw32) thor (0.19.1) - thread_safe (0.3.4) + thread_safe (0.3.5) tilt (1.4.1) turbolinks (2.5.3) coffee-rails @@ -194,12 +194,14 @@ GEM railties (~> 4.1) tzinfo (1.2.2) thread_safe (~> 0.1) + tzinfo-data (1.2015.2) + tzinfo (>= 1.0.0) uglifier (2.7.1) execjs (>= 0.3.0) json (>= 1.8.0) warden (1.2.3) rack (>= 1.0) - web-console (2.1.1) + web-console (2.1.2) activemodel (>= 4.0) binding_of_caller (>= 0.7.2) railties (>= 4.0) @@ -207,12 +209,14 @@ GEM PLATFORMS ruby + x86-mingw32 DEPENDENCIES byebug cancan carrierwave coffee-rails (~> 4.1.0) + coffee-script-source (= 1.8.0) devise factory_girl_rails font-awesome-rails @@ -229,5 +233,6 @@ DEPENDENCIES sqlite3 turbolinks twitter-bootstrap-rails + tzinfo-data uglifier (>= 1.3.0) web-console (~> 2.0) diff --git a/UML Wordspace/sequence_diagram_s20.png b/UML Wordspace/sequence_diagram_s20.png new file mode 100644 index 00000000..ccf7b013 Binary files /dev/null and b/UML Wordspace/sequence_diagram_s20.png differ diff --git a/app/controllers/articles_controller.rb b/app/controllers/articles_controller.rb old mode 100755 new mode 100644 index b44e609e..ab34b1e3 --- a/app/controllers/articles_controller.rb +++ b/app/controllers/articles_controller.rb @@ -22,6 +22,7 @@ def show @comment = Comment.new(params[:comment]) @replies = Reply.all @reply = Reply.new(params[:reply]) + @report = Reportarticle.where("user_id = ? AND article_id = ?", current_user.id ,params[:id]) end # GET /articles/new @@ -89,6 +90,23 @@ def check_for_cancel redirect_to @article end + def report + # Author:Mina Hany + # 3.4.2015 + # A hash is created containing user's id who wants to report an article + # and that article's id and it is added to model + # containing reported requests + @report = Reportarticle.where('user_id = ? AND article_id = ?', + current_user.id, + params[:id]) + redirect_to @article && return if @report.present? + reportarticleh = { 'user_id' => current_user.id, + 'article_id' => params[:id] } + Reportarticle.create(reportarticleh) + @article = Article.find(params[:id]) + redirect_to @article + end + private # Use callbacks to share common setup or constraints between actions. diff --git a/app/models/ability.rb b/app/models/ability.rb old mode 100755 new mode 100644 index 89810977..d5ffa6cb --- a/app/models/ability.rb +++ b/app/models/ability.rb @@ -2,7 +2,6 @@ # You don't need to be signed in to view Comments or replies. But, you need to be signed in in order to add any of them. Also you can delete or edit them if you wrote them. A moderator can delete any of them. class Ability include CanCan::Ability - def initialize(user) can :show, Article can :show, Comment @@ -13,6 +12,7 @@ def initialize(user) article.user_id == user.id end can :create, Article + can :report, Article can :create, Magazine can :update, Comment do |c| c.user_id == user.id diff --git a/app/models/article.rb b/app/models/article.rb old mode 100755 new mode 100644 index e343b38a..db262c74 --- a/app/models/article.rb +++ b/app/models/article.rb @@ -1,5 +1,7 @@ # Article Model class Article < ActiveRecord::Base + has_many :reportarticles + has_many :users, through: :reportarticles # adding The uploader to Image field # adding relation between user and articles mount_uploader :image, ImgUploader diff --git a/app/models/reportarticle.rb b/app/models/reportarticle.rb new file mode 100644 index 00000000..d807d0b0 --- /dev/null +++ b/app/models/reportarticle.rb @@ -0,0 +1,4 @@ +class Reportarticle < ActiveRecord::Base + belongs_to :user + belongs_to :article +end diff --git a/app/models/user.rb b/app/models/user.rb old mode 100755 new mode 100644 index 87a5626b..1d180003 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -1,5 +1,7 @@ # User Model class User < ActiveRecord::Base + has_many :reportarticles + has_many :articles, through: :reportarticles # to upload avatar for user mount_uploader :avatar, AvatarUploader has_many :magazines diff --git a/app/views/articles/show.html.erb b/app/views/articles/show.html.erb old mode 100755 new mode 100644 index 7c650bab..e0f80232 --- a/app/views/articles/show.html.erb +++ b/app/views/articles/show.html.erb @@ -1,3 +1,8 @@ + +<% if @report.present? %> +<%= flash[:notice] = "You have reported this article." %> +<% end %> +
@@ -41,8 +46,9 @@

<%= @article.body.html_safe %>

-
+
+<%= link_to 'Report this article', action: "report" %> <%= render :partial => 'comment', :collection => @article.comments %>
diff --git a/config/routes.rb b/config/routes.rb index a06778e6..ab271a97 100755 --- a/config/routes.rb +++ b/config/routes.rb @@ -3,6 +3,11 @@ # adding resources resources :sponsors + resources :articles do + member do + get 'report' + end +end resources :articles resources :comments resources :replies @@ -16,7 +21,6 @@ devise_for :users get 'main/index' root 'main#index' - resources :articles # Search url matching get '/search' => 'search#search' end diff --git a/db/development.sqlite3 b/db/development.sqlite3 index a9f94ad2..cf603c8f 100755 Binary files a/db/development.sqlite3 and b/db/development.sqlite3 differ diff --git a/db/migrate/20150327104939_create_reportarticles.rb b/db/migrate/20150327104939_create_reportarticles.rb new file mode 100644 index 00000000..1851dcc7 --- /dev/null +++ b/db/migrate/20150327104939_create_reportarticles.rb @@ -0,0 +1,12 @@ +class CreateReportarticles < ActiveRecord::Migration + def change + create_table :reportarticles do |t| + t.references :user, index: true + t.references :article, index: true + + t.timestamps null: false + end + add_foreign_key :reportarticles, :users + add_foreign_key :reportarticles, :articles + end +end diff --git a/db/schema.rb b/db/schema.rb old mode 100755 new mode 100644 index ba90dd71..42a83695 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,9 +10,7 @@ # 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: 20150407210738) do - create_table "articles", force: :cascade do |t| t.text "title" t.text "body" @@ -92,6 +90,26 @@ t.datetime "updated_at", null: false end + create_table "reportarticles", force: :cascade do |t| + t.integer "user_id" + t.integer "article_id" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + + add_index "reportarticles", ["article_id"], name: "index_reportarticles_on_article_id" + add_index "reportarticles", ["user_id"], name: "index_reportarticles_on_user_id" + + create_table "requestjoiningmagazines", force: :cascade do |t| + t.integer "user_id" + t.integer "magazine_id" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + + add_index "requestjoiningmagazines", ["magazine_id"], name: "index_requestjoiningmagazines_on_magazine_id" + add_index "requestjoiningmagazines", ["user_id"], name: "index_requestjoiningmagazines_on_user_id" + create_table "users", force: :cascade do |t| t.string "email", default: "", null: false t.string "encrypted_password", default: "", null: false diff --git a/log/development.log b/log/development.log old mode 100755 new mode 100644 index 4d804f58..dcf0c67c --- a/log/development.log +++ b/log/development.log @@ -92963,10 +92963,13 @@ Started GET "/assets/main-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0. Started GET "/assets/password-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-21 01:31:28 +0200 +<<<<<<< HEAD +======= <<<<<<< HEAD ======= <<<<<<< HEAD >>>>>>> ecee245503362cc428fc50fb9b1eeef0823cbac6 +>>>>>>> 7e82538ecad07b868cf6a42bca170df9527169a3 Started GET "/" for 127.0.0.1 at 2015-04-05 12:05:52 +0200 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by MainController#index as HTML @@ -93481,6 +93484,9 @@ CanCan::AccessDenied (You are not authorized to access this page.): rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' <<<<<<< HEAD +======= +<<<<<<< HEAD +>>>>>>> 7e82538ecad07b868cf6a42bca170df9527169a3 activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' @@ -103746,896 +103752,3080 @@ Started GET "/assets/replies-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127 Started GET "/assets/application-14c09cfbd598d7a15a5e1a4748a9c50e.js?body=1" for 127.0.0.1 at 2015-04-05 23:25:22 +0200 -======= -======= -Started GET "/" for 127.0.0.1 at 2015-03-26 16:31:36 +0200 - ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" -Processing by MainController#index as HTML - Rendered main/index.html.erb within layouts/application (1.9ms) - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]] -Completed 200 OK in 3684ms (Views: 3637.7ms | ActiveRecord: 1.1ms) +<<<<<<< HEAD +Started GET "/assets/fontawesome-webfont-bdd5fe963cf9a6bcf9c449166e2e5a57.woff2?v=4.3.0" for 127.0.0.1 at 2015-04-05 23:25:23 +0200 -Started GET "/" for 127.0.0.1 at 2015-03-26 16:31:40 +0200 +Started GET "/articles/23" for ::1 at 2015-04-06 21:37:11 +0200 + ActiveRecord::SchemaMigration Load (1.0ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by ArticlesController#show as HTML + Parameters: {"id"=>"23"} + Article Load (11.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 23]] +Completed 500 Internal Server Error in 294ms + +CanCan::AccessDenied (Article is not found): + app/controllers/articles_controller.rb:7:in `block in ' + + + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (156.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_markup.html.erb (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/console.js.erb within layouts/javascript (122.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/main.js.erb within layouts/javascript (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/index.html.erb (320.0ms) + + +Started GET "/" for ::1 at 2015-04-06 21:37:14 +0200 Processing by MainController#index as HTML - Rendered main/index.html.erb within layouts/application (0.3ms) - User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]] -Completed 200 OK in 457ms (Views: 454.8ms | ActiveRecord: 0.2ms) + Rendered main/index.html.erb within layouts/application (0.0ms) +Completed 200 OK in 3065ms (Views: 3063.2ms | ActiveRecord: 0.0ms) -Started GET "/assets/scaffolds-6a9ba3d1d72e69c6ce7fb5041354d93d.css?body=1" for 127.0.0.1 at 2015-03-26 16:31:40 +0200 +Started GET "/assets/bootstrap_and_overrides-77b9ba7badc3d77d41f8a253eafac6af.css?body=1" for ::1 at 2015-04-06 21:37:17 +0200 -Started GET "/assets/application-54d81ac09956944cab53a1282cd14489.css?body=1" for 127.0.0.1 at 2015-03-26 16:31:40 +0200 +Started GET "/assets/twitter-bootstrap-static/fontawesome-d6a0daf938b6bd65d3c9d544b603c784.css?body=1" for ::1 at 2015-04-06 21:37:17 +0200 -Started GET "/articles/new" for 127.0.0.1 at 2015-03-26 16:31:45 +0200 -Processing by ArticlesController#new as HTML - User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]] - Rendered articles/_form.html.erb (65.7ms) - Rendered articles/new.html.erb within layouts/application (79.4ms) -Completed 200 OK in 551ms (Views: 479.2ms | ActiveRecord: 0.7ms) +Started GET "/assets/articles-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:37:17 +0200 -Started GET "/users/edit" for 127.0.0.1 at 2015-03-26 16:32:02 +0200 -Processing by Devise::RegistrationsController#edit as HTML - User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]] - Rendered devise/registrations/edit.html.erb within layouts/application (102.0ms) -Completed 200 OK in 513ms (Views: 501.1ms | ActiveRecord: 0.3ms) +Started GET "/assets/comments-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:37:18 +0200 -Started GET "/" for 127.0.0.1 at 2015-03-26 18:45:15 +0200 -Processing by MainController#index as HTML - Rendered main/index.html.erb within layouts/application (0.1ms) - User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]] -Completed 200 OK in 642ms (Views: 640.9ms | ActiveRecord: 0.3ms) +Started GET "/assets/error-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:37:18 +0200 -Started GET "/" for 127.0.0.1 at 2015-03-26 18:45:16 +0200 -Processing by MainController#index as HTML - Rendered main/index.html.erb within layouts/application (0.1ms) - User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]] -Completed 200 OK in 422ms (Views: 419.9ms | ActiveRecord: 0.2ms) +Started GET "/assets/twitter-bootstrap-static/bootstrap-3d4ac324e8c8a16c343c471da829ffcc.css?body=1" for ::1 at 2015-04-06 21:37:18 +0200 -Started GET "/" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 -Processing by MainController#index as HTML - Rendered main/index.html.erb within layouts/application (0.1ms) - User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]] -Completed 200 OK in 387ms (Views: 385.3ms | ActiveRecord: 0.2ms) +Started GET "/assets/errors-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:37:18 +0200 -Started GET "/assets/twitter-bootstrap-static/bootstrap-3d4ac324e8c8a16c343c471da829ffcc.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 +Started GET "/assets/home-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:37:18 +0200 -Started GET "/assets/articles-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 +Started GET "/assets/magazines-4b474ad861d7f14f29436d734913b343.css?body=1" for ::1 at 2015-04-06 21:37:18 +0200 -Started GET "/assets/twitter-bootstrap-static/fontawesome-d6a0daf938b6bd65d3c9d544b603c784.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 +Started GET "/assets/main-93bac2b2c1293b56745bae5c06bf1b70.css?body=1" for ::1 at 2015-04-06 21:37:18 +0200 -Started GET "/assets/bootstrap_and_overrides-77b9ba7badc3d77d41f8a253eafac6af.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 +Started GET "/assets/password-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:37:18 +0200 -Started GET "/assets/error-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 +Started GET "/assets/replies-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:37:18 +0200 -Started GET "/assets/comments-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 +Started GET "/assets/scaffolds-fa433cebd43a078d2923a7e8c4531e1b.css?body=1" for ::1 at 2015-04-06 21:37:18 +0200 -Started GET "/assets/errors-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 +Started GET "/assets/application-22a1341393dff8493b66fc4b22500368.css?body=1" for ::1 at 2015-04-06 21:37:18 +0200 -Started GET "/assets/home-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 +Started GET "/assets/redactor-rails/css/redactor-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-06 21:37:18 +0200 -Started GET "/assets/main-93bac2b2c1293b56745bae5c06bf1b70.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 +Started GET "/assets/redactor-rails/index-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-06 21:37:18 +0200 -Started GET "/assets/password-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 +Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for ::1 at 2015-04-06 21:37:18 +0200 -Started GET "/assets/replies-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 +Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-04-06 21:37:18 +0200 -Started GET "/assets/scaffolds-6a9ba3d1d72e69c6ce7fb5041354d93d.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 +Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-04-06 21:37:18 +0200 -Started GET "/assets/application-54d81ac09956944cab53a1282cd14489.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 +Started GET "/assets/bootstrap-91416daf9f05a6e9ca13ef54aa8dcb39.js?body=1" for ::1 at 2015-04-06 21:37:18 +0200 -Started GET "/assets/redactor-rails/css/redactor-006fe699e5a62203636875167e9be116.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 +Started GET "/assets/twitter/bootstrap/transition-49c071d4d736acca69daed5bd6c4fdbd.js?body=1" for ::1 at 2015-04-06 21:37:18 +0200 -Started GET "/assets/redactor-rails/index-006fe699e5a62203636875167e9be116.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 +Started GET "/assets/twitter/bootstrap/alert-4fa131fff2ae05a1d89df662cd4a8531.js?body=1" for ::1 at 2015-04-06 21:37:18 +0200 -Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 +Started GET "/assets/twitter/bootstrap/modal-d403efa7333c333fdeecc5daa727c437.js?body=1" for ::1 at 2015-04-06 21:37:18 +0200 -Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 +Started GET "/assets/twitter/bootstrap/dropdown-89b3696cc302eaf377aca640fae08632.js?body=1" for ::1 at 2015-04-06 21:37:18 +0200 -Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 +Started GET "/assets/twitter/bootstrap/scrollspy-f3a0e91892e9edb7ccced4ed84ff23ec.js?body=1" for ::1 at 2015-04-06 21:37:18 +0200 -Started GET "/assets/bootstrap-91416daf9f05a6e9ca13ef54aa8dcb39.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 +Started GET "/assets/twitter/bootstrap/tab-fab339701c02e2cb7d02570dd26fcf10.js?body=1" for ::1 at 2015-04-06 21:37:18 +0200 -Started GET "/assets/twitter/bootstrap/transition-49c071d4d736acca69daed5bd6c4fdbd.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 +Started GET "/assets/twitter/bootstrap/tooltip-1727c885f6618bb619e6a29ef0496d11.js?body=1" for ::1 at 2015-04-06 21:37:18 +0200 -Started GET "/assets/twitter/bootstrap/alert-4fa131fff2ae05a1d89df662cd4a8531.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 +Started GET "/assets/twitter/bootstrap/popover-c19ae92999a32fa658ffe5d5cc13d195.js?body=1" for ::1 at 2015-04-06 21:37:18 +0200 -Started GET "/assets/twitter/bootstrap/modal-d403efa7333c333fdeecc5daa727c437.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 +Started GET "/assets/twitter/bootstrap/button-dcd83af4b8aa46a9026dec4ea360a003.js?body=1" for ::1 at 2015-04-06 21:37:18 +0200 -Started GET "/assets/twitter/bootstrap/dropdown-89b3696cc302eaf377aca640fae08632.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/assets/twitter/bootstrap/collapse-cfd6f6e5cff9c41e78cc52464a71358b.js?body=1" for ::1 at 2015-04-06 21:37:18 +0200 -Started GET "/assets/twitter/bootstrap/scrollspy-f3a0e91892e9edb7ccced4ed84ff23ec.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/assets/twitter/bootstrap/carousel-ac6115504ba6a31f58406c5978a6aa20.js?body=1" for ::1 at 2015-04-06 21:37:18 +0200 -Started GET "/assets/twitter/bootstrap/tab-fab339701c02e2cb7d02570dd26fcf10.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/assets/twitter/bootstrap/affix-745457a96802e8f61e15a7622b54b68f.js?body=1" for ::1 at 2015-04-06 21:37:18 +0200 -Started GET "/assets/twitter/bootstrap/tooltip-1727c885f6618bb619e6a29ef0496d11.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/assets/twitter/bootstrap-4a7c8463ef111cbe52eec5efe89f8319.js?body=1" for ::1 at 2015-04-06 21:37:19 +0200 -Started GET "/assets/twitter/bootstrap/popover-c19ae92999a32fa658ffe5d5cc13d195.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/assets/turbolinks-5cadf2bbb275e5d225b448dd6ec65060.js?body=1" for ::1 at 2015-04-06 21:37:19 +0200 -Started GET "/assets/twitter/bootstrap/button-dcd83af4b8aa46a9026dec4ea360a003.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/assets/redactor-rails/redactor-1499e668f233ebd2ff87f6ebc980ee79.js?body=1" for ::1 at 2015-04-06 21:37:19 +0200 -Started GET "/assets/twitter/bootstrap/collapse-cfd6f6e5cff9c41e78cc52464a71358b.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/assets/redactor-rails/config-6e12a2defcd11714404a06cb1fc5015e.js?body=1" for ::1 at 2015-04-06 21:37:19 +0200 -Started GET "/assets/twitter/bootstrap/carousel-ac6115504ba6a31f58406c5978a6aa20.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/assets/redactor-rails/index-32fa657642dde78dbd397dc903f2c543.js?body=1" for ::1 at 2015-04-06 21:37:19 +0200 -Started GET "/assets/twitter/bootstrap/affix-745457a96802e8f61e15a7622b54b68f.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/assets/redactor-rails/plugins/clips-0ccb5233e10f48822327513187294f30.js?body=1" for ::1 at 2015-04-06 21:37:19 +0200 -Started GET "/assets/twitter/bootstrap-4a7c8463ef111cbe52eec5efe89f8319.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/assets/redactor-rails/plugins/fontcolor-cf9aab502d635a1479bedcf907c074b5.js?body=1" for ::1 at 2015-04-06 21:37:19 +0200 -Started GET "/assets/turbolinks-f87b3583ca50adb0488b031297f5580d.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/assets/redactor-rails/plugins/fontfamily-24e2e0345acd77ddfd5d3bb8e5728d66.js?body=1" for ::1 at 2015-04-06 21:37:19 +0200 -Started GET "/assets/redactor-rails/redactor-1499e668f233ebd2ff87f6ebc980ee79.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/assets/redactor-rails/plugins/fontsize-3791997a7ea67fc7f2cf41d98c8403d9.js?body=1" for ::1 at 2015-04-06 21:37:19 +0200 -Started GET "/assets/redactor-rails/config-6e12a2defcd11714404a06cb1fc5015e.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/assets/redactor-rails/plugins/fullscreen-7b220aa28c5c5e2aa14cfc735fc0261a.js?body=1" for ::1 at 2015-04-06 21:37:19 +0200 -Started GET "/assets/redactor-rails/index-32fa657642dde78dbd397dc903f2c543.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/assets/redactor-rails/plugins/textdirection-402ec4952acb4ae60f9988c68366e229.js?body=1" for ::1 at 2015-04-06 21:37:19 +0200 -Started GET "/assets/redactor-rails/plugins/clips-0ccb5233e10f48822327513187294f30.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/assets/redactor-rails/plugins-e4d090ece6b24f82a8c7c10a9bee91ed.js?body=1" for ::1 at 2015-04-06 21:37:19 +0200 -Started GET "/assets/redactor-rails/plugins/fontcolor-cf9aab502d635a1479bedcf907c074b5.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/assets/articles-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:37:19 +0200 -Started GET "/assets/redactor-rails/plugins/fontfamily-24e2e0345acd77ddfd5d3bb8e5728d66.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/assets/comments-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:37:19 +0200 -Started GET "/assets/redactor-rails/plugins/fontsize-3791997a7ea67fc7f2cf41d98c8403d9.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/assets/error-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:37:19 +0200 -Started GET "/assets/redactor-rails/plugins/textdirection-402ec4952acb4ae60f9988c68366e229.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/assets/errors-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:37:19 +0200 -Started GET "/assets/redactor-rails/plugins/fullscreen-7b220aa28c5c5e2aa14cfc735fc0261a.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/assets/home-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:37:19 +0200 -Started GET "/assets/redactor-rails/plugins-e4d090ece6b24f82a8c7c10a9bee91ed.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/assets/magazines-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:37:19 +0200 -Started GET "/assets/articles-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/assets/main-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:37:19 +0200 -Started GET "/assets/comments-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/assets/password-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:37:19 +0200 -Started GET "/assets/error-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/assets/replies-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:37:19 +0200 -Started GET "/assets/errors-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/assets/application-856fb04edf05dd596a3f58788621d762.js?body=1" for ::1 at 2015-04-06 21:37:19 +0200 -Started GET "/assets/home-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/assets/fontawesome-webfont-bdd5fe963cf9a6bcf9c449166e2e5a57.woff2?v=4.3.0" for ::1 at 2015-04-06 21:37:19 +0200 -Started GET "/assets/main-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/" for ::1 at 2015-04-06 21:52:33 +0200 + ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by MainController#index as HTML + Rendered main/index.html.erb within layouts/application (10.0ms) +Completed 200 OK in 1454ms (Views: 1395.1ms | ActiveRecord: 0.0ms) -Started GET "/assets/password-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/assets/bootstrap_and_overrides-77b9ba7badc3d77d41f8a253eafac6af.css?body=1" for ::1 at 2015-04-06 21:52:34 +0200 -Started GET "/assets/replies-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/assets/comments-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:52:34 +0200 -Started GET "/assets/application-623d1bd84fd200d032e27ccb5336c668.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/assets/twitter-bootstrap-static/bootstrap-3d4ac324e8c8a16c343c471da829ffcc.css?body=1" for ::1 at 2015-04-06 21:52:34 +0200 -Started GET "/assets/fontawesome-webfont-bdd5fe963cf9a6bcf9c449166e2e5a57.woff2?v=4.3.0" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 +Started GET "/assets/articles-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 -Processing by MainController#index as HTML - Rendered main/index.html.erb within layouts/application (0.1ms) - User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]] -Completed 200 OK in 392ms (Views: 391.4ms | ActiveRecord: 0.2ms) +Started GET "/assets/error-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/assets/articles-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 +Started GET "/assets/twitter-bootstrap-static/fontawesome-d6a0daf938b6bd65d3c9d544b603c784.css?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/assets/twitter-bootstrap-static/bootstrap-3d4ac324e8c8a16c343c471da829ffcc.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 +Started GET "/assets/errors-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/assets/error-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 +Started GET "/assets/home-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/assets/comments-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 +Started GET "/assets/main-93bac2b2c1293b56745bae5c06bf1b70.css?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/assets/twitter-bootstrap-static/fontawesome-d6a0daf938b6bd65d3c9d544b603c784.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 +Started GET "/assets/password-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/assets/bootstrap_and_overrides-77b9ba7badc3d77d41f8a253eafac6af.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 +Started GET "/assets/replies-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/assets/errors-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 +Started GET "/assets/scaffolds-fa433cebd43a078d2923a7e8c4531e1b.css?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/assets/home-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 +Started GET "/assets/redactor-rails/css/redactor-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/assets/main-93bac2b2c1293b56745bae5c06bf1b70.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 +Started GET "/assets/redactor-rails/index-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/assets/password-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 +Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/assets/replies-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 +Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/assets/scaffolds-6a9ba3d1d72e69c6ce7fb5041354d93d.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 +Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/assets/application-54d81ac09956944cab53a1282cd14489.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 +Started GET "/assets/bootstrap-91416daf9f05a6e9ca13ef54aa8dcb39.js?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/assets/redactor-rails/css/redactor-006fe699e5a62203636875167e9be116.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 +Started GET "/assets/twitter/bootstrap/transition-49c071d4d736acca69daed5bd6c4fdbd.js?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/assets/redactor-rails/index-006fe699e5a62203636875167e9be116.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 +Started GET "/assets/twitter/bootstrap/alert-4fa131fff2ae05a1d89df662cd4a8531.js?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 +Started GET "/assets/twitter/bootstrap/modal-d403efa7333c333fdeecc5daa727c437.js?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 +Started GET "/assets/twitter/bootstrap/dropdown-89b3696cc302eaf377aca640fae08632.js?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 +Started GET "/assets/twitter/bootstrap/scrollspy-f3a0e91892e9edb7ccced4ed84ff23ec.js?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/assets/bootstrap-91416daf9f05a6e9ca13ef54aa8dcb39.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 +Started GET "/assets/twitter/bootstrap/tab-fab339701c02e2cb7d02570dd26fcf10.js?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/assets/twitter/bootstrap/transition-49c071d4d736acca69daed5bd6c4fdbd.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 +Started GET "/assets/twitter/bootstrap/tooltip-1727c885f6618bb619e6a29ef0496d11.js?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/assets/twitter/bootstrap/alert-4fa131fff2ae05a1d89df662cd4a8531.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 +Started GET "/assets/twitter/bootstrap/popover-c19ae92999a32fa658ffe5d5cc13d195.js?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/assets/twitter/bootstrap/modal-d403efa7333c333fdeecc5daa727c437.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 +Started GET "/assets/twitter/bootstrap/button-dcd83af4b8aa46a9026dec4ea360a003.js?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/assets/twitter/bootstrap/dropdown-89b3696cc302eaf377aca640fae08632.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 +Started GET "/assets/twitter/bootstrap/collapse-cfd6f6e5cff9c41e78cc52464a71358b.js?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/assets/twitter/bootstrap/scrollspy-f3a0e91892e9edb7ccced4ed84ff23ec.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 +Started GET "/assets/twitter/bootstrap/carousel-ac6115504ba6a31f58406c5978a6aa20.js?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/assets/twitter/bootstrap/tab-fab339701c02e2cb7d02570dd26fcf10.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 +Started GET "/assets/twitter/bootstrap/affix-745457a96802e8f61e15a7622b54b68f.js?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/assets/twitter/bootstrap/tooltip-1727c885f6618bb619e6a29ef0496d11.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 +Started GET "/assets/twitter/bootstrap-4a7c8463ef111cbe52eec5efe89f8319.js?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/assets/twitter/bootstrap/popover-c19ae92999a32fa658ffe5d5cc13d195.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 +Started GET "/assets/turbolinks-5cadf2bbb275e5d225b448dd6ec65060.js?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/assets/twitter/bootstrap/button-dcd83af4b8aa46a9026dec4ea360a003.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 +Started GET "/assets/redactor-rails/redactor-1499e668f233ebd2ff87f6ebc980ee79.js?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/assets/twitter/bootstrap/collapse-cfd6f6e5cff9c41e78cc52464a71358b.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 +Started GET "/assets/redactor-rails/config-6e12a2defcd11714404a06cb1fc5015e.js?body=1" for ::1 at 2015-04-06 21:52:35 +0200 -Started GET "/assets/twitter/bootstrap/carousel-ac6115504ba6a31f58406c5978a6aa20.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 +Started GET "/assets/redactor-rails/index-32fa657642dde78dbd397dc903f2c543.js?body=1" for ::1 at 2015-04-06 21:52:36 +0200 -Started GET "/assets/twitter/bootstrap/affix-745457a96802e8f61e15a7622b54b68f.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 +Started GET "/assets/redactor-rails/plugins/clips-0ccb5233e10f48822327513187294f30.js?body=1" for ::1 at 2015-04-06 21:52:36 +0200 -Started GET "/assets/turbolinks-f87b3583ca50adb0488b031297f5580d.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 +Started GET "/assets/redactor-rails/plugins/fontcolor-cf9aab502d635a1479bedcf907c074b5.js?body=1" for ::1 at 2015-04-06 21:52:36 +0200 -Started GET "/assets/twitter/bootstrap-4a7c8463ef111cbe52eec5efe89f8319.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 +Started GET "/assets/redactor-rails/plugins/fontfamily-24e2e0345acd77ddfd5d3bb8e5728d66.js?body=1" for ::1 at 2015-04-06 21:52:36 +0200 -Started GET "/assets/redactor-rails/redactor-1499e668f233ebd2ff87f6ebc980ee79.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 +Started GET "/assets/redactor-rails/plugins/fontsize-3791997a7ea67fc7f2cf41d98c8403d9.js?body=1" for ::1 at 2015-04-06 21:52:36 +0200 -Started GET "/assets/redactor-rails/config-6e12a2defcd11714404a06cb1fc5015e.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 +Started GET "/assets/redactor-rails/plugins/fullscreen-7b220aa28c5c5e2aa14cfc735fc0261a.js?body=1" for ::1 at 2015-04-06 21:52:36 +0200 -Started GET "/assets/redactor-rails/index-32fa657642dde78dbd397dc903f2c543.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 +Started GET "/assets/redactor-rails/plugins/textdirection-402ec4952acb4ae60f9988c68366e229.js?body=1" for ::1 at 2015-04-06 21:52:36 +0200 -Started GET "/assets/redactor-rails/plugins/clips-0ccb5233e10f48822327513187294f30.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 +Started GET "/assets/redactor-rails/plugins-e4d090ece6b24f82a8c7c10a9bee91ed.js?body=1" for ::1 at 2015-04-06 21:52:36 +0200 -Started GET "/assets/redactor-rails/plugins/fontcolor-cf9aab502d635a1479bedcf907c074b5.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 +Started GET "/assets/articles-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:52:36 +0200 -Started GET "/assets/redactor-rails/plugins/fontfamily-24e2e0345acd77ddfd5d3bb8e5728d66.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 +Started GET "/assets/comments-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:52:36 +0200 -Started GET "/assets/redactor-rails/plugins/fontsize-3791997a7ea67fc7f2cf41d98c8403d9.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 +Started GET "/assets/error-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:52:36 +0200 -Started GET "/assets/redactor-rails/plugins/fullscreen-7b220aa28c5c5e2aa14cfc735fc0261a.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 +Started GET "/assets/errors-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:52:36 +0200 -Started GET "/assets/redactor-rails/plugins/textdirection-402ec4952acb4ae60f9988c68366e229.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 +Started GET "/assets/home-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:52:36 +0200 -Started GET "/assets/redactor-rails/plugins-e4d090ece6b24f82a8c7c10a9bee91ed.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 +Started GET "/assets/main-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:52:36 +0200 -Started GET "/assets/articles-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 +Started GET "/assets/password-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:52:36 +0200 -Started GET "/assets/comments-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 +Started GET "/assets/replies-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:52:36 +0200 -Started GET "/assets/error-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 +Started GET "/users/sign_up" for ::1 at 2015-04-06 21:52:37 +0200 +Processing by Devise::RegistrationsController#new as HTML + Rendered devise/shared/_links.html.erb (6.0ms) + Rendered devise/registrations/new.html.erb within layouts/application (241.0ms) +Completed 200 OK in 1162ms (Views: 1118.1ms | ActiveRecord: 2.0ms) -Started GET "/assets/errors-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 +Started GET "/users/sign_in" for ::1 at 2015-04-06 21:52:41 +0200 +Processing by Devise::SessionsController#new as HTML + Rendered devise/shared/_links.html.erb (5.0ms) + Rendered devise/sessions/new.html.erb within layouts/application (16.0ms) +Completed 200 OK in 977ms (Views: 975.1ms | ActiveRecord: 0.0ms) -Started GET "/assets/home-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 +Started POST "/users/sign_in" for ::1 at 2015-04-06 21:52:44 +0200 +Processing by Devise::SessionsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"uEixEld8/yH+709UnitO0ZNd8r/PyXooLFuuIOfssfNs03h0zSTep44DW81UeY9v5stfpQw995//wa1Fl/DY5g==", "user"=>{"email"=>"mon@yahoo.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"} + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" ASC LIMIT 1 [["email", "mon@yahoo.com"]] +Completed 401 Unauthorized in 65ms +Processing by Devise::SessionsController#new as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"uEixEld8/yH+709UnitO0ZNd8r/PyXooLFuuIOfssfNs03h0zSTep44DW81UeY9v5stfpQw995//wa1Fl/DY5g==", "user"=>{"email"=>"mon@yahoo.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"} + Rendered devise/shared/_links.html.erb (4.0ms) + Rendered devise/sessions/new.html.erb within layouts/application (13.0ms) +Completed 200 OK in 1015ms (Views: 910.1ms | ActiveRecord: 0.0ms) -Started GET "/assets/main-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 +Started GET "/assets/articles-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:52:45 +0200 -Started GET "/assets/password-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 +Started GET "/assets/twitter-bootstrap-static/fontawesome-d6a0daf938b6bd65d3c9d544b603c784.css?body=1" for ::1 at 2015-04-06 21:52:45 +0200 -Started GET "/assets/replies-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 +Started GET "/assets/bootstrap_and_overrides-77b9ba7badc3d77d41f8a253eafac6af.css?body=1" for ::1 at 2015-04-06 21:52:45 +0200 -Started GET "/assets/application-623d1bd84fd200d032e27ccb5336c668.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 +Started GET "/assets/comments-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:52:45 +0200 -Started GET "/assets/fontawesome-webfont-bdd5fe963cf9a6bcf9c449166e2e5a57.woff2?v=4.3.0" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 +Started GET "/assets/error-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:52:45 +0200 -Started GET "/" for 127.0.0.1 at 2015-03-26 18:50:49 +0200 -Processing by MainController#index as HTML - Rendered main/index.html.erb within layouts/application (0.1ms) - User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]] -Completed 200 OK in 412ms (Views: 411.2ms | ActiveRecord: 0.2ms) +Started GET "/assets/twitter-bootstrap-static/bootstrap-3d4ac324e8c8a16c343c471da829ffcc.css?body=1" for ::1 at 2015-04-06 21:52:45 +0200 -Started GET "/assets/articles-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/errors-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:52:45 +0200 -Started GET "/assets/bootstrap_and_overrides-77b9ba7badc3d77d41f8a253eafac6af.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/home-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:52:45 +0200 -Started GET "/assets/comments-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/main-93bac2b2c1293b56745bae5c06bf1b70.css?body=1" for ::1 at 2015-04-06 21:52:45 +0200 -Started GET "/assets/twitter-bootstrap-static/fontawesome-d6a0daf938b6bd65d3c9d544b603c784.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/password-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:52:45 +0200 -Started GET "/assets/error-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/replies-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:52:45 +0200 -Started GET "/assets/errors-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/scaffolds-fa433cebd43a078d2923a7e8c4531e1b.css?body=1" for ::1 at 2015-04-06 21:52:45 +0200 -Started GET "/assets/twitter-bootstrap-static/bootstrap-3d4ac324e8c8a16c343c471da829ffcc.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/redactor-rails/css/redactor-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-06 21:52:45 +0200 -Started GET "/assets/home-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/redactor-rails/index-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-06 21:52:45 +0200 -Started GET "/assets/main-93bac2b2c1293b56745bae5c06bf1b70.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for ::1 at 2015-04-06 21:52:45 +0200 -Started GET "/assets/password-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-04-06 21:52:45 +0200 -Started GET "/assets/replies-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-04-06 21:52:45 +0200 -Started GET "/assets/scaffolds-6a9ba3d1d72e69c6ce7fb5041354d93d.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/bootstrap-91416daf9f05a6e9ca13ef54aa8dcb39.js?body=1" for ::1 at 2015-04-06 21:52:45 +0200 -Started GET "/assets/redactor-rails/css/redactor-006fe699e5a62203636875167e9be116.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/twitter/bootstrap/transition-49c071d4d736acca69daed5bd6c4fdbd.js?body=1" for ::1 at 2015-04-06 21:52:45 +0200 -Started GET "/assets/application-54d81ac09956944cab53a1282cd14489.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/twitter/bootstrap/alert-4fa131fff2ae05a1d89df662cd4a8531.js?body=1" for ::1 at 2015-04-06 21:52:45 +0200 -Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/twitter/bootstrap/modal-d403efa7333c333fdeecc5daa727c437.js?body=1" for ::1 at 2015-04-06 21:52:45 +0200 -Started GET "/assets/redactor-rails/index-006fe699e5a62203636875167e9be116.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/twitter/bootstrap/dropdown-89b3696cc302eaf377aca640fae08632.js?body=1" for ::1 at 2015-04-06 21:52:45 +0200 -Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/twitter/bootstrap/scrollspy-f3a0e91892e9edb7ccced4ed84ff23ec.js?body=1" for ::1 at 2015-04-06 21:52:45 +0200 -Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/twitter/bootstrap/tab-fab339701c02e2cb7d02570dd26fcf10.js?body=1" for ::1 at 2015-04-06 21:52:45 +0200 -Started GET "/assets/twitter/bootstrap/transition-49c071d4d736acca69daed5bd6c4fdbd.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/twitter/bootstrap/tooltip-1727c885f6618bb619e6a29ef0496d11.js?body=1" for ::1 at 2015-04-06 21:52:45 +0200 -Started GET "/assets/twitter/bootstrap/alert-4fa131fff2ae05a1d89df662cd4a8531.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/twitter/bootstrap/popover-c19ae92999a32fa658ffe5d5cc13d195.js?body=1" for ::1 at 2015-04-06 21:52:45 +0200 -Started GET "/assets/bootstrap-91416daf9f05a6e9ca13ef54aa8dcb39.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/twitter/bootstrap/button-dcd83af4b8aa46a9026dec4ea360a003.js?body=1" for ::1 at 2015-04-06 21:52:45 +0200 -Started GET "/assets/twitter/bootstrap/modal-d403efa7333c333fdeecc5daa727c437.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/twitter/bootstrap/collapse-cfd6f6e5cff9c41e78cc52464a71358b.js?body=1" for ::1 at 2015-04-06 21:52:45 +0200 -Started GET "/assets/twitter/bootstrap/dropdown-89b3696cc302eaf377aca640fae08632.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/twitter/bootstrap/carousel-ac6115504ba6a31f58406c5978a6aa20.js?body=1" for ::1 at 2015-04-06 21:52:46 +0200 -Started GET "/assets/twitter/bootstrap/scrollspy-f3a0e91892e9edb7ccced4ed84ff23ec.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/twitter/bootstrap/affix-745457a96802e8f61e15a7622b54b68f.js?body=1" for ::1 at 2015-04-06 21:52:46 +0200 -Started GET "/assets/twitter/bootstrap/tab-fab339701c02e2cb7d02570dd26fcf10.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/twitter/bootstrap-4a7c8463ef111cbe52eec5efe89f8319.js?body=1" for ::1 at 2015-04-06 21:52:46 +0200 -Started GET "/assets/twitter/bootstrap/tooltip-1727c885f6618bb619e6a29ef0496d11.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/turbolinks-5cadf2bbb275e5d225b448dd6ec65060.js?body=1" for ::1 at 2015-04-06 21:52:46 +0200 -Started GET "/assets/twitter/bootstrap/popover-c19ae92999a32fa658ffe5d5cc13d195.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/redactor-rails/redactor-1499e668f233ebd2ff87f6ebc980ee79.js?body=1" for ::1 at 2015-04-06 21:52:46 +0200 -Started GET "/assets/twitter/bootstrap/button-dcd83af4b8aa46a9026dec4ea360a003.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/redactor-rails/config-6e12a2defcd11714404a06cb1fc5015e.js?body=1" for ::1 at 2015-04-06 21:52:46 +0200 -Started GET "/assets/twitter/bootstrap/collapse-cfd6f6e5cff9c41e78cc52464a71358b.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/redactor-rails/index-32fa657642dde78dbd397dc903f2c543.js?body=1" for ::1 at 2015-04-06 21:52:46 +0200 -Started GET "/assets/twitter/bootstrap/carousel-ac6115504ba6a31f58406c5978a6aa20.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/redactor-rails/plugins/clips-0ccb5233e10f48822327513187294f30.js?body=1" for ::1 at 2015-04-06 21:52:46 +0200 -Started GET "/assets/twitter/bootstrap/affix-745457a96802e8f61e15a7622b54b68f.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/redactor-rails/plugins/fontcolor-cf9aab502d635a1479bedcf907c074b5.js?body=1" for ::1 at 2015-04-06 21:52:46 +0200 -Started GET "/assets/twitter/bootstrap-4a7c8463ef111cbe52eec5efe89f8319.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/redactor-rails/plugins/fontfamily-24e2e0345acd77ddfd5d3bb8e5728d66.js?body=1" for ::1 at 2015-04-06 21:52:46 +0200 -Started GET "/assets/turbolinks-f87b3583ca50adb0488b031297f5580d.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/redactor-rails/plugins/fontsize-3791997a7ea67fc7f2cf41d98c8403d9.js?body=1" for ::1 at 2015-04-06 21:52:46 +0200 -Started GET "/assets/redactor-rails/redactor-1499e668f233ebd2ff87f6ebc980ee79.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/redactor-rails/plugins/fullscreen-7b220aa28c5c5e2aa14cfc735fc0261a.js?body=1" for ::1 at 2015-04-06 21:52:46 +0200 -Started GET "/assets/redactor-rails/config-6e12a2defcd11714404a06cb1fc5015e.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/redactor-rails/plugins/textdirection-402ec4952acb4ae60f9988c68366e229.js?body=1" for ::1 at 2015-04-06 21:52:46 +0200 -Started GET "/assets/redactor-rails/index-32fa657642dde78dbd397dc903f2c543.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/redactor-rails/plugins-e4d090ece6b24f82a8c7c10a9bee91ed.js?body=1" for ::1 at 2015-04-06 21:52:46 +0200 -Started GET "/assets/redactor-rails/plugins/clips-0ccb5233e10f48822327513187294f30.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/articles-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:52:46 +0200 -Started GET "/assets/redactor-rails/plugins/fontcolor-cf9aab502d635a1479bedcf907c074b5.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/comments-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:52:46 +0200 -Started GET "/assets/redactor-rails/plugins/fontfamily-24e2e0345acd77ddfd5d3bb8e5728d66.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/error-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:52:46 +0200 -Started GET "/assets/redactor-rails/plugins/fontsize-3791997a7ea67fc7f2cf41d98c8403d9.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/errors-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:52:46 +0200 -Started GET "/assets/redactor-rails/plugins/fullscreen-7b220aa28c5c5e2aa14cfc735fc0261a.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/home-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:52:46 +0200 -Started GET "/assets/redactor-rails/plugins/textdirection-402ec4952acb4ae60f9988c68366e229.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/main-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:52:46 +0200 -Started GET "/assets/redactor-rails/plugins-e4d090ece6b24f82a8c7c10a9bee91ed.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/password-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:52:46 +0200 -Started GET "/assets/articles-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/replies-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:52:46 +0200 -Started GET "/assets/comments-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/users/sign_up" for ::1 at 2015-04-06 21:52:51 +0200 +Processing by Devise::RegistrationsController#new as HTML + Rendered devise/shared/_links.html.erb (3.0ms) + Rendered devise/registrations/new.html.erb within layouts/application (17.0ms) +Completed 200 OK in 1002ms (Views: 1000.1ms | ActiveRecord: 0.0ms) -Started GET "/assets/error-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/bootstrap_and_overrides-77b9ba7badc3d77d41f8a253eafac6af.css?body=1" for ::1 at 2015-04-06 21:52:52 +0200 -Started GET "/assets/errors-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/twitter-bootstrap-static/bootstrap-3d4ac324e8c8a16c343c471da829ffcc.css?body=1" for ::1 at 2015-04-06 21:52:53 +0200 -Started GET "/assets/home-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/comments-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:52:53 +0200 -Started GET "/assets/main-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/twitter-bootstrap-static/fontawesome-d6a0daf938b6bd65d3c9d544b603c784.css?body=1" for ::1 at 2015-04-06 21:52:53 +0200 -Started GET "/assets/password-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/error-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:52:53 +0200 -Started GET "/assets/replies-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/articles-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:52:53 +0200 -Started GET "/assets/application-623d1bd84fd200d032e27ccb5336c668.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/errors-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:52:53 +0200 -Started GET "/assets/fontawesome-webfont-bdd5fe963cf9a6bcf9c449166e2e5a57.woff2?v=4.3.0" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 +Started GET "/assets/home-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:52:53 +0200 -Started GET "/" for 127.0.0.1 at 2015-03-26 18:51:36 +0200 -Processing by MainController#index as HTML - Rendered main/index.html.erb within layouts/application (0.1ms) - User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]] -Completed 200 OK in 406ms (Views: 404.5ms | ActiveRecord: 0.2ms) +Started GET "/assets/main-93bac2b2c1293b56745bae5c06bf1b70.css?body=1" for ::1 at 2015-04-06 21:52:53 +0200 -<<<<<<< HEAD -Started GET "/magazines/2" for 127.0.0.1 at 2015-04-05 16:58:45 +0200 -Processing by MagazinesController#show as HTML - Parameters: {"id"=>"2"} - Magazine Load (0.3ms) SELECT "magazines".* FROM "magazines" WHERE "magazines"."id" = ? LIMIT 1 [["id", 2]] - User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]] - CACHE (0.0ms) SELECT "magazines".* FROM "magazines" WHERE "magazines"."id" = ? LIMIT 1 [["id", "2"]] - Rendered magazines/show.html.erb within layouts/application (1.8ms) -Completed 200 OK in 431ms (Views: 420.0ms | ActiveRecord: 0.4ms) - Magazine Load (0.4ms) SELECT "magazines".* FROM "magazines" ORDER BY "magazines"."id" DESC LIMIT 1 - User Load (0.4ms) SELECT "users".* FROM "users" INNER JOIN "magazines_users" ON "users"."id" = "magazines_users"."user_id" WHERE "magazines_users"."magazine_id" = ? [["magazine_id", 2]] +Started GET "/assets/password-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:52:53 +0200 -Started GET "/" for ::1 at 2015-04-05 18:01:55 +0200 - ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" -Processing by MainController#index as HTML - Rendered main/index.html.erb within layouts/application (2.0ms) - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] -Completed 200 OK in 3424ms (Views: 3387.2ms | ActiveRecord: 1.0ms) +Started GET "/assets/replies-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:52:53 +0200 -Started GET "/assets/articles-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:01:59 +0200 +Started GET "/assets/scaffolds-fa433cebd43a078d2923a7e8c4531e1b.css?body=1" for ::1 at 2015-04-06 21:52:53 +0200 -Started GET "/assets/home-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:01:59 +0200 +Started GET "/assets/redactor-rails/css/redactor-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-06 21:52:53 +0200 -Started GET "/assets/errors-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:01:59 +0200 +Started GET "/assets/redactor-rails/index-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-06 21:52:53 +0200 -Started GET "/assets/error-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:01:59 +0200 +Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for ::1 at 2015-04-06 21:52:53 +0200 -Started GET "/assets/magazines-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:01:59 +0200 +Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-04-06 21:52:53 +0200 -Started GET "/assets/comments-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:01:59 +0200 +Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-04-06 21:52:53 +0200 -Started GET "/assets/replies-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:01:59 +0200 +Started GET "/assets/bootstrap-91416daf9f05a6e9ca13ef54aa8dcb39.js?body=1" for ::1 at 2015-04-06 21:52:53 +0200 -Started GET "/assets/application-e6d7db9c7e7dc6688419b02a66606ff2.css?body=1" for ::1 at 2015-04-05 18:01:59 +0200 +Started GET "/assets/twitter/bootstrap/transition-49c071d4d736acca69daed5bd6c4fdbd.js?body=1" for ::1 at 2015-04-06 21:52:53 +0200 -Started GET "/assets/redactor-rails/index-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-05 18:01:59 +0200 +Started GET "/assets/twitter/bootstrap/alert-4fa131fff2ae05a1d89df662cd4a8531.js?body=1" for ::1 at 2015-04-06 21:52:53 +0200 -Started GET "/assets/password-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:01:59 +0200 +Started GET "/assets/twitter/bootstrap/modal-d403efa7333c333fdeecc5daa727c437.js?body=1" for ::1 at 2015-04-06 21:52:53 +0200 -Started GET "/assets/scaffolds-288ea9e32a1aa0ec2dc193719e266455.css?body=1" for ::1 at 2015-04-05 18:01:59 +0200 +Started GET "/assets/twitter/bootstrap/dropdown-89b3696cc302eaf377aca640fae08632.js?body=1" for ::1 at 2015-04-06 21:52:53 +0200 -Started GET "/users/sign_in" for ::1 at 2015-04-05 18:02:04 +0200 -Processing by Devise::SessionsController#new as HTML - Rendered devise/shared/_links.html.erb (6.9ms) - Rendered devise/sessions/new.html.erb within layouts/application (157.9ms) -Completed 200 OK in 601ms (Views: 588.9ms | ActiveRecord: 0.0ms) +Started GET "/assets/twitter/bootstrap/scrollspy-f3a0e91892e9edb7ccced4ed84ff23ec.js?body=1" for ::1 at 2015-04-06 21:52:53 +0200 -Started POST "/users/sign_in" for ::1 at 2015-04-05 18:02:17 +0200 -Processing by Devise::SessionsController#create as HTML - Parameters: {"utf8"=>"✓", "authenticity_token"=>"+jgWIGJo1LOFr47Ub2Z6jkCfxJqXyuxxnBtsNlDyubumY8FaBzM/qWqpG8liY0Bmso5iGrQpA1Xo8EDUoeGGYg==", "user"=>{"email"=>"mayar.bassel.ali@gmail.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"} - User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" ASC LIMIT 1 [["email", "mayar.bassel.ali@gmail.com"]] -Completed 401 Unauthorized in 22ms -Processing by Devise::SessionsController#new as HTML - Parameters: {"utf8"=>"✓", "authenticity_token"=>"+jgWIGJo1LOFr47Ub2Z6jkCfxJqXyuxxnBtsNlDyubumY8FaBzM/qWqpG8liY0Bmso5iGrQpA1Xo8EDUoeGGYg==", "user"=>{"email"=>"mayar.bassel.ali@gmail.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"} - Rendered devise/shared/_links.html.erb (1.9ms) - Rendered devise/sessions/new.html.erb within layouts/application (6.9ms) -Completed 200 OK in 501ms (Views: 422.2ms | ActiveRecord: 0.0ms) +Started GET "/assets/twitter/bootstrap/tab-fab339701c02e2cb7d02570dd26fcf10.js?body=1" for ::1 at 2015-04-06 21:52:53 +0200 -Started GET "/users/sign_up" for ::1 at 2015-04-05 18:02:22 +0200 -Processing by Devise::RegistrationsController#new as HTML - Rendered devise/shared/_links.html.erb (3.2ms) - Rendered devise/registrations/new.html.erb within layouts/application (27.2ms) -Completed 200 OK in 481ms (Views: 479.6ms | ActiveRecord: 0.0ms) +Started GET "/assets/twitter/bootstrap/tooltip-1727c885f6618bb619e6a29ef0496d11.js?body=1" for ::1 at 2015-04-06 21:52:53 +0200 -Started POST "/users" for ::1 at 2015-04-05 18:02:49 +0200 +Started GET "/assets/twitter/bootstrap/popover-c19ae92999a32fa658ffe5d5cc13d195.js?body=1" for ::1 at 2015-04-06 21:52:53 +0200 + + +Started GET "/assets/twitter/bootstrap/button-dcd83af4b8aa46a9026dec4ea360a003.js?body=1" for ::1 at 2015-04-06 21:52:53 +0200 + + +Started GET "/assets/twitter/bootstrap/collapse-cfd6f6e5cff9c41e78cc52464a71358b.js?body=1" for ::1 at 2015-04-06 21:52:53 +0200 + + +Started GET "/assets/twitter/bootstrap/carousel-ac6115504ba6a31f58406c5978a6aa20.js?body=1" for ::1 at 2015-04-06 21:52:53 +0200 + + +Started GET "/assets/twitter/bootstrap/affix-745457a96802e8f61e15a7622b54b68f.js?body=1" for ::1 at 2015-04-06 21:52:53 +0200 + + +Started GET "/assets/twitter/bootstrap-4a7c8463ef111cbe52eec5efe89f8319.js?body=1" for ::1 at 2015-04-06 21:52:53 +0200 + + +Started GET "/assets/turbolinks-5cadf2bbb275e5d225b448dd6ec65060.js?body=1" for ::1 at 2015-04-06 21:52:53 +0200 + + +Started GET "/assets/redactor-rails/redactor-1499e668f233ebd2ff87f6ebc980ee79.js?body=1" for ::1 at 2015-04-06 21:52:53 +0200 + + +Started GET "/assets/redactor-rails/config-6e12a2defcd11714404a06cb1fc5015e.js?body=1" for ::1 at 2015-04-06 21:52:53 +0200 + + +Started GET "/assets/redactor-rails/index-32fa657642dde78dbd397dc903f2c543.js?body=1" for ::1 at 2015-04-06 21:52:53 +0200 + + +Started GET "/assets/redactor-rails/plugins/clips-0ccb5233e10f48822327513187294f30.js?body=1" for ::1 at 2015-04-06 21:52:53 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontcolor-cf9aab502d635a1479bedcf907c074b5.js?body=1" for ::1 at 2015-04-06 21:52:53 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontfamily-24e2e0345acd77ddfd5d3bb8e5728d66.js?body=1" for ::1 at 2015-04-06 21:52:53 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontsize-3791997a7ea67fc7f2cf41d98c8403d9.js?body=1" for ::1 at 2015-04-06 21:52:53 +0200 + + +Started GET "/assets/redactor-rails/plugins/fullscreen-7b220aa28c5c5e2aa14cfc735fc0261a.js?body=1" for ::1 at 2015-04-06 21:52:54 +0200 + + +Started GET "/assets/redactor-rails/plugins/textdirection-402ec4952acb4ae60f9988c68366e229.js?body=1" for ::1 at 2015-04-06 21:52:54 +0200 + + +Started GET "/assets/redactor-rails/plugins-e4d090ece6b24f82a8c7c10a9bee91ed.js?body=1" for ::1 at 2015-04-06 21:52:54 +0200 + + +Started GET "/assets/articles-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:52:54 +0200 + + +Started GET "/assets/comments-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:52:54 +0200 + + +Started GET "/assets/error-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:52:54 +0200 + + +Started GET "/assets/errors-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:52:54 +0200 + + +Started GET "/assets/home-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:52:54 +0200 + + +Started GET "/assets/main-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:52:54 +0200 + + +Started GET "/assets/password-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:52:54 +0200 + + +Started GET "/assets/replies-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:52:54 +0200 + + +Started POST "/users" for ::1 at 2015-04-06 21:53:10 +0200 Processing by Devise::RegistrationsController#create as HTML - Parameters: {"utf8"=>"✓", "authenticity_token"=>"j/ZFKA5zR3zKezZAHq74w83EgJH4Yjhpz8R/Bfvr85vTrZJSayisZiV9o10Tq8IrP9UmEduB1027L1PnCvjMQg==", "user"=>{"email"=>"mayar.bassel.ali@gmail.com", "firstname"=>"Mayar", "lastname"=>"Bassel", "is_female"=>"true", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "is_sponsor"=>"0"}, "commit"=>"Sign up"} + Parameters: {"utf8"=>"✓", "authenticity_token"=>"RzkHQQdEU9QWsuficz0iMW/zYKl8LQmrPoogN3DMam+Tos4nnRxyUmZe83u5b+OPGmXNs7/ZhBztECNSANADeg==", "user"=>{"email"=>"mon@yahoo.com", "firstname"=>"mon", "lastname"=>";lj;lo", "is_female"=>"false", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "is_sponsor"=>"0"}, "commit"=>"Sign up"} Unpermitted parameter: password_confirmation -  (0.1ms) begin transaction - User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mayar.bassel.ali@gmail.com' LIMIT 1 - SQL (0.5ms) INSERT INTO "users" ("email", "encrypted_password", "is_female", "firstname", "lastname", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "mayar.bassel.ali@gmail.com"], ["encrypted_password", "$2a$10$T3tSFAKD6f5W58ykf404AerjegCU3zLjIWYcrEriX6CKFkeQpzHri"], ["is_female", "t"], ["firstname", "Mayar"], ["lastname", "Bassel"], ["created_at", "2015-04-05 16:02:50.107420"], ["updated_at", "2015-04-05 16:02:50.107420"]] -  (1.6ms) commit transaction -  (0.0ms) begin transaction - SQL (0.2ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2015-04-05 16:02:50.112850"], ["current_sign_in_at", "2015-04-05 16:02:50.112850"], ["last_sign_in_ip", "::1"], ["current_sign_in_ip", "::1"], ["sign_in_count", 1], ["updated_at", "2015-04-05 16:02:50.114035"], ["id", 12]] -  (0.8ms) commit transaction +  (1.0ms) begin transaction + User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mon@yahoo.com' LIMIT 1 + SQL (3.0ms) INSERT INTO "users" ("email", "encrypted_password", "firstname", "lastname", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mon@yahoo.com"], ["encrypted_password", "$2a$10$71phpnU.2sVdLYT9A8FTyu5y1yCxzzIwYp8nFR/e6NfeYakexe4hG"], ["firstname", "mon"], ["lastname", ";lj;lo"], ["created_at", "2015-04-06 19:53:10.319480"], ["updated_at", "2015-04-06 19:53:10.319480"]] +  (4.0ms) commit transaction +  (0.0ms) begin transaction + SQL (2.0ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2015-04-06 19:53:10.334481"], ["current_sign_in_at", "2015-04-06 19:53:10.334481"], ["last_sign_in_ip", "::1"], ["current_sign_in_ip", "::1"], ["sign_in_count", 1], ["updated_at", "2015-04-06 19:53:10.337481"], ["id", 12]] +  (3.0ms) commit transaction Redirected to http://localhost:3000/ -Completed 302 Found in 185ms (ActiveRecord: 3.6ms) +Completed 302 Found in 376ms (ActiveRecord: 13.0ms) -Started GET "/" for ::1 at 2015-04-05 18:02:50 +0200 +Started GET "/" for ::1 at 2015-04-06 21:53:10 +0200 Processing by MainController#index as HTML - Rendered main/index.html.erb within layouts/application (0.0ms) - User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] -Completed 200 OK in 453ms (Views: 452.4ms | ActiveRecord: 0.1ms) + Rendered main/index.html.erb within layouts/application (1.0ms) + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] +Completed 200 OK in 853ms (Views: 852.0ms | ActiveRecord: 1.0ms) -Started GET "/" for ::1 at 2015-04-05 18:02:54 +0200 -Processing by MainController#index as HTML - Rendered main/index.html.erb within layouts/application (0.0ms) - User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] -Completed 200 OK in 394ms (Views: 393.4ms | ActiveRecord: 0.1ms) +Started GET "/assets/bootstrap_and_overrides-77b9ba7badc3d77d41f8a253eafac6af.css?body=1" for ::1 at 2015-04-06 21:53:11 +0200 -Started GET "/assets/articles-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:55 +0200 +Started GET "/assets/twitter-bootstrap-static/bootstrap-3d4ac324e8c8a16c343c471da829ffcc.css?body=1" for ::1 at 2015-04-06 21:53:11 +0200 -Started GET "/assets/error-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:55 +0200 +Started GET "/assets/twitter-bootstrap-static/fontawesome-d6a0daf938b6bd65d3c9d544b603c784.css?body=1" for ::1 at 2015-04-06 21:53:11 +0200 -Started GET "/assets/replies-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:55 +0200 +Started GET "/assets/articles-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:53:11 +0200 -Started GET "/assets/errors-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:55 +0200 +Started GET "/assets/comments-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:53:11 +0200 -Started GET "/assets/comments-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:55 +0200 +Started GET "/assets/error-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:53:11 +0200 -Started GET "/assets/home-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:55 +0200 +Started GET "/assets/errors-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:53:11 +0200 -Started GET "/assets/magazines-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:55 +0200 +Started GET "/assets/home-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:53:11 +0200 -Started GET "/assets/password-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:55 +0200 +Started GET "/assets/main-93bac2b2c1293b56745bae5c06bf1b70.css?body=1" for ::1 at 2015-04-06 21:53:11 +0200 -Started GET "/assets/redactor-rails/index-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-05 18:02:55 +0200 +Started GET "/assets/password-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:53:11 +0200 -Started GET "/articles/20" for ::1 at 2015-04-05 18:02:55 +0200 -Processing by ArticlesController#show as HTML - Parameters: {"id"=>"20"} - Article Load (7.7ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 20]] - User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] - User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] - Comment Load (0.6ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 20]] - CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] - Reply Load (0.2ms) SELECT "replies".* FROM "replies" - Rendered articles/_comment.html.erb (20.3ms) - Rendered articles/show.html.erb within layouts/application (55.8ms) -Completed 200 OK in 516ms (Views: 463.7ms | ActiveRecord: 9.5ms) +Started GET "/assets/replies-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 21:53:11 +0200 -Started GET "/assets/articles-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:56 +0200 +Started GET "/assets/scaffolds-fa433cebd43a078d2923a7e8c4531e1b.css?body=1" for ::1 at 2015-04-06 21:53:11 +0200 -Started GET "/assets/home-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:56 +0200 +Started GET "/assets/redactor-rails/css/redactor-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-06 21:53:11 +0200 -Started GET "/assets/magazines-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:56 +0200 +Started GET "/assets/redactor-rails/index-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-06 21:53:11 +0200 -Started GET "/assets/password-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:56 +0200 +Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for ::1 at 2015-04-06 21:53:11 +0200 -Started GET "/assets/errors-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:56 +0200 +Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-04-06 21:53:11 +0200 -Started GET "/assets/error-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:56 +0200 +Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-04-06 21:53:11 +0200 -Started GET "/assets/comments-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:56 +0200 +Started GET "/assets/bootstrap-91416daf9f05a6e9ca13ef54aa8dcb39.js?body=1" for ::1 at 2015-04-06 21:53:11 +0200 -Started GET "/assets/redactor-rails/index-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-05 18:02:56 +0200 +Started GET "/assets/twitter/bootstrap/transition-49c071d4d736acca69daed5bd6c4fdbd.js?body=1" for ::1 at 2015-04-06 21:53:11 +0200 -Started GET "/assets/replies-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:56 +0200 +Started GET "/assets/twitter/bootstrap/alert-4fa131fff2ae05a1d89df662cd4a8531.js?body=1" for ::1 at 2015-04-06 21:53:11 +0200 -Started GET "/articles/20" for ::1 at 2015-04-05 18:02:57 +0200 -Processing by ArticlesController#show as HTML - Parameters: {"id"=>"20"} - Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 20]] - User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] - User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] - Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 20]] - CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] - Reply Load (0.2ms) SELECT "replies".* FROM "replies" - Rendered articles/_comment.html.erb (2.0ms) - Rendered articles/show.html.erb within layouts/application (4.6ms) -Completed 200 OK in 435ms (Views: 429.7ms | ActiveRecord: 0.5ms) +Started GET "/assets/twitter/bootstrap/modal-d403efa7333c333fdeecc5daa727c437.js?body=1" for ::1 at 2015-04-06 21:53:11 +0200 -Started GET "/article" for ::1 at 2015-04-05 18:02:57 +0200 +Started GET "/assets/twitter/bootstrap/dropdown-89b3696cc302eaf377aca640fae08632.js?body=1" for ::1 at 2015-04-06 21:53:12 +0200 -ActionController::RoutingError (No route matches [GET] "/article"): - actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' - web-console (2.1.1) lib/web_console/middleware.rb:37:in `call' - actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' - railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' - railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' - activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' - activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' - activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' - railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' - actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' - rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' - rack (1.6.0) lib/rack/runtime.rb:18:in `call' - activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' - rack (1.6.0) lib/rack/lock.rb:17:in `call' - actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' - rack (1.6.0) lib/rack/sendfile.rb:113:in `call' - railties (4.2.0) lib/rails/engine.rb:518:in `call' - railties (4.2.0) lib/rails/application.rb:164:in `call' - rack (1.6.0) lib/rack/lock.rb:17:in `call' - rack (1.6.0) lib/rack/content_length.rb:15:in `call' - rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' - /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' - /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' - /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' +Started GET "/assets/twitter/bootstrap/scrollspy-f3a0e91892e9edb7ccced4ed84ff23ec.js?body=1" for ::1 at 2015-04-06 21:53:12 +0200 - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.0ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (12.5ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (75.1ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/_markup.html (0.3ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/style.css within layouts/inlined_string (0.4ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/_inner_console_markup.html within layouts/inlined_string (0.5ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/_prompt_box_markup.html within layouts/inlined_string (0.3ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/console.js within layouts/javascript (33.1ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/main.js within layouts/javascript (0.6ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/error_page.js within layouts/javascript (0.5ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/index.html (55.8ms) +Started GET "/assets/twitter/bootstrap/tab-fab339701c02e2cb7d02570dd26fcf10.js?body=1" for ::1 at 2015-04-06 21:53:12 +0200 -Started GET "/articles/20" for ::1 at 2015-04-05 18:02:58 +0200 -Processing by ArticlesController#show as HTML - Parameters: {"id"=>"20"} - Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 20]] - User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] - User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] - Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 20]] - CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] - Reply Load (0.1ms) SELECT "replies".* FROM "replies" - Rendered articles/_comment.html.erb (2.7ms) - Rendered articles/show.html.erb within layouts/application (4.9ms) -Completed 200 OK in 419ms (Views: 413.6ms | ActiveRecord: 0.5ms) +Started GET "/assets/twitter/bootstrap/tooltip-1727c885f6618bb619e6a29ef0496d11.js?body=1" for ::1 at 2015-04-06 21:53:12 +0200 -Started GET "/assets/errors-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:58 +0200 +Started GET "/assets/twitter/bootstrap/popover-c19ae92999a32fa658ffe5d5cc13d195.js?body=1" for ::1 at 2015-04-06 21:53:12 +0200 -Started GET "/assets/articles-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:58 +0200 +Started GET "/assets/twitter/bootstrap/button-dcd83af4b8aa46a9026dec4ea360a003.js?body=1" for ::1 at 2015-04-06 21:53:12 +0200 -Started GET "/assets/error-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:58 +0200 +Started GET "/assets/twitter/bootstrap/collapse-cfd6f6e5cff9c41e78cc52464a71358b.js?body=1" for ::1 at 2015-04-06 21:53:12 +0200 -Started GET "/assets/comments-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:58 +0200 +Started GET "/assets/twitter/bootstrap/carousel-ac6115504ba6a31f58406c5978a6aa20.js?body=1" for ::1 at 2015-04-06 21:53:12 +0200 -Started GET "/assets/home-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:58 +0200 +Started GET "/assets/twitter/bootstrap/affix-745457a96802e8f61e15a7622b54b68f.js?body=1" for ::1 at 2015-04-06 21:53:12 +0200 -Started GET "/assets/magazines-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:58 +0200 +Started GET "/assets/twitter/bootstrap-4a7c8463ef111cbe52eec5efe89f8319.js?body=1" for ::1 at 2015-04-06 21:53:12 +0200 -Started GET "/assets/replies-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:58 +0200 +Started GET "/assets/turbolinks-5cadf2bbb275e5d225b448dd6ec65060.js?body=1" for ::1 at 2015-04-06 21:53:12 +0200 -Started GET "/assets/password-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:58 +0200 +Started GET "/assets/redactor-rails/redactor-1499e668f233ebd2ff87f6ebc980ee79.js?body=1" for ::1 at 2015-04-06 21:53:12 +0200 -Started GET "/assets/redactor-rails/index-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-05 18:02:58 +0200 +Started GET "/assets/redactor-rails/config-6e12a2defcd11714404a06cb1fc5015e.js?body=1" for ::1 at 2015-04-06 21:53:12 +0200 -Started GET "/articles/20" for ::1 at 2015-04-05 18:02:59 +0200 -Processing by ArticlesController#show as HTML - Parameters: {"id"=>"20"} - Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 20]] - User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] - User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] - Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 20]] - CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] - Reply Load (0.2ms) SELECT "replies".* FROM "replies" - Rendered articles/_comment.html.erb (2.1ms) - Rendered articles/show.html.erb within layouts/application (4.5ms) -Completed 200 OK in 455ms (Views: 449.8ms | ActiveRecord: 0.5ms) +Started GET "/assets/redactor-rails/index-32fa657642dde78dbd397dc903f2c543.js?body=1" for ::1 at 2015-04-06 21:53:12 +0200 -Started GET "/" for ::1 at 2015-04-05 18:03:00 +0200 -Processing by MainController#index as HTML - Rendered main/index.html.erb within layouts/application (0.0ms) - User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] -Completed 200 OK in 401ms (Views: 400.3ms | ActiveRecord: 0.3ms) +Started GET "/assets/redactor-rails/plugins/clips-0ccb5233e10f48822327513187294f30.js?body=1" for ::1 at 2015-04-06 21:53:12 +0200 -Started GET "/magazines" for ::1 at 2015-04-05 18:03:00 +0200 -Processing by MagazinesController#index as HTML - User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] -Completed 500 Internal Server Error in 5ms -CanCan::AccessDenied (You are not authorized to access this page.): - cancan (1.6.10) lib/cancan/ability.rb:208:in `authorize!' - cancan (1.6.10) lib/cancan/controller_additions.rb:338:in `authorize!' - cancan (1.6.10) lib/cancan/controller_resource.rb:41:in `authorize_resource' - cancan (1.6.10) lib/cancan/controller_resource.rb:26:in `load_and_authorize_resource' - cancan (1.6.10) lib/cancan/controller_resource.rb:10:in `block in add_before_filter' - activesupport (4.2.0) lib/active_support/callbacks.rb:443:in `instance_exec' - activesupport (4.2.0) lib/active_support/callbacks.rb:443:in `block in make_lambda' - activesupport (4.2.0) lib/active_support/callbacks.rb:163:in `call' - activesupport (4.2.0) lib/active_support/callbacks.rb:163:in `block in halting' - activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' - activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' - activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `call' - activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' - activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' - activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' - activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' - activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' - activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' - activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' - activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' - activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' - activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' - activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' - activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' - activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' - activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' - activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' - actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' - actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' +Started GET "/assets/redactor-rails/plugins/fontcolor-cf9aab502d635a1479bedcf907c074b5.js?body=1" for ::1 at 2015-04-06 21:53:12 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontfamily-24e2e0345acd77ddfd5d3bb8e5728d66.js?body=1" for ::1 at 2015-04-06 21:53:12 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontsize-3791997a7ea67fc7f2cf41d98c8403d9.js?body=1" for ::1 at 2015-04-06 21:53:12 +0200 + + +Started GET "/assets/redactor-rails/plugins/fullscreen-7b220aa28c5c5e2aa14cfc735fc0261a.js?body=1" for ::1 at 2015-04-06 21:53:12 +0200 + + +Started GET "/assets/redactor-rails/plugins/textdirection-402ec4952acb4ae60f9988c68366e229.js?body=1" for ::1 at 2015-04-06 21:53:12 +0200 + + +Started GET "/assets/redactor-rails/plugins-e4d090ece6b24f82a8c7c10a9bee91ed.js?body=1" for ::1 at 2015-04-06 21:53:12 +0200 + + +Started GET "/assets/articles-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:53:12 +0200 + + +Started GET "/assets/comments-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:53:12 +0200 + + +Started GET "/assets/error-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:53:12 +0200 + + +Started GET "/assets/errors-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:53:12 +0200 + + +Started GET "/assets/home-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:53:12 +0200 + + +Started GET "/assets/main-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:53:12 +0200 + + +Started GET "/assets/password-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:53:12 +0200 + + +Started GET "/assets/replies-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 21:53:12 +0200 + + +Started GET "/magazine/new" for ::1 at 2015-04-06 22:16:49 +0200 + ActiveRecord::SchemaMigration Load (1.0ms) SELECT "schema_migrations".* FROM "schema_migrations" + +ActiveRecord::PendingMigrationError ( + +Migrations are pending. To resolve this issue, run: + + bin/rake db:migrate RAILS_ENV=development + +): + activerecord (4.2.0) lib/active_record/migration.rb:393:in `check_pending!' + activerecord (4.2.0) lib/active_record/migration.rb:374:in `call' +======= +======= +======= +Started GET "/" for 127.0.0.1 at 2015-03-26 16:31:36 +0200 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by MainController#index as HTML + Rendered main/index.html.erb within layouts/application (1.9ms) + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]] +Completed 200 OK in 3684ms (Views: 3637.7ms | ActiveRecord: 1.1ms) + + +Started GET "/" for 127.0.0.1 at 2015-03-26 16:31:40 +0200 +Processing by MainController#index as HTML + Rendered main/index.html.erb within layouts/application (0.3ms) + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]] +Completed 200 OK in 457ms (Views: 454.8ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/scaffolds-6a9ba3d1d72e69c6ce7fb5041354d93d.css?body=1" for 127.0.0.1 at 2015-03-26 16:31:40 +0200 + + +Started GET "/assets/application-54d81ac09956944cab53a1282cd14489.css?body=1" for 127.0.0.1 at 2015-03-26 16:31:40 +0200 + + +Started GET "/articles/new" for 127.0.0.1 at 2015-03-26 16:31:45 +0200 +Processing by ArticlesController#new as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]] + Rendered articles/_form.html.erb (65.7ms) + Rendered articles/new.html.erb within layouts/application (79.4ms) +Completed 200 OK in 551ms (Views: 479.2ms | ActiveRecord: 0.7ms) + + +Started GET "/users/edit" for 127.0.0.1 at 2015-03-26 16:32:02 +0200 +Processing by Devise::RegistrationsController#edit as HTML + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]] + Rendered devise/registrations/edit.html.erb within layouts/application (102.0ms) +Completed 200 OK in 513ms (Views: 501.1ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2015-03-26 18:45:15 +0200 +Processing by MainController#index as HTML + Rendered main/index.html.erb within layouts/application (0.1ms) + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]] +Completed 200 OK in 642ms (Views: 640.9ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2015-03-26 18:45:16 +0200 +Processing by MainController#index as HTML + Rendered main/index.html.erb within layouts/application (0.1ms) + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]] +Completed 200 OK in 422ms (Views: 419.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 +Processing by MainController#index as HTML + Rendered main/index.html.erb within layouts/application (0.1ms) + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]] +Completed 200 OK in 387ms (Views: 385.3ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/twitter-bootstrap-static/bootstrap-3d4ac324e8c8a16c343c471da829ffcc.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 + + +Started GET "/assets/articles-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 + + +Started GET "/assets/twitter-bootstrap-static/fontawesome-d6a0daf938b6bd65d3c9d544b603c784.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 + + +Started GET "/assets/bootstrap_and_overrides-77b9ba7badc3d77d41f8a253eafac6af.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 + + +Started GET "/assets/error-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 + + +Started GET "/assets/comments-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 + + +Started GET "/assets/errors-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 + + +Started GET "/assets/home-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 + + +Started GET "/assets/main-93bac2b2c1293b56745bae5c06bf1b70.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 + + +Started GET "/assets/password-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 + + +Started GET "/assets/replies-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 + + +Started GET "/assets/scaffolds-6a9ba3d1d72e69c6ce7fb5041354d93d.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 + + +Started GET "/assets/application-54d81ac09956944cab53a1282cd14489.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 + + +Started GET "/assets/redactor-rails/css/redactor-006fe699e5a62203636875167e9be116.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 + + +Started GET "/assets/redactor-rails/index-006fe699e5a62203636875167e9be116.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 + + +Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 + + +Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 + + +Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 + + +Started GET "/assets/bootstrap-91416daf9f05a6e9ca13ef54aa8dcb39.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 + + +Started GET "/assets/twitter/bootstrap/transition-49c071d4d736acca69daed5bd6c4fdbd.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 + + +Started GET "/assets/twitter/bootstrap/alert-4fa131fff2ae05a1d89df662cd4a8531.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 + + +Started GET "/assets/twitter/bootstrap/modal-d403efa7333c333fdeecc5daa727c437.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:23 +0200 + + +Started GET "/assets/twitter/bootstrap/dropdown-89b3696cc302eaf377aca640fae08632.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/assets/twitter/bootstrap/scrollspy-f3a0e91892e9edb7ccced4ed84ff23ec.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/assets/twitter/bootstrap/tab-fab339701c02e2cb7d02570dd26fcf10.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/assets/twitter/bootstrap/tooltip-1727c885f6618bb619e6a29ef0496d11.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/assets/twitter/bootstrap/popover-c19ae92999a32fa658ffe5d5cc13d195.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/assets/twitter/bootstrap/button-dcd83af4b8aa46a9026dec4ea360a003.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/assets/twitter/bootstrap/collapse-cfd6f6e5cff9c41e78cc52464a71358b.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/assets/twitter/bootstrap/carousel-ac6115504ba6a31f58406c5978a6aa20.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/assets/twitter/bootstrap/affix-745457a96802e8f61e15a7622b54b68f.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/assets/twitter/bootstrap-4a7c8463ef111cbe52eec5efe89f8319.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/assets/turbolinks-f87b3583ca50adb0488b031297f5580d.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/assets/redactor-rails/redactor-1499e668f233ebd2ff87f6ebc980ee79.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/assets/redactor-rails/config-6e12a2defcd11714404a06cb1fc5015e.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/assets/redactor-rails/index-32fa657642dde78dbd397dc903f2c543.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/assets/redactor-rails/plugins/clips-0ccb5233e10f48822327513187294f30.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontcolor-cf9aab502d635a1479bedcf907c074b5.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontfamily-24e2e0345acd77ddfd5d3bb8e5728d66.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontsize-3791997a7ea67fc7f2cf41d98c8403d9.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/assets/redactor-rails/plugins/textdirection-402ec4952acb4ae60f9988c68366e229.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/assets/redactor-rails/plugins/fullscreen-7b220aa28c5c5e2aa14cfc735fc0261a.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/assets/redactor-rails/plugins-e4d090ece6b24f82a8c7c10a9bee91ed.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/assets/articles-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/assets/comments-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/assets/error-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/assets/errors-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/assets/home-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/assets/main-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/assets/password-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/assets/replies-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/assets/application-623d1bd84fd200d032e27ccb5336c668.js?body=1" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/assets/fontawesome-webfont-bdd5fe963cf9a6bcf9c449166e2e5a57.woff2?v=4.3.0" for 127.0.0.1 at 2015-03-26 18:46:24 +0200 + + +Started GET "/" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 +Processing by MainController#index as HTML + Rendered main/index.html.erb within layouts/application (0.1ms) + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]] +Completed 200 OK in 392ms (Views: 391.4ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/articles-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 + + +Started GET "/assets/twitter-bootstrap-static/bootstrap-3d4ac324e8c8a16c343c471da829ffcc.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 + + +Started GET "/assets/error-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 + + +Started GET "/assets/comments-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 + + +Started GET "/assets/twitter-bootstrap-static/fontawesome-d6a0daf938b6bd65d3c9d544b603c784.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 + + +Started GET "/assets/bootstrap_and_overrides-77b9ba7badc3d77d41f8a253eafac6af.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 + + +Started GET "/assets/errors-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 + + +Started GET "/assets/home-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 + + +Started GET "/assets/main-93bac2b2c1293b56745bae5c06bf1b70.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 + + +Started GET "/assets/password-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 + + +Started GET "/assets/replies-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 + + +Started GET "/assets/scaffolds-6a9ba3d1d72e69c6ce7fb5041354d93d.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 + + +Started GET "/assets/application-54d81ac09956944cab53a1282cd14489.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 + + +Started GET "/assets/redactor-rails/css/redactor-006fe699e5a62203636875167e9be116.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 + + +Started GET "/assets/redactor-rails/index-006fe699e5a62203636875167e9be116.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 + + +Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 + + +Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 + + +Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 + + +Started GET "/assets/bootstrap-91416daf9f05a6e9ca13ef54aa8dcb39.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 + + +Started GET "/assets/twitter/bootstrap/transition-49c071d4d736acca69daed5bd6c4fdbd.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 + + +Started GET "/assets/twitter/bootstrap/alert-4fa131fff2ae05a1d89df662cd4a8531.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 + + +Started GET "/assets/twitter/bootstrap/modal-d403efa7333c333fdeecc5daa727c437.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 + + +Started GET "/assets/twitter/bootstrap/dropdown-89b3696cc302eaf377aca640fae08632.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 + + +Started GET "/assets/twitter/bootstrap/scrollspy-f3a0e91892e9edb7ccced4ed84ff23ec.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 + + +Started GET "/assets/twitter/bootstrap/tab-fab339701c02e2cb7d02570dd26fcf10.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 + + +Started GET "/assets/twitter/bootstrap/tooltip-1727c885f6618bb619e6a29ef0496d11.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 + + +Started GET "/assets/twitter/bootstrap/popover-c19ae92999a32fa658ffe5d5cc13d195.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 + + +Started GET "/assets/twitter/bootstrap/button-dcd83af4b8aa46a9026dec4ea360a003.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:56 +0200 + + +Started GET "/assets/twitter/bootstrap/collapse-cfd6f6e5cff9c41e78cc52464a71358b.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 + + +Started GET "/assets/twitter/bootstrap/carousel-ac6115504ba6a31f58406c5978a6aa20.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 + + +Started GET "/assets/twitter/bootstrap/affix-745457a96802e8f61e15a7622b54b68f.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 + + +Started GET "/assets/turbolinks-f87b3583ca50adb0488b031297f5580d.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 + + +Started GET "/assets/twitter/bootstrap-4a7c8463ef111cbe52eec5efe89f8319.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 + + +Started GET "/assets/redactor-rails/redactor-1499e668f233ebd2ff87f6ebc980ee79.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 + + +Started GET "/assets/redactor-rails/config-6e12a2defcd11714404a06cb1fc5015e.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 + + +Started GET "/assets/redactor-rails/index-32fa657642dde78dbd397dc903f2c543.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 + + +Started GET "/assets/redactor-rails/plugins/clips-0ccb5233e10f48822327513187294f30.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontcolor-cf9aab502d635a1479bedcf907c074b5.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontfamily-24e2e0345acd77ddfd5d3bb8e5728d66.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontsize-3791997a7ea67fc7f2cf41d98c8403d9.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 + + +Started GET "/assets/redactor-rails/plugins/fullscreen-7b220aa28c5c5e2aa14cfc735fc0261a.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 + + +Started GET "/assets/redactor-rails/plugins/textdirection-402ec4952acb4ae60f9988c68366e229.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 + + +Started GET "/assets/redactor-rails/plugins-e4d090ece6b24f82a8c7c10a9bee91ed.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 + + +Started GET "/assets/articles-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 + + +Started GET "/assets/comments-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 + + +Started GET "/assets/error-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 + + +Started GET "/assets/errors-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 + + +Started GET "/assets/home-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 + + +Started GET "/assets/main-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 + + +Started GET "/assets/password-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 + + +Started GET "/assets/replies-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 + + +Started GET "/assets/application-623d1bd84fd200d032e27ccb5336c668.js?body=1" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 + + +Started GET "/assets/fontawesome-webfont-bdd5fe963cf9a6bcf9c449166e2e5a57.woff2?v=4.3.0" for 127.0.0.1 at 2015-03-26 18:48:57 +0200 + + +Started GET "/" for 127.0.0.1 at 2015-03-26 18:50:49 +0200 +Processing by MainController#index as HTML + Rendered main/index.html.erb within layouts/application (0.1ms) + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]] +Completed 200 OK in 412ms (Views: 411.2ms | ActiveRecord: 0.2ms) + + +Started GET "/assets/articles-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/bootstrap_and_overrides-77b9ba7badc3d77d41f8a253eafac6af.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/comments-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/twitter-bootstrap-static/fontawesome-d6a0daf938b6bd65d3c9d544b603c784.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/error-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/errors-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/twitter-bootstrap-static/bootstrap-3d4ac324e8c8a16c343c471da829ffcc.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/home-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/main-93bac2b2c1293b56745bae5c06bf1b70.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/password-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/replies-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/scaffolds-6a9ba3d1d72e69c6ce7fb5041354d93d.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/redactor-rails/css/redactor-006fe699e5a62203636875167e9be116.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/application-54d81ac09956944cab53a1282cd14489.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/redactor-rails/index-006fe699e5a62203636875167e9be116.css?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/twitter/bootstrap/transition-49c071d4d736acca69daed5bd6c4fdbd.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/twitter/bootstrap/alert-4fa131fff2ae05a1d89df662cd4a8531.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/bootstrap-91416daf9f05a6e9ca13ef54aa8dcb39.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/twitter/bootstrap/modal-d403efa7333c333fdeecc5daa727c437.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/twitter/bootstrap/dropdown-89b3696cc302eaf377aca640fae08632.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/twitter/bootstrap/scrollspy-f3a0e91892e9edb7ccced4ed84ff23ec.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/twitter/bootstrap/tab-fab339701c02e2cb7d02570dd26fcf10.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/twitter/bootstrap/tooltip-1727c885f6618bb619e6a29ef0496d11.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/twitter/bootstrap/popover-c19ae92999a32fa658ffe5d5cc13d195.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/twitter/bootstrap/button-dcd83af4b8aa46a9026dec4ea360a003.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/twitter/bootstrap/collapse-cfd6f6e5cff9c41e78cc52464a71358b.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/twitter/bootstrap/carousel-ac6115504ba6a31f58406c5978a6aa20.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/twitter/bootstrap/affix-745457a96802e8f61e15a7622b54b68f.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/twitter/bootstrap-4a7c8463ef111cbe52eec5efe89f8319.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/turbolinks-f87b3583ca50adb0488b031297f5580d.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/redactor-rails/redactor-1499e668f233ebd2ff87f6ebc980ee79.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/redactor-rails/config-6e12a2defcd11714404a06cb1fc5015e.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/redactor-rails/index-32fa657642dde78dbd397dc903f2c543.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/redactor-rails/plugins/clips-0ccb5233e10f48822327513187294f30.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontcolor-cf9aab502d635a1479bedcf907c074b5.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontfamily-24e2e0345acd77ddfd5d3bb8e5728d66.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontsize-3791997a7ea67fc7f2cf41d98c8403d9.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/redactor-rails/plugins/fullscreen-7b220aa28c5c5e2aa14cfc735fc0261a.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/redactor-rails/plugins/textdirection-402ec4952acb4ae60f9988c68366e229.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/redactor-rails/plugins-e4d090ece6b24f82a8c7c10a9bee91ed.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/articles-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/comments-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/error-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/errors-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/home-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/main-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/password-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/replies-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/application-623d1bd84fd200d032e27ccb5336c668.js?body=1" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/assets/fontawesome-webfont-bdd5fe963cf9a6bcf9c449166e2e5a57.woff2?v=4.3.0" for 127.0.0.1 at 2015-03-26 18:50:50 +0200 + + +Started GET "/" for 127.0.0.1 at 2015-03-26 18:51:36 +0200 +Processing by MainController#index as HTML + Rendered main/index.html.erb within layouts/application (0.1ms) + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]] +Completed 200 OK in 406ms (Views: 404.5ms | ActiveRecord: 0.2ms) + + +<<<<<<< HEAD +Started GET "/magazines/2" for 127.0.0.1 at 2015-04-05 16:58:45 +0200 +Processing by MagazinesController#show as HTML + Parameters: {"id"=>"2"} + Magazine Load (0.3ms) SELECT "magazines".* FROM "magazines" WHERE "magazines"."id" = ? LIMIT 1 [["id", 2]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]] + CACHE (0.0ms) SELECT "magazines".* FROM "magazines" WHERE "magazines"."id" = ? LIMIT 1 [["id", "2"]] + Rendered magazines/show.html.erb within layouts/application (1.8ms) +Completed 200 OK in 431ms (Views: 420.0ms | ActiveRecord: 0.4ms) + Magazine Load (0.4ms) SELECT "magazines".* FROM "magazines" ORDER BY "magazines"."id" DESC LIMIT 1 + User Load (0.4ms) SELECT "users".* FROM "users" INNER JOIN "magazines_users" ON "users"."id" = "magazines_users"."user_id" WHERE "magazines_users"."magazine_id" = ? [["magazine_id", 2]] + + +Started GET "/" for ::1 at 2015-04-05 18:01:55 +0200 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by MainController#index as HTML + Rendered main/index.html.erb within layouts/application (2.0ms) + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] +Completed 200 OK in 3424ms (Views: 3387.2ms | ActiveRecord: 1.0ms) + + +Started GET "/assets/articles-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:01:59 +0200 + + +Started GET "/assets/home-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:01:59 +0200 + + +Started GET "/assets/errors-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:01:59 +0200 + + +Started GET "/assets/error-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:01:59 +0200 + + +Started GET "/assets/magazines-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:01:59 +0200 + + +Started GET "/assets/comments-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:01:59 +0200 + + +Started GET "/assets/replies-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:01:59 +0200 + + +Started GET "/assets/application-e6d7db9c7e7dc6688419b02a66606ff2.css?body=1" for ::1 at 2015-04-05 18:01:59 +0200 + + +Started GET "/assets/redactor-rails/index-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-05 18:01:59 +0200 + + +Started GET "/assets/password-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:01:59 +0200 + + +Started GET "/assets/scaffolds-288ea9e32a1aa0ec2dc193719e266455.css?body=1" for ::1 at 2015-04-05 18:01:59 +0200 + + +Started GET "/users/sign_in" for ::1 at 2015-04-05 18:02:04 +0200 +Processing by Devise::SessionsController#new as HTML + Rendered devise/shared/_links.html.erb (6.9ms) + Rendered devise/sessions/new.html.erb within layouts/application (157.9ms) +Completed 200 OK in 601ms (Views: 588.9ms | ActiveRecord: 0.0ms) + + +Started POST "/users/sign_in" for ::1 at 2015-04-05 18:02:17 +0200 +Processing by Devise::SessionsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"+jgWIGJo1LOFr47Ub2Z6jkCfxJqXyuxxnBtsNlDyubumY8FaBzM/qWqpG8liY0Bmso5iGrQpA1Xo8EDUoeGGYg==", "user"=>{"email"=>"mayar.bassel.ali@gmail.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" ASC LIMIT 1 [["email", "mayar.bassel.ali@gmail.com"]] +Completed 401 Unauthorized in 22ms +Processing by Devise::SessionsController#new as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"+jgWIGJo1LOFr47Ub2Z6jkCfxJqXyuxxnBtsNlDyubumY8FaBzM/qWqpG8liY0Bmso5iGrQpA1Xo8EDUoeGGYg==", "user"=>{"email"=>"mayar.bassel.ali@gmail.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"} + Rendered devise/shared/_links.html.erb (1.9ms) + Rendered devise/sessions/new.html.erb within layouts/application (6.9ms) +Completed 200 OK in 501ms (Views: 422.2ms | ActiveRecord: 0.0ms) + + +Started GET "/users/sign_up" for ::1 at 2015-04-05 18:02:22 +0200 +Processing by Devise::RegistrationsController#new as HTML + Rendered devise/shared/_links.html.erb (3.2ms) + Rendered devise/registrations/new.html.erb within layouts/application (27.2ms) +Completed 200 OK in 481ms (Views: 479.6ms | ActiveRecord: 0.0ms) + + +Started POST "/users" for ::1 at 2015-04-05 18:02:49 +0200 +Processing by Devise::RegistrationsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"j/ZFKA5zR3zKezZAHq74w83EgJH4Yjhpz8R/Bfvr85vTrZJSayisZiV9o10Tq8IrP9UmEduB1027L1PnCvjMQg==", "user"=>{"email"=>"mayar.bassel.ali@gmail.com", "firstname"=>"Mayar", "lastname"=>"Bassel", "is_female"=>"true", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "is_sponsor"=>"0"}, "commit"=>"Sign up"} +Unpermitted parameter: password_confirmation +  (0.1ms) begin transaction + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'mayar.bassel.ali@gmail.com' LIMIT 1 + SQL (0.5ms) INSERT INTO "users" ("email", "encrypted_password", "is_female", "firstname", "lastname", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "mayar.bassel.ali@gmail.com"], ["encrypted_password", "$2a$10$T3tSFAKD6f5W58ykf404AerjegCU3zLjIWYcrEriX6CKFkeQpzHri"], ["is_female", "t"], ["firstname", "Mayar"], ["lastname", "Bassel"], ["created_at", "2015-04-05 16:02:50.107420"], ["updated_at", "2015-04-05 16:02:50.107420"]] +  (1.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2015-04-05 16:02:50.112850"], ["current_sign_in_at", "2015-04-05 16:02:50.112850"], ["last_sign_in_ip", "::1"], ["current_sign_in_ip", "::1"], ["sign_in_count", 1], ["updated_at", "2015-04-05 16:02:50.114035"], ["id", 12]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 185ms (ActiveRecord: 3.6ms) + + +Started GET "/" for ::1 at 2015-04-05 18:02:50 +0200 +Processing by MainController#index as HTML + Rendered main/index.html.erb within layouts/application (0.0ms) + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] +Completed 200 OK in 453ms (Views: 452.4ms | ActiveRecord: 0.1ms) + + +Started GET "/" for ::1 at 2015-04-05 18:02:54 +0200 +Processing by MainController#index as HTML + Rendered main/index.html.erb within layouts/application (0.0ms) + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] +Completed 200 OK in 394ms (Views: 393.4ms | ActiveRecord: 0.1ms) + + +Started GET "/assets/articles-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:55 +0200 + + +Started GET "/assets/error-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:55 +0200 + + +Started GET "/assets/replies-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:55 +0200 + + +Started GET "/assets/errors-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:55 +0200 + + +Started GET "/assets/comments-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:55 +0200 + + +Started GET "/assets/home-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:55 +0200 + + +Started GET "/assets/magazines-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:55 +0200 + + +Started GET "/assets/password-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:55 +0200 + + +Started GET "/assets/redactor-rails/index-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-05 18:02:55 +0200 + + +Started GET "/articles/20" for ::1 at 2015-04-05 18:02:55 +0200 +Processing by ArticlesController#show as HTML + Parameters: {"id"=>"20"} + Article Load (7.7ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 20]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + Comment Load (0.6ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 20]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + Reply Load (0.2ms) SELECT "replies".* FROM "replies" + Rendered articles/_comment.html.erb (20.3ms) + Rendered articles/show.html.erb within layouts/application (55.8ms) +Completed 200 OK in 516ms (Views: 463.7ms | ActiveRecord: 9.5ms) + + +Started GET "/assets/articles-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:56 +0200 + + +Started GET "/assets/home-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:56 +0200 + + +Started GET "/assets/magazines-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:56 +0200 + + +Started GET "/assets/password-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:56 +0200 + + +Started GET "/assets/errors-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:56 +0200 + + +Started GET "/assets/error-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:56 +0200 + + +Started GET "/assets/comments-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:56 +0200 + + +Started GET "/assets/redactor-rails/index-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-05 18:02:56 +0200 + + +Started GET "/assets/replies-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:56 +0200 + + +Started GET "/articles/20" for ::1 at 2015-04-05 18:02:57 +0200 +Processing by ArticlesController#show as HTML + Parameters: {"id"=>"20"} + Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 20]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 20]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + Reply Load (0.2ms) SELECT "replies".* FROM "replies" + Rendered articles/_comment.html.erb (2.0ms) + Rendered articles/show.html.erb within layouts/application (4.6ms) +Completed 200 OK in 435ms (Views: 429.7ms | ActiveRecord: 0.5ms) + + +Started GET "/article" for ::1 at 2015-04-05 18:02:57 +0200 + +ActionController::RoutingError (No route matches [GET] "/article"): + actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.1.1) lib/web_console/middleware.rb:37:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.0) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.0) lib/rack/lock.rb:17:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' + rack (1.6.0) lib/rack/sendfile.rb:113:in `call' + railties (4.2.0) lib/rails/engine.rb:518:in `call' + railties (4.2.0) lib/rails/application.rb:164:in `call' + rack (1.6.0) lib/rack/lock.rb:17:in `call' + rack (1.6.0) lib/rack/content_length.rb:15:in `call' + rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' + /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' + /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' + /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' + + + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.0ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (12.5ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (75.1ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/_markup.html (0.3ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/style.css within layouts/inlined_string (0.4ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/_inner_console_markup.html within layouts/inlined_string (0.5ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/_prompt_box_markup.html within layouts/inlined_string (0.3ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/console.js within layouts/javascript (33.1ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/main.js within layouts/javascript (0.6ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/error_page.js within layouts/javascript (0.5ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/index.html (55.8ms) + + +Started GET "/articles/20" for ::1 at 2015-04-05 18:02:58 +0200 +Processing by ArticlesController#show as HTML + Parameters: {"id"=>"20"} + Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 20]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 20]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + Reply Load (0.1ms) SELECT "replies".* FROM "replies" + Rendered articles/_comment.html.erb (2.7ms) + Rendered articles/show.html.erb within layouts/application (4.9ms) +Completed 200 OK in 419ms (Views: 413.6ms | ActiveRecord: 0.5ms) + + +Started GET "/assets/errors-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:58 +0200 + + +Started GET "/assets/articles-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:58 +0200 + + +Started GET "/assets/error-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:58 +0200 + + +Started GET "/assets/comments-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:58 +0200 + + +Started GET "/assets/home-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:58 +0200 + + +Started GET "/assets/magazines-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:58 +0200 + + +Started GET "/assets/replies-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:58 +0200 + + +Started GET "/assets/password-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-05 18:02:58 +0200 + + +Started GET "/assets/redactor-rails/index-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-05 18:02:58 +0200 + + +Started GET "/articles/20" for ::1 at 2015-04-05 18:02:59 +0200 +Processing by ArticlesController#show as HTML + Parameters: {"id"=>"20"} + Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 20]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 20]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + Reply Load (0.2ms) SELECT "replies".* FROM "replies" + Rendered articles/_comment.html.erb (2.1ms) + Rendered articles/show.html.erb within layouts/application (4.5ms) +Completed 200 OK in 455ms (Views: 449.8ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2015-04-05 18:03:00 +0200 +Processing by MainController#index as HTML + Rendered main/index.html.erb within layouts/application (0.0ms) + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] +Completed 200 OK in 401ms (Views: 400.3ms | ActiveRecord: 0.3ms) + + +Started GET "/magazines" for ::1 at 2015-04-05 18:03:00 +0200 +Processing by MagazinesController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] +Completed 500 Internal Server Error in 5ms + +CanCan::AccessDenied (You are not authorized to access this page.): + cancan (1.6.10) lib/cancan/ability.rb:208:in `authorize!' + cancan (1.6.10) lib/cancan/controller_additions.rb:338:in `authorize!' + cancan (1.6.10) lib/cancan/controller_resource.rb:41:in `authorize_resource' + cancan (1.6.10) lib/cancan/controller_resource.rb:26:in `load_and_authorize_resource' + cancan (1.6.10) lib/cancan/controller_resource.rb:10:in `block in add_before_filter' + activesupport (4.2.0) lib/active_support/callbacks.rb:443:in `instance_exec' + activesupport (4.2.0) lib/active_support/callbacks.rb:443:in `block in make_lambda' + activesupport (4.2.0) lib/active_support/callbacks.rb:163:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:163:in `block in halting' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' + activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' + activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' + activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' + activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' + activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' + activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' + activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' + actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' + actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' + actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' + actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' + actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' + warden (1.2.3) lib/warden/manager.rb:35:in `block in call' + warden (1.2.3) lib/warden/manager.rb:34:in `catch' + warden (1.2.3) lib/warden/manager.rb:34:in `call' + rack (1.6.0) lib/rack/etag.rb:24:in `call' + rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.0) lib/rack/head.rb:13:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' + activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' +>>>>>>> 7e82538ecad07b868cf6a42bca170df9527169a3 + actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' + activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' + activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' +<<<<<<< HEAD + web-console (2.1.2) lib/web_console/middleware.rb:37:in `call' +======= + web-console (2.1.1) lib/web_console/middleware.rb:37:in `call' +>>>>>>> 7e82538ecad07b868cf6a42bca170df9527169a3 + actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.0) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.0) lib/rack/lock.rb:17:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' + rack (1.6.0) lib/rack/sendfile.rb:113:in `call' + railties (4.2.0) lib/rails/engine.rb:518:in `call' + railties (4.2.0) lib/rails/application.rb:164:in `call' + rack (1.6.0) lib/rack/lock.rb:17:in `call' + rack (1.6.0) lib/rack/content_length.rb:15:in `call' + rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' +<<<<<<< HEAD + C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' + C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' + C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' + + + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (101.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_markup.html.erb (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/console.js.erb within layouts/javascript (104.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/main.js.erb within layouts/javascript (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/error_page.js.erb within layouts/javascript (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/index.html.erb (234.0ms) + ActiveRecord::SchemaMigration Load (1.0ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateRequestjoiningmagazines (20150406201640) +  (0.0ms) begin transaction +  (1.0ms) CREATE TABLE "requestjoiningmagazines" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "magazine_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  +  (0.0ms) select sqlite_version(*) +  (0.0ms) CREATE INDEX "index_requestjoiningmagazines_on_user_id" ON "requestjoiningmagazines" ("user_id") +  (0.0ms) SELECT sql + FROM sqlite_master + WHERE name='index_requestjoiningmagazines_on_user_id' AND type='index' + UNION ALL + SELECT sql + FROM sqlite_temp_master + WHERE name='index_requestjoiningmagazines_on_user_id' AND type='index' + +  (0.0ms) CREATE INDEX "index_requestjoiningmagazines_on_magazine_id" ON "requestjoiningmagazines" ("magazine_id") + SQL (1.0ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150406201640"]] +  (5.0ms) commit transaction + ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.0ms)  SELECT sql +======= + /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' + /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' + /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' + + + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.6ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (25.2ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/_markup.html (0.3ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/style.css within layouts/inlined_string (0.2ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/_inner_console_markup.html within layouts/inlined_string (0.2ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/_prompt_box_markup.html within layouts/inlined_string (0.2ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/console.js within layouts/javascript (12.2ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/main.js within layouts/javascript (0.2ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/error_page.js within layouts/javascript (0.3ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/index.html (26.8ms) + + +Started GET "/magazines/1" for ::1 at 2015-04-05 18:03:02 +0200 +Processing by MagazinesController#show as HTML + Parameters: {"id"=>"1"} + Magazine Load (0.1ms) SELECT "magazines".* FROM "magazines" WHERE "magazines"."id" = ? LIMIT 1 [["id", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + CACHE (0.0ms) SELECT "magazines".* FROM "magazines" WHERE "magazines"."id" = ? LIMIT 1 [["id", "1"]] + User Load (0.2ms) SELECT "users".* FROM "users" INNER JOIN "magazines_users" ON "users"."id" = "magazines_users"."user_id" WHERE "magazines_users"."magazine_id" = ? [["magazine_id", 1]] + Rendered magazines/show.html.erb within layouts/application (34.5ms) +Completed 500 Internal Server Error in 47ms + +ActionView::Template::Error (undefined method `user_id' for #): + 14: Image: + 15: <%= @magazine.image %> + 16:

+ 17: <% if can? :update, @magazine %> + 18: <%= link_to 'Edit', edit_magazine_path(@magazine) %> + 19: <% end %>| + 20: <%= link_to 'Back', magazines_path %> + app/views/magazines/show.html.erb:17:in `_app_views_magazines_show_html_erb___4394743262053112330_70193025218800' + + + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (9.2ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (26.5ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/_markup.html (6.3ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/style.css within layouts/inlined_string (0.3ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/_inner_console_markup.html within layouts/inlined_string (0.3ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/_prompt_box_markup.html within layouts/inlined_string (0.2ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/console.js within layouts/javascript (12.7ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/main.js within layouts/javascript (0.2ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/error_page.js within layouts/javascript (0.3ms) + Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/index.html (33.0ms) + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (12.1ms)  SELECT sql + FROM sqlite_master + WHERE name='idx_redactor_assetable' AND type='index' + UNION ALL + SELECT sql + FROM sqlite_temp_master + WHERE name='idx_redactor_assetable' AND type='index' + +  (0.2ms) SELECT sql + FROM sqlite_master + WHERE name='idx_redactor_assetable_type' AND type='index' + UNION ALL + SELECT sql + FROM sqlite_temp_master + WHERE name='idx_redactor_assetable_type' AND type='index' + +  (0.2ms)  SELECT sql + FROM sqlite_master + WHERE name='index_users_on_reset_password_token' AND type='index' + UNION ALL + SELECT sql + FROM sqlite_temp_master + WHERE name='index_users_on_reset_password_token' AND type='index' + +  (0.1ms) SELECT sql + FROM sqlite_master + WHERE name='index_users_on_email' AND type='index' + UNION ALL + SELECT sql + FROM sqlite_temp_master + WHERE name='index_users_on_email' AND type='index' + + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.1ms)  SELECT sql +>>>>>>> 7e82538ecad07b868cf6a42bca170df9527169a3 + FROM sqlite_master + WHERE name='idx_redactor_assetable' AND type='index' + UNION ALL + SELECT sql + FROM sqlite_temp_master + WHERE name='idx_redactor_assetable' AND type='index' + +<<<<<<< HEAD +  (0.0ms) SELECT sql +======= +  (0.1ms) SELECT sql +>>>>>>> 7e82538ecad07b868cf6a42bca170df9527169a3 + FROM sqlite_master + WHERE name='idx_redactor_assetable_type' AND type='index' + UNION ALL + SELECT sql + FROM sqlite_temp_master + WHERE name='idx_redactor_assetable_type' AND type='index' + +<<<<<<< HEAD +  (1.0ms)  SELECT sql + FROM sqlite_master + WHERE name='index_requestjoiningmagazines_on_magazine_id' AND type='index' + UNION ALL + SELECT sql + FROM sqlite_temp_master + WHERE name='index_requestjoiningmagazines_on_magazine_id' AND type='index' + +  (0.0ms) SELECT sql + FROM sqlite_master + WHERE name='index_requestjoiningmagazines_on_user_id' AND type='index' + UNION ALL + SELECT sql + FROM sqlite_temp_master + WHERE name='index_requestjoiningmagazines_on_user_id' AND type='index' + +  (1.0ms)  SELECT sql +======= +  (0.1ms)  SELECT sql + FROM sqlite_master + WHERE name='index_users_on_reset_password_token' AND type='index' + UNION ALL + SELECT sql + FROM sqlite_temp_master + WHERE name='index_users_on_reset_password_token' AND type='index' + +  (0.1ms) SELECT sql + FROM sqlite_master + WHERE name='index_users_on_email' AND type='index' + UNION ALL + SELECT sql + FROM sqlite_temp_master + WHERE name='index_users_on_email' AND type='index' + + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.1ms)  SELECT sql + FROM sqlite_master + WHERE name='idx_redactor_assetable' AND type='index' + UNION ALL + SELECT sql + FROM sqlite_temp_master + WHERE name='idx_redactor_assetable' AND type='index' + +  (0.1ms) SELECT sql + FROM sqlite_master + WHERE name='idx_redactor_assetable_type' AND type='index' + UNION ALL + SELECT sql + FROM sqlite_temp_master + WHERE name='idx_redactor_assetable_type' AND type='index' + +  (0.1ms)  SELECT sql +>>>>>>> 7e82538ecad07b868cf6a42bca170df9527169a3 + FROM sqlite_master + WHERE name='index_users_on_reset_password_token' AND type='index' + UNION ALL + SELECT sql + FROM sqlite_temp_master + WHERE name='index_users_on_reset_password_token' AND type='index' + +<<<<<<< HEAD +  (0.0ms) SELECT sql +======= +  (0.1ms) SELECT sql +>>>>>>> 7e82538ecad07b868cf6a42bca170df9527169a3 + FROM sqlite_master + WHERE name='index_users_on_email' AND type='index' + UNION ALL + SELECT sql + FROM sqlite_temp_master + WHERE name='index_users_on_email' AND type='index' + + + +<<<<<<< HEAD +Started GET "/magazine/new" for ::1 at 2015-04-06 22:17:43 +0200 + ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations" + +ActionController::RoutingError (No route matches [GET] "/magazine/new"): + actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' + web-console (2.1.2) lib/web_console/middleware.rb:37:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.0) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.0) lib/rack/lock.rb:17:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' + rack (1.6.0) lib/rack/sendfile.rb:113:in `call' + railties (4.2.0) lib/rails/engine.rb:518:in `call' + railties (4.2.0) lib/rails/application.rb:164:in `call' + rack (1.6.0) lib/rack/lock.rb:17:in `call' + rack (1.6.0) lib/rack/content_length.rb:15:in `call' + rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' + C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' + C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' + C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' + + + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (13.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (261.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_markup.html.erb (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/style.css.erb within layouts/inlined_string (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/console.js.erb within layouts/javascript (104.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/main.js.erb within layouts/javascript (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/index.html.erb (236.0ms) + + +Started GET "/magazines/new" for ::1 at 2015-04-06 22:18:26 +0200 +Processing by MagazinesController#new as HTML + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Rendered magazines/_form.html.erb (27.0ms) + Rendered magazines/new.html.erb within layouts/application (38.0ms) +Completed 200 OK in 1096ms (Views: 966.1ms | ActiveRecord: 1.0ms) + + +Started GET "/assets/bootstrap_and_overrides-77b9ba7badc3d77d41f8a253eafac6af.css?body=1" for ::1 at 2015-04-06 22:18:28 +0200 + + +Started GET "/assets/error-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:18:28 +0200 + + +Started GET "/assets/twitter-bootstrap-static/bootstrap-3d4ac324e8c8a16c343c471da829ffcc.css?body=1" for ::1 at 2015-04-06 22:18:28 +0200 + + +Started GET "/assets/comments-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:18:28 +0200 + + +Started GET "/assets/twitter-bootstrap-static/fontawesome-d6a0daf938b6bd65d3c9d544b603c784.css?body=1" for ::1 at 2015-04-06 22:18:28 +0200 + + +Started GET "/assets/articles-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:18:28 +0200 + + +Started GET "/assets/errors-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:18:28 +0200 + + +Started GET "/assets/home-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:18:28 +0200 + + +Started GET "/assets/main-93bac2b2c1293b56745bae5c06bf1b70.css?body=1" for ::1 at 2015-04-06 22:18:28 +0200 + + +Started GET "/assets/password-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:18:28 +0200 + + +Started GET "/assets/replies-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:18:28 +0200 + + +Started GET "/assets/scaffolds-fa433cebd43a078d2923a7e8c4531e1b.css?body=1" for ::1 at 2015-04-06 22:18:28 +0200 + + +Started GET "/assets/redactor-rails/css/redactor-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-06 22:18:28 +0200 + + +Started GET "/assets/redactor-rails/index-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-06 22:18:28 +0200 + + +Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for ::1 at 2015-04-06 22:18:28 +0200 + + +Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-04-06 22:18:28 +0200 + + +Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-04-06 22:18:28 +0200 + + +Started GET "/assets/bootstrap-91416daf9f05a6e9ca13ef54aa8dcb39.js?body=1" for ::1 at 2015-04-06 22:18:28 +0200 + + +Started GET "/assets/twitter/bootstrap/transition-49c071d4d736acca69daed5bd6c4fdbd.js?body=1" for ::1 at 2015-04-06 22:18:28 +0200 + + +Started GET "/assets/twitter/bootstrap/alert-4fa131fff2ae05a1d89df662cd4a8531.js?body=1" for ::1 at 2015-04-06 22:18:28 +0200 + + +Started GET "/assets/twitter/bootstrap/modal-d403efa7333c333fdeecc5daa727c437.js?body=1" for ::1 at 2015-04-06 22:18:28 +0200 + + +Started GET "/assets/twitter/bootstrap/dropdown-89b3696cc302eaf377aca640fae08632.js?body=1" for ::1 at 2015-04-06 22:18:28 +0200 + + +Started GET "/assets/twitter/bootstrap/scrollspy-f3a0e91892e9edb7ccced4ed84ff23ec.js?body=1" for ::1 at 2015-04-06 22:18:28 +0200 + + +Started GET "/assets/twitter/bootstrap/tab-fab339701c02e2cb7d02570dd26fcf10.js?body=1" for ::1 at 2015-04-06 22:18:28 +0200 + + +Started GET "/assets/twitter/bootstrap/tooltip-1727c885f6618bb619e6a29ef0496d11.js?body=1" for ::1 at 2015-04-06 22:18:28 +0200 + + +Started GET "/assets/twitter/bootstrap/popover-c19ae92999a32fa658ffe5d5cc13d195.js?body=1" for ::1 at 2015-04-06 22:18:28 +0200 + + +Started GET "/assets/twitter/bootstrap/button-dcd83af4b8aa46a9026dec4ea360a003.js?body=1" for ::1 at 2015-04-06 22:18:28 +0200 + + +Started GET "/assets/twitter/bootstrap/collapse-cfd6f6e5cff9c41e78cc52464a71358b.js?body=1" for ::1 at 2015-04-06 22:18:28 +0200 + + +Started GET "/assets/twitter/bootstrap/carousel-ac6115504ba6a31f58406c5978a6aa20.js?body=1" for ::1 at 2015-04-06 22:18:28 +0200 + + +Started GET "/assets/twitter/bootstrap/affix-745457a96802e8f61e15a7622b54b68f.js?body=1" for ::1 at 2015-04-06 22:18:29 +0200 + + +Started GET "/assets/twitter/bootstrap-4a7c8463ef111cbe52eec5efe89f8319.js?body=1" for ::1 at 2015-04-06 22:18:29 +0200 + + +Started GET "/assets/turbolinks-5cadf2bbb275e5d225b448dd6ec65060.js?body=1" for ::1 at 2015-04-06 22:18:29 +0200 + + +Started GET "/assets/redactor-rails/redactor-1499e668f233ebd2ff87f6ebc980ee79.js?body=1" for ::1 at 2015-04-06 22:18:29 +0200 + + +Started GET "/assets/redactor-rails/config-6e12a2defcd11714404a06cb1fc5015e.js?body=1" for ::1 at 2015-04-06 22:18:29 +0200 + + +Started GET "/assets/redactor-rails/index-32fa657642dde78dbd397dc903f2c543.js?body=1" for ::1 at 2015-04-06 22:18:29 +0200 + + +Started GET "/assets/redactor-rails/plugins/clips-0ccb5233e10f48822327513187294f30.js?body=1" for ::1 at 2015-04-06 22:18:29 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontcolor-cf9aab502d635a1479bedcf907c074b5.js?body=1" for ::1 at 2015-04-06 22:18:29 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontfamily-24e2e0345acd77ddfd5d3bb8e5728d66.js?body=1" for ::1 at 2015-04-06 22:18:29 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontsize-3791997a7ea67fc7f2cf41d98c8403d9.js?body=1" for ::1 at 2015-04-06 22:18:29 +0200 + + +Started GET "/assets/redactor-rails/plugins/fullscreen-7b220aa28c5c5e2aa14cfc735fc0261a.js?body=1" for ::1 at 2015-04-06 22:18:29 +0200 + + +Started GET "/assets/redactor-rails/plugins/textdirection-402ec4952acb4ae60f9988c68366e229.js?body=1" for ::1 at 2015-04-06 22:18:29 +0200 + + +Started GET "/assets/redactor-rails/plugins-e4d090ece6b24f82a8c7c10a9bee91ed.js?body=1" for ::1 at 2015-04-06 22:18:29 +0200 + + +Started GET "/assets/articles-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:18:29 +0200 + + +Started GET "/assets/comments-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:18:29 +0200 + + +Started GET "/assets/error-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:18:29 +0200 + + +Started GET "/assets/errors-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:18:29 +0200 + + +Started GET "/assets/home-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:18:29 +0200 + + +Started GET "/assets/main-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:18:29 +0200 + + +Started GET "/assets/password-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:18:29 +0200 + + +Started GET "/assets/replies-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:18:29 +0200 + + +Started POST "/magazines" for ::1 at 2015-04-06 22:18:51 +0200 +Processing by MagazinesController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"hCHwdqF1wYmgug0IVVxPddqKgrUOr56qRUQv2d96qA5QujkQOy3gD9BWGZGfDo7Lrxwvr81bEx2W3iy8r2bBGw==", "magazine"=>{"name"=>"kjhfktd", "decription"=>",kjghjdtsea", "image"=>#, @original_filename="548680_326734820724286_2012436084_n.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"magazine[image]\"; filename=\"548680_326734820724286_2012436084_n.jpg\"\r\nContent-Type: image/jpeg\r\n">}, "commit"=>"Create Magazine"} + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] +  (1.0ms) begin transaction + SQL (1.0ms) INSERT INTO "magazines" ("name", "decription", "image", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "kjhfktd"], ["decription", ",kjghjdtsea"], ["image", "548680_326734820724286_2012436084_n.jpg"], ["created_at", "2015-04-06 20:18:51.943656"], ["updated_at", "2015-04-06 20:18:51.943656"]] + SQL (0.0ms) INSERT INTO "magazines_users" ("user_id", "magazine_id") VALUES (?, ?) [["user_id", 12], ["magazine_id", 3]] +  (5.0ms) commit transaction +Redirected to http://localhost:3000/magazines/3 +Completed 302 Found in 216ms (ActiveRecord: 8.0ms) + + +Started GET "/magazines/3" for ::1 at 2015-04-06 22:18:51 +0200 +Processing by MagazinesController#show as HTML + Parameters: {"id"=>"3"} + Magazine Load (1.0ms) SELECT "magazines".* FROM "magazines" WHERE "magazines"."id" = ? LIMIT 1 [["id", 3]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + CACHE (0.0ms) SELECT "magazines".* FROM "magazines" WHERE "magazines"."id" = ? LIMIT 1 [["id", "3"]] + Rendered magazines/show.html.erb within layouts/application (2.0ms) +Completed 200 OK in 972ms (Views: 953.1ms | ActiveRecord: 1.0ms) + + +Started GET "/assets/error-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/comments-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/twitter-bootstrap-static/bootstrap-3d4ac324e8c8a16c343c471da829ffcc.css?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/bootstrap_and_overrides-77b9ba7badc3d77d41f8a253eafac6af.css?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/twitter-bootstrap-static/fontawesome-d6a0daf938b6bd65d3c9d544b603c784.css?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/articles-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/errors-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/home-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/main-93bac2b2c1293b56745bae5c06bf1b70.css?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/password-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/replies-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/scaffolds-fa433cebd43a078d2923a7e8c4531e1b.css?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/redactor-rails/css/redactor-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/redactor-rails/index-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/bootstrap-91416daf9f05a6e9ca13ef54aa8dcb39.js?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/twitter/bootstrap/transition-49c071d4d736acca69daed5bd6c4fdbd.js?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/twitter/bootstrap/alert-4fa131fff2ae05a1d89df662cd4a8531.js?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/twitter/bootstrap/modal-d403efa7333c333fdeecc5daa727c437.js?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/twitter/bootstrap/dropdown-89b3696cc302eaf377aca640fae08632.js?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/twitter/bootstrap/scrollspy-f3a0e91892e9edb7ccced4ed84ff23ec.js?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/twitter/bootstrap/tab-fab339701c02e2cb7d02570dd26fcf10.js?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/twitter/bootstrap/tooltip-1727c885f6618bb619e6a29ef0496d11.js?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/twitter/bootstrap/popover-c19ae92999a32fa658ffe5d5cc13d195.js?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/twitter/bootstrap/button-dcd83af4b8aa46a9026dec4ea360a003.js?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/twitter/bootstrap/collapse-cfd6f6e5cff9c41e78cc52464a71358b.js?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/twitter/bootstrap/carousel-ac6115504ba6a31f58406c5978a6aa20.js?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/twitter/bootstrap/affix-745457a96802e8f61e15a7622b54b68f.js?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/twitter/bootstrap-4a7c8463ef111cbe52eec5efe89f8319.js?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/turbolinks-5cadf2bbb275e5d225b448dd6ec65060.js?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/redactor-rails/redactor-1499e668f233ebd2ff87f6ebc980ee79.js?body=1" for ::1 at 2015-04-06 22:18:53 +0200 + + +Started GET "/assets/redactor-rails/config-6e12a2defcd11714404a06cb1fc5015e.js?body=1" for ::1 at 2015-04-06 22:18:54 +0200 + + +Started GET "/assets/redactor-rails/index-32fa657642dde78dbd397dc903f2c543.js?body=1" for ::1 at 2015-04-06 22:18:54 +0200 + + +Started GET "/assets/redactor-rails/plugins/clips-0ccb5233e10f48822327513187294f30.js?body=1" for ::1 at 2015-04-06 22:18:54 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontcolor-cf9aab502d635a1479bedcf907c074b5.js?body=1" for ::1 at 2015-04-06 22:18:54 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontfamily-24e2e0345acd77ddfd5d3bb8e5728d66.js?body=1" for ::1 at 2015-04-06 22:18:54 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontsize-3791997a7ea67fc7f2cf41d98c8403d9.js?body=1" for ::1 at 2015-04-06 22:18:54 +0200 + + +Started GET "/assets/redactor-rails/plugins/fullscreen-7b220aa28c5c5e2aa14cfc735fc0261a.js?body=1" for ::1 at 2015-04-06 22:18:54 +0200 + + +Started GET "/assets/redactor-rails/plugins/textdirection-402ec4952acb4ae60f9988c68366e229.js?body=1" for ::1 at 2015-04-06 22:18:54 +0200 + + +Started GET "/assets/redactor-rails/plugins-e4d090ece6b24f82a8c7c10a9bee91ed.js?body=1" for ::1 at 2015-04-06 22:18:54 +0200 + + +Started GET "/assets/articles-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:18:54 +0200 + + +Started GET "/assets/comments-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:18:54 +0200 + + +Started GET "/assets/error-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:18:54 +0200 + + +Started GET "/assets/errors-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:18:54 +0200 + + +Started GET "/assets/home-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:18:54 +0200 + + +Started GET "/assets/main-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:18:54 +0200 + + +Started GET "/assets/password-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:18:54 +0200 + + +Started GET "/assets/replies-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:18:54 +0200 + + +Started GET "/magazines/2" for ::1 at 2015-04-06 22:19:11 +0200 +Processing by MagazinesController#show as HTML + Parameters: {"id"=>"2"} + Magazine Load (1.0ms) SELECT "magazines".* FROM "magazines" WHERE "magazines"."id" = ? LIMIT 1 [["id", 2]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + CACHE (0.0ms) SELECT "magazines".* FROM "magazines" WHERE "magazines"."id" = ? LIMIT 1 [["id", "2"]] + Rendered magazines/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 949ms (Views: 936.1ms | ActiveRecord: 1.0ms) + + +Started GET "/assets/bootstrap_and_overrides-77b9ba7badc3d77d41f8a253eafac6af.css?body=1" for ::1 at 2015-04-06 22:19:12 +0200 + + +Started GET "/assets/twitter-bootstrap-static/bootstrap-3d4ac324e8c8a16c343c471da829ffcc.css?body=1" for ::1 at 2015-04-06 22:19:12 +0200 + + +Started GET "/assets/twitter-bootstrap-static/fontawesome-d6a0daf938b6bd65d3c9d544b603c784.css?body=1" for ::1 at 2015-04-06 22:19:12 +0200 + + +Started GET "/assets/error-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:19:12 +0200 + + +Started GET "/assets/articles-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:19:12 +0200 + + +Started GET "/assets/comments-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:19:12 +0200 + + +Started GET "/assets/errors-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:19:12 +0200 + + +Started GET "/assets/home-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:19:12 +0200 + + +Started GET "/assets/main-93bac2b2c1293b56745bae5c06bf1b70.css?body=1" for ::1 at 2015-04-06 22:19:12 +0200 + + +Started GET "/assets/password-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:19:12 +0200 + + +Started GET "/assets/replies-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:19:12 +0200 + + +Started GET "/assets/scaffolds-fa433cebd43a078d2923a7e8c4531e1b.css?body=1" for ::1 at 2015-04-06 22:19:12 +0200 + + +Started GET "/assets/redactor-rails/css/redactor-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-06 22:19:12 +0200 + + +Started GET "/assets/redactor-rails/index-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/bootstrap-91416daf9f05a6e9ca13ef54aa8dcb39.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/twitter/bootstrap/transition-49c071d4d736acca69daed5bd6c4fdbd.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/twitter/bootstrap/alert-4fa131fff2ae05a1d89df662cd4a8531.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/twitter/bootstrap/modal-d403efa7333c333fdeecc5daa727c437.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/twitter/bootstrap/dropdown-89b3696cc302eaf377aca640fae08632.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/twitter/bootstrap/scrollspy-f3a0e91892e9edb7ccced4ed84ff23ec.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/twitter/bootstrap/tab-fab339701c02e2cb7d02570dd26fcf10.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/twitter/bootstrap/tooltip-1727c885f6618bb619e6a29ef0496d11.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/twitter/bootstrap/popover-c19ae92999a32fa658ffe5d5cc13d195.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/twitter/bootstrap/button-dcd83af4b8aa46a9026dec4ea360a003.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/twitter/bootstrap/collapse-cfd6f6e5cff9c41e78cc52464a71358b.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/twitter/bootstrap/carousel-ac6115504ba6a31f58406c5978a6aa20.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/twitter/bootstrap/affix-745457a96802e8f61e15a7622b54b68f.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/twitter/bootstrap-4a7c8463ef111cbe52eec5efe89f8319.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/turbolinks-5cadf2bbb275e5d225b448dd6ec65060.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/redactor-rails/redactor-1499e668f233ebd2ff87f6ebc980ee79.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/redactor-rails/config-6e12a2defcd11714404a06cb1fc5015e.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/redactor-rails/index-32fa657642dde78dbd397dc903f2c543.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/redactor-rails/plugins/clips-0ccb5233e10f48822327513187294f30.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontcolor-cf9aab502d635a1479bedcf907c074b5.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontfamily-24e2e0345acd77ddfd5d3bb8e5728d66.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontsize-3791997a7ea67fc7f2cf41d98c8403d9.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/redactor-rails/plugins/fullscreen-7b220aa28c5c5e2aa14cfc735fc0261a.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/redactor-rails/plugins/textdirection-402ec4952acb4ae60f9988c68366e229.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/redactor-rails/plugins-e4d090ece6b24f82a8c7c10a9bee91ed.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/articles-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/comments-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/error-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/errors-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/home-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/main-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/password-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/assets/replies-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:19:13 +0200 + + +Started GET "/magazines/2/edit" for ::1 at 2015-04-06 22:19:53 +0200 +Processing by MagazinesController#edit as HTML + Parameters: {"id"=>"2"} + Magazine Load (0.0ms) SELECT "magazines".* FROM "magazines" WHERE "magazines"."id" = ? LIMIT 1 [["id", 2]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + CACHE (0.0ms) SELECT "magazines".* FROM "magazines" WHERE "magazines"."id" = ? LIMIT 1 [["id", "2"]] + Rendered magazines/_form.html.erb (4.0ms) + Rendered magazines/edit.html.erb within layouts/application (10.0ms) +Completed 200 OK in 910ms (Views: 896.1ms | ActiveRecord: 0.0ms) + + +Started GET "/magazines" for ::1 at 2015-04-06 22:28:12 +0200 +Processing by MagazinesController#index as HTML + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] +Completed 500 Internal Server Error in 86ms + +CanCan::AccessDenied (You are not authorized to access this page.): + cancan (1.6.10) lib/cancan/ability.rb:208:in `authorize!' + cancan (1.6.10) lib/cancan/controller_additions.rb:338:in `authorize!' + cancan (1.6.10) lib/cancan/controller_resource.rb:41:in `authorize_resource' + cancan (1.6.10) lib/cancan/controller_resource.rb:26:in `load_and_authorize_resource' + cancan (1.6.10) lib/cancan/controller_resource.rb:10:in `block in add_before_filter' + activesupport (4.2.0) lib/active_support/callbacks.rb:443:in `instance_exec' + activesupport (4.2.0) lib/active_support/callbacks.rb:443:in `block in make_lambda' + activesupport (4.2.0) lib/active_support/callbacks.rb:163:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:163:in `block in halting' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' + activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' + activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' + activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' + activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' + activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' + activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' + activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' + actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' + actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' + actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' + actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' + actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' + warden (1.2.3) lib/warden/manager.rb:35:in `block in call' + warden (1.2.3) lib/warden/manager.rb:34:in `catch' + warden (1.2.3) lib/warden/manager.rb:34:in `call' + rack (1.6.0) lib/rack/etag.rb:24:in `call' + rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.0) lib/rack/head.rb:13:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' + activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' + activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' + activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.1.2) lib/web_console/middleware.rb:37:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.0) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.0) lib/rack/lock.rb:17:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' + rack (1.6.0) lib/rack/sendfile.rb:113:in `call' + railties (4.2.0) lib/rails/engine.rb:518:in `call' + railties (4.2.0) lib/rails/application.rb:164:in `call' + rack (1.6.0) lib/rack/lock.rb:17:in `call' + rack (1.6.0) lib/rack/content_length.rb:15:in `call' + rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' + C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' + C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' + C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' + + + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (101.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_markup.html.erb (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/console.js.erb within layouts/javascript (103.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/main.js.erb within layouts/javascript (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/index.html.erb (232.0ms) + + +Started GET "/magazines/2" for ::1 at 2015-04-06 22:29:39 +0200 +Processing by MagazinesController#show as HTML + Parameters: {"id"=>"2"} + Magazine Load (0.0ms) SELECT "magazines".* FROM "magazines" WHERE "magazines"."id" = ? LIMIT 1 [["id", 2]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + CACHE (0.0ms) SELECT "magazines".* FROM "magazines" WHERE "magazines"."id" = ? LIMIT 1 [["id", "2"]] + Rendered magazines/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 1045ms (Views: 1024.1ms | ActiveRecord: 2.0ms) + + +Started GET "/assets/error-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:29:40 +0200 + + +Started GET "/assets/bootstrap_and_overrides-77b9ba7badc3d77d41f8a253eafac6af.css?body=1" for ::1 at 2015-04-06 22:29:40 +0200 + + +Started GET "/assets/twitter-bootstrap-static/bootstrap-3d4ac324e8c8a16c343c471da829ffcc.css?body=1" for ::1 at 2015-04-06 22:29:40 +0200 + + +Started GET "/assets/comments-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:29:40 +0200 + + +Started GET "/assets/articles-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:29:40 +0200 + + +Started GET "/assets/twitter-bootstrap-static/fontawesome-d6a0daf938b6bd65d3c9d544b603c784.css?body=1" for ::1 at 2015-04-06 22:29:40 +0200 + + +Started GET "/assets/errors-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:29:40 +0200 + + +Started GET "/assets/home-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:29:40 +0200 + + +Started GET "/assets/main-93bac2b2c1293b56745bae5c06bf1b70.css?body=1" for ::1 at 2015-04-06 22:29:40 +0200 + + +Started GET "/assets/password-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:29:40 +0200 + + +Started GET "/assets/replies-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:29:40 +0200 + + +Started GET "/assets/scaffolds-fa433cebd43a078d2923a7e8c4531e1b.css?body=1" for ::1 at 2015-04-06 22:29:40 +0200 + + +Started GET "/assets/redactor-rails/css/redactor-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-06 22:29:40 +0200 + + +Started GET "/assets/redactor-rails/index-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-06 22:29:40 +0200 + + +Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for ::1 at 2015-04-06 22:29:40 +0200 + + +Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-04-06 22:29:40 +0200 + + +Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-04-06 22:29:40 +0200 + + +Started GET "/assets/bootstrap-91416daf9f05a6e9ca13ef54aa8dcb39.js?body=1" for ::1 at 2015-04-06 22:29:40 +0200 + + +Started GET "/assets/twitter/bootstrap/transition-49c071d4d736acca69daed5bd6c4fdbd.js?body=1" for ::1 at 2015-04-06 22:29:40 +0200 + + +Started GET "/assets/twitter/bootstrap/alert-4fa131fff2ae05a1d89df662cd4a8531.js?body=1" for ::1 at 2015-04-06 22:29:40 +0200 + + +Started GET "/assets/twitter/bootstrap/modal-d403efa7333c333fdeecc5daa727c437.js?body=1" for ::1 at 2015-04-06 22:29:41 +0200 + + +Started GET "/assets/twitter/bootstrap/dropdown-89b3696cc302eaf377aca640fae08632.js?body=1" for ::1 at 2015-04-06 22:29:41 +0200 + + +Started GET "/assets/twitter/bootstrap/scrollspy-f3a0e91892e9edb7ccced4ed84ff23ec.js?body=1" for ::1 at 2015-04-06 22:29:41 +0200 + + +Started GET "/assets/twitter/bootstrap/tab-fab339701c02e2cb7d02570dd26fcf10.js?body=1" for ::1 at 2015-04-06 22:29:41 +0200 + + +Started GET "/assets/twitter/bootstrap/tooltip-1727c885f6618bb619e6a29ef0496d11.js?body=1" for ::1 at 2015-04-06 22:29:41 +0200 + + +Started GET "/assets/twitter/bootstrap/popover-c19ae92999a32fa658ffe5d5cc13d195.js?body=1" for ::1 at 2015-04-06 22:29:41 +0200 + + +Started GET "/assets/twitter/bootstrap/button-dcd83af4b8aa46a9026dec4ea360a003.js?body=1" for ::1 at 2015-04-06 22:29:41 +0200 + + +Started GET "/assets/twitter/bootstrap/collapse-cfd6f6e5cff9c41e78cc52464a71358b.js?body=1" for ::1 at 2015-04-06 22:29:41 +0200 + + +Started GET "/assets/twitter/bootstrap/carousel-ac6115504ba6a31f58406c5978a6aa20.js?body=1" for ::1 at 2015-04-06 22:29:41 +0200 + + +Started GET "/assets/twitter/bootstrap/affix-745457a96802e8f61e15a7622b54b68f.js?body=1" for ::1 at 2015-04-06 22:29:41 +0200 + + +Started GET "/assets/twitter/bootstrap-4a7c8463ef111cbe52eec5efe89f8319.js?body=1" for ::1 at 2015-04-06 22:29:41 +0200 + + +Started GET "/assets/turbolinks-5cadf2bbb275e5d225b448dd6ec65060.js?body=1" for ::1 at 2015-04-06 22:29:41 +0200 + + +Started GET "/assets/redactor-rails/redactor-1499e668f233ebd2ff87f6ebc980ee79.js?body=1" for ::1 at 2015-04-06 22:29:41 +0200 + + +Started GET "/assets/redactor-rails/config-6e12a2defcd11714404a06cb1fc5015e.js?body=1" for ::1 at 2015-04-06 22:29:41 +0200 + + +Started GET "/assets/redactor-rails/index-32fa657642dde78dbd397dc903f2c543.js?body=1" for ::1 at 2015-04-06 22:29:41 +0200 + + +Started GET "/assets/redactor-rails/plugins/clips-0ccb5233e10f48822327513187294f30.js?body=1" for ::1 at 2015-04-06 22:29:41 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontcolor-cf9aab502d635a1479bedcf907c074b5.js?body=1" for ::1 at 2015-04-06 22:29:41 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontfamily-24e2e0345acd77ddfd5d3bb8e5728d66.js?body=1" for ::1 at 2015-04-06 22:29:41 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontsize-3791997a7ea67fc7f2cf41d98c8403d9.js?body=1" for ::1 at 2015-04-06 22:29:41 +0200 + + +Started GET "/assets/redactor-rails/plugins/fullscreen-7b220aa28c5c5e2aa14cfc735fc0261a.js?body=1" for ::1 at 2015-04-06 22:29:41 +0200 + + +Started GET "/assets/redactor-rails/plugins/textdirection-402ec4952acb4ae60f9988c68366e229.js?body=1" for ::1 at 2015-04-06 22:29:41 +0200 + + +Started GET "/assets/redactor-rails/plugins-e4d090ece6b24f82a8c7c10a9bee91ed.js?body=1" for ::1 at 2015-04-06 22:29:41 +0200 + + +Started GET "/assets/articles-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:29:41 +0200 + + +Started GET "/assets/comments-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:29:41 +0200 + + +Started GET "/assets/error-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:29:41 +0200 + + +Started GET "/assets/errors-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:29:41 +0200 + + +Started GET "/assets/home-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:29:41 +0200 + + +Started GET "/assets/main-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:29:41 +0200 + + +Started GET "/assets/password-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:29:41 +0200 + + +Started GET "/assets/replies-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:29:41 +0200 + + +Started GET "/magazines/1" for ::1 at 2015-04-06 22:29:44 +0200 +Processing by MagazinesController#show as HTML + Parameters: {"id"=>"1"} + Magazine Load (1.0ms) SELECT "magazines".* FROM "magazines" WHERE "magazines"."id" = ? LIMIT 1 [["id", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + CACHE (0.0ms) SELECT "magazines".* FROM "magazines" WHERE "magazines"."id" = ? LIMIT 1 [["id", "1"]] + Rendered magazines/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 1054ms (Views: 1041.1ms | ActiveRecord: 1.0ms) + + +Started GET "/assets/articles-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:29:45 +0200 + + +Started GET "/assets/twitter-bootstrap-static/fontawesome-d6a0daf938b6bd65d3c9d544b603c784.css?body=1" for ::1 at 2015-04-06 22:29:45 +0200 + + +Started GET "/assets/comments-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:29:45 +0200 + + +Started GET "/assets/twitter-bootstrap-static/bootstrap-3d4ac324e8c8a16c343c471da829ffcc.css?body=1" for ::1 at 2015-04-06 22:29:45 +0200 + + +Started GET "/assets/bootstrap_and_overrides-77b9ba7badc3d77d41f8a253eafac6af.css?body=1" for ::1 at 2015-04-06 22:29:45 +0200 + + +Started GET "/assets/error-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:29:45 +0200 + + +Started GET "/assets/errors-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:29:45 +0200 + + +Started GET "/assets/home-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:29:45 +0200 + + +Started GET "/assets/main-93bac2b2c1293b56745bae5c06bf1b70.css?body=1" for ::1 at 2015-04-06 22:29:45 +0200 + + +Started GET "/assets/password-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:29:45 +0200 + + +Started GET "/assets/replies-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-06 22:29:45 +0200 + + +Started GET "/assets/scaffolds-fa433cebd43a078d2923a7e8c4531e1b.css?body=1" for ::1 at 2015-04-06 22:29:45 +0200 + + +Started GET "/assets/redactor-rails/css/redactor-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-06 22:29:45 +0200 + + +Started GET "/assets/redactor-rails/index-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-06 22:29:45 +0200 + + +Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for ::1 at 2015-04-06 22:29:45 +0200 + + +Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-04-06 22:29:45 +0200 + + +Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/bootstrap-91416daf9f05a6e9ca13ef54aa8dcb39.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/twitter/bootstrap/transition-49c071d4d736acca69daed5bd6c4fdbd.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/twitter/bootstrap/alert-4fa131fff2ae05a1d89df662cd4a8531.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/twitter/bootstrap/modal-d403efa7333c333fdeecc5daa727c437.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/twitter/bootstrap/dropdown-89b3696cc302eaf377aca640fae08632.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/twitter/bootstrap/scrollspy-f3a0e91892e9edb7ccced4ed84ff23ec.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/twitter/bootstrap/tab-fab339701c02e2cb7d02570dd26fcf10.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/twitter/bootstrap/tooltip-1727c885f6618bb619e6a29ef0496d11.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/twitter/bootstrap/popover-c19ae92999a32fa658ffe5d5cc13d195.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/twitter/bootstrap/button-dcd83af4b8aa46a9026dec4ea360a003.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/twitter/bootstrap/collapse-cfd6f6e5cff9c41e78cc52464a71358b.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/twitter/bootstrap/carousel-ac6115504ba6a31f58406c5978a6aa20.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/twitter/bootstrap/affix-745457a96802e8f61e15a7622b54b68f.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/twitter/bootstrap-4a7c8463ef111cbe52eec5efe89f8319.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/turbolinks-5cadf2bbb275e5d225b448dd6ec65060.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/redactor-rails/redactor-1499e668f233ebd2ff87f6ebc980ee79.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/redactor-rails/config-6e12a2defcd11714404a06cb1fc5015e.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/redactor-rails/index-32fa657642dde78dbd397dc903f2c543.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/redactor-rails/plugins/clips-0ccb5233e10f48822327513187294f30.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontcolor-cf9aab502d635a1479bedcf907c074b5.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontfamily-24e2e0345acd77ddfd5d3bb8e5728d66.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontsize-3791997a7ea67fc7f2cf41d98c8403d9.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/redactor-rails/plugins/fullscreen-7b220aa28c5c5e2aa14cfc735fc0261a.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/redactor-rails/plugins/textdirection-402ec4952acb4ae60f9988c68366e229.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/redactor-rails/plugins-e4d090ece6b24f82a8c7c10a9bee91ed.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/articles-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/comments-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/error-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/errors-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/home-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:29:46 +0200 + + +Started GET "/assets/main-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:29:47 +0200 + + +Started GET "/assets/password-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:29:47 +0200 + + +Started GET "/assets/replies-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-06 22:29:47 +0200 + + +Started GET "/magazines" for ::1 at 2015-04-06 22:30:03 +0200 +Processing by MagazinesController#index as HTML + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] +Completed 500 Internal Server Error in 11ms + +CanCan::AccessDenied (You are not authorized to access this page.): + cancan (1.6.10) lib/cancan/ability.rb:208:in `authorize!' + cancan (1.6.10) lib/cancan/controller_additions.rb:338:in `authorize!' + cancan (1.6.10) lib/cancan/controller_resource.rb:41:in `authorize_resource' + cancan (1.6.10) lib/cancan/controller_resource.rb:26:in `load_and_authorize_resource' + cancan (1.6.10) lib/cancan/controller_resource.rb:10:in `block in add_before_filter' + activesupport (4.2.0) lib/active_support/callbacks.rb:443:in `instance_exec' + activesupport (4.2.0) lib/active_support/callbacks.rb:443:in `block in make_lambda' + activesupport (4.2.0) lib/active_support/callbacks.rb:163:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:163:in `block in halting' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' + activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' + activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' + activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' + activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' + activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' + activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' @@ -104678,7 +106868,7 @@ CanCan::AccessDenied (You are not authorized to access this page.): actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' - web-console (2.1.1) lib/web_console/middleware.rb:37:in `call' + web-console (2.1.2) lib/web_console/middleware.rb:37:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' @@ -104698,162 +106888,2142 @@ CanCan::AccessDenied (You are not authorized to access this page.): rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' - /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' - /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' - /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' + C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' + C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' + C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' + + + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (12.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (109.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_markup.html.erb (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/style.css.erb within layouts/inlined_string (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/console.js.erb within layouts/javascript (100.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/main.js.erb within layouts/javascript (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/index.html.erb (224.0ms) + + +Started GET "/magazines" for ::1 at 2015-04-06 22:30:03 +0200 +Processing by MagazinesController#index as HTML + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] +Completed 500 Internal Server Error in 10ms + +CanCan::AccessDenied (You are not authorized to access this page.): + cancan (1.6.10) lib/cancan/ability.rb:208:in `authorize!' + cancan (1.6.10) lib/cancan/controller_additions.rb:338:in `authorize!' + cancan (1.6.10) lib/cancan/controller_resource.rb:41:in `authorize_resource' + cancan (1.6.10) lib/cancan/controller_resource.rb:26:in `load_and_authorize_resource' + cancan (1.6.10) lib/cancan/controller_resource.rb:10:in `block in add_before_filter' + activesupport (4.2.0) lib/active_support/callbacks.rb:443:in `instance_exec' + activesupport (4.2.0) lib/active_support/callbacks.rb:443:in `block in make_lambda' + activesupport (4.2.0) lib/active_support/callbacks.rb:163:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:163:in `block in halting' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' + activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' + activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' + activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' + activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' + activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' + activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' + actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' + actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' + activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' + activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' + activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' + actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' + actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' + activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' + actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' + actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' + actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' + actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' + actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' + actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' + actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' + actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' + actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' + actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' + actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' + actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' + warden (1.2.3) lib/warden/manager.rb:35:in `block in call' + warden (1.2.3) lib/warden/manager.rb:34:in `catch' + warden (1.2.3) lib/warden/manager.rb:34:in `call' + rack (1.6.0) lib/rack/etag.rb:24:in `call' + rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' + rack (1.6.0) lib/rack/head.rb:13:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' + rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' + rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' + activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' + activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' + activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' + activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' + activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.1.2) lib/web_console/middleware.rb:37:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.0) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.0) lib/rack/lock.rb:17:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' + rack (1.6.0) lib/rack/sendfile.rb:113:in `call' + railties (4.2.0) lib/rails/engine.rb:518:in `call' + railties (4.2.0) lib/rails/application.rb:164:in `call' + rack (1.6.0) lib/rack/lock.rb:17:in `call' + rack (1.6.0) lib/rack/content_length.rb:15:in `call' + rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' + C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' + C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' + C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' + + + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (102.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_markup.html.erb (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/style.css.erb within layouts/inlined_string (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (47.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/console.js.erb within layouts/javascript (150.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/main.js.erb within layouts/javascript (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/error_page.js.erb within layouts/javascript (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/index.html.erb (305.0ms) + + +Started GET "/" for 127.0.0.1 at 2015-04-15 15:57:06 +0200 + ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations" + +ActiveRecord::PendingMigrationError ( + +Migrations are pending. To resolve this issue, run: + + bin/rake db:migrate RAILS_ENV=development + +): + activerecord (4.2.0) lib/active_record/migration.rb:393:in `check_pending!' + activerecord (4.2.0) lib/active_record/migration.rb:374:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' + activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' + activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' + activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' + activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' + actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' + web-console (2.1.2) lib/web_console/middleware.rb:37:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' + railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' + railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' + activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' + activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' + activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' + railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' + rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' + rack (1.6.0) lib/rack/runtime.rb:18:in `call' + activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' + rack (1.6.0) lib/rack/lock.rb:17:in `call' + actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' + rack (1.6.0) lib/rack/sendfile.rb:113:in `call' + railties (4.2.0) lib/rails/engine.rb:518:in `call' + railties (4.2.0) lib/rails/application.rb:164:in `call' + rack (1.6.0) lib/rack/lock.rb:17:in `call' + rack (1.6.0) lib/rack/content_length.rb:15:in `call' + rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' + C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' + C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' + C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' + + + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (158.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_markup.html.erb (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/console.js.erb within layouts/javascript (107.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/main.js.erb within layouts/javascript (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/index.html.erb (322.0ms) + ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateReportarticles (20150327104939) +  (0.0ms) begin transaction +  (2.0ms) CREATE TABLE "reportarticles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "article_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  +  (0.0ms) select sqlite_version(*) +  (0.0ms) CREATE INDEX "index_reportarticles_on_user_id" ON "reportarticles" ("user_id") +  (0.0ms) SELECT sql + FROM sqlite_master + WHERE name='index_reportarticles_on_user_id' AND type='index' + UNION ALL + SELECT sql + FROM sqlite_temp_master + WHERE name='index_reportarticles_on_user_id' AND type='index' + +  (1.0ms) CREATE INDEX "index_reportarticles_on_article_id" ON "reportarticles" ("article_id") + SQL (1.0ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150327104939"]] +  (4.0ms) commit transaction + ActiveRecord::SchemaMigration Load (1.0ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.0ms)  SELECT sql + FROM sqlite_master + WHERE name='idx_redactor_assetable' AND type='index' + UNION ALL + SELECT sql + FROM sqlite_temp_master + WHERE name='idx_redactor_assetable' AND type='index' + +  (0.0ms) SELECT sql + FROM sqlite_master + WHERE name='idx_redactor_assetable_type' AND type='index' + UNION ALL + SELECT sql + FROM sqlite_temp_master + WHERE name='idx_redactor_assetable_type' AND type='index' + +  (1.0ms)  SELECT sql + FROM sqlite_master + WHERE name='index_reportarticles_on_article_id' AND type='index' + UNION ALL + SELECT sql + FROM sqlite_temp_master + WHERE name='index_reportarticles_on_article_id' AND type='index' + +  (0.0ms) SELECT sql + FROM sqlite_master + WHERE name='index_reportarticles_on_user_id' AND type='index' + UNION ALL + SELECT sql + FROM sqlite_temp_master + WHERE name='index_reportarticles_on_user_id' AND type='index' + +  (1.0ms)  SELECT sql + FROM sqlite_master + WHERE name='index_requestjoiningmagazines_on_magazine_id' AND type='index' + UNION ALL + SELECT sql + FROM sqlite_temp_master + WHERE name='index_requestjoiningmagazines_on_magazine_id' AND type='index' + +  (0.0ms) SELECT sql + FROM sqlite_master + WHERE name='index_requestjoiningmagazines_on_user_id' AND type='index' + UNION ALL + SELECT sql + FROM sqlite_temp_master + WHERE name='index_requestjoiningmagazines_on_user_id' AND type='index' + +  (0.0ms)  SELECT sql + FROM sqlite_master + WHERE name='index_users_on_reset_password_token' AND type='index' + UNION ALL + SELECT sql + FROM sqlite_temp_master + WHERE name='index_users_on_reset_password_token' AND type='index' + +  (0.0ms) SELECT sql + FROM sqlite_master + WHERE name='index_users_on_email' AND type='index' + UNION ALL + SELECT sql + FROM sqlite_temp_master + WHERE name='index_users_on_email' AND type='index' + + + +Started GET "/" for ::1 at 2015-04-15 15:58:03 +0200 + ActiveRecord::SchemaMigration Load (1.0ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by MainController#index as HTML + Rendered main/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 3135ms (Views: 3070.2ms | ActiveRecord: 0.0ms) + + +Started GET "/assets/articles-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-15 15:58:06 +0200 + + +Started GET "/assets/bootstrap_and_overrides-77b9ba7badc3d77d41f8a253eafac6af.css?body=1" for ::1 at 2015-04-15 15:58:06 +0200 + + +Started GET "/assets/error-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-15 15:58:07 +0200 + + +Started GET "/assets/comments-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-15 15:58:07 +0200 + + +Started GET "/assets/twitter-bootstrap-static/bootstrap-3d4ac324e8c8a16c343c471da829ffcc.css?body=1" for ::1 at 2015-04-15 15:58:07 +0200 + + +Started GET "/assets/twitter-bootstrap-static/fontawesome-d6a0daf938b6bd65d3c9d544b603c784.css?body=1" for ::1 at 2015-04-15 15:58:07 +0200 + + +Started GET "/assets/errors-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-15 15:58:07 +0200 + + +Started GET "/assets/home-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-15 15:58:07 +0200 + + +Started GET "/assets/main-93bac2b2c1293b56745bae5c06bf1b70.css?body=1" for ::1 at 2015-04-15 15:58:07 +0200 + + +Started GET "/assets/password-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-15 15:58:07 +0200 + + +Started GET "/assets/replies-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-15 15:58:07 +0200 + + +Started GET "/assets/scaffolds-fa433cebd43a078d2923a7e8c4531e1b.css?body=1" for ::1 at 2015-04-15 15:58:07 +0200 + + +Started GET "/assets/application-24fce7621f7f117608fbf3524256b8a1.css?body=1" for ::1 at 2015-04-15 15:58:07 +0200 + + +Started GET "/assets/redactor-rails/css/redactor-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-15 15:58:07 +0200 + + +Started GET "/assets/redactor-rails/index-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-15 15:58:07 +0200 + + +Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for ::1 at 2015-04-15 15:58:07 +0200 + + +Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-04-15 15:58:07 +0200 + + +Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-04-15 15:58:07 +0200 + + +Started GET "/assets/bootstrap-91416daf9f05a6e9ca13ef54aa8dcb39.js?body=1" for ::1 at 2015-04-15 15:58:07 +0200 + + +Started GET "/assets/twitter/bootstrap/transition-49c071d4d736acca69daed5bd6c4fdbd.js?body=1" for ::1 at 2015-04-15 15:58:07 +0200 + + +Started GET "/assets/twitter/bootstrap/alert-4fa131fff2ae05a1d89df662cd4a8531.js?body=1" for ::1 at 2015-04-15 15:58:07 +0200 + + +Started GET "/assets/twitter/bootstrap/modal-d403efa7333c333fdeecc5daa727c437.js?body=1" for ::1 at 2015-04-15 15:58:07 +0200 + + +Started GET "/assets/twitter/bootstrap/dropdown-89b3696cc302eaf377aca640fae08632.js?body=1" for ::1 at 2015-04-15 15:58:07 +0200 + + +Started GET "/assets/twitter/bootstrap/scrollspy-f3a0e91892e9edb7ccced4ed84ff23ec.js?body=1" for ::1 at 2015-04-15 15:58:07 +0200 + + +Started GET "/assets/twitter/bootstrap/tab-fab339701c02e2cb7d02570dd26fcf10.js?body=1" for ::1 at 2015-04-15 15:58:07 +0200 + + +Started GET "/assets/twitter/bootstrap/tooltip-1727c885f6618bb619e6a29ef0496d11.js?body=1" for ::1 at 2015-04-15 15:58:07 +0200 + + +Started GET "/assets/twitter/bootstrap/popover-c19ae92999a32fa658ffe5d5cc13d195.js?body=1" for ::1 at 2015-04-15 15:58:07 +0200 + + +Started GET "/assets/twitter/bootstrap/button-dcd83af4b8aa46a9026dec4ea360a003.js?body=1" for ::1 at 2015-04-15 15:58:07 +0200 + + +Started GET "/assets/twitter/bootstrap/collapse-cfd6f6e5cff9c41e78cc52464a71358b.js?body=1" for ::1 at 2015-04-15 15:58:07 +0200 + + +Started GET "/assets/twitter/bootstrap/carousel-ac6115504ba6a31f58406c5978a6aa20.js?body=1" for ::1 at 2015-04-15 15:58:07 +0200 + + +Started GET "/assets/twitter/bootstrap/affix-745457a96802e8f61e15a7622b54b68f.js?body=1" for ::1 at 2015-04-15 15:58:07 +0200 + + +Started GET "/assets/twitter/bootstrap-4a7c8463ef111cbe52eec5efe89f8319.js?body=1" for ::1 at 2015-04-15 15:58:07 +0200 + + +Started GET "/assets/turbolinks-5cadf2bbb275e5d225b448dd6ec65060.js?body=1" for ::1 at 2015-04-15 15:58:08 +0200 + + +Started GET "/assets/redactor-rails/redactor-1499e668f233ebd2ff87f6ebc980ee79.js?body=1" for ::1 at 2015-04-15 15:58:08 +0200 + + +Started GET "/assets/redactor-rails/config-6e12a2defcd11714404a06cb1fc5015e.js?body=1" for ::1 at 2015-04-15 15:58:08 +0200 + + +Started GET "/assets/redactor-rails/index-32fa657642dde78dbd397dc903f2c543.js?body=1" for ::1 at 2015-04-15 15:58:08 +0200 + + +Started GET "/assets/redactor-rails/plugins/clips-0ccb5233e10f48822327513187294f30.js?body=1" for ::1 at 2015-04-15 15:58:08 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontcolor-cf9aab502d635a1479bedcf907c074b5.js?body=1" for ::1 at 2015-04-15 15:58:08 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontfamily-24e2e0345acd77ddfd5d3bb8e5728d66.js?body=1" for ::1 at 2015-04-15 15:58:08 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontsize-3791997a7ea67fc7f2cf41d98c8403d9.js?body=1" for ::1 at 2015-04-15 15:58:08 +0200 + + +Started GET "/assets/redactor-rails/plugins/fullscreen-7b220aa28c5c5e2aa14cfc735fc0261a.js?body=1" for ::1 at 2015-04-15 15:58:08 +0200 + + +Started GET "/assets/redactor-rails/plugins/textdirection-402ec4952acb4ae60f9988c68366e229.js?body=1" for ::1 at 2015-04-15 15:58:08 +0200 + + +Started GET "/assets/redactor-rails/plugins-e4d090ece6b24f82a8c7c10a9bee91ed.js?body=1" for ::1 at 2015-04-15 15:58:08 +0200 + + +Started GET "/assets/articles-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 15:58:08 +0200 + + +Started GET "/assets/comments-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 15:58:08 +0200 + + +Started GET "/assets/error-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 15:58:08 +0200 + + +Started GET "/assets/errors-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 15:58:08 +0200 + + +Started GET "/assets/home-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 15:58:08 +0200 + + +Started GET "/assets/main-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 15:58:08 +0200 + + +Started GET "/assets/password-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 15:58:08 +0200 + + +Started GET "/assets/replies-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 15:58:08 +0200 + + +Started GET "/assets/application-6c3bb7033e6336f68561ab0ac71fb959.js?body=1" for ::1 at 2015-04-15 15:58:08 +0200 + + +Started GET "/assets/fontawesome-webfont-bdd5fe963cf9a6bcf9c449166e2e5a57.woff2?v=4.3.0" for ::1 at 2015-04-15 15:58:08 +0200 + + +Started GET "/users/sign_in" for ::1 at 2015-04-15 15:58:27 +0200 +Processing by Devise::SessionsController#new as HTML + Rendered devise/shared/_links.html.erb (14.0ms) + Rendered devise/sessions/new.html.erb within layouts/application (528.0ms) +Completed 200 OK in 1898ms (Views: 1852.1ms | ActiveRecord: 1.0ms) + + +Started POST "/users/sign_in" for ::1 at 2015-04-15 15:58:32 +0200 +Processing by Devise::SessionsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"GBAX++0SS1XjGQWD+Ut34Gv1QMW06qF32ybh+f3sA9yEXulTra5BIyG7B96sHlrO3s4F/66HBHJhCCRxDB7erg==", "user"=>{"email"=>"mon@yahoo.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"} + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" ASC LIMIT 1 [["email", "mon@yahoo.com"]] +  (0.0ms) begin transaction + SQL (1.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2015-04-15 13:58:32.939938"], ["sign_in_count", 2], ["updated_at", "2015-04-15 13:58:32.942938"], ["id", 12]] +  (5.0ms) commit transaction +Redirected to http://localhost:3000/ +Completed 302 Found in 277ms (ActiveRecord: 6.0ms) + + +Started GET "/" for ::1 at 2015-04-15 15:58:33 +0200 +Processing by MainController#index as HTML + Rendered main/index.html.erb within layouts/application (0.0ms) + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] +Completed 200 OK in 895ms (Views: 892.1ms | ActiveRecord: 1.0ms) + + +Started GET "/articles/23" for ::1 at 2015-04-15 15:59:00 +0200 +Processing by ArticlesController#show as HTML + Parameters: {"id"=>"23"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 23]] +Completed 500 Internal Server Error in 76ms + +CanCan::AccessDenied (Article is not found): + app/controllers/articles_controller.rb:6:in `block in ' + + + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (101.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_markup.html.erb (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/console.js.erb within layouts/javascript (102.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/main.js.erb within layouts/javascript (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/error_page.js.erb within layouts/javascript (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/index.html.erb (232.0ms) + + +Started GET "/articles/22" for ::1 at 2015-04-15 15:59:09 +0200 +Processing by ArticlesController#show as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') + Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 22]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reply Load (0.0ms) SELECT "replies".* FROM "replies" + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Rendered articles/_comment.html.erb (36.0ms) + Rendered articles/show.html.erb within layouts/application (204.0ms) +Completed 200 OK in 1161ms (Views: 1104.1ms | ActiveRecord: 5.0ms) + + +Started GET "/articles/22" for ::1 at 2015-04-15 16:05:05 +0200 + +SyntaxError (C:/rails/Wordspace/app/controllers/articles_controller.rb:94: syntax error, unexpected '\n', expecting => +C:/rails/Wordspace/app/controllers/articles_controller.rb:98: syntax error, unexpected '}', expecting keyword_end +C:/rails/Wordspace/app/controllers/articles_controller.rb:111: syntax error, unexpected end-of-input, expecting keyword_end): + app/controllers/articles_controller.rb:94: syntax error, unexpected '\n', expecting => + app/controllers/articles_controller.rb:98: syntax error, unexpected '}', expecting keyword_end + app/controllers/articles_controller.rb:111: syntax error, unexpected end-of-input, expecting keyword_end + + + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (98.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_markup.html.erb (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/style.css.erb within layouts/inlined_string (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/console.js.erb within layouts/javascript (100.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/main.js.erb within layouts/javascript (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/index.html.erb (226.0ms) + + +Started GET "/articles/22" for ::1 at 2015-04-15 16:07:34 +0200 + +SyntaxError (C:/rails/Wordspace/app/controllers/articles_controller.rb:111: syntax error, unexpected end-of-input, expecting keyword_end): + app/controllers/articles_controller.rb:111: syntax error, unexpected end-of-input, expecting keyword_end + + + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (102.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_markup.html.erb (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/style.css.erb within layouts/inlined_string (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/console.js.erb within layouts/javascript (99.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/main.js.erb within layouts/javascript (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/error_page.js.erb within layouts/javascript (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/index.html.erb (226.0ms) + + +Started GET "/articles/22" for ::1 at 2015-04-15 16:33:28 +0200 + +SyntaxError (C:/rails/Wordspace/app/controllers/articles_controller.rb:109: syntax error, unexpected end-of-input, expecting keyword_end): + app/controllers/articles_controller.rb:109: syntax error, unexpected end-of-input, expecting keyword_end + + + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (97.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_markup.html.erb (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/style.css.erb within layouts/inlined_string (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/console.js.erb within layouts/javascript (99.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/main.js.erb within layouts/javascript (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/index.html.erb (244.0ms) + + +Started GET "/articles/22" for ::1 at 2015-04-15 16:34:06 +0200 + +SyntaxError (C:/rails/Wordspace/app/controllers/articles_controller.rb:108: syntax error, unexpected end-of-input, expecting keyword_end): + app/controllers/articles_controller.rb:108: syntax error, unexpected end-of-input, expecting keyword_end + + + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (100.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_markup.html.erb (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/style.css.erb within layouts/inlined_string (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/console.js.erb within layouts/javascript (101.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/main.js.erb within layouts/javascript (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/index.html.erb (226.0ms) + + +Started GET "/articles/22" for ::1 at 2015-04-15 16:34:09 +0200 + +SyntaxError (C:/rails/Wordspace/app/controllers/articles_controller.rb:108: syntax error, unexpected end-of-input, expecting keyword_end): + app/controllers/articles_controller.rb:108: syntax error, unexpected end-of-input, expecting keyword_end + + + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (114.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_markup.html.erb (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/console.js.erb within layouts/javascript (103.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/main.js.erb within layouts/javascript (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/index.html.erb (229.0ms) + + +Started GET "/articles/22" for ::1 at 2015-04-15 16:34:29 +0200 + +SyntaxError (C:/rails/Wordspace/app/controllers/articles_controller.rb:108: syntax error, unexpected end-of-input, expecting keyword_end): + app/controllers/articles_controller.rb:108: syntax error, unexpected end-of-input, expecting keyword_end + + + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (103.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_markup.html.erb (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/style.css.erb within layouts/inlined_string (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/console.js.erb within layouts/javascript (101.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/main.js.erb within layouts/javascript (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/error_page.js.erb within layouts/javascript (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/index.html.erb (229.0ms) + + +Started GET "/articles/22" for ::1 at 2015-04-15 16:35:14 +0200 +Processing by ArticlesController#show as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') + Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 22]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reply Load (0.0ms) SELECT "replies".* FROM "replies" + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Rendered articles/_comment.html.erb (7.0ms) + Rendered articles/show.html.erb within layouts/application (30.0ms) +Completed 200 OK in 1038ms (Views: 939.1ms | ActiveRecord: 8.0ms) + + +Started GET "/assets/articles-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-15 16:35:15 +0200 + + +Started GET "/assets/bootstrap_and_overrides-77b9ba7badc3d77d41f8a253eafac6af.css?body=1" for ::1 at 2015-04-15 16:35:15 +0200 + + +Started GET "/assets/twitter-bootstrap-static/bootstrap-3d4ac324e8c8a16c343c471da829ffcc.css?body=1" for ::1 at 2015-04-15 16:35:15 +0200 + + +Started GET "/assets/error-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-15 16:35:15 +0200 + + +Started GET "/assets/twitter-bootstrap-static/fontawesome-d6a0daf938b6bd65d3c9d544b603c784.css?body=1" for ::1 at 2015-04-15 16:35:15 +0200 + + +Started GET "/assets/comments-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-15 16:35:15 +0200 + + +Started GET "/assets/errors-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-15 16:35:15 +0200 + + +Started GET "/assets/home-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-15 16:35:15 +0200 + + +Started GET "/assets/main-93bac2b2c1293b56745bae5c06bf1b70.css?body=1" for ::1 at 2015-04-15 16:35:15 +0200 + + +Started GET "/assets/password-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-15 16:35:15 +0200 + + +Started GET "/assets/replies-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-15 16:35:15 +0200 + + +Started GET "/assets/scaffolds-fa433cebd43a078d2923a7e8c4531e1b.css?body=1" for ::1 at 2015-04-15 16:35:15 +0200 + + +Started GET "/assets/application-24fce7621f7f117608fbf3524256b8a1.css?body=1" for ::1 at 2015-04-15 16:35:15 +0200 + + +Started GET "/assets/redactor-rails/css/redactor-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-15 16:35:15 +0200 + + +Started GET "/assets/redactor-rails/index-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-15 16:35:15 +0200 + + +Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for ::1 at 2015-04-15 16:35:15 +0200 + + +Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-04-15 16:35:15 +0200 + + +Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-04-15 16:35:15 +0200 + + +Started GET "/assets/bootstrap-91416daf9f05a6e9ca13ef54aa8dcb39.js?body=1" for ::1 at 2015-04-15 16:35:15 +0200 + + +Started GET "/assets/twitter/bootstrap/transition-49c071d4d736acca69daed5bd6c4fdbd.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/twitter/bootstrap/alert-4fa131fff2ae05a1d89df662cd4a8531.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/twitter/bootstrap/modal-d403efa7333c333fdeecc5daa727c437.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/twitter/bootstrap/dropdown-89b3696cc302eaf377aca640fae08632.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/twitter/bootstrap/scrollspy-f3a0e91892e9edb7ccced4ed84ff23ec.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/twitter/bootstrap/tab-fab339701c02e2cb7d02570dd26fcf10.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/twitter/bootstrap/tooltip-1727c885f6618bb619e6a29ef0496d11.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/twitter/bootstrap/popover-c19ae92999a32fa658ffe5d5cc13d195.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/twitter/bootstrap/button-dcd83af4b8aa46a9026dec4ea360a003.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/twitter/bootstrap/collapse-cfd6f6e5cff9c41e78cc52464a71358b.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/twitter/bootstrap/carousel-ac6115504ba6a31f58406c5978a6aa20.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/twitter/bootstrap/affix-745457a96802e8f61e15a7622b54b68f.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/twitter/bootstrap-4a7c8463ef111cbe52eec5efe89f8319.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/turbolinks-5cadf2bbb275e5d225b448dd6ec65060.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/redactor-rails/redactor-1499e668f233ebd2ff87f6ebc980ee79.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/redactor-rails/config-6e12a2defcd11714404a06cb1fc5015e.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/redactor-rails/index-32fa657642dde78dbd397dc903f2c543.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/redactor-rails/plugins/clips-0ccb5233e10f48822327513187294f30.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontcolor-cf9aab502d635a1479bedcf907c074b5.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontfamily-24e2e0345acd77ddfd5d3bb8e5728d66.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontsize-3791997a7ea67fc7f2cf41d98c8403d9.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/redactor-rails/plugins/fullscreen-7b220aa28c5c5e2aa14cfc735fc0261a.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/redactor-rails/plugins/textdirection-402ec4952acb4ae60f9988c68366e229.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/redactor-rails/plugins-e4d090ece6b24f82a8c7c10a9bee91ed.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/articles-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/comments-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/error-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/errors-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/home-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/main-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/password-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/replies-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/assets/application-6c3bb7033e6336f68561ab0ac71fb959.js?body=1" for ::1 at 2015-04-15 16:35:16 +0200 + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:36:14 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +  (1.0ms) begin transaction + SQL (2.0ms) INSERT INTO "reportarticles" ("user_id", "article_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["user_id", 12], ["article_id", 22], ["created_at", "2015-04-15 14:36:14.913693"], ["updated_at", "2015-04-15 14:36:14.913693"]] +  (4.0ms) commit transaction + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 35ms (ActiveRecord: 9.0ms) + + +Started GET "/articles/22" for ::1 at 2015-04-15 16:36:14 +0200 +Processing by ArticlesController#show as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') + Comment Load (1.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 22]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reply Load (1.0ms) SELECT "replies".* FROM "replies" + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Rendered articles/_comment.html.erb (9.0ms) + Rendered articles/show.html.erb within layouts/application (22.0ms) +Completed 200 OK in 962ms (Views: 944.1ms | ActiveRecord: 4.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:36:20 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +  (0.0ms) begin transaction + SQL (1.0ms) INSERT INTO "reportarticles" ("user_id", "article_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["user_id", 12], ["article_id", 22], ["created_at", "2015-04-15 14:36:20.377006"], ["updated_at", "2015-04-15 14:36:20.377006"]] +  (5.0ms) commit transaction + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] +Redirected to +Completed 500 Internal Server Error in 31ms + +AbstractController::DoubleRenderError (Render and/or redirect were called multiple times in this action. Please note that you may only call render OR redirect, and at most once per action. Also note that neither redirect nor render terminate execution of the action, so if you want to exit an action after redirecting, you need to do something like "redirect_to(...) and return".): + app/controllers/articles_controller.rb:97:in `report' + + + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (98.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_markup.html.erb (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/console.js.erb within layouts/javascript (99.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/main.js.erb within layouts/javascript (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/error_page.js.erb within layouts/javascript (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/index.html.erb (222.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:36:20 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +  (0.0ms) begin transaction + SQL (1.0ms) INSERT INTO "reportarticles" ("user_id", "article_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["user_id", 12], ["article_id", 22], ["created_at", "2015-04-15 14:36:20.987041"], ["updated_at", "2015-04-15 14:36:20.987041"]] +  (4.0ms) commit transaction + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] +Redirected to +Completed 500 Internal Server Error in 23ms + +AbstractController::DoubleRenderError (Render and/or redirect were called multiple times in this action. Please note that you may only call render OR redirect, and at most once per action. Also note that neither redirect nor render terminate execution of the action, so if you want to exit an action after redirecting, you need to do something like "redirect_to(...) and return".): + app/controllers/articles_controller.rb:97:in `report' + + + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (99.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_markup.html.erb (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/style.css.erb within layouts/inlined_string (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/console.js.erb within layouts/javascript (99.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/main.js.erb within layouts/javascript (0.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/error_page.js.erb within layouts/javascript (1.0ms) + Rendered C:/rails/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/web-console-2.1.2/lib/web_console/templates/index.html.erb (225.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:03 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 84ms (ActiveRecord: 5.0ms) + + +Started GET "/articles/22" for ::1 at 2015-04-15 16:37:04 +0200 +Processing by ArticlesController#show as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') + Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 22]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reply Load (0.0ms) SELECT "replies".* FROM "replies" + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Rendered articles/_comment.html.erb (7.0ms) + Rendered articles/show.html.erb within layouts/application (27.0ms) +Completed 200 OK in 848ms (Views: 827.0ms | ActiveRecord: 3.0ms) + + +Started GET "/assets/twitter-bootstrap-static/bootstrap-3d4ac324e8c8a16c343c471da829ffcc.css?body=1" for ::1 at 2015-04-15 16:37:05 +0200 + + +Started GET "/assets/error-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-15 16:37:05 +0200 + + +Started GET "/assets/bootstrap_and_overrides-77b9ba7badc3d77d41f8a253eafac6af.css?body=1" for ::1 at 2015-04-15 16:37:05 +0200 + + +Started GET "/assets/comments-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-15 16:37:05 +0200 + + +Started GET "/assets/twitter-bootstrap-static/fontawesome-d6a0daf938b6bd65d3c9d544b603c784.css?body=1" for ::1 at 2015-04-15 16:37:05 +0200 + + +Started GET "/assets/articles-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-15 16:37:05 +0200 + + +Started GET "/assets/errors-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-15 16:37:05 +0200 + + +Started GET "/assets/home-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-15 16:37:05 +0200 + + +Started GET "/assets/main-93bac2b2c1293b56745bae5c06bf1b70.css?body=1" for ::1 at 2015-04-15 16:37:05 +0200 + + +Started GET "/assets/password-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-15 16:37:05 +0200 + + +Started GET "/assets/replies-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-15 16:37:05 +0200 + + +Started GET "/assets/scaffolds-fa433cebd43a078d2923a7e8c4531e1b.css?body=1" for ::1 at 2015-04-15 16:37:05 +0200 + + +Started GET "/assets/application-24fce7621f7f117608fbf3524256b8a1.css?body=1" for ::1 at 2015-04-15 16:37:05 +0200 + + +Started GET "/assets/redactor-rails/css/redactor-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-15 16:37:05 +0200 + + +Started GET "/assets/redactor-rails/index-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-15 16:37:05 +0200 + + +Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for ::1 at 2015-04-15 16:37:05 +0200 + + +Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-04-15 16:37:05 +0200 + + +Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-04-15 16:37:05 +0200 + + +Started GET "/assets/twitter/bootstrap/transition-49c071d4d736acca69daed5bd6c4fdbd.js?body=1" for ::1 at 2015-04-15 16:37:05 +0200 + + +Started GET "/assets/bootstrap-91416daf9f05a6e9ca13ef54aa8dcb39.js?body=1" for ::1 at 2015-04-15 16:37:05 +0200 + + +Started GET "/assets/twitter/bootstrap/alert-4fa131fff2ae05a1d89df662cd4a8531.js?body=1" for ::1 at 2015-04-15 16:37:05 +0200 + + +Started GET "/assets/twitter/bootstrap/modal-d403efa7333c333fdeecc5daa727c437.js?body=1" for ::1 at 2015-04-15 16:37:05 +0200 + + +Started GET "/assets/twitter/bootstrap/dropdown-89b3696cc302eaf377aca640fae08632.js?body=1" for ::1 at 2015-04-15 16:37:05 +0200 + + +Started GET "/assets/twitter/bootstrap/scrollspy-f3a0e91892e9edb7ccced4ed84ff23ec.js?body=1" for ::1 at 2015-04-15 16:37:05 +0200 + + +Started GET "/assets/twitter/bootstrap/tab-fab339701c02e2cb7d02570dd26fcf10.js?body=1" for ::1 at 2015-04-15 16:37:05 +0200 + + +Started GET "/assets/twitter/bootstrap/tooltip-1727c885f6618bb619e6a29ef0496d11.js?body=1" for ::1 at 2015-04-15 16:37:05 +0200 + + +Started GET "/assets/twitter/bootstrap/popover-c19ae92999a32fa658ffe5d5cc13d195.js?body=1" for ::1 at 2015-04-15 16:37:05 +0200 + + +Started GET "/assets/twitter/bootstrap/button-dcd83af4b8aa46a9026dec4ea360a003.js?body=1" for ::1 at 2015-04-15 16:37:05 +0200 + + +Started GET "/assets/twitter/bootstrap/collapse-cfd6f6e5cff9c41e78cc52464a71358b.js?body=1" for ::1 at 2015-04-15 16:37:05 +0200 + + +Started GET "/assets/twitter/bootstrap/carousel-ac6115504ba6a31f58406c5978a6aa20.js?body=1" for ::1 at 2015-04-15 16:37:05 +0200 + + +Started GET "/assets/twitter/bootstrap/affix-745457a96802e8f61e15a7622b54b68f.js?body=1" for ::1 at 2015-04-15 16:37:06 +0200 + + +Started GET "/assets/twitter/bootstrap-4a7c8463ef111cbe52eec5efe89f8319.js?body=1" for ::1 at 2015-04-15 16:37:06 +0200 + + +Started GET "/assets/turbolinks-5cadf2bbb275e5d225b448dd6ec65060.js?body=1" for ::1 at 2015-04-15 16:37:06 +0200 + + +Started GET "/assets/redactor-rails/redactor-1499e668f233ebd2ff87f6ebc980ee79.js?body=1" for ::1 at 2015-04-15 16:37:06 +0200 + + +Started GET "/assets/redactor-rails/config-6e12a2defcd11714404a06cb1fc5015e.js?body=1" for ::1 at 2015-04-15 16:37:06 +0200 + + +Started GET "/assets/redactor-rails/index-32fa657642dde78dbd397dc903f2c543.js?body=1" for ::1 at 2015-04-15 16:37:06 +0200 + + +Started GET "/assets/redactor-rails/plugins/clips-0ccb5233e10f48822327513187294f30.js?body=1" for ::1 at 2015-04-15 16:37:06 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontcolor-cf9aab502d635a1479bedcf907c074b5.js?body=1" for ::1 at 2015-04-15 16:37:06 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontfamily-24e2e0345acd77ddfd5d3bb8e5728d66.js?body=1" for ::1 at 2015-04-15 16:37:06 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontsize-3791997a7ea67fc7f2cf41d98c8403d9.js?body=1" for ::1 at 2015-04-15 16:37:06 +0200 + + +Started GET "/assets/redactor-rails/plugins/fullscreen-7b220aa28c5c5e2aa14cfc735fc0261a.js?body=1" for ::1 at 2015-04-15 16:37:06 +0200 + + +Started GET "/assets/redactor-rails/plugins/textdirection-402ec4952acb4ae60f9988c68366e229.js?body=1" for ::1 at 2015-04-15 16:37:06 +0200 + + +Started GET "/assets/redactor-rails/plugins-e4d090ece6b24f82a8c7c10a9bee91ed.js?body=1" for ::1 at 2015-04-15 16:37:06 +0200 + + +Started GET "/assets/articles-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 16:37:06 +0200 + + +Started GET "/assets/comments-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 16:37:06 +0200 + + +Started GET "/assets/error-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 16:37:06 +0200 + + +Started GET "/assets/errors-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 16:37:06 +0200 + + +Started GET "/assets/home-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 16:37:06 +0200 + + +Started GET "/assets/main-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 16:37:06 +0200 + + +Started GET "/assets/password-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 16:37:06 +0200 + + +Started GET "/assets/replies-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 16:37:06 +0200 + + +Started GET "/assets/application-6c3bb7033e6336f68561ab0ac71fb959.js?body=1" for ::1 at 2015-04-15 16:37:06 +0200 + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:31 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 30ms (ActiveRecord: 1.0ms) + + +Started GET "/articles/22" for ::1 at 2015-04-15 16:37:31 +0200 +Processing by ArticlesController#show as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') + Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 22]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reply Load (0.0ms) SELECT "replies".* FROM "replies" + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Rendered articles/_comment.html.erb (7.0ms) + Rendered articles/show.html.erb within layouts/application (18.0ms) +Completed 200 OK in 841ms (Views: 828.0ms | ActiveRecord: 1.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:34 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 16ms (ActiveRecord: 1.0ms) + + +Started GET "/articles/22" for ::1 at 2015-04-15 16:37:34 +0200 +Processing by ArticlesController#show as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') + Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 22]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reply Load (1.0ms) SELECT "replies".* FROM "replies" + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + CACHE (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Rendered articles/_comment.html.erb (10.0ms) + Rendered articles/show.html.erb within layouts/application (24.0ms) +Completed 200 OK in 853ms (Views: 837.0ms | ActiveRecord: 4.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:38 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 21ms (ActiveRecord: 3.0ms) + + +Started GET "/articles/22" for ::1 at 2015-04-15 16:37:38 +0200 +Processing by ArticlesController#show as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') + Comment Load (1.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 22]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reply Load (0.0ms) SELECT "replies".* FROM "replies" + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Rendered articles/_comment.html.erb (9.0ms) + Rendered articles/show.html.erb within layouts/application (22.0ms) +Completed 200 OK in 835ms (Views: 821.0ms | ActiveRecord: 3.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:39 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 11ms (ActiveRecord: 1.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:39 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 12ms (ActiveRecord: 1.0ms) + + +Started GET "/articles/22" for ::1 at 2015-04-15 16:37:39 +0200 +Processing by ArticlesController#show as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') + Comment Load (1.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 22]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reply Load (1.0ms) SELECT "replies".* FROM "replies" + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Rendered articles/_comment.html.erb (8.0ms) + Rendered articles/show.html.erb within layouts/application (20.0ms) +Completed 200 OK in 856ms (Views: 842.0ms | ActiveRecord: 4.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:40 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 14ms (ActiveRecord: 1.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:40 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 15ms (ActiveRecord: 2.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:40 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 13ms (ActiveRecord: 1.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:40 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 16ms (ActiveRecord: 3.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:40 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 13ms (ActiveRecord: 1.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:40 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 13ms (ActiveRecord: 3.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:40 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 11ms (ActiveRecord: 1.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:40 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 11ms (ActiveRecord: 0.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:40 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 11ms (ActiveRecord: 1.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:40 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 11ms (ActiveRecord: 2.0ms) + + +Started GET "/articles/22" for ::1 at 2015-04-15 16:37:40 +0200 +Processing by ArticlesController#show as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') + Comment Load (1.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 22]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reply Load (1.0ms) SELECT "replies".* FROM "replies" + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Rendered articles/_comment.html.erb (5.0ms) + Rendered articles/show.html.erb within layouts/application (16.0ms) +Completed 200 OK in 816ms (Views: 805.0ms | ActiveRecord: 2.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:46 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 13ms (ActiveRecord: 2.0ms) + + +Started GET "/articles/22" for ::1 at 2015-04-15 16:37:46 +0200 +Processing by ArticlesController#show as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') + Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 22]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reply Load (0.0ms) SELECT "replies".* FROM "replies" + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Rendered articles/_comment.html.erb (7.0ms) + Rendered articles/show.html.erb within layouts/application (18.0ms) +Completed 200 OK in 840ms (Views: 830.0ms | ActiveRecord: 1.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:47 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 14ms (ActiveRecord: 2.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:47 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 11ms (ActiveRecord: 1.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:47 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 17ms (ActiveRecord: 2.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:47 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 11ms (ActiveRecord: 1.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:47 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 11ms (ActiveRecord: 2.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:47 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 12ms (ActiveRecord: 0.0ms) + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:47 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 15ms (ActiveRecord: 2.0ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.6ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (25.2ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/_markup.html (0.3ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/style.css within layouts/inlined_string (0.2ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/_inner_console_markup.html within layouts/inlined_string (0.2ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/_prompt_box_markup.html within layouts/inlined_string (0.2ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/console.js within layouts/javascript (12.2ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/main.js within layouts/javascript (0.2ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/error_page.js within layouts/javascript (0.3ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/index.html (26.8ms) +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:47 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 11ms (ActiveRecord: 0.0ms) -Started GET "/magazines/1" for ::1 at 2015-04-05 18:03:02 +0200 -Processing by MagazinesController#show as HTML - Parameters: {"id"=>"1"} - Magazine Load (0.1ms) SELECT "magazines".* FROM "magazines" WHERE "magazines"."id" = ? LIMIT 1 [["id", 1]] - User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] - CACHE (0.0ms) SELECT "magazines".* FROM "magazines" WHERE "magazines"."id" = ? LIMIT 1 [["id", "1"]] - User Load (0.2ms) SELECT "users".* FROM "users" INNER JOIN "magazines_users" ON "users"."id" = "magazines_users"."user_id" WHERE "magazines_users"."magazine_id" = ? [["magazine_id", 1]] - Rendered magazines/show.html.erb within layouts/application (34.5ms) -Completed 500 Internal Server Error in 47ms -ActionView::Template::Error (undefined method `user_id' for #): - 14: Image: - 15: <%= @magazine.image %> - 16:

- 17: <% if can? :update, @magazine %> - 18: <%= link_to 'Edit', edit_magazine_path(@magazine) %> - 19: <% end %>| - 20: <%= link_to 'Back', magazines_path %> - app/views/magazines/show.html.erb:17:in `_app_views_magazines_show_html_erb___4394743262053112330_70193025218800' +Started GET "/articles/22" for ::1 at 2015-04-15 16:37:47 +0200 +Processing by ArticlesController#show as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') + Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 22]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reply Load (0.0ms) SELECT "replies".* FROM "replies" + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Rendered articles/_comment.html.erb (6.0ms) + Rendered articles/show.html.erb within layouts/application (16.0ms) +Completed 200 OK in 826ms (Views: 816.0ms | ActiveRecord: 2.0ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (9.2ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (26.5ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/_markup.html (6.3ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/style.css within layouts/inlined_string (0.3ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/_inner_console_markup.html within layouts/inlined_string (0.3ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/_prompt_box_markup.html within layouts/inlined_string (0.2ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/console.js within layouts/javascript (12.7ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/main.js within layouts/javascript (0.2ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/error_page.js within layouts/javascript (0.3ms) - Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/index.html (33.0ms) - ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" - ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" -  (12.1ms)  SELECT sql - FROM sqlite_master - WHERE name='idx_redactor_assetable' AND type='index' - UNION ALL - SELECT sql - FROM sqlite_temp_master - WHERE name='idx_redactor_assetable' AND type='index' - -  (0.2ms) SELECT sql - FROM sqlite_master - WHERE name='idx_redactor_assetable_type' AND type='index' - UNION ALL - SELECT sql - FROM sqlite_temp_master - WHERE name='idx_redactor_assetable_type' AND type='index' +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:48 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 13ms (ActiveRecord: 1.0ms) -  (0.2ms)  SELECT sql - FROM sqlite_master - WHERE name='index_users_on_reset_password_token' AND type='index' - UNION ALL - SELECT sql - FROM sqlite_temp_master - WHERE name='index_users_on_reset_password_token' AND type='index' - -  (0.1ms) SELECT sql - FROM sqlite_master - WHERE name='index_users_on_email' AND type='index' - UNION ALL - SELECT sql - FROM sqlite_temp_master - WHERE name='index_users_on_email' AND type='index' - ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" - ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" -  (0.1ms)  SELECT sql - FROM sqlite_master - WHERE name='idx_redactor_assetable' AND type='index' - UNION ALL - SELECT sql - FROM sqlite_temp_master - WHERE name='idx_redactor_assetable' AND type='index' - -  (0.1ms) SELECT sql - FROM sqlite_master - WHERE name='idx_redactor_assetable_type' AND type='index' - UNION ALL - SELECT sql - FROM sqlite_temp_master - WHERE name='idx_redactor_assetable_type' AND type='index' +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:48 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 14ms (ActiveRecord: 1.0ms) -  (0.1ms)  SELECT sql - FROM sqlite_master - WHERE name='index_users_on_reset_password_token' AND type='index' - UNION ALL - SELECT sql - FROM sqlite_temp_master - WHERE name='index_users_on_reset_password_token' AND type='index' - -  (0.1ms) SELECT sql - FROM sqlite_master - WHERE name='index_users_on_email' AND type='index' - UNION ALL - SELECT sql - FROM sqlite_temp_master - WHERE name='index_users_on_email' AND type='index' - ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" - ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" -  (0.1ms)  SELECT sql - FROM sqlite_master - WHERE name='idx_redactor_assetable' AND type='index' - UNION ALL - SELECT sql - FROM sqlite_temp_master - WHERE name='idx_redactor_assetable' AND type='index' - -  (0.1ms) SELECT sql - FROM sqlite_master - WHERE name='idx_redactor_assetable_type' AND type='index' - UNION ALL - SELECT sql - FROM sqlite_temp_master - WHERE name='idx_redactor_assetable_type' AND type='index' +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:48 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 13ms (ActiveRecord: 2.0ms) -  (0.1ms)  SELECT sql - FROM sqlite_master - WHERE name='index_users_on_reset_password_token' AND type='index' - UNION ALL - SELECT sql - FROM sqlite_temp_master - WHERE name='index_users_on_reset_password_token' AND type='index' - -  (0.1ms) SELECT sql - FROM sqlite_master - WHERE name='index_users_on_email' AND type='index' - UNION ALL - SELECT sql - FROM sqlite_temp_master - WHERE name='index_users_on_email' AND type='index' + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:48 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 13ms (ActiveRecord: 2.0ms) + + +Started GET "/articles/22" for ::1 at 2015-04-15 16:37:48 +0200 +Processing by ArticlesController#show as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') + Comment Load (1.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 22]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reply Load (0.0ms) SELECT "replies".* FROM "replies" + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Rendered articles/_comment.html.erb (8.0ms) + Rendered articles/show.html.erb within layouts/application (26.0ms) +Completed 200 OK in 838ms (Views: 825.0ms | ActiveRecord: 3.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:49 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 12ms (ActiveRecord: 2.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:49 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 12ms (ActiveRecord: 1.0ms) + + +Started GET "/articles/22" for ::1 at 2015-04-15 16:37:49 +0200 +Processing by ArticlesController#show as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') + Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 22]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reply Load (0.0ms) SELECT "replies".* FROM "replies" + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Rendered articles/_comment.html.erb (11.0ms) + Rendered articles/show.html.erb within layouts/application (24.0ms) +Completed 200 OK in 828ms (Views: 816.0ms | ActiveRecord: 1.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:52 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 15ms (ActiveRecord: 2.0ms) + + +Started GET "/articles/22" for ::1 at 2015-04-15 16:37:53 +0200 +Processing by ArticlesController#show as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') + Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 22]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reply Load (0.0ms) SELECT "replies".* FROM "replies" + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Rendered articles/_comment.html.erb (10.0ms) + Rendered articles/show.html.erb within layouts/application (23.0ms) +Completed 200 OK in 875ms (Views: 859.0ms | ActiveRecord: 3.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:53 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 12ms (ActiveRecord: 1.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:53 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 13ms (ActiveRecord: 1.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:54 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 12ms (ActiveRecord: 2.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:54 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 12ms (ActiveRecord: 0.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:37:54 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 12ms (ActiveRecord: 2.0ms) + + +Started GET "/articles/22" for ::1 at 2015-04-15 16:37:54 +0200 +Processing by ArticlesController#show as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') + Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 22]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reply Load (0.0ms) SELECT "replies".* FROM "replies" + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Rendered articles/_comment.html.erb (8.0ms) + Rendered articles/show.html.erb within layouts/application (18.0ms) +Completed 200 OK in 847ms (Views: 836.0ms | ActiveRecord: 2.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:38:08 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 14ms (ActiveRecord: 1.0ms) + + +Started GET "/articles/22" for ::1 at 2015-04-15 16:38:08 +0200 +Processing by ArticlesController#show as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') + Comment Load (1.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 22]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reply Load (1.0ms) SELECT "replies".* FROM "replies" + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Rendered articles/_comment.html.erb (10.0ms) + Rendered articles/show.html.erb within layouts/application (25.0ms) +Completed 200 OK in 951ms (Views: 935.1ms | ActiveRecord: 3.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:38:09 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 12ms (ActiveRecord: 2.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:38:09 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 12ms (ActiveRecord: 2.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:38:09 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 11ms (ActiveRecord: 1.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:38:09 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 14ms (ActiveRecord: 0.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:38:09 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 13ms (ActiveRecord: 1.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:38:09 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 11ms (ActiveRecord: 1.0ms) + + +Started GET "/articles/22" for ::1 at 2015-04-15 16:38:09 +0200 +Processing by ArticlesController#show as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') + Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 22]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reply Load (1.0ms) SELECT "replies".* FROM "replies" + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Rendered articles/_comment.html.erb (7.0ms) + Rendered articles/show.html.erb within layouts/application (18.0ms) +Completed 200 OK in 915ms (Views: 903.1ms | ActiveRecord: 3.0ms) + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" ORDER BY "reportarticles"."id" DESC LIMIT 1 + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:39:07 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 16ms (ActiveRecord: 1.0ms) + + +Started GET "/articles/22" for ::1 at 2015-04-15 16:39:08 +0200 +Processing by ArticlesController#show as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') + Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 22]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reply Load (0.0ms) SELECT "replies".* FROM "replies" + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Rendered articles/_comment.html.erb (6.0ms) + Rendered articles/show.html.erb within layouts/application (17.0ms) +Completed 200 OK in 895ms (Views: 882.1ms | ActiveRecord: 2.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:39:08 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 11ms (ActiveRecord: 1.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:39:08 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 11ms (ActiveRecord: 0.0ms) + + +Started GET "/articles/22/report" for ::1 at 2015-04-15 16:39:09 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"22"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') +Redirected to http://localhost:3000/articles/22 +Completed 302 Found in 14ms (ActiveRecord: 2.0ms) + + +Started GET "/articles/22" for ::1 at 2015-04-15 16:39:09 +0200 +Processing by ArticlesController#show as HTML + Parameters: {"id"=>"22"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 22]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '22') + Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 22]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Reply Load (1.0ms) SELECT "replies".* FROM "replies" + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]] + Rendered articles/_comment.html.erb (10.0ms) + Rendered articles/show.html.erb within layouts/application (22.0ms) +Completed 200 OK in 830ms (Views: 814.0ms | ActiveRecord: 3.0ms) + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" + + +Started GET "/articles/21" for ::1 at 2015-04-15 16:39:35 +0200 +Processing by ArticlesController#show as HTML + Parameters: {"id"=>"21"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 21]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '21') + Comment Load (1.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 21]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + Reply Load (1.0ms) SELECT "replies".* FROM "replies" + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + Rendered articles/_comment.html.erb (20.0ms) + Rendered articles/show.html.erb within layouts/application (31.0ms) +Completed 200 OK in 872ms (Views: 856.0ms | ActiveRecord: 4.0ms) + + +Started GET "/assets/articles-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-15 16:39:36 +0200 + + +Started GET "/assets/error-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-15 16:39:36 +0200 + + +Started GET "/assets/bootstrap_and_overrides-77b9ba7badc3d77d41f8a253eafac6af.css?body=1" for ::1 at 2015-04-15 16:39:36 +0200 + + +Started GET "/assets/twitter-bootstrap-static/bootstrap-3d4ac324e8c8a16c343c471da829ffcc.css?body=1" for ::1 at 2015-04-15 16:39:36 +0200 + + +Started GET "/assets/twitter-bootstrap-static/fontawesome-d6a0daf938b6bd65d3c9d544b603c784.css?body=1" for ::1 at 2015-04-15 16:39:36 +0200 + + +Started GET "/assets/comments-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-15 16:39:36 +0200 + + +Started GET "/assets/errors-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-15 16:39:36 +0200 + + +Started GET "/assets/home-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-15 16:39:36 +0200 + + +Started GET "/assets/main-93bac2b2c1293b56745bae5c06bf1b70.css?body=1" for ::1 at 2015-04-15 16:39:36 +0200 + + +Started GET "/assets/password-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-15 16:39:36 +0200 + + +Started GET "/assets/replies-64e62ddc273c2f5847f30d698ca14b67.css?body=1" for ::1 at 2015-04-15 16:39:36 +0200 + + +Started GET "/assets/scaffolds-fa433cebd43a078d2923a7e8c4531e1b.css?body=1" for ::1 at 2015-04-15 16:39:36 +0200 + + +Started GET "/assets/application-24fce7621f7f117608fbf3524256b8a1.css?body=1" for ::1 at 2015-04-15 16:39:36 +0200 + + +Started GET "/assets/redactor-rails/css/redactor-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-15 16:39:36 +0200 + + +Started GET "/assets/redactor-rails/index-006fe699e5a62203636875167e9be116.css?body=1" for ::1 at 2015-04-15 16:39:36 +0200 + + +Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for ::1 at 2015-04-15 16:39:36 +0200 + + +Started GET "/assets/jquery-87424c3c19e96d4fb033c10ebe21ec40.js?body=1" for ::1 at 2015-04-15 16:39:36 +0200 + + +Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for ::1 at 2015-04-15 16:39:36 +0200 + + +Started GET "/assets/bootstrap-91416daf9f05a6e9ca13ef54aa8dcb39.js?body=1" for ::1 at 2015-04-15 16:39:36 +0200 + + +Started GET "/assets/twitter/bootstrap/transition-49c071d4d736acca69daed5bd6c4fdbd.js?body=1" for ::1 at 2015-04-15 16:39:36 +0200 + + +Started GET "/assets/twitter/bootstrap/alert-4fa131fff2ae05a1d89df662cd4a8531.js?body=1" for ::1 at 2015-04-15 16:39:36 +0200 + + +Started GET "/assets/twitter/bootstrap/modal-d403efa7333c333fdeecc5daa727c437.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 + + +Started GET "/assets/twitter/bootstrap/dropdown-89b3696cc302eaf377aca640fae08632.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 + + +Started GET "/assets/twitter/bootstrap/scrollspy-f3a0e91892e9edb7ccced4ed84ff23ec.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 + + +Started GET "/assets/twitter/bootstrap/tab-fab339701c02e2cb7d02570dd26fcf10.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 + + +Started GET "/assets/twitter/bootstrap/tooltip-1727c885f6618bb619e6a29ef0496d11.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 + + +Started GET "/assets/twitter/bootstrap/popover-c19ae92999a32fa658ffe5d5cc13d195.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 +Started GET "/assets/twitter/bootstrap/button-dcd83af4b8aa46a9026dec4ea360a003.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 + +Started GET "/assets/twitter/bootstrap/collapse-cfd6f6e5cff9c41e78cc52464a71358b.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 + + +Started GET "/assets/twitter/bootstrap/carousel-ac6115504ba6a31f58406c5978a6aa20.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 + + +Started GET "/assets/twitter/bootstrap/affix-745457a96802e8f61e15a7622b54b68f.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 + + +Started GET "/assets/twitter/bootstrap-4a7c8463ef111cbe52eec5efe89f8319.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 + + +Started GET "/assets/turbolinks-5cadf2bbb275e5d225b448dd6ec65060.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 + + +Started GET "/assets/redactor-rails/redactor-1499e668f233ebd2ff87f6ebc980ee79.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 + + +Started GET "/assets/redactor-rails/config-6e12a2defcd11714404a06cb1fc5015e.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 + + +Started GET "/assets/redactor-rails/index-32fa657642dde78dbd397dc903f2c543.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 + + +Started GET "/assets/redactor-rails/plugins/clips-0ccb5233e10f48822327513187294f30.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontcolor-cf9aab502d635a1479bedcf907c074b5.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontfamily-24e2e0345acd77ddfd5d3bb8e5728d66.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 + + +Started GET "/assets/redactor-rails/plugins/fontsize-3791997a7ea67fc7f2cf41d98c8403d9.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 + + +Started GET "/assets/redactor-rails/plugins/fullscreen-7b220aa28c5c5e2aa14cfc735fc0261a.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 + + +Started GET "/assets/redactor-rails/plugins/textdirection-402ec4952acb4ae60f9988c68366e229.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 + + +Started GET "/assets/redactor-rails/plugins-e4d090ece6b24f82a8c7c10a9bee91ed.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 + + +Started GET "/assets/articles-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 + + +Started GET "/assets/comments-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 + + +Started GET "/assets/error-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 + + +Started GET "/assets/errors-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 + + +Started GET "/assets/home-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 + + +Started GET "/assets/main-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 + + +Started GET "/assets/password-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 + + +Started GET "/assets/replies-fcec5b5a277ac7c20cc9f45a209a3bcd.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 + + +Started GET "/assets/application-6c3bb7033e6336f68561ab0ac71fb959.js?body=1" for ::1 at 2015-04-15 16:39:37 +0200 + + +Started GET "/articles/21/report" for ::1 at 2015-04-15 16:40:02 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"21"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 21]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '21') +  (0.0ms) begin transaction + SQL (2.0ms) INSERT INTO "reportarticles" ("user_id", "article_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["user_id", 12], ["article_id", 21], ["created_at", "2015-04-15 14:40:02.642719"], ["updated_at", "2015-04-15 14:40:02.642719"]] +  (3.0ms) commit transaction + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 21]] +Redirected to http://localhost:3000/articles/21 +Completed 302 Found in 25ms (ActiveRecord: 9.0ms) + + +Started GET "/articles/21" for ::1 at 2015-04-15 16:40:02 +0200 +Processing by ArticlesController#show as HTML + Parameters: {"id"=>"21"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 21]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '21') + Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 21]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + Reply Load (0.0ms) SELECT "replies".* FROM "replies" + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + Rendered articles/_comment.html.erb (18.0ms) + Rendered articles/show.html.erb within layouts/application (28.0ms) +Completed 200 OK in 838ms (Views: 826.0ms | ActiveRecord: 0.0ms) + + +Started GET "/articles/21/report" for ::1 at 2015-04-15 16:40:05 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"21"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 21]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '21') +Redirected to http://localhost:3000/articles/21 +Completed 302 Found in 14ms (ActiveRecord: 2.0ms) + + +Started GET "/articles/21" for ::1 at 2015-04-15 16:40:05 +0200 +Processing by ArticlesController#show as HTML + Parameters: {"id"=>"21"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 21]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '21') + Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 21]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + Reply Load (0.0ms) SELECT "replies".* FROM "replies" + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + Rendered articles/_comment.html.erb (16.0ms) + Rendered articles/show.html.erb within layouts/application (26.0ms) +Completed 200 OK in 831ms (Views: 816.0ms | ActiveRecord: 3.0ms) + + +Started GET "/articles/21/report" for ::1 at 2015-04-15 16:40:08 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"21"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 21]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '21') +Redirected to http://localhost:3000/articles/21 +Completed 302 Found in 25ms (ActiveRecord: 1.0ms) + + +Started GET "/articles/21" for ::1 at 2015-04-15 16:40:08 +0200 +Processing by ArticlesController#show as HTML + Parameters: {"id"=>"21"} + Article Load (1.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 21]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '21') + Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 21]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + Reply Load (0.0ms) SELECT "replies".* FROM "replies" + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + Rendered articles/_comment.html.erb (16.0ms) + Rendered articles/show.html.erb within layouts/application (27.0ms) +Completed 200 OK in 820ms (Views: 810.0ms | ActiveRecord: 1.0ms) + + +Started GET "/articles/21/report" for ::1 at 2015-04-15 16:40:10 +0200 +Processing by ArticlesController#report as HTML + Parameters: {"id"=>"21"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 21]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '21') +Redirected to http://localhost:3000/articles/21 +Completed 302 Found in 11ms (ActiveRecord: 0.0ms) + + +Started GET "/articles/21" for ::1 at 2015-04-15 16:40:10 +0200 +Processing by ArticlesController#show as HTML + Parameters: {"id"=>"21"} + Article Load (0.0ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", 21]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 12]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + Reportarticle Load (1.0ms) SELECT "reportarticles".* FROM "reportarticles" WHERE (user_id = 12 AND article_id = '21') + Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."article_id" = ? [["article_id", 21]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + Reply Load (1.0ms) SELECT "replies".* FROM "replies" + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]] + Rendered articles/_comment.html.erb (16.0ms) + Rendered articles/show.html.erb within layouts/application (27.0ms) +Completed 200 OK in 851ms (Views: 838.0ms | ActiveRecord: 3.0ms) + Reportarticle Load (0.0ms) SELECT "reportarticles".* FROM "reportarticles" +======= Started GET "/magazines/1" for ::1 at 2015-04-05 18:10:31 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by MagazinesController#show as HTML @@ -220188,3 +224358,4 @@ ActionController::RoutingError (No route matches [GET] "/assets/twitter-bootstra Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/error_page.js within layouts/javascript (0.3ms) Rendered /Users/Mayar/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/web-console-2.1.1/lib/web_console/templates/index.html (26.2ms) Article Load (0.5ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT 1 +>>>>>>> 7e82538ecad07b868cf6a42bca170df9527169a3 diff --git a/public/uploads/article/image/23/548680_326734820724286_2012436084_n.jpg b/public/uploads/article/image/23/548680_326734820724286_2012436084_n.jpg new file mode 100644 index 00000000..c145ecdd Binary files /dev/null and b/public/uploads/article/image/23/548680_326734820724286_2012436084_n.jpg differ diff --git a/test/fixtures/reportarticles.yml b/test/fixtures/reportarticles.yml new file mode 100644 index 00000000..d5410ec8 --- /dev/null +++ b/test/fixtures/reportarticles.yml @@ -0,0 +1,9 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + user_id: + article_id: + +two: + user_id: + article_id: diff --git a/test/models/reportarticle_test.rb b/test/models/reportarticle_test.rb new file mode 100644 index 00000000..7eb010ef --- /dev/null +++ b/test/models/reportarticle_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class ReportarticleTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end diff --git a/tmp/cache/assets/development/sprockets/09e2a090befacdae0db10cafb1893a0a b/tmp/cache/assets/development/sprockets/09e2a090befacdae0db10cafb1893a0a old mode 100755 new mode 100644 index ade19b77..c7cdf45f Binary files a/tmp/cache/assets/development/sprockets/09e2a090befacdae0db10cafb1893a0a and b/tmp/cache/assets/development/sprockets/09e2a090befacdae0db10cafb1893a0a differ diff --git a/tmp/cache/assets/development/sprockets/2b38c3fb549036de5c4666637a0c80c6 b/tmp/cache/assets/development/sprockets/2b38c3fb549036de5c4666637a0c80c6 old mode 100755 new mode 100644 index 14fdb378..c7cdf45f Binary files a/tmp/cache/assets/development/sprockets/2b38c3fb549036de5c4666637a0c80c6 and b/tmp/cache/assets/development/sprockets/2b38c3fb549036de5c4666637a0c80c6 differ