Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2015-11-11 09:58:21 +0100 Processing by ArticlesController#index as HTML Completed 500 Internal Server Error in 32.6ms ActiveRecord::StatementInvalid (Could not find table 'articles'): app/controllers/articles_controller.rb:5:in `index' Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.5ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.7ms) Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (11.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (10.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Connecting to database specified by database.yml  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.1ms) select sqlite_version(*)  (16.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)   (10.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT version FROM "schema_migrations"  (10.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0') Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2015-11-11 09:58:47 +0100 Processing by ArticlesController#index as HTML Completed 500 Internal Server Error in 30.9ms ActiveRecord::StatementInvalid (Could not find table 'articles'): app/controllers/articles_controller.rb:5:in `index' Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.6ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (11.3ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.7ms) Connecting to database specified by database.yml  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateArticles (0)  (0.0ms) select sqlite_version(*)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('0')  (20.7ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Connecting to database specified by database.yml  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.1ms) select sqlite_version(*)  (11.0ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (10.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (10.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.0ms) SELECT version FROM "schema_migrations"  (10.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0') Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2015-11-11 10:01:29 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles"  Rendered articles/index.html.erb within layouts/application (1.6ms) Compiled application.css (0ms) (pid 8972) Compiled jquery.js (1ms) (pid 8972) Compiled jquery_ujs.js (0ms) (pid 8972) Compiled application.js (23ms) (pid 8972) Completed 200 OK in 84.1ms (Views: 53.4ms | ActiveRecord: 11.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 10:01:29 +0100 Served asset /application.css - 200 OK (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 10:01:29 +0100 Served asset /jquery.js - 200 OK (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 10:01:29 +0100 Served asset /jquery_ujs.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 10:01:29 +0100 Served asset /application.js - 200 OK (2ms) Started GET "/articles/new" for 127.0.0.1 at 2015-11-11 10:01:33 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (18.3ms) Rendered articles/new.html.erb within layouts/application (21.4ms) Completed 500 Internal Server Error in 26.2ms ActionView::Template::Error (undefined method `model_name_from_record_or_class' for #<#:0x007fc6a8aa2c08>): 1: <%= rc_form_for(@article, ip: request.remote_ip) do |f| %> 2: <% if @article.errors.any? %> 3:
4:

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

app/views/articles/_form.html.erb:1:in `_app_views_articles__form_html_erb__490490352089798316_70245567102660' app/views/articles/new.html.erb:3:in `_app_views_articles_new_html_erb__4343968083575924127_70245604986000' app/controllers/articles_controller.rb:29:in `new' Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.5ms) Started GET "/articles/new" for 127.0.0.1 at 2015-11-11 10:04:56 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (4.1ms) Rendered articles/new.html.erb within layouts/application (4.4ms) Completed 500 Internal Server Error in 5.4ms ActionView::Template::Error (undefined method `model_name_from_record_or_class' for #<#:0x007fc6a416cd40>): 1: <%= rc_form_for(Article.new, ip: request.remote_ip) do |f| %> 2: <% if @article.errors.any? %> 3:
4:

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

app/views/articles/_form.html.erb:1:in `_app_views_articles__form_html_erb__490490352089798316_70245566831000' app/views/articles/new.html.erb:3:in `_app_views_articles_new_html_erb__4343968083575924127_70245604986000' app/controllers/articles_controller.rb:29:in `new' Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.5ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.3ms) Connecting to database specified by database.yml Started GET "/articles/new" for 127.0.0.1 at 2015-11-11 10:07:14 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (5.2ms) Rendered articles/new.html.erb within layouts/application (18.7ms) Completed 500 Internal Server Error in 56.2ms ActionView::Template::Error (undefined method `model_name_from_record_or_class' for #<#:0x00000003c7e900>): 1: <%= rc_form_for(@article, ip: request.remote_ip) do |f| %> 2: <% if @article.errors.any? %> 3:
4:

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

app/views/articles/_form.html.erb:1:in `_app_views_articles__form_html_erb___206659350197011487_28885620' app/views/articles/new.html.erb:3:in `_app_views_articles_new_html_erb__556998270894200589_32271820' app/controllers/articles_controller.rb:29:in `new' Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.6ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.4ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.7ms) Connecting to database specified by database.yml Started GET "/articles/new" for 127.0.0.1 at 2015-11-11 10:08:35 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (2.3ms) Rendered articles/new.html.erb within layouts/application (16.2ms) Completed 500 Internal Server Error in 52.7ms ActionView::Template::Error (wrong number of arguments (3 for 2)): 1: <%= rc_form_for(@article, ip: request.remote_ip) do |f| %> 2: <% if @article.errors.any? %> 3:
4:

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

app/views/articles/_form.html.erb:1:in `_app_views_articles__form_html_erb___2033000510010382778_33062180' app/views/articles/new.html.erb:3:in `_app_views_articles_new_html_erb___792844335726213921_36258840' app/controllers/articles_controller.rb:29:in `new' Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.6ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.4ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.5ms) Connecting to database specified by database.yml Started GET "/articles/new" for 127.0.0.1 at 2015-11-11 10:10:22 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (3.2ms) Rendered articles/new.html.erb within layouts/application (16.5ms) Completed 500 Internal Server Error in 53.7ms ActionView::Template::Error (wrong number of arguments (5 for 4)): 1: <%= rc_form_for(@article, ip: request.remote_ip) do |f| %> 2: <% if @article.errors.any? %> 3:
4:

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

app/views/articles/_form.html.erb:1:in `_app_views_articles__form_html_erb___3379622309281467375_26865160' app/views/articles/new.html.erb:3:in `_app_views_articles_new_html_erb___802802735360546606_24629300' app/controllers/articles_controller.rb:29:in `new' Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.6ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.5ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.8ms) Connecting to database specified by database.yml Started GET "/articles/new" for 127.0.0.1 at 2015-11-11 10:12:58 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (3.4ms) Rendered articles/new.html.erb within layouts/application (16.8ms) Completed 500 Internal Server Error in 54.8ms ActionView::Template::Error (wrong number of arguments (4 for 5)): 1: <%= rc_form_for(@article, ip: request.remote_ip) do |f| %> 2: <% if @article.errors.any? %> 3:
4:

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

app/views/articles/_form.html.erb:1:in `_app_views_articles__form_html_erb___1502994103646995631_36035640' app/views/articles/new.html.erb:3:in `_app_views_articles_new_html_erb__1528748935950364114_40190460' app/controllers/articles_controller.rb:29:in `new' Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.6ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.5ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.6ms) Connecting to database specified by database.yml Started GET "/articles/new" for 127.0.0.1 at 2015-11-11 10:17:19 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (5.3ms) Rendered articles/new.html.erb within layouts/application (19.0ms) Completed 200 OK in 62.8ms (Views: 28.2ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 10:17:19 +0100 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 10:17:19 +0100 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 10:17:19 +0100 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 10:17:19 +0100 Served asset /application.js - 304 Not Modified (2ms) Connecting to database specified by database.yml Connecting to database specified by database.yml Started GET "/articles/new" for 127.0.0.1 at 2015-11-11 10:19:37 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (4.3ms) Rendered articles/new.html.erb within layouts/application (18.6ms) Completed 200 OK in 63.7ms (Views: 27.9ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 10:19:37 +0100 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 10:19:37 +0100 Served asset /jquery.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 10:19:37 +0100 Served asset /application.js - 304 Not Modified (17ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 10:19:37 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/articles/new" for 127.0.0.1 at 2015-11-11 10:19:56 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (4.2ms) Rendered articles/new.html.erb within layouts/application (18.6ms) Completed 200 OK in 62.4ms (Views: 28.7ms | ActiveRecord: 11.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 10:19:56 +0100 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 10:19:56 +0100 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 10:19:56 +0100 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 10:19:56 +0100 Served asset /application.js - 304 Not Modified (15ms) Connecting to database specified by database.yml Started GET "/articles/new" for 127.0.0.1 at 2015-11-11 10:20:20 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (4.1ms) Rendered articles/new.html.erb within layouts/application (17.8ms) Completed 200 OK in 61.4ms (Views: 27.4ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 10:20:21 +0100 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 10:20:21 +0100 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 10:20:21 +0100 Served asset /jquery_ujs.js - 304 Not Modified (12ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 10:20:21 +0100 Served asset /application.js - 304 Not Modified (2ms) Started POST "/articles" for 127.0.0.1 at 2015-11-11 10:20:37 +0100 Processing by ArticlesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"DKWrufQW2N/sn3XdZACbnNzOfLF5Ly+VVShKTmlxhyo=", "timestamp"=>"1447233621", "spinner"=>"d6095a0c43777adca3b06a72fc619e28", "33cbf2ba71e909c5f14b2dfda36af742"=>"", "Article"=>{"title"=>"Test", "text"=>"Dit is een test"}, "7f777029b6957d499f9b0e94ff197f2c"=>"", "commit"=>"Create Article"} Redirected to http://localhost:3000/articles Completed 302 Found in 1.0ms (ActiveRecord: 0.0ms) Started GET "/articles" for 127.0.0.1 at 2015-11-11 10:20:37 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles"  Rendered articles/index.html.erb within layouts/application (0.5ms) Completed 200 OK in 3.5ms (Views: 2.7ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 10:20:37 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 10:20:37 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 10:20:37 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 10:20:37 +0100 Served asset /application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/articles" for 127.0.0.1 at 2015-11-11 10:22:37 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles"  Rendered articles/index.html.erb within layouts/application (1.6ms) Completed 200 OK in 45.7ms (Views: 24.0ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 10:22:37 +0100 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 10:22:37 +0100 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 10:22:37 +0100 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 10:22:37 +0100 Served asset /application.js - 304 Not Modified (2ms) Started GET "/articles/new" for 127.0.0.1 at 2015-11-11 10:22:39 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (4.1ms) Rendered articles/new.html.erb within layouts/application (19.3ms) Completed 200 OK in 24.5ms (Views: 21.6ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 10:22:39 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 10:22:39 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 10:22:39 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 10:22:39 +0100 Served asset /application.js - 304 Not Modified (0ms) Started POST "/articles" for 127.0.0.1 at 2015-11-11 10:22:42 +0100 Processing by ArticlesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"DKWrufQW2N/sn3XdZACbnNzOfLF5Ly+VVShKTmlxhyo=", "timestamp"=>"1447233759", "spinner"=>"4bca71a109176af300c6cf4d89643448", "1ead3f121547d98ce41190b3ea7561ca"=>"", "Article"=>{"title"=>"Woo", "text"=>"weeee"}, "cd5e2ef28c164b4bb3a9323da80970a1"=>"", "commit"=>"Create Article"} Redirected to http://localhost:3000/articles Completed 302 Found in 0.8ms (ActiveRecord: 0.0ms) Started GET "/articles" for 127.0.0.1 at 2015-11-11 10:22:42 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles" Rendered articles/index.html.erb within layouts/application (0.2ms) Completed 200 OK in 2.7ms (Views: 2.2ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 10:22:42 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 10:22:42 +0100 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 10:22:42 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 10:22:42 +0100 Served asset /application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/articles" for 127.0.0.1 at 2015-11-11 10:24:34 +0100 Processing by ArticlesController#index as HTML Article Load (0.0ms) SELECT "articles".* FROM "articles"  Rendered articles/index.html.erb within layouts/application (1.5ms) Completed 200 OK in 42.4ms (Views: 22.3ms | ActiveRecord: 1.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 10:24:35 +0100 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 10:24:35 +0100 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 10:24:35 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 10:24:35 +0100 Served asset /application.js - 304 Not Modified (2ms) Started GET "/articles/new" for 127.0.0.1 at 2015-11-11 10:24:35 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (4.2ms) Rendered articles/new.html.erb within layouts/application (19.9ms) Completed 200 OK in 25.4ms (Views: 22.2ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 10:24:36 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 10:24:36 +0100 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 10:24:36 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 10:24:36 +0100 Served asset /application.js - 304 Not Modified (0ms) Started POST "/articles" for 127.0.0.1 at 2015-11-11 10:24:41 +0100 Processing by ArticlesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"DKWrufQW2N/sn3XdZACbnNzOfLF5Ly+VVShKTmlxhyo=", "timestamp"=>"1447233876", "spinner"=>"150f385215de666af43c9e0b27a48af9", "2b2a96059ee767ad3f6670b29703a6c0"=>"", "Article"=>{"title"=>"Yoyo!", "text"=>"This is good\r\n"}, "b2aa91ba6169eabee926372e15ca7238"=>"", "commit"=>"Create Article"}  (0.1ms) begin transaction SQL (4.6ms) INSERT INTO "articles" ("created_at", "text", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Nov 2015 09:24:41 UTC +00:00], ["text", nil], ["title", nil], ["updated_at", Wed, 11 Nov 2015 09:24:41 UTC +00:00]]  (27.4ms) commit transaction Redirected to http://localhost:3000/articles/1 Completed 302 Found in 35.4ms (ActiveRecord: 32.1ms) Started GET "/articles/1" for 127.0.0.1 at 2015-11-11 10:24:41 +0100 Processing by ArticlesController#show as HTML Parameters: {"id"=>"1"} Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", "1"]] Rendered articles/show.html.erb within layouts/application (0.7ms) Completed 200 OK in 4.4ms (Views: 2.9ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 10:24:41 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 10:24:41 +0100 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 10:24:41 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 10:24:41 +0100 Served asset /application.js - 304 Not Modified (0ms) Started GET "/articles" for 127.0.0.1 at 2015-11-11 10:25:41 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles" Rendered articles/index.html.erb within layouts/application (0.9ms) Completed 200 OK in 4.7ms (Views: 3.8ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 10:25:41 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 10:25:41 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 10:25:41 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 10:25:41 +0100 Served asset /application.js - 304 Not Modified (0ms) Started GET "/articles++" for 127.0.0.1 at 2015-11-11 10:34:27 +0100 ActionController::RoutingError (No route matches [GET] "/articles++"): actionpack (3.2.22) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.22) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.22) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.22) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.22) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.22) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.22) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.7) lib/rack/methodoverride.rb:21:in `call' rack (1.4.7) lib/rack/runtime.rb:17:in `call' activesupport (3.2.22) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.7) lib/rack/lock.rb:15:in `call' actionpack (3.2.22) lib/action_dispatch/middleware/static.rb:83:in `call' railties (3.2.22) lib/rails/engine.rb:484:in `call' railties (3.2.22) lib/rails/application.rb:231:in `call' rack (1.4.7) lib/rack/content_length.rb:14:in `call' railties (3.2.22) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.7) lib/rack/handler/webrick.rb:59:in `service' /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2015-11-11 14:12:59 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles"  Rendered articles/index.html.erb within layouts/application (14.3ms) Completed 200 OK in 66.4ms (Views: 29.1ms | ActiveRecord: 12.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:12:59 +0100 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:12:59 +0100 Served asset /jquery.js - 304 Not Modified (3ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:12:59 +0100 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:12:59 +0100 Served asset /application.js - 304 Not Modified (3ms) Started GET "/articles/new" for 127.0.0.1 at 2015-11-11 14:13:27 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (7.2ms) Rendered articles/new.html.erb within layouts/application (27.5ms) Completed 200 OK in 31.3ms (Views: 30.6ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:13:27 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:13:27 +0100 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:13:27 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:13:27 +0100 Served asset /application.js - 304 Not Modified (0ms) Started POST "/articles" for 127.0.0.1 at 2015-11-11 14:13:36 +0100 Processing by ArticlesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"jE/JT6AWyxjGL/HBHmv/a/FSLtAbQPXaqpLdJx1PFeU=", "timestamp"=>"1447247607", "spinner"=>"7ed96c99765a794a8da0145961452fb9", "e4f9c98730d52870b9aa1d9603b0944e"=>"", "Article"=>{"title"=>"Test", "text"=>"Dette er en test."}, "b7539e0280b255d2c97af28dfb0eb946"=>"", "commit"=>"Create Article"}  (0.0ms) begin transaction SQL (6.2ms) INSERT INTO "articles" ("created_at", "text", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Nov 2015 13:13:36 UTC +00:00], ["text", nil], ["title", nil], ["updated_at", Wed, 11 Nov 2015 13:13:36 UTC +00:00]]  (10.5ms) commit transaction Redirected to http://localhost:3000/articles/2 Completed 302 Found in 19.4ms (ActiveRecord: 16.7ms) Started GET "/articles/2" for 127.0.0.1 at 2015-11-11 14:13:36 +0100 Processing by ArticlesController#show as HTML Parameters: {"id"=>"2"} Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", "2"]] Rendered articles/show.html.erb within layouts/application (0.9ms) Completed 200 OK in 4.8ms (Views: 3.3ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:13:36 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:13:36 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:13:36 +0100 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:13:36 +0100 Served asset /jquery.js - 304 Not Modified (13ms) Connecting to database specified by database.yml Started GET "/articles/2" for 127.0.0.1 at 2015-11-11 14:16:14 +0100 Processing by ArticlesController#show as HTML Parameters: {"id"=>"2"} Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", "2"]] Rendered articles/show.html.erb within layouts/application (1.6ms) Completed 200 OK in 45.3ms (Views: 21.9ms | ActiveRecord: 1.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:16:14 +0100 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:16:14 +0100 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:16:14 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:16:14 +0100 Served asset /application.js - 304 Not Modified (2ms) Started GET "/articles/" for 127.0.0.1 at 2015-11-11 14:16:18 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles" Rendered articles/index.html.erb within layouts/application (2.0ms) Completed 200 OK in 5.3ms (Views: 4.4ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:16:18 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:16:18 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:16:18 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:16:18 +0100 Served asset /application.js - 304 Not Modified (0ms) Started DELETE "/articles/2" for 127.0.0.1 at 2015-11-11 14:16:20 +0100 Processing by ArticlesController#destroy as HTML Parameters: {"authenticity_token"=>"jE/JT6AWyxjGL/HBHmv/a/FSLtAbQPXaqpLdJx1PFeU=", "id"=>"2"} Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", "2"]]  (0.0ms) begin transaction SQL (2.3ms) DELETE FROM "articles" WHERE "articles"."id" = ? [["id", 2]]  (10.8ms) commit transaction Redirected to http://localhost:3000/articles Completed 302 Found in 15.5ms (ActiveRecord: 13.2ms) Started GET "/articles" for 127.0.0.1 at 2015-11-11 14:16:20 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles"  Rendered articles/index.html.erb within layouts/application (0.6ms) Completed 200 OK in 3.6ms (Views: 2.8ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:16:20 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:16:20 +0100 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:16:20 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:16:20 +0100 Served asset /application.js - 304 Not Modified (0ms) Started DELETE "/articles/1" for 127.0.0.1 at 2015-11-11 14:16:22 +0100 Processing by ArticlesController#destroy as HTML Parameters: {"authenticity_token"=>"jE/JT6AWyxjGL/HBHmv/a/FSLtAbQPXaqpLdJx1PFeU=", "id"=>"1"} Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) begin transaction SQL (0.1ms) DELETE FROM "articles" WHERE "articles"."id" = ? [["id", 1]]  (13.2ms) commit transaction Redirected to http://localhost:3000/articles Completed 302 Found in 14.9ms (ActiveRecord: 13.4ms) Started GET "/articles" for 127.0.0.1 at 2015-11-11 14:16:22 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles" Rendered articles/index.html.erb within layouts/application (0.2ms) Completed 200 OK in 2.8ms (Views: 2.2ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:16:22 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:16:22 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:16:22 +0100 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:16:22 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/articles/new" for 127.0.0.1 at 2015-11-11 14:16:23 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (3.4ms) Rendered articles/new.html.erb within layouts/application (20.5ms) Completed 200 OK in 23.5ms (Views: 23.0ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:16:23 +0100 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:16:23 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:16:23 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:16:23 +0100 Served asset /application.js - 304 Not Modified (0ms) Started POST "/articles" for 127.0.0.1 at 2015-11-11 14:16:29 +0100 Processing by ArticlesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"jE/JT6AWyxjGL/HBHmv/a/FSLtAbQPXaqpLdJx1PFeU=", "timestamp"=>"1447247783", "spinner"=>"6fa3cf3a6ed936f56e885a5fff2a8b04", "6166757e994b5ca725f97ecc0917f989"=>"", "Article"=>{"title"=>"Test", "text"=>"Dit is een testje."}, "ef799a75c4737eb6feac23348c201c8c"=>"", "commit"=>"Create Article"} Completed 500 Internal Server Error in 0.5ms NoMethodError (undefined method `names' for #): app/controllers/articles_controller.rb:45:in `create' Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.6ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.9ms) Started GET "/articles" for 127.0.0.1 at 2015-11-11 14:17:00 +0100 Processing by ArticlesController#index as HTML Article Load (0.0ms) SELECT "articles".* FROM "articles"  Rendered articles/index.html.erb within layouts/application (0.2ms) Completed 200 OK in 3.3ms (Views: 2.4ms | ActiveRecord: 0.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:17:00 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:17:00 +0100 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:17:00 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:17:00 +0100 Served asset /application.js - 304 Not Modified (0ms) Started GET "/articles/new" for 127.0.0.1 at 2015-11-11 14:17:02 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (1.3ms) Rendered articles/new.html.erb within layouts/application (1.7ms) Completed 200 OK in 3.9ms (Views: 3.6ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:17:02 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:17:02 +0100 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:17:02 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:17:02 +0100 Served asset /application.js - 304 Not Modified (0ms) Started POST "/articles" for 127.0.0.1 at 2015-11-11 14:17:06 +0100 Processing by ArticlesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"jE/JT6AWyxjGL/HBHmv/a/FSLtAbQPXaqpLdJx1PFeU=", "timestamp"=>"1447247822", "spinner"=>"510ea0639f6be02f83c496e12c85a1cd", "a854333f0b19f90d8a79c29a759732f1"=>"", "Article"=>{"title"=>"Woo", "text"=>"Dit is een testje,"}, "a77ee195e00a55a13439071b4d18f439"=>"", "commit"=>"Create Article"} Completed 500 Internal Server Error in 0.5ms NoMethodError (undefined method `names' for #): app/controllers/articles_controller.rb:45:in `create' Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.4ms) Connecting to database specified by database.yml Started GET "/articles" for 127.0.0.1 at 2015-11-11 14:17:16 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles"  Rendered articles/index.html.erb within layouts/application (2.0ms) Completed 200 OK in 60.0ms (Views: 25.2ms | ActiveRecord: 12.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:17:16 +0100 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:17:16 +0100 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:17:16 +0100 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:17:16 +0100 Served asset /application.js - 304 Not Modified (3ms) Started GET "/articles/new" for 127.0.0.1 at 2015-11-11 14:17:17 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (3.9ms) Rendered articles/new.html.erb within layouts/application (18.1ms) Completed 200 OK in 23.3ms (Views: 20.5ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:17:17 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:17:17 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:17:17 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:17:17 +0100 Served asset /application.js - 304 Not Modified (0ms) Started POST "/articles" for 127.0.0.1 at 2015-11-11 14:17:22 +0100 Processing by ArticlesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"jE/JT6AWyxjGL/HBHmv/a/FSLtAbQPXaqpLdJx1PFeU=", "timestamp"=>"1447247837", "spinner"=>"1aa4b4dbb064013326aff72ed616c166", "549525d0fce5273434c56d57700b6cf7"=>"", "Article"=>{"title"=>"Test", "text"=>"Ditis een teste."}, "9dd49bd7309853bdaf927b4ffb9afde5"=>"", "commit"=>"Create Article"}  (0.0ms) begin transaction SQL (2.6ms) INSERT INTO "articles" ("created_at", "text", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Nov 2015 13:17:22 UTC +00:00], ["text", nil], ["title", nil], ["updated_at", Wed, 11 Nov 2015 13:17:22 UTC +00:00]]  (25.4ms) commit transaction Redirected to http://localhost:3000/articles/3 Completed 302 Found in 30.8ms (ActiveRecord: 28.1ms) Started GET "/articles/3" for 127.0.0.1 at 2015-11-11 14:17:22 +0100 Processing by ArticlesController#show as HTML Parameters: {"id"=>"3"} Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", "3"]] Rendered articles/show.html.erb within layouts/application (0.6ms) Completed 200 OK in 4.0ms (Views: 2.7ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:17:22 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:17:22 +0100 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:17:22 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:17:22 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/articles" for 127.0.0.1 at 2015-11-11 14:17:24 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles" Rendered articles/index.html.erb within layouts/application (0.7ms) Completed 200 OK in 3.7ms (Views: 3.0ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:17:24 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:17:24 +0100 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:17:24 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:17:24 +0100 Served asset /application.js - 304 Not Modified (0ms) Started DELETE "/articles/3" for 127.0.0.1 at 2015-11-11 14:20:36 +0100 Processing by ArticlesController#destroy as HTML Parameters: {"authenticity_token"=>"jE/JT6AWyxjGL/HBHmv/a/FSLtAbQPXaqpLdJx1PFeU=", "id"=>"3"} Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", "3"]]  (0.0ms) begin transaction SQL (0.1ms) DELETE FROM "articles" WHERE "articles"."id" = ? [["id", 3]]  (15.6ms) commit transaction Redirected to http://localhost:3000/articles Completed 302 Found in 20.7ms (ActiveRecord: 16.1ms) Started GET "/articles" for 127.0.0.1 at 2015-11-11 14:20:36 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles"  Rendered articles/index.html.erb within layouts/application (0.2ms) Completed 200 OK in 3.2ms (Views: 2.5ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:20:37 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:20:37 +0100 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:20:37 +0100 Served asset /application.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:20:37 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/articles" for 127.0.0.1 at 2015-11-11 14:20:39 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles" Rendered articles/index.html.erb within layouts/application (0.2ms) Completed 200 OK in 3.0ms (Views: 2.4ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:20:39 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:20:39 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:20:39 +0100 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:20:39 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/articles/new" for 127.0.0.1 at 2015-11-11 14:20:40 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (4.8ms) Rendered articles/new.html.erb within layouts/application (5.8ms) Completed 200 OK in 12.1ms (Views: 11.1ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:20:40 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:20:40 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:20:40 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:20:40 +0100 Served asset /application.js - 304 Not Modified (1ms) Started POST "/articles" for 127.0.0.1 at 2015-11-11 14:20:46 +0100 Processing by ArticlesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"jE/JT6AWyxjGL/HBHmv/a/FSLtAbQPXaqpLdJx1PFeU=", "timestamp"=>"1447248040", "spinner"=>"03788d2de284a8e61232b1667e437887", "9c747f75bb15a42722b06570a97cc94b"=>"", "Article"=>{"title"=>"Test", "text"=>"Dette er en test."}, "04b126b85b2d8a1e2bf8a0263e71f786"=>"", "commit"=>"Create Article"}  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "articles" ("created_at", "text", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Nov 2015 13:20:46 UTC +00:00], ["text", nil], ["title", nil], ["updated_at", Wed, 11 Nov 2015 13:20:46 UTC +00:00]]  (27.2ms) commit transaction Redirected to http://localhost:3000/articles/4 Completed 302 Found in 30.2ms (ActiveRecord: 27.6ms) Started GET "/articles/4" for 127.0.0.1 at 2015-11-11 14:20:46 +0100 Processing by ArticlesController#show as HTML Parameters: {"id"=>"4"} Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", "4"]] Rendered articles/show.html.erb within layouts/application (0.4ms) Completed 200 OK in 3.5ms (Views: 2.6ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:20:46 +0100 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:20:46 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:20:46 +0100 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:20:46 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2015-11-11 14:21:16 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles"  Rendered articles/index.html.erb within layouts/application (13.5ms) Completed 200 OK in 57.2ms (Views: 22.7ms | ActiveRecord: 11.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:21:16 +0100 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:21:16 +0100 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:21:16 +0100 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:21:16 +0100 Served asset /application.js - 304 Not Modified (2ms) Started DELETE "/articles/4" for 127.0.0.1 at 2015-11-11 14:21:18 +0100 Processing by ArticlesController#destroy as HTML Parameters: {"authenticity_token"=>"jE/JT6AWyxjGL/HBHmv/a/FSLtAbQPXaqpLdJx1PFeU=", "id"=>"4"} Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", "4"]]  (0.0ms) begin transaction SQL (2.2ms) DELETE FROM "articles" WHERE "articles"."id" = ? [["id", 4]]  (13.8ms) commit transaction Redirected to http://localhost:3000/articles Completed 302 Found in 18.7ms (ActiveRecord: 16.1ms) Started GET "/articles" for 127.0.0.1 at 2015-11-11 14:21:18 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles" Rendered articles/index.html.erb within layouts/application (0.2ms) Completed 200 OK in 2.9ms (Views: 2.3ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:21:18 +0100 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:21:18 +0100 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:21:18 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:21:18 +0100 Served asset /application.js - 304 Not Modified (0ms) Started GET "/articles/new" for 127.0.0.1 at 2015-11-11 14:21:19 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (3.4ms) Rendered articles/new.html.erb within layouts/application (5.3ms) Completed 200 OK in 7.7ms (Views: 7.3ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:21:19 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:21:19 +0100 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:21:19 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:21:19 +0100 Served asset /application.js - 304 Not Modified (0ms) Started POST "/articles" for 127.0.0.1 at 2015-11-11 14:21:22 +0100 Processing by ArticlesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"jE/JT6AWyxjGL/HBHmv/a/FSLtAbQPXaqpLdJx1PFeU=", "timestamp"=>"1447248079", "spinner"=>"4015d9ec27ecdd6dcace60aa0a21a582", "3117cb93a7293c4d3f7d85be95fb8155"=>"", "Article"=>{"title"=>"Woo", "text"=>"eeee"}, "b2d4edf8e06ff16c0f863a45055e9e9d"=>"", "commit"=>"Create Article"}  (0.0ms) begin transaction SQL (0.8ms) INSERT INTO "articles" ("created_at", "text", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Nov 2015 13:21:22 UTC +00:00], ["text", nil], ["title", nil], ["updated_at", Wed, 11 Nov 2015 13:21:22 UTC +00:00]]  (10.5ms) commit transaction Redirected to http://localhost:3000/articles/5 Completed 302 Found in 13.9ms (ActiveRecord: 11.3ms) Started GET "/articles/5" for 127.0.0.1 at 2015-11-11 14:21:22 +0100 Processing by ArticlesController#show as HTML Parameters: {"id"=>"5"} Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", "5"]] Rendered articles/show.html.erb within layouts/application (0.7ms) Completed 200 OK in 4.0ms (Views: 3.0ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:21:22 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:21:22 +0100 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:21:22 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:21:22 +0100 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2015-11-11 14:25:54 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles"  Rendered articles/index.html.erb within layouts/application (0.6ms) Completed 200 OK in 3.5ms (Views: 2.8ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:25:54 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:25:54 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:25:54 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:25:54 +0100 Served asset /application.js - 304 Not Modified (0ms) Started GET "/articles/new" for 127.0.0.1 at 2015-11-11 14:25:56 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (2.7ms) Rendered articles/new.html.erb within layouts/application (3.4ms) Completed 200 OK in 6.4ms (Views: 6.0ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:25:56 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:25:56 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:25:56 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:25:56 +0100 Served asset /application.js - 304 Not Modified (0ms) Started POST "/articles" for 127.0.0.1 at 2015-11-11 14:25:59 +0100 Processing by ArticlesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"jE/JT6AWyxjGL/HBHmv/a/FSLtAbQPXaqpLdJx1PFeU=", "article"=>{"title"=>"heysann", "text"=>"heieieie"}, "commit"=>"Create Article"} Redirected to http://localhost:3000/articles Completed 302 Found in 0.7ms (ActiveRecord: 0.0ms) Started GET "/articles" for 127.0.0.1 at 2015-11-11 14:25:59 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles" Rendered articles/index.html.erb within layouts/application (0.7ms) Completed 200 OK in 3.5ms (Views: 2.8ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:25:59 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:25:59 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:25:59 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:25:59 +0100 Served asset /application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/articles" for 127.0.0.1 at 2015-11-11 14:27:43 +0100 Processing by ArticlesController#index as HTML Article Load (0.0ms) SELECT "articles".* FROM "articles"  Rendered articles/index.html.erb within layouts/application (2.6ms) Completed 200 OK in 48.8ms (Views: 23.5ms | ActiveRecord: 0.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:27:43 +0100 Served asset /application.css - 304 Not Modified (2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:27:43 +0100 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:27:43 +0100 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:27:43 +0100 Served asset /application.js - 304 Not Modified (3ms) Started DELETE "/articles/5" for 127.0.0.1 at 2015-11-11 14:27:45 +0100 Processing by ArticlesController#destroy as HTML Parameters: {"authenticity_token"=>"jE/JT6AWyxjGL/HBHmv/a/FSLtAbQPXaqpLdJx1PFeU=", "id"=>"5"} Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", "5"]]  (0.0ms) begin transaction SQL (2.3ms) DELETE FROM "articles" WHERE "articles"."id" = ? [["id", 5]]  (10.9ms) commit transaction Redirected to http://localhost:3000/articles Completed 302 Found in 16.4ms (ActiveRecord: 13.3ms) Started GET "/articles" for 127.0.0.1 at 2015-11-11 14:27:45 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles" Rendered articles/index.html.erb within layouts/application (0.2ms) Completed 200 OK in 3.0ms (Views: 2.5ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:27:45 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:27:45 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:27:45 +0100 Served asset /application.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:27:45 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/articles/new" for 127.0.0.1 at 2015-11-11 14:27:46 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (4.3ms) Rendered articles/new.html.erb within layouts/application (6.8ms) Completed 200 OK in 9.7ms (Views: 9.3ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:27:46 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:27:46 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:27:46 +0100 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:27:46 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started POST "/articles" for 127.0.0.1 at 2015-11-11 14:39:37 +0100 Processing by ArticlesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"jE/JT6AWyxjGL/HBHmv/a/FSLtAbQPXaqpLdJx1PFeU=", "timestamp"=>"1447248466", "spinner"=>"1dfd4c481960af043c788e5728afb4de", "f67083d09dc42889d2c704ee23238cd2"=>"", "article"=>{"title"=>"test", "text"=>"nå er det gått "}, "3d2aa7ee00c3caa85056f50faed5265d"=>"", "commit"=>"Create Article"} Redirected to http://localhost:3000/articles Completed 302 Found in 0.8ms (ActiveRecord: 0.0ms) Started GET "/articles" for 127.0.0.1 at 2015-11-11 14:39:37 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles"  Rendered articles/index.html.erb within layouts/application (0.3ms) Completed 200 OK in 16.9ms (Views: 16.2ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:39:37 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:39:37 +0100 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:39:37 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:39:37 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/articles/new" for 127.0.0.1 at 2015-11-11 14:39:38 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (3.9ms) Rendered articles/new.html.erb within layouts/application (4.9ms) Completed 200 OK in 10.9ms (Views: 10.2ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:39:38 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:39:38 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:39:38 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:39:38 +0100 Served asset /application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/articles" for 127.0.0.1 at 2015-11-11 14:39:54 +0100 Processing by ArticlesController#index as HTML Article Load (0.0ms) SELECT "articles".* FROM "articles"  Rendered articles/index.html.erb within layouts/application (1.6ms) Completed 200 OK in 48.7ms (Views: 24.0ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:39:54 +0100 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:39:54 +0100 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:39:54 +0100 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:39:54 +0100 Served asset /application.js - 304 Not Modified (2ms) Started GET "/articles/new" for 127.0.0.1 at 2015-11-11 14:39:56 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (3.8ms) Rendered articles/new.html.erb within layouts/application (19.1ms) Completed 200 OK in 24.5ms (Views: 21.6ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:39:56 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:39:56 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:39:56 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:39:56 +0100 Served asset /application.js - 304 Not Modified (0ms) Started POST "/articles" for 127.0.0.1 at 2015-11-11 14:40:00 +0100 Processing by ArticlesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"jE/JT6AWyxjGL/HBHmv/a/FSLtAbQPXaqpLdJx1PFeU=", "timestamp"=>"1447249196", "spinner"=>"2c41067e9e591dccba26fa42f7bb9b15", "94870eeb4b52f55b07376bed434ab37b"=>"", "article"=>{"title"=>"test", "text"=>"Hei det er greit!"}, "1a0e11e44b0742dceab9d14af41c7418"=>"", "commit"=>"Create Article"} Redirected to http://localhost:3000/articles Completed 302 Found in 0.9ms (ActiveRecord: 0.0ms) Started GET "/articles" for 127.0.0.1 at 2015-11-11 14:40:00 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles" Rendered articles/index.html.erb within layouts/application (0.2ms) Completed 200 OK in 3.2ms (Views: 2.6ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:40:01 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:40:01 +0100 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:40:01 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:40:01 +0100 Served asset /application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/articles" for 127.0.0.1 at 2015-11-11 14:40:44 +0100 Processing by ArticlesController#index as HTML Article Load (0.0ms) SELECT "articles".* FROM "articles"  Rendered articles/index.html.erb within layouts/application (2.2ms) Completed 200 OK in 46.2ms (Views: 23.1ms | ActiveRecord: 1.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:40:44 +0100 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:40:44 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:40:44 +0100 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:40:44 +0100 Served asset /application.js - 304 Not Modified (2ms) Started GET "/articles/new" for 127.0.0.1 at 2015-11-11 14:40:45 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (4.2ms) Rendered articles/new.html.erb within layouts/application (6.6ms) Completed 200 OK in 23.9ms (Views: 8.9ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:40:45 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:40:45 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:40:45 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:40:45 +0100 Served asset /application.js - 304 Not Modified (0ms) Started POST "/articles" for 127.0.0.1 at 2015-11-11 14:40:49 +0100 Processing by ArticlesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"jE/JT6AWyxjGL/HBHmv/a/FSLtAbQPXaqpLdJx1PFeU=", "timestamp"=>"1447249245", "spinner"=>"773b90e3cfcce9daecef27e29cd2dff0", "e51c4a85a65456e9bd9ddb6cf1174cb9"=>"", "article"=>{"title"=>"test", "text"=>"Heisann!"}, "96e8f1027dbceea408454ba603f880e6"=>"", "commit"=>"Create Article"} Redirected to http://localhost:3000/articles Completed 302 Found in 1.3ms (ActiveRecord: 0.0ms) Started GET "/articles" for 127.0.0.1 at 2015-11-11 14:40:49 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles" Rendered articles/index.html.erb within layouts/application (0.2ms) Completed 200 OK in 3.1ms (Views: 2.5ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:40:49 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:40:49 +0100 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:40:49 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:40:49 +0100 Served asset /application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/articles" for 127.0.0.1 at 2015-11-11 14:41:42 +0100 Processing by ArticlesController#index as HTML Article Load (0.0ms) SELECT "articles".* FROM "articles"  Rendered articles/index.html.erb within layouts/application (1.5ms) Completed 200 OK in 43.0ms (Views: 22.3ms | ActiveRecord: 0.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:41:42 +0100 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:41:42 +0100 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:41:42 +0100 Served asset /application.js - 304 Not Modified (3ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:41:42 +0100 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/articles/new" for 127.0.0.1 at 2015-11-11 14:41:43 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (5.5ms) Rendered articles/new.html.erb within layouts/application (8.9ms) Completed 200 OK in 26.6ms (Views: 11.4ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:41:43 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:41:43 +0100 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:41:43 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:41:43 +0100 Served asset /application.js - 304 Not Modified (0ms) Started POST "/articles" for 127.0.0.1 at 2015-11-11 14:41:55 +0100 Processing by ArticlesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"jE/JT6AWyxjGL/HBHmv/a/FSLtAbQPXaqpLdJx1PFeU=", "timestamp"=>"1447249303", "spinner"=>"b6e41c87c213080923ca0976673f9b85", "ff8f2fcb91a8b919ef42e18d69fa6b0b"=>"", "article"=>{"title"=>"test", "text"=>"Test heisann går det bra med deg?"}, "b8efc1259150414b0bbf16177ff084d9"=>"", "commit"=>"Create Article"} Redirected to http://localhost:3000/articles Completed 302 Found in 1.3ms (ActiveRecord: 0.0ms) Started GET "/articles" for 127.0.0.1 at 2015-11-11 14:41:55 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles" Rendered articles/index.html.erb within layouts/application (0.2ms) Completed 200 OK in 2.9ms (Views: 2.3ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:41:55 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:41:55 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:41:55 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:41:55 +0100 Served asset /application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/articles" for 127.0.0.1 at 2015-11-11 14:42:21 +0100 Processing by ArticlesController#index as HTML Article Load (0.0ms) SELECT "articles".* FROM "articles"  Rendered articles/index.html.erb within layouts/application (1.7ms) Completed 200 OK in 54.8ms (Views: 22.2ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:42:21 +0100 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:42:21 +0100 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:42:21 +0100 Served asset /application.js - 304 Not Modified (3ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:42:21 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/articles/new" for 127.0.0.1 at 2015-11-11 14:42:22 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (4.0ms) Rendered articles/new.html.erb within layouts/application (19.4ms) Completed 200 OK in 24.7ms (Views: 21.7ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:42:22 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:42:22 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:42:22 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:42:22 +0100 Served asset /application.js - 304 Not Modified (0ms) Started POST "/articles" for 127.0.0.1 at 2015-11-11 14:42:31 +0100 Processing by ArticlesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"jE/JT6AWyxjGL/HBHmv/a/FSLtAbQPXaqpLdJx1PFeU=", "timestamp"=>"1447249342", "spinner"=>"573db8bba30af2a9282f5af23e51bde7", "bbf3a35881045cf419f0bd7094e35671"=>"", "article"=>{"title"=>"test", "text"=>"Hei går det bra med deg ja det går bra med deg "}, "36be7261d3527b34cb97f238a97c55ef"=>"", "commit"=>"Create Article"}  (0.1ms) begin transaction SQL (3.4ms) INSERT INTO "articles" ("created_at", "text", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Nov 2015 13:42:31 UTC +00:00], ["text", "Hei går det bra med deg ja det går bra med deg "], ["title", "test"], ["updated_at", Wed, 11 Nov 2015 13:42:31 UTC +00:00]]  (15.3ms) commit transaction Redirected to http://localhost:3000/articles/6 Completed 302 Found in 21.9ms (ActiveRecord: 18.7ms) Started GET "/articles/6" for 127.0.0.1 at 2015-11-11 14:42:31 +0100 Processing by ArticlesController#show as HTML Parameters: {"id"=>"6"} Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", "6"]] Rendered articles/show.html.erb within layouts/application (0.7ms) Completed 200 OK in 4.3ms (Views: 2.9ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:42:31 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:42:31 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:42:31 +0100 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:42:31 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/articles" for 127.0.0.1 at 2015-11-11 14:43:06 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles" Rendered articles/index.html.erb within layouts/application (0.6ms) Completed 200 OK in 3.6ms (Views: 2.9ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:43:06 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:43:06 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:43:06 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:43:06 +0100 Served asset /application.js - 304 Not Modified (13ms) Started GET "/articles/6/edit" for 127.0.0.1 at 2015-11-11 14:43:10 +0100 Processing by ArticlesController#edit as HTML Parameters: {"id"=>"6"} Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", "6"]] Rendered articles/_form.html.erb (1.7ms) Rendered articles/edit.html.erb within layouts/application (2.7ms) Completed 200 OK in 6.0ms (Views: 5.2ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:43:10 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:43:10 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:43:10 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:43:10 +0100 Served asset /application.js - 304 Not Modified (0ms) Started PUT "/articles/6" for 127.0.0.1 at 2015-11-11 14:43:13 +0100 Processing by ArticlesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"jE/JT6AWyxjGL/HBHmv/a/FSLtAbQPXaqpLdJx1PFeU=", "timestamp"=>"1447249390", "spinner"=>"1da3aa61905d01aaae46794c9e2eb130", "67cf646ae88792eccbcf589809360532"=>"", "article"=>{"title"=>"test", "text"=>"Hei går det bra med deg ja det går bra med deg kjempe"}, "55e4914616dc12ccf08c66ce5764b245"=>"", "commit"=>"Update Article", "id"=>"6"} Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", "6"]]  (0.0ms) begin transaction  (0.2ms) UPDATE "articles" SET "text" = 'Hei går det bra med deg ja det går bra med deg kjempe', "updated_at" = '2015-11-11 13:43:13.948342' WHERE "articles"."id" = 6  (15.5ms) commit transaction Redirected to http://localhost:3000/articles/6 Completed 302 Found in 19.2ms (ActiveRecord: 15.8ms) Started GET "/articles/6" for 127.0.0.1 at 2015-11-11 14:43:13 +0100 Processing by ArticlesController#show as HTML Parameters: {"id"=>"6"} Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", "6"]] Rendered articles/show.html.erb within layouts/application (0.3ms) Completed 200 OK in 3.2ms (Views: 2.5ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:43:14 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:43:14 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:43:14 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:43:14 +0100 Served asset /application.js - 304 Not Modified (0ms) Started GET "/articles" for 127.0.0.1 at 2015-11-11 14:43:15 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles"  Rendered articles/index.html.erb within layouts/application (0.7ms) Completed 200 OK in 3.7ms (Views: 3.1ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:43:15 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:43:15 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:43:15 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:43:15 +0100 Served asset /application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/articles" for 127.0.0.1 at 2015-11-11 14:44:25 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles"  Rendered articles/index.html.erb within layouts/application (13.1ms) Completed 200 OK in 57.5ms (Views: 23.2ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:44:25 +0100 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:44:25 +0100 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:44:25 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:44:25 +0100 Served asset /application.js - 304 Not Modified (15ms) Started GET "/articles/new" for 127.0.0.1 at 2015-11-11 14:44:26 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (3.4ms) Rendered articles/new.html.erb within layouts/application (5.8ms) Completed 500 Internal Server Error in 6.9ms ActionView::Template::Error (wrong number of arguments (1 for 2)): 12: <% end %> 13: 14:
15: <%= label 'title' %>
16: <%= rc_text_field_tag 'title' %> 17:
18: app/views/articles/_form.html.erb:15:in `block in _app_views_articles__form_html_erb__14692872845951899_35864840' app/views/articles/_form.html.erb:1:in `_app_views_articles__form_html_erb__14692872845951899_35864840' app/views/articles/new.html.erb:3:in `_app_views_articles_new_html_erb___3854625711923155645_34138040' app/controllers/articles_controller.rb:29:in `new' Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.4ms) Started GET "/articles/new" for 127.0.0.1 at 2015-11-11 14:44:38 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (0.9ms) Rendered articles/new.html.erb within layouts/application (1.5ms) Completed 200 OK in 4.2ms (Views: 3.9ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:44:38 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:44:38 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:44:38 +0100 Served asset /application.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:44:38 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started POST "/articles" for 127.0.0.1 at 2015-11-11 14:45:06 +0100 Processing by ArticlesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"jE/JT6AWyxjGL/HBHmv/a/FSLtAbQPXaqpLdJx1PFeU=", "timestamp"=>"1447249478", "spinner"=>"64f0f1af253dec02c0acd1136cc4f4f2", "9f7d359d6c6b16f1c212021f6b6b4552"=>"", "title"=>"Det går så bra", "4c8ee03c847fcba1f54f1d14e4085958"=>"", "text"=>"Jepp det ggjør det", "commit"=>"Save changes"}  (0.1ms) begin transaction SQL (4.7ms) INSERT INTO "articles" ("created_at", "text", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Nov 2015 13:45:06 UTC +00:00], ["text", nil], ["title", nil], ["updated_at", Wed, 11 Nov 2015 13:45:06 UTC +00:00]]  (15.8ms) commit transaction Redirected to http://localhost:3000/articles/7 Completed 302 Found in 24.1ms (ActiveRecord: 20.6ms) Started GET "/articles/7" for 127.0.0.1 at 2015-11-11 14:45:06 +0100 Processing by ArticlesController#show as HTML Parameters: {"id"=>"7"} Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", "7"]] Rendered articles/show.html.erb within layouts/application (0.7ms) Completed 200 OK in 4.3ms (Views: 3.0ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:45:06 +0100 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:45:06 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:45:06 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:45:06 +0100 Served asset /application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2015-11-11 14:46:29 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles"  Rendered articles/index.html.erb within layouts/application (14.2ms) Completed 200 OK in 58.7ms (Views: 24.1ms | ActiveRecord: 11.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:46:30 +0100 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:46:30 +0100 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:46:30 +0100 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:46:30 +0100 Served asset /application.js - 304 Not Modified (2ms) Started DELETE "/articles/7" for 127.0.0.1 at 2015-11-11 14:46:32 +0100 Processing by ArticlesController#destroy as HTML Parameters: {"authenticity_token"=>"jE/JT6AWyxjGL/HBHmv/a/FSLtAbQPXaqpLdJx1PFeU=", "id"=>"7"} Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", "7"]]  (0.0ms) begin transaction SQL (2.1ms) DELETE FROM "articles" WHERE "articles"."id" = ? [["id", 7]]  (10.0ms) commit transaction Redirected to http://localhost:3000/articles Completed 302 Found in 15.6ms (ActiveRecord: 12.3ms) Started GET "/articles" for 127.0.0.1 at 2015-11-11 14:46:32 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles" Rendered articles/index.html.erb within layouts/application (0.7ms) Completed 200 OK in 3.8ms (Views: 3.1ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:46:32 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:46:32 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:46:32 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:46:32 +0100 Served asset /application.js - 304 Not Modified (0ms) Started GET "/articles/new" for 127.0.0.1 at 2015-11-11 14:46:33 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (1.1ms) Rendered articles/new.html.erb within layouts/application (3.8ms) Completed 200 OK in 6.9ms (Views: 6.4ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:46:33 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:46:33 +0100 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:46:33 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:46:33 +0100 Served asset /application.js - 304 Not Modified (0ms) Started POST "/articles" for 127.0.0.1 at 2015-11-11 14:46:50 +0100 Processing by ArticlesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"jE/JT6AWyxjGL/HBHmv/a/FSLtAbQPXaqpLdJx1PFeU=", "timestamp"=>"1447249593", "spinner"=>"40957d1bef9d88de24ebe43672e91c89", "a59966e20d39e1a47824b04538ba6ce4"=>"", "title"=>"Hei ja går det bra nå?", "79aab5e27129e39d42d562edc28a287e"=>"", "text"=>"Jepp det gjør nok det!", "commit"=>"Save changes"}  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "articles" ("created_at", "text", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Nov 2015 13:46:50 UTC +00:00], ["text", nil], ["title", nil], ["updated_at", Wed, 11 Nov 2015 13:46:50 UTC +00:00]]  (25.3ms) commit transaction Redirected to http://localhost:3000/articles/8 Completed 302 Found in 28.8ms (ActiveRecord: 26.2ms) Started GET "/articles/8" for 127.0.0.1 at 2015-11-11 14:46:50 +0100 Processing by ArticlesController#show as HTML Parameters: {"id"=>"8"} Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", "8"]] Rendered articles/show.html.erb within layouts/application (0.7ms) Completed 200 OK in 3.9ms (Views: 3.0ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:46:50 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:46:50 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:46:50 +0100 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:46:50 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2015-11-11 14:48:35 +0100 SyntaxError (/home/mike/projects/sandbox/robot_catcher/test/dummy/app/controllers/articles_controller.rb:43: syntax error, unexpected ']', expecting ')' @article = Article.new(params]) ^): activesupport (3.2.22) lib/active_support/dependencies.rb:469:in `load' activesupport (3.2.22) lib/active_support/dependencies.rb:469:in `block in load_file' activesupport (3.2.22) lib/active_support/dependencies.rb:639:in `new_constants_in' activesupport (3.2.22) lib/active_support/dependencies.rb:468:in `load_file' activesupport (3.2.22) lib/active_support/dependencies.rb:353:in `require_or_load' activesupport (3.2.22) lib/active_support/dependencies.rb:502:in `load_missing_constant' activesupport (3.2.22) lib/active_support/dependencies.rb:192:in `block in const_missing' activesupport (3.2.22) lib/active_support/dependencies.rb:190:in `each' activesupport (3.2.22) lib/active_support/dependencies.rb:190:in `const_missing' activesupport (3.2.22) lib/active_support/inflector/methods.rb:230:in `block in constantize' activesupport (3.2.22) lib/active_support/inflector/methods.rb:229:in `each' activesupport (3.2.22) lib/active_support/inflector/methods.rb:229:in `constantize' activesupport (3.2.22) lib/active_support/dependencies.rb:554:in `get' actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference' actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:54:in `controller' actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:32:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.22) lib/action_dispatch/routing/route_set.rb:608:in `call' actionpack (3.2.22) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.7) lib/rack/etag.rb:23:in `call' rack (1.4.7) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.22) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.22) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.22) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.7) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.7) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.22) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.22) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.22) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.22) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.22) lib/active_support/callbacks.rb:405:in `_run__2977571361479225793__call__4203942808211414861__callbacks' activesupport (3.2.22) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.22) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.22) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.22) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.22) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.22) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.22) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.22) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.22) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.22) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.22) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.22) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.22) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.7) lib/rack/methodoverride.rb:21:in `call' rack (1.4.7) lib/rack/runtime.rb:17:in `call' activesupport (3.2.22) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.7) lib/rack/lock.rb:15:in `call' actionpack (3.2.22) lib/action_dispatch/middleware/static.rb:83:in `call' railties (3.2.22) lib/rails/engine.rb:484:in `call' railties (3.2.22) lib/rails/application.rb:231:in `call' rack (1.4.7) lib/rack/content_length.rb:14:in `call' railties (3.2.22) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.7) lib/rack/handler/webrick.rb:59:in `service' /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.8ms) Started GET "/" for 127.0.0.1 at 2015-11-11 14:49:10 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles"  Rendered articles/index.html.erb within layouts/application (1.6ms) Completed 200 OK in 44.8ms (Views: 7.8ms | ActiveRecord: 12.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:49:10 +0100 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:49:10 +0100 Served asset /jquery.js - 304 Not Modified (15ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:49:10 +0100 Served asset /application.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:49:10 +0100 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started DELETE "/articles/8" for 127.0.0.1 at 2015-11-11 14:49:13 +0100 Processing by ArticlesController#destroy as HTML Parameters: {"authenticity_token"=>"jE/JT6AWyxjGL/HBHmv/a/FSLtAbQPXaqpLdJx1PFeU=", "id"=>"8"} Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", "8"]]  (0.0ms) begin transaction SQL (3.6ms) DELETE FROM "articles" WHERE "articles"."id" = ? [["id", 8]]  (10.4ms) commit transaction Redirected to http://localhost:3000/articles Completed 302 Found in 18.0ms (ActiveRecord: 14.3ms) Started GET "/articles" for 127.0.0.1 at 2015-11-11 14:49:13 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles" Rendered articles/index.html.erb within layouts/application (0.6ms) Completed 200 OK in 3.5ms (Views: 2.7ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:49:13 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:49:13 +0100 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:49:13 +0100 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:49:13 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/articles/new" for 127.0.0.1 at 2015-11-11 14:49:14 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (1.1ms) Rendered articles/new.html.erb within layouts/application (3.4ms) Completed 200 OK in 6.3ms (Views: 5.7ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:49:14 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:49:14 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:49:14 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:49:14 +0100 Served asset /application.js - 304 Not Modified (14ms) Started POST "/articles" for 127.0.0.1 at 2015-11-11 14:49:29 +0100 Processing by ArticlesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"jE/JT6AWyxjGL/HBHmv/a/FSLtAbQPXaqpLdJx1PFeU=", "timestamp"=>"1447249754", "spinner"=>"6886fffb5fa16bfd25669169dbcbb7d1", "766dda64b8400107e9617097e5d09819"=>"", "title"=>"tst2", "d2257db291bf8581ced5112a53a4b531"=>"", "text"=>"Ja det går fortsatt veldig bra!", "commit"=>"Save changes"} Completed 500 Internal Server Error in 0.4ms ActiveModel::MassAssignmentSecurity::Error (Can't mass-assign protected attributes: utf8, authenticity_token, timestamp, spinner, 766dda64b8400107e9617097e5d09819, d2257db291bf8581ced5112a53a4b531, commit, action, controller): app/controllers/articles_controller.rb:43:in `new' app/controllers/articles_controller.rb:43:in `create' Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.6ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.3ms) Connecting to database specified by database.yml Started GET "/articles" for 127.0.0.1 at 2015-11-11 14:50:35 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles"  Rendered articles/index.html.erb within layouts/application (14.0ms) Completed 200 OK in 61.7ms (Views: 24.5ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:50:36 +0100 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:50:36 +0100 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:50:36 +0100 Served asset /application.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:50:36 +0100 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/articles/new" for 127.0.0.1 at 2015-11-11 14:50:37 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (1.0ms) Rendered articles/new.html.erb within layouts/application (16.3ms) Completed 200 OK in 19.2ms (Views: 18.8ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:50:37 +0100 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:50:37 +0100 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:50:37 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:50:37 +0100 Served asset /application.js - 304 Not Modified (0ms) Started POST "/articles" for 127.0.0.1 at 2015-11-11 14:50:41 +0100 Processing by ArticlesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"jE/JT6AWyxjGL/HBHmv/a/FSLtAbQPXaqpLdJx1PFeU=", "timestamp"=>"1447249837", "spinner"=>"12b19825d09641bcee88d8be8fa0e069", "81ebd5875c1b47f67b3e45616c527910"=>"", "title"=>"tst2", "8e311fa531308c06d08021b334c61cbd"=>"", "text"=>"Jepppp", "commit"=>"Save changes"}  (0.0ms) begin transaction SQL (3.8ms) INSERT INTO "articles" ("created_at", "text", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Nov 2015 13:50:41 UTC +00:00], ["text", "Jepppp"], ["title", "tst2"], ["updated_at", Wed, 11 Nov 2015 13:50:41 UTC +00:00]]  (24.8ms) commit transaction Redirected to http://localhost:3000/articles/9 Completed 302 Found in 32.1ms (ActiveRecord: 28.7ms) Started GET "/articles/9" for 127.0.0.1 at 2015-11-11 14:50:41 +0100 Processing by ArticlesController#show as HTML Parameters: {"id"=>"9"} Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", "9"]] Rendered articles/show.html.erb within layouts/application (0.6ms) Completed 200 OK in 4.4ms (Views: 3.0ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:50:41 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:50:41 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:50:41 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:50:41 +0100 Served asset /application.js - 304 Not Modified (0ms) Started GET "/articles" for 127.0.0.1 at 2015-11-11 14:50:43 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles" Rendered articles/index.html.erb within layouts/application (0.9ms) Completed 200 OK in 17.7ms (Views: 16.9ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-11 14:50:43 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-11 14:50:43 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-11 14:50:43 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-11 14:50:43 +0100 Served asset /application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/assets/rails.png" for 127.0.0.1 at 2015-11-13 10:36:44 +0100 Served asset /rails.png - 404 Not Found (0ms) ActionController::RoutingError (No route matches [GET] "/assets/rails.png"): actionpack (3.2.22) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.22) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.22) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.22) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.22) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.22) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.22) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.7) lib/rack/methodoverride.rb:21:in `call' rack (1.4.7) lib/rack/runtime.rb:17:in `call' activesupport (3.2.22) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.7) lib/rack/lock.rb:15:in `call' actionpack (3.2.22) lib/action_dispatch/middleware/static.rb:83:in `call' railties (3.2.22) lib/rails/engine.rb:484:in `call' railties (3.2.22) lib/rails/application.rb:231:in `call' rack (1.4.7) lib/rack/content_length.rb:14:in `call' railties (3.2.22) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.7) lib/rack/handler/webrick.rb:59:in `service' /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (13.5ms) Started GET "/assets/rails.png" for 127.0.0.1 at 2015-11-13 10:36:47 +0100 Served asset /rails.png - 404 Not Found (0ms) ActionController::RoutingError (No route matches [GET] "/assets/rails.png"): actionpack (3.2.22) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.22) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.22) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.22) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.22) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.22) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.22) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.7) lib/rack/methodoverride.rb:21:in `call' rack (1.4.7) lib/rack/runtime.rb:17:in `call' activesupport (3.2.22) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.7) lib/rack/lock.rb:15:in `call' actionpack (3.2.22) lib/action_dispatch/middleware/static.rb:83:in `call' railties (3.2.22) lib/rails/engine.rb:484:in `call' railties (3.2.22) lib/rails/application.rb:231:in `call' rack (1.4.7) lib/rack/content_length.rb:14:in `call' railties (3.2.22) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.7) lib/rack/handler/webrick.rb:59:in `service' /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms) Connecting to database specified by database.yml Started GET "/articles" for 127.0.0.1 at 2015-11-13 10:38:06 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles"  Rendered articles/index.html.erb within layouts/application (2.6ms) Completed 200 OK in 52.2ms (Views: 27.9ms | ActiveRecord: 1.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-13 10:38:06 +0100 Served asset /application.css - 200 OK (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-13 10:38:06 +0100 Served asset /jquery.js - 200 OK (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-13 10:38:06 +0100 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-13 10:38:06 +0100 Served asset /application.js - 200 OK (2ms) Started GET "/articles" for 127.0.0.1 at 2015-11-13 10:38:18 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles" Rendered articles/index.html.erb within layouts/application (1.4ms) Completed 200 OK in 5.1ms (Views: 4.1ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-13 10:38:18 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-13 10:38:18 +0100 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-13 10:38:18 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-13 10:38:18 +0100 Served asset /application.js - 304 Not Modified (0ms) Started GET "/articles/new" for 127.0.0.1 at 2015-11-13 10:38:24 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (0.9ms) Rendered articles/new.html.erb within layouts/application (15.7ms) Completed 200 OK in 19.0ms (Views: 18.5ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-13 10:38:24 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-13 10:38:24 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-13 10:38:24 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-13 10:38:24 +0100 Served asset /application.js - 304 Not Modified (0ms) Started POST "/articles" for 127.0.0.1 at 2015-11-13 10:38:40 +0100 Processing by ArticlesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"eW0IwW2F1bbnS/zyh8H9+5pMwj+eYBfMJ9hV8E004y8=", "timestamp"=>"1447407504", "spinner"=>"43275b4af47d5a74a00c9f359394023f", "da1969ba6fe08e9d700f9c5640a5e1af"=>"", "title"=>"Det går så bra", "d1c8c534513adbf2d555d039ee1f505c"=>"", "text"=>"Jepp det gkør det selvfølgelig", "commit"=>"Save changes"}  (0.0ms) begin transaction SQL (5.7ms) INSERT INTO "articles" ("created_at", "text", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 13 Nov 2015 09:38:40 UTC +00:00], ["text", "Jepp det gkør det selvfølgelig"], ["title", "Det går så bra"], ["updated_at", Fri, 13 Nov 2015 09:38:40 UTC +00:00]]  (10.3ms) commit transaction Redirected to http://localhost:3000/articles/10 Completed 302 Found in 18.7ms (ActiveRecord: 16.0ms) Started GET "/articles/10" for 127.0.0.1 at 2015-11-13 10:38:40 +0100 Processing by ArticlesController#show as HTML Parameters: {"id"=>"10"} Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", "10"]] Rendered articles/show.html.erb within layouts/application (0.7ms) Completed 200 OK in 4.8ms (Views: 3.3ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-13 10:38:40 +0100 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-13 10:38:40 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-13 10:38:40 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-13 10:38:40 +0100 Served asset /application.js - 304 Not Modified (0ms) Started GET "/articles" for 127.0.0.1 at 2015-11-13 10:38:42 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles"  Rendered articles/index.html.erb within layouts/application (1.2ms) Completed 200 OK in 3.9ms (Views: 3.2ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-13 10:38:42 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-13 10:38:42 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-13 10:38:42 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-13 10:38:42 +0100 Served asset /application.js - 304 Not Modified (0ms) Started GET "/articles" for 127.0.0.1 at 2015-11-13 10:39:18 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles" Rendered articles/index.html.erb within layouts/application (1.3ms) Completed 200 OK in 4.0ms (Views: 3.4ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-13 10:39:18 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-13 10:39:18 +0100 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-13 10:39:18 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-13 10:39:18 +0100 Served asset /application.js - 304 Not Modified (0ms) Started GET "/articles" for 127.0.0.1 at 2015-11-13 10:39:19 +0100 Processing by ArticlesController#index as HTML Article Load (0.1ms) SELECT "articles".* FROM "articles"  Rendered articles/index.html.erb within layouts/application (1.4ms) Completed 200 OK in 4.4ms (Views: 3.6ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-13 10:39:19 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-13 10:39:19 +0100 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-13 10:39:19 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-13 10:39:19 +0100 Served asset /application.js - 304 Not Modified (0ms) Started GET "/articles/new" for 127.0.0.1 at 2015-11-13 10:39:21 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (2.8ms) Rendered articles/new.html.erb within layouts/application (3.1ms) Completed 500 Internal Server Error in 3.9ms ActionView::Template::Error (Spinner is not initialized!): 1: <%= rc_text_field_tag 'title' %> 2: 3: <%= rc_form_tag('/articles', ip: request.remote_ip) do |f| %> 4: <% if @article.errors.any? %> app/views/articles/_form.html.erb:1:in `_app_views_articles__form_html_erb__3470080839496884443_69848888768240' app/views/articles/new.html.erb:3:in `_app_views_articles_new_html_erb___2497236748857333980_69848852512920' app/controllers/articles_controller.rb:29:in `new' Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.6ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.5ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.7ms) Started GET "/articles/new" for 127.0.0.1 at 2015-11-13 10:40:37 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (0.3ms) Rendered articles/new.html.erb within layouts/application (0.6ms) Completed 500 Internal Server Error in 1.5ms ActionView::Template::Error (Spinner is not initialized!): 1: <%= rc_text_field_tag 'title' %> 2: 3: <%= rc_form_tag('/articles', ip: request.remote_ip) do |f| %> 4: <% if @article.errors.any? %> app/views/articles/_form.html.erb:1:in `_app_views_articles__form_html_erb__3470080839496884443_69848888768240' app/views/articles/new.html.erb:3:in `_app_views_articles_new_html_erb___2497236748857333980_69848852512920' app/controllers/articles_controller.rb:29:in `new' Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.5ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.2ms) Connecting to database specified by database.yml Started GET "/articles/new" for 127.0.0.1 at 2015-11-13 10:40:44 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (14.2ms) Rendered articles/new.html.erb within layouts/application (16.8ms) Completed 500 Internal Server Error in 56.7ms ActionView::Template::Error (Form has no start! (use rc_form_tag)): 1: <%= rc_text_field_tag 'title' %> 2: 3: <%= rc_form_tag('/articles', ip: request.remote_ip) do |f| %> 4: <% if @article.errors.any? %> app/views/articles/_form.html.erb:1:in `_app_views_articles__form_html_erb___3314963864237826812_69849356201000' app/views/articles/new.html.erb:3:in `_app_views_articles_new_html_erb___3685632013457168614_34935400' app/controllers/articles_controller.rb:29:in `new' Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.6ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.4ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.7ms) Started GET "/articles/new%5C" for 127.0.0.1 at 2015-11-13 10:41:02 +0100 Processing by ArticlesController#show as HTML Parameters: {"id"=>"new\\"} Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", "new\\"]] Completed 404 Not Found in 1.6ms ActiveRecord::RecordNotFound (Couldn't find Article with id=new\): app/controllers/articles_controller.rb:16:in `show' Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.6ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.5ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (3.8ms) Connecting to database specified by database.yml Started GET "/articles/new" for 127.0.0.1 at 2015-11-13 10:41:07 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (14.8ms) Rendered articles/new.html.erb within layouts/application (17.5ms) Completed 500 Internal Server Error in 56.2ms ActionView::Template::Error (Form has not been initialized properly! (use rc_form_tag)): 1: <%= rc_text_field_tag 'title' %> 2: 3: <%= rc_form_tag('/articles', ip: request.remote_ip) do |f| %> 4: <% if @article.errors.any? %> app/views/articles/_form.html.erb:1:in `_app_views_articles__form_html_erb__2476902136958297025_70143460797280' app/views/articles/new.html.erb:3:in `_app_views_articles_new_html_erb__620378877406669547_26794960' app/controllers/articles_controller.rb:29:in `new' Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.6ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.4ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.7ms) Started GET "/articles/new" for 127.0.0.1 at 2015-11-13 10:45:05 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (0.9ms) Rendered articles/new.html.erb within layouts/application (1.5ms) Completed 200 OK in 7.6ms (Views: 7.4ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-13 10:45:05 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-13 10:45:05 +0100 Served asset /jquery.js - 304 Not Modified (3ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-13 10:45:05 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-13 10:45:05 +0100 Served asset /application.js - 304 Not Modified (3ms) Connecting to database specified by database.yml Started GET "/articles/new" for 127.0.0.1 at 2015-11-13 10:45:21 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (0.9ms) Rendered articles/new.html.erb within layouts/application (3.9ms) Completed 200 OK in 60.9ms (Views: 37.7ms | ActiveRecord: 0.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-13 10:45:22 +0100 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-13 10:45:22 +0100 Served asset /jquery.js - 304 Not Modified (3ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-13 10:45:22 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-13 10:45:22 +0100 Served asset /application.js - 304 Not Modified (2ms) Started GET "/articles/new" for 127.0.0.1 at 2015-11-13 10:45:55 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (3.6ms) Rendered articles/new.html.erb within layouts/application (4.0ms) Completed 500 Internal Server Error in 4.9ms ActionView::Template::Error (Form has not been initialized properly! (use rc_form_tag)): 1: <%= rc_hash_tag(:test) %> 2: 3: <%= rc_form_tag('/articles', ip: request.remote_ip) do |f| %> 4: <%= rc_hash_tag(:test) %> app/views/articles/_form.html.erb:1:in `_app_views_articles__form_html_erb__2321002298422042751_70125542163820' app/views/articles/new.html.erb:3:in `_app_views_articles_new_html_erb__161863085645621876_35845780' app/controllers/articles_controller.rb:29:in `new' Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.5ms) Rendered /home/mike/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.22/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.0ms) Started GET "/articles/new" for 127.0.0.1 at 2015-11-13 10:46:00 +0100 Processing by ArticlesController#new as HTML Rendered articles/_form.html.erb (1.0ms) Rendered articles/new.html.erb within layouts/application (1.6ms) Completed 200 OK in 4.0ms (Views: 3.7ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-13 10:46:00 +0100 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-11-13 10:46:00 +0100 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-13 10:46:00 +0100 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-13 10:46:00 +0100 Served asset /application.js - 304 Not Modified (0ms)