(0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.1ms) select sqlite_version(*)  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateEvents (20150421155740)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "events" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "date" date, "datetime" datetime, "time" time, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150421155740"]]  (0.6ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Started GET "/events" for ::1 at 2015-04-21 18:14:23 +0200 ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#index as HTML Event Load (0.3ms) SELECT "events".* FROM "events" Rendered events/index.html.erb within layouts/application (12.6ms) Completed 200 OK in 449ms (Views: 446.0ms | ActiveRecord: 0.4ms) Started GET "/events/new" for ::1 at 2015-04-21 18:14:26 +0200 Processing by EventsController#new as HTML Rendered events/_form.html.erb (18.6ms) Rendered events/new.html.erb within layouts/application (22.7ms) Completed 200 OK in 58ms (Views: 52.5ms | ActiveRecord: 0.3ms) Started GET "/events/new" for ::1 at 2015-04-21 18:15:25 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#new as HTML Rendered events/_form.html.erb (30.3ms) Rendered events/new.html.erb within layouts/application (34.7ms) Completed 200 OK in 325ms (Views: 321.3ms | ActiveRecord: 0.2ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-21 18:15:25 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-21 18:15:25 +0200 Started GET "/assets/scaffold.self-83b741db49389dc7cfdf85bf7537a0219cce48e085c4116afc83d55c9af47c78.css?body=1" for ::1 at 2015-04-21 18:15:25 +0200 Started GET "/assets/events.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-04-21 18:15:25 +0200 Started GET "/assets/application.self-167193cd81d9330d9ddb5c4ec7b44214fea529aa8a94f3a86e6526e4f652fc02.css?body=1" for ::1 at 2015-04-21 18:15:25 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-21 18:15:25 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-21 18:15:25 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-21 18:15:25 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-21 18:15:25 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-21 18:15:25 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-21 18:15:25 +0200 Started GET "/assets/bootstrap/dist/fonts/glyphicons-halflings-regular.woff" for ::1 at 2015-04-21 18:15:26 +0200 Started POST "/events" for ::1 at 2015-04-21 18:15:47 +0200 Processing by EventsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"oyv5gF0CSMcdwRicC0ZC6hS0tVeXcB+MO9bg7i7RpuLenpGHtGgOg95/407tFPUkfMYnxLpNGphn5vkgVg9qkg==", "event"=>{"date"=>"2030-07-19", "datetime"=>"1970-01-01 00:00:00 +0000", "time"=>"1970-01-01 00:00:00 +0000"}, "commit"=>"Create Event"}  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "events" ("date", "datetime", "time", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["date", "2030-07-19"], ["datetime", "1970-01-01 00:00:00.000000"], ["time", "2000-01-01 00:00:00.000000"], ["created_at", "2015-04-21 16:15:47.062367"], ["updated_at", "2015-04-21 16:15:47.062367"]]  (1.3ms) commit transaction Redirected to http://localhost:3000/events/1 Completed 302 Found in 10ms (ActiveRecord: 2.2ms) Started GET "/events/1" for ::1 at 2015-04-21 18:15:47 +0200 Processing by EventsController#show as HTML Parameters: {"id"=>"1"} Event Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/show.html.erb within layouts/application (1.7ms) Completed 200 OK in 38ms (Views: 32.3ms | ActiveRecord: 0.3ms) Started GET "/events/1/edit" for ::1 at 2015-04-21 18:15:49 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (5.7ms) Rendered events/edit.html.erb within layouts/application (6.7ms) Completed 200 OK in 37ms (Views: 36.7ms | ActiveRecord: 0.1ms) Started PATCH "/events/1" for ::1 at 2015-04-21 18:16:05 +0200 Processing by EventsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"z1keaE5AldXEKQB8ieZ2VgRTVsdthNKDxbHQA7Z7/w+y7HZvpyrTkQeX+65vtMGYbCHEVEC515eZgcnNzqUzfw==", "event"=>{"date"=>"2030-07-22", "datetime"=>"1970-11-24 00:00:00 +0000", "time"=>"2000-01-01 00:00:00 +0000"}, "commit"=>"Update Event", "id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) begin transaction SQL (0.2ms) UPDATE "events" SET "date" = ?, "datetime" = ?, "updated_at" = ? WHERE "events"."id" = ? [["date", "2030-07-22"], ["datetime", "1970-11-24 00:00:00.000000"], ["updated_at", "2015-04-21 16:16:05.928371"], ["id", 1]]  (1.0ms) commit transaction Redirected to http://localhost:3000/events/1 Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET "/events/1" for ::1 at 2015-04-21 18:16:05 +0200 Processing by EventsController#show as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/show.html.erb within layouts/application (0.8ms) Completed 200 OK in 76ms (Views: 75.3ms | ActiveRecord: 0.1ms) Started GET "/events/1/edit" for ::1 at 2015-04-21 18:16:09 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (7.0ms) Rendered events/edit.html.erb within layouts/application (7.8ms) Completed 200 OK in 35ms (Views: 34.0ms | ActiveRecord: 0.1ms) Started PATCH "/events/1" for ::1 at 2015-04-21 18:16:18 +0200 Processing by EventsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"2APTpEcVzWkbDbr9Dhtn6UAEjF4e3JNzvtzt71EfCBeltrujrn+LLdizQS/oSdAnKHYezTPhlmfi7PQhKcHEZw==", "event"=>{"date"=>"2030-07-22", "datetime"=>"1970-11-24 00:00:00 +0000", "time"=>"2000-01-01 08:06:00 +0000"}, "commit"=>"Update Event", "id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) begin transaction SQL (0.2ms) UPDATE "events" SET "time" = ?, "updated_at" = ? WHERE "events"."id" = ? [["time", "2000-01-01 08:06:00.000000"], ["updated_at", "2015-04-21 16:16:18.508319"], ["id", 1]]  (0.9ms) commit transaction Redirected to http://localhost:3000/events/1 Completed 302 Found in 3ms (ActiveRecord: 1.2ms) Started GET "/events/1" for ::1 at 2015-04-21 18:16:18 +0200 Processing by EventsController#show as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/show.html.erb within layouts/application (0.6ms) Completed 200 OK in 29ms (Views: 28.7ms | ActiveRecord: 0.1ms) Started GET "/events/1/edit" for ::1 at 2015-04-21 18:16:20 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (4.5ms) Rendered events/edit.html.erb within layouts/application (5.1ms) Completed 200 OK in 28ms (Views: 27.2ms | ActiveRecord: 0.1ms) Started GET "/events/1/edit" for ::1 at 2015-04-21 18:24:44 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (5.9ms) Rendered events/edit.html.erb within layouts/application (6.8ms) Completed 200 OK in 46ms (Views: 45.1ms | ActiveRecord: 0.1ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-21 18:24:44 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-21 18:24:44 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-21 18:24:44 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-21 18:24:44 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-21 18:24:44 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-21 18:24:44 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-21 18:24:44 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-21 18:24:44 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-21 18:24:44 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-21 18:24:46 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (3.9ms) Rendered events/edit.html.erb within layouts/application (4.5ms) Completed 200 OK in 115ms (Views: 114.4ms | ActiveRecord: 0.1ms) Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-21 18:24:46 +0200 Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-21 18:24:46 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-21 18:24:46 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-21 18:24:46 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-21 18:24:46 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-21 18:24:46 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-21 18:24:46 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-21 18:24:46 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-21 18:24:46 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-21 18:25:52 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (9.2ms) Rendered events/edit.html.erb within layouts/application (10.0ms) Completed 200 OK in 35ms (Views: 34.2ms | ActiveRecord: 0.1ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-21 18:25:52 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-21 18:25:52 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-21 18:25:52 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-21 18:25:52 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-21 18:25:52 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-21 18:25:52 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-21 18:25:52 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-21 18:25:52 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-21 18:25:52 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-21 18:30:30 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (4.4ms) Rendered events/edit.html.erb within layouts/application (5.0ms) Completed 200 OK in 32ms (Views: 31.6ms | ActiveRecord: 0.1ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-21 18:30:30 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-21 18:30:30 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-21 18:30:30 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-21 18:30:30 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-21 18:30:30 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-21 18:30:30 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-21 18:30:30 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-21 18:30:30 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-21 18:30:30 +0200 Started GET "/" for ::1 at 2015-04-22 12:35:13 +0200 ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Rails::WelcomeController#index as HTML Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/railties-4.2.1/lib/rails/templates/rails/welcome/index.html.erb (1.4ms) Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms) Started GET "/events/" for ::1 at 2015-04-22 12:35:17 +0200 Processing by EventsController#index as HTML Event Load (0.4ms) SELECT "events".* FROM "events" Rendered events/index.html.erb within layouts/application (16.4ms) Completed 200 OK in 174ms (Views: 172.1ms | ActiveRecord: 0.5ms) Started GET "/events/1" for ::1 at 2015-04-22 12:35:19 +0200 Processing by EventsController#show as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/show.html.erb within layouts/application (1.5ms) Completed 200 OK in 27ms (Views: 20.8ms | ActiveRecord: 0.1ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 12:35:20 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (17.3ms) Rendered events/edit.html.erb within layouts/application (20.5ms) Completed 200 OK in 41ms (Views: 40.8ms | ActiveRecord: 0.1ms) Started GET "/assets/bootstrap/dist/fonts/glyphicons-halflings-regular.woff" for ::1 at 2015-04-22 12:35:21 +0200 Started PATCH "/events/1" for ::1 at 2015-04-22 12:35:30 +0200 Processing by EventsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"FRKGi8ze2aBnlN8y1lnilLdXnAQG6siXFJ/s+81k1oJ3hb2GYAHJrIacI9deZhqk6JHcIPCIFeWjmivNQFbHwg==", "event"=>{"date"=>"2030-07-22", "datetime"=>"1970-11-24 04:03:03 +0000", "time"=>"2000-01-01 08:06:00 +0000"}, "commit"=>"Update Event", "id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "events" SET "datetime" = ?, "updated_at" = ? WHERE "events"."id" = ? [["datetime", "1970-11-24 04:03:03.000000"], ["updated_at", "2015-04-22 10:35:30.957485"], ["id", 1]]  (0.5ms) commit transaction Redirected to http://localhost:3000/events/1 Completed 302 Found in 5ms (ActiveRecord: 0.9ms) Started GET "/events/1" for ::1 at 2015-04-22 12:35:30 +0200 Processing by EventsController#show as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/show.html.erb within layouts/application (0.6ms) Completed 200 OK in 18ms (Views: 18.0ms | ActiveRecord: 0.1ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 12:35:32 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (5.1ms) Rendered events/edit.html.erb within layouts/application (5.8ms) Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.1ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 12:38:31 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (43.4ms) Rendered events/edit.html.erb within layouts/application (46.2ms) Completed 200 OK in 196ms (Views: 187.9ms | ActiveRecord: 0.3ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 12:38:31 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 12:38:31 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 12:38:31 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 12:38:31 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 12:38:31 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 12:38:31 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 12:38:31 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 12:38:31 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 12:38:31 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 12:39:19 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (34.5ms) Rendered events/edit.html.erb within layouts/application (37.1ms) Completed 200 OK in 200ms (Views: 191.7ms | ActiveRecord: 0.3ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 12:39:19 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 12:39:19 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 12:39:19 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 12:39:19 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 12:39:19 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 12:39:19 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 12:39:19 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 12:39:19 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 12:39:19 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 12:39:20 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (6.2ms) Rendered events/edit.html.erb within layouts/application (6.8ms) Completed 200 OK in 26ms (Views: 25.5ms | ActiveRecord: 0.1ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 12:39:20 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 12:39:20 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 12:39:20 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 12:39:20 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 12:39:20 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 12:39:20 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 12:39:20 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 12:39:20 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 12:39:20 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 12:39:23 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (5.8ms) Rendered events/edit.html.erb within layouts/application (6.4ms) Completed 200 OK in 29ms (Views: 28.1ms | ActiveRecord: 0.1ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 12:39:24 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 12:39:24 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 12:39:24 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 12:39:24 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 12:39:24 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 12:39:24 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 12:39:24 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 12:39:24 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 12:39:24 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 12:40:26 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (26.9ms) Rendered events/edit.html.erb within layouts/application (29.3ms) Completed 500 Internal Server Error in 42ms (ActiveRecord: 0.3ms) ActionView::Template::Error (no implicit conversion of nil into String): 12: <% end %> 13: 14:
15: <%= f.input :date, as: :date_picker %> 16:
17:
18: <%= f.input :datetime, as: :date_picker %> app/inputs/date_picker_input.rb:16:in `input' app/views/events/_form.html.erb:15:in `block in _app_views_events__form_html_erb___1477668800845103664_70225211295240' app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb___1477668800845103664_70225211295240' app/views/events/edit.html.erb:3:in `_app_views_events_edit_html_erb__2434091040861478140_70225211458600' Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.5ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.4ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (6.9ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (31.6ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 12:42:00 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (12.6ms) Rendered events/edit.html.erb within layouts/application (13.4ms) Completed 500 Internal Server Error in 23ms (ActiveRecord: 0.5ms) ActionView::Template::Error (undefined local variable or method `attribute' for #): 12: <% end %> 13: 14:
15: <%= f.input :date, as: :date_picker %> 16:
17:
18: <%= f.input :datetime, as: :date_picker %> app/inputs/date_picker_input.rb:8:in `block in input' app/inputs/date_picker_input.rb:8:in `select' app/inputs/date_picker_input.rb:8:in `input' app/views/events/_form.html.erb:15:in `block in _app_views_events__form_html_erb___1477668800845103664_70225211295240' app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb___1477668800845103664_70225211295240' app/views/events/edit.html.erb:3:in `_app_views_events_edit_html_erb__2434091040861478140_70225211458600' Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.0ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 12:42:19 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.8ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (3.9ms) Rendered events/edit.html.erb within layouts/application (4.6ms) Completed 500 Internal Server Error in 17ms (ActiveRecord: 1.2ms) ActionView::Template::Error (no implicit conversion of nil into String): 12: <% end %> 13: 14:
15: <%= f.input :date, as: :date_picker %> 16:
17:
18: <%= f.input :datetime, as: :date_picker %> app/inputs/date_picker_input.rb:18:in `input' app/views/events/_form.html.erb:15:in `block in _app_views_events__form_html_erb___1477668800845103664_70225211295240' app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb___1477668800845103664_70225211295240' app/views/events/edit.html.erb:3:in `_app_views_events_edit_html_erb__2434091040861478140_70225211458600' Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (11.7ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (26.5ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 12:43:39 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (31.4ms) Rendered events/edit.html.erb within layouts/application (34.3ms) Completed 500 Internal Server Error in 48ms (ActiveRecord: 0.3ms) ActionView::Template::Error (no implicit conversion of nil into String): 12: <% end %> 13: 14:
15: <%= f.input :date, as: :date_picker %> 16:
17:
18: <%= f.input :datetime, as: :date_picker %> app/inputs/date_picker_input.rb:16:in `input' app/views/events/_form.html.erb:15:in `block in _app_views_events__form_html_erb___2802250908321908_70350919241020' app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb___2802250908321908_70350919241020' app/views/events/edit.html.erb:3:in `_app_views_events_edit_html_erb__1649102203757186464_70350919404360' Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.8ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.6ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.4ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (28.5ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 12:43:51 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (28.7ms) Rendered events/edit.html.erb within layouts/application (32.8ms) Completed 500 Internal Server Error in 49ms (ActiveRecord: 0.3ms) ActionView::Template::Error (no implicit conversion of nil into String): 12: <% end %> 13: 14:
15: <%= f.input :date, as: :date_picker %> 16:
17:
18: <%= f.input :datetime, as: :date_picker %> app/inputs/date_picker_input.rb:16:in `input' app/views/events/_form.html.erb:15:in `block in _app_views_events__form_html_erb__1867914462338650451_70366809770720' app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb__1867914462338650451_70366809770720' app/views/events/edit.html.erb:3:in `_app_views_events_edit_html_erb__1311178259945440890_70366809934260' Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.4ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.7ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.2ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (27.4ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 12:49:26 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (26.9ms) Rendered events/edit.html.erb within layouts/application (29.4ms) Completed 500 Internal Server Error in 42ms (ActiveRecord: 0.3ms) ActionView::Template::Error (no implicit conversion of nil into String): 12: <% end %> 13: 14:
15: <%= f.input :date, as: :date_picker %> 16:
17:
18: <%= f.input :datetime, as: :date_picker %> app/inputs/date_picker_input.rb:18:in `input' app/views/events/_form.html.erb:15:in `block in _app_views_events__form_html_erb___2129201851030563963_70298704301100' app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb___2129201851030563963_70298704301100' app/views/events/edit.html.erb:3:in `_app_views_events_edit_html_erb__4274947148034303182_70298704464620' Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.7ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.2ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.2ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (27.8ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 12:49:27 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (2.1ms) Rendered events/edit.html.erb within layouts/application (2.6ms) Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.1ms) ActionView::Template::Error (no implicit conversion of nil into String): 12: <% end %> 13: 14:
15: <%= f.input :date, as: :date_picker %> 16:
17:
18: <%= f.input :datetime, as: :date_picker %> app/inputs/date_picker_input.rb:18:in `input' app/views/events/_form.html.erb:15:in `block in _app_views_events__form_html_erb___2129201851030563963_70298704301100' app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb___2129201851030563963_70298704301100' app/views/events/edit.html.erb:3:in `_app_views_events_edit_html_erb__4274947148034303182_70298704464620' Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.7ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.7ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 12:50:07 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (2.7ms) Rendered events/edit.html.erb within layouts/application (3.2ms) Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.4ms) ActionView::Template::Error (no implicit conversion of nil into String): 12: <% end %> 13: 14:
15: <%= f.input :date, as: :date_picker %> 16:
17:
18: <%= f.input :datetime, as: :date_picker %> app/inputs/date_picker_input.rb:21:in `input' app/views/events/_form.html.erb:15:in `block in _app_views_events__form_html_erb___2129201851030563963_70298704301100' app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb___2129201851030563963_70298704301100' app/views/events/edit.html.erb:3:in `_app_views_events_edit_html_erb__4274947148034303182_70298704464620' Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.0ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.2ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 12:51:36 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (25.1ms) Rendered events/edit.html.erb within layouts/application (27.5ms) Completed 500 Internal Server Error in 39ms (ActiveRecord: 0.3ms) ActionView::Template::Error (no implicit conversion of nil into String): 12: <% end %> 13: 14:
15: <%= f.input :date, as: :date_picker %> 16:
17:
18: <%= f.input :datetime, as: :date_picker %> app/inputs/date_picker_input.rb:21:in `input' app/views/events/_form.html.erb:15:in `block in _app_views_events__form_html_erb___3298900822033569393_70329284234020' app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb___3298900822033569393_70329284234020' app/views/events/edit.html.erb:3:in `_app_views_events_edit_html_erb___3464644035064309221_70329284397600' Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.8ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.1ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.1ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (26.2ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 12:52:12 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (28.3ms) Rendered events/edit.html.erb within layouts/application (31.3ms) Completed 500 Internal Server Error in 47ms (ActiveRecord: 0.3ms) ActionView::Template::Error (no implicit conversion of nil into String): 12: <% end %> 13: 14:
15: <%= f.input :date, as: :date_picker %> 16:
17:
18: <%= f.input :datetime, as: :date_picker %> app/inputs/date_picker_input.rb:21:in `input' app/views/events/_form.html.erb:15:in `block in _app_views_events__form_html_erb__4408076968546882159_70225064880860' app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb__4408076968546882159_70225064880860' app/views/events/edit.html.erb:3:in `_app_views_events_edit_html_erb___1309899024430993560_70225065044120' Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.1ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.8ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.3ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (27.6ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 12:52:50 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (26.1ms) Rendered events/edit.html.erb within layouts/application (28.6ms) Completed 500 Internal Server Error in 41ms (ActiveRecord: 0.3ms) ActionView::Template::Error (no implicit conversion of nil into String): 12: <% end %> 13: 14:
15: <%= f.input :date, as: :date_picker %> 16:
17:
18: <%= f.input :datetime, as: :date_picker %> app/inputs/date_picker_input.rb:21:in `input' app/views/events/_form.html.erb:15:in `block in _app_views_events__form_html_erb___1760217787800803532_70309802511400' app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb___1760217787800803532_70309802511400' app/views/events/edit.html.erb:3:in `_app_views_events_edit_html_erb___3767720092845870479_70309802674820' Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.9ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.0ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.4ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (26.2ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 12:53:05 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (25.4ms) Rendered events/edit.html.erb within layouts/application (27.7ms) Completed 500 Internal Server Error in 41ms (ActiveRecord: 0.3ms) ActionView::Template::Error (no implicit conversion of nil into String): 12: <% end %> 13: 14:
15: <%= f.input :date, as: :date_picker %> 16:
17:
18: <%= f.input :datetime, as: :date_picker %> app/inputs/date_picker_input.rb:21:in `input' app/views/events/_form.html.erb:15:in `block in _app_views_events__form_html_erb__3282190355855957106_70218075524360' app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb__3282190355855957106_70218075524360' app/views/events/edit.html.erb:3:in `_app_views_events_edit_html_erb___2559952255320494521_70218075687680' Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.9ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.4ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.4ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (27.8ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 12:53:25 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (26.2ms) Rendered events/edit.html.erb within layouts/application (28.8ms) Completed 500 Internal Server Error in 41ms (ActiveRecord: 0.3ms) ActionView::Template::Error (no implicit conversion of nil into String): 12: <% end %> 13: 14:
15: <%= f.input :date, as: :date_picker %> 16:
17:
18: <%= f.input :datetime, as: :date_picker %> app/inputs/date_picker_input.rb:21:in `input' app/views/events/_form.html.erb:15:in `block in _app_views_events__form_html_erb__3393532906502676021_70318239861340' app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb__3393532906502676021_70318239861340' app/views/events/edit.html.erb:3:in `_app_views_events_edit_html_erb___2913172073860606452_70318240024420' Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.8ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.8ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.1ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (27.1ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 12:53:37 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (26.3ms) Rendered events/edit.html.erb within layouts/application (29.0ms) Completed 500 Internal Server Error in 41ms (ActiveRecord: 0.3ms) ActionView::Template::Error (no implicit conversion of nil into String): 12: <% end %> 13: 14:
15: <%= f.input :date, as: :date_picker %> 16:
17:
18: <%= f.input :datetime, as: :date_picker %> app/inputs/date_picker_input.rb:21:in `input' app/views/events/_form.html.erb:15:in `block in _app_views_events__form_html_erb__639440515283079327_70217892252580' app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb__639440515283079327_70217892252580' app/views/events/edit.html.erb:3:in `_app_views_events_edit_html_erb___1690760184566849846_70217841928740' Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.1ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.9ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.3ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (26.4ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 12:53:58 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (27.2ms) Rendered events/edit.html.erb within layouts/application (31.0ms) Completed 500 Internal Server Error in 47ms (ActiveRecord: 0.3ms) ActionView::Template::Error (no implicit conversion of nil into String): 12: <% end %> 13: 14:
15: <%= f.input :date, as: :date_picker %> 16:
17:
18: <%= f.input :datetime, as: :date_picker %> app/inputs/date_picker_input.rb:21:in `input' app/views/events/_form.html.erb:15:in `block in _app_views_events__form_html_erb__134217361575326190_70237341026880' app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb__134217361575326190_70237341026880' app/views/events/edit.html.erb:3:in `_app_views_events_edit_html_erb__1101269980221981545_70237341189980' Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.7ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.0ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.4ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (26.3ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 12:54:24 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (25.5ms) Rendered events/edit.html.erb within layouts/application (28.1ms) Completed 500 Internal Server Error in 40ms (ActiveRecord: 0.3ms) ActionView::Template::Error (no implicit conversion of nil into String): 12: <% end %> 13: 14:
15: <%= f.input :date, as: :date_picker %> 16:
17:
18: <%= f.input :datetime, as: :date_picker %> app/inputs/date_picker_input.rb:21:in `input' app/views/events/_form.html.erb:15:in `block in _app_views_events__form_html_erb__1067814542905450149_70260747365140' app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb__1067814542905450149_70260747365140' app/views/events/edit.html.erb:3:in `_app_views_events_edit_html_erb__2879805151627508131_70260747528320' Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.8ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.5ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.1ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (26.4ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 12:56:21 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (25.4ms) Rendered events/edit.html.erb within layouts/application (27.8ms) Completed 500 Internal Server Error in 40ms (ActiveRecord: 0.3ms) ActionView::Template::Error (no implicit conversion of nil into String): 12: <% end %> 13: 14:
15: <%= f.input :date, as: :date_picker %> 16:
17:
18: <%= f.input :datetime, as: :date_picker %> app/inputs/date_picker_input.rb:21:in `input' app/views/events/_form.html.erb:15:in `block in _app_views_events__form_html_erb__271208191404019752_70312131300100' app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb__271208191404019752_70312131300100' app/views/events/edit.html.erb:3:in `_app_views_events_edit_html_erb___3983015102937056322_70312131463380' Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.7ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.1ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.3ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (26.1ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 12:56:49 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (27.5ms) Rendered events/edit.html.erb within layouts/application (30.2ms) Completed 500 Internal Server Error in 43ms (ActiveRecord: 0.4ms) ActionView::Template::Error (no implicit conversion of nil into String): 12: <% end %> 13: 14:
15: <%= f.input :date, as: :date_picker %> 16:
17:
18: <%= f.input :datetime, as: :date_picker %> app/inputs/date_picker_input.rb:19:in `input' app/views/events/_form.html.erb:15:in `block in _app_views_events__form_html_erb___113250433051762889_70242723236700' app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb___113250433051762889_70242723236700' app/views/events/edit.html.erb:3:in `_app_views_events_edit_html_erb___2056241579760128494_70242723400000' Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.8ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.4ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (6.9ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (26.1ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 12:57:07 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (26.3ms) Rendered events/edit.html.erb within layouts/application (28.9ms) Completed 500 Internal Server Error in 41ms (ActiveRecord: 0.3ms) ActionView::Template::Error (no implicit conversion of nil into String): 12: <% end %> 13: 14:
15: <%= f.input :date, as: :date_picker %> 16:
17:
18: <%= f.input :datetime, as: :date_picker %> app/inputs/date_picker_input.rb:19:in `input' app/views/events/_form.html.erb:15:in `block in _app_views_events__form_html_erb__4452391865481582128_70142914988840' app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb__4452391865481582128_70142914988840' app/views/events/edit.html.erb:3:in `_app_views_events_edit_html_erb___944380321544781455_70142915152280' Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.9ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.1ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.5ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (27.8ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 12:57:45 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (26.5ms) Rendered events/edit.html.erb within layouts/application (29.4ms) Completed 500 Internal Server Error in 41ms (ActiveRecord: 0.3ms) ActionView::Template::Error (no implicit conversion of nil into String): 12: <% end %> 13: 14:
15: <%= f.input :date, as: :date_picker %> 16:
17:
18: <%= f.input :datetime, as: :date_picker %> app/inputs/date_picker_input.rb:20:in `input' app/views/events/_form.html.erb:15:in `block in _app_views_events__form_html_erb___3694557404659874002_70149507344940' app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb___3694557404659874002_70149507344940' app/views/events/edit.html.erb:3:in `_app_views_events_edit_html_erb___2369595709102677655_70149507508080' Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.4ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (11.2ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (11.4ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (38.0ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 12:58:49 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (38.7ms) Rendered events/edit.html.erb within layouts/application (41.6ms) Completed 200 OK in 209ms (Views: 201.0ms | ActiveRecord: 0.3ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 12:58:49 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 12:58:49 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 12:58:49 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 12:58:49 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 12:58:49 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 12:58:49 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 12:58:49 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 12:58:49 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 12:58:49 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 12:59:32 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (38.1ms) Rendered events/edit.html.erb within layouts/application (40.7ms) Completed 200 OK in 193ms (Views: 184.8ms | ActiveRecord: 0.3ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 12:59:33 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 12:59:33 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 12:59:33 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 12:59:33 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 12:59:33 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 12:59:33 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 12:59:33 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 12:59:33 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 12:59:33 +0200 Started PATCH "/events/1" for ::1 at 2015-04-22 12:59:40 +0200 Processing by EventsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"QlNeBkzTUvLBD7wUuQoFi4gmmyIkR1n6ZUPmFysfa1EgxGUL4AxC/iAHQPExNf271+DbBtIlhIjSRiEhpi16EQ==", "event"=>{"date"=>"2030-07-22", "datetime"=>"1971-02-10 04:03:03 +0000", "time"=>"2000-01-01 08:06:00 +0000"}, "commit"=>"Update Event", "id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "events" SET "datetime" = ?, "updated_at" = ? WHERE "events"."id" = ? [["datetime", "1971-02-10 04:03:03.000000"], ["updated_at", "2015-04-22 10:59:40.564349"], ["id", 1]]  (0.7ms) commit transaction Redirected to http://localhost:3000/events/1 Completed 302 Found in 6ms (ActiveRecord: 1.2ms) Started GET "/events/1" for ::1 at 2015-04-22 12:59:40 +0200 Processing by EventsController#show as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/show.html.erb within layouts/application (0.9ms) Completed 200 OK in 19ms (Views: 18.9ms | ActiveRecord: 0.1ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 12:59:42 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (7.0ms) Rendered events/edit.html.erb within layouts/application (7.6ms) Completed 200 OK in 31ms (Views: 30.0ms | ActiveRecord: 0.1ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 13:00:20 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (25.5ms) Rendered events/edit.html.erb within layouts/application (27.9ms) Completed 500 Internal Server Error in 39ms (ActiveRecord: 0.3ms) ActionView::Template::Error (undefined method `gsub!' for nil:NilClass): 12: <% end %> 13: 14:
15: <%= f.input :date, as: :date_picker %> 16:
17:
18: <%= f.input :datetime, as: :date_picker %> app/inputs/date_picker_input.rb:17:in `input' app/views/events/_form.html.erb:15:in `block in _app_views_events__form_html_erb__3281095876915141597_70334974314000' app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb__3281095876915141597_70334974314000' app/views/events/edit.html.erb:3:in `_app_views_events_edit_html_erb__1890493452824068763_70334974477120' Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.8ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.5ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (26.7ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 13:01:08 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (38.0ms) Rendered events/edit.html.erb within layouts/application (40.8ms) Completed 200 OK in 192ms (Views: 183.2ms | ActiveRecord: 0.3ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 13:01:08 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 13:01:08 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 13:01:08 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 13:01:08 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 13:01:08 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 13:01:08 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 13:01:08 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 13:01:08 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 13:01:08 +0200 Started GET "/assets/bootstrap/dist/fonts/glyphicons-halflings-regular.woff" for ::1 at 2015-04-22 13:01:08 +0200 Started PATCH "/events/1" for ::1 at 2015-04-22 13:01:23 +0200 Processing by EventsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"2j16Kp9NSNHAPuFY+iMFuDJyPL1zhVY9j0bnBMnIcLK4qkEnM5JY3SE2Hb1yHP2IbbR8mYXni084QyAyRPph8g==", "event"=>{"date"=>"2030-07-22", "datetime"=>"1971-08-15 21:05:03 +0000", "time"=>"2000-01-01 08:06:00 +0000"}, "commit"=>"Update Event", "id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "events" SET "datetime" = ?, "updated_at" = ? WHERE "events"."id" = ? [["datetime", "1971-08-15 21:05:03.000000"], ["updated_at", "2015-04-22 11:01:23.681530"], ["id", 1]]  (0.5ms) commit transaction Redirected to http://localhost:3000/events/1 Completed 302 Found in 4ms (ActiveRecord: 0.9ms) Started GET "/events/1" for ::1 at 2015-04-22 13:01:23 +0200 Processing by EventsController#show as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/show.html.erb within layouts/application (0.9ms) Completed 200 OK in 18ms (Views: 18.1ms | ActiveRecord: 0.1ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 13:01:25 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (6.9ms) Rendered events/edit.html.erb within layouts/application (7.7ms) Completed 200 OK in 26ms (Views: 25.1ms | ActiveRecord: 0.1ms) Started PATCH "/events/1" for ::1 at 2015-04-22 13:01:30 +0200 Processing by EventsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"j/fRO8Fr3VCduYKdBrY8bb7Ph7/DIL1WzWOxULG9YyLtYOo2bbTNXHyxfniOicRd4QnHmzVCYCR6ZnZmPI9yYg==", "event"=>{"date"=>"2030-07-22", "datetime"=>"1971-08-15 21:05:03 +0000", "time"=>"2000-01-01 10:06:00 +0000"}, "commit"=>"Update Event", "id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) begin transaction SQL (0.3ms) UPDATE "events" SET "time" = ?, "updated_at" = ? WHERE "events"."id" = ? [["time", "2000-01-01 10:06:00.000000"], ["updated_at", "2015-04-22 11:01:30.025646"], ["id", 1]]  (0.7ms) commit transaction Redirected to http://localhost:3000/events/1 Completed 302 Found in 4ms (ActiveRecord: 1.1ms) Started GET "/events/1" for ::1 at 2015-04-22 13:01:30 +0200 Processing by EventsController#show as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/show.html.erb within layouts/application (0.6ms) Completed 200 OK in 18ms (Views: 18.1ms | ActiveRecord: 0.1ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 13:01:32 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (6.6ms) Rendered events/edit.html.erb within layouts/application (7.1ms) Completed 200 OK in 57ms (Views: 56.7ms | ActiveRecord: 0.1ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 13:14:25 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (38.3ms) Rendered events/edit.html.erb within layouts/application (40.9ms) Completed 200 OK in 192ms (Views: 182.5ms | ActiveRecord: 0.3ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 13:14:26 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 13:14:26 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 13:14:26 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 13:14:26 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 13:14:26 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 13:14:26 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 13:14:26 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 13:14:26 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 13:14:26 +0200 Started PATCH "/events/1" for ::1 at 2015-04-22 13:14:35 +0200 Processing by EventsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"r/nnaRFJQOcPjOl2SaTEObf02dOw566Ectja/b+ODx3NbtxkvZZQ6+6EFZPBmzwJ6DKZ90aFc/bF3R3LMrweXQ==", "event"=>{"date"=>"2030-11-18", "datetime"=>"1971-08-15 21:05:03 +0000", "time"=>"2000-01-01 10:06:00 +0000"}, "commit"=>"Update Event", "id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "events" SET "date" = ?, "updated_at" = ? WHERE "events"."id" = ? [["date", "2030-11-18"], ["updated_at", "2015-04-22 11:14:35.948407"], ["id", 1]]  (0.4ms) commit transaction Redirected to http://localhost:3000/events/1 Completed 302 Found in 4ms (ActiveRecord: 0.9ms) Started GET "/events/1" for ::1 at 2015-04-22 13:14:35 +0200 Processing by EventsController#show as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/show.html.erb within layouts/application (1.0ms) Completed 200 OK in 22ms (Views: 21.7ms | ActiveRecord: 0.1ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 13:14:38 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (9.8ms) Rendered events/edit.html.erb within layouts/application (10.8ms) Completed 200 OK in 30ms (Views: 29.4ms | ActiveRecord: 0.1ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 14:15:26 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (39.2ms) Rendered events/edit.html.erb within layouts/application (42.3ms) Completed 200 OK in 197ms (Views: 188.9ms | ActiveRecord: 0.3ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 14:15:27 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 14:15:27 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 14:15:27 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 14:15:27 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 14:15:27 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 14:15:27 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 14:15:27 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 14:15:27 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 14:15:27 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 14:15:28 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (7.7ms) Rendered events/edit.html.erb within layouts/application (8.3ms) Completed 200 OK in 27ms (Views: 26.4ms | ActiveRecord: 0.1ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 14:15:28 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 14:15:28 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 14:15:28 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 14:15:28 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 14:15:28 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 14:15:28 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 14:15:28 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 14:15:28 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 14:15:28 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 14:15:44 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (38.9ms) Rendered events/edit.html.erb within layouts/application (41.9ms) Completed 200 OK in 192ms (Views: 183.2ms | ActiveRecord: 0.3ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 14:15:44 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 14:15:44 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 14:15:44 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 14:15:44 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 14:15:44 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 14:15:44 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 14:15:44 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 14:15:44 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 14:15:44 +0200 Started GET "/events/1/edit" for 127.0.0.1 at 2015-04-22 14:38:12 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (305.3ms) Rendered events/edit.html.erb within layouts/application (307.9ms) Completed 500 Internal Server Error in 320ms (ActiveRecord: 0.3ms) ActionView::Template::Error (can not load translations from /Users/rafaelnowrotek/Documents/Projekte/Project Play/date_picker/test/dummy/config/locales/en.yml: #): 12: <% end %> 13: 14:
15: <%= f.input :date %> 16:
17:
18: <%= f.input :datetime %> app/views/events/_form.html.erb:15:in `block in _app_views_events__form_html_erb__906606447254165783_70339987003540' app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb__906606447254165783_70339987003540' app/views/events/edit.html.erb:3:in `_app_views_events_edit_html_erb__943635615195057539_70339987182440' Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.0ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.0ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (22.2ms) Started GET "/events/1/edit" for 127.0.0.1 at 2015-04-22 14:38:44 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (252.6ms) Rendered events/edit.html.erb within layouts/application (255.6ms) Completed 200 OK in 382ms (Views: 373.9ms | ActiveRecord: 0.3ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for 127.0.0.1 at 2015-04-22 14:38:45 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for 127.0.0.1 at 2015-04-22 14:38:45 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for 127.0.0.1 at 2015-04-22 14:38:45 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for 127.0.0.1 at 2015-04-22 14:38:45 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for 127.0.0.1 at 2015-04-22 14:38:45 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for 127.0.0.1 at 2015-04-22 14:38:45 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for 127.0.0.1 at 2015-04-22 14:38:45 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-04-22 14:38:45 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for 127.0.0.1 at 2015-04-22 14:38:45 +0200 Started PATCH "/events/1" for 127.0.0.1 at 2015-04-22 14:38:51 +0200 Processing by EventsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"wxdihEbuM3L5KO+GCp0BTpmDfMuYVAVqGebDwbj63LChgFmJ6jEjfhggE2OCovl+xkU872422Biu4wT3NcjN8A==", "event"=>{"date"=>"2030-11-18", "datetime"=>"1971-08-15 21:05:03 +0000", "time"=>"2000-01-01 14:06:00 +0000"}, "commit"=>"Update Event", "id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "events" SET "time" = ?, "updated_at" = ? WHERE "events"."id" = ? [["time", "2000-01-01 14:06:00.000000"], ["updated_at", "2015-04-22 12:38:51.482654"], ["id", 1]]  (0.5ms) commit transaction Redirected to http://localhost:3000/events/1 Completed 302 Found in 4ms (ActiveRecord: 0.9ms) Started GET "/events/1" for 127.0.0.1 at 2015-04-22 14:38:51 +0200 Processing by EventsController#show as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/show.html.erb within layouts/application (1.4ms) Completed 200 OK in 22ms (Views: 21.1ms | ActiveRecord: 0.1ms) Started GET "/events/1/edit" for 127.0.0.1 at 2015-04-22 14:38:53 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (7.4ms) Rendered events/edit.html.erb within layouts/application (7.9ms) Completed 200 OK in 27ms (Views: 26.8ms | ActiveRecord: 0.1ms) Started GET "/events/1/edit" for 127.0.0.1 at 2015-04-22 14:56:40 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (263.3ms) Rendered events/edit.html.erb within layouts/application (266.1ms) Completed 200 OK in 407ms (Views: 398.6ms | ActiveRecord: 0.3ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for 127.0.0.1 at 2015-04-22 14:56:41 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for 127.0.0.1 at 2015-04-22 14:56:41 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for 127.0.0.1 at 2015-04-22 14:56:41 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for 127.0.0.1 at 2015-04-22 14:56:41 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for 127.0.0.1 at 2015-04-22 14:56:41 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for 127.0.0.1 at 2015-04-22 14:56:41 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for 127.0.0.1 at 2015-04-22 14:56:41 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-04-22 14:56:41 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for 127.0.0.1 at 2015-04-22 14:56:41 +0200 Started GET "/events/1/edit" for 127.0.0.1 at 2015-04-22 15:01:09 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (253.7ms) Rendered events/edit.html.erb within layouts/application (256.3ms) Completed 200 OK in 385ms (Views: 376.5ms | ActiveRecord: 0.3ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for 127.0.0.1 at 2015-04-22 15:01:10 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for 127.0.0.1 at 2015-04-22 15:01:10 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for 127.0.0.1 at 2015-04-22 15:01:10 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-04-22 15:01:10 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for 127.0.0.1 at 2015-04-22 15:01:10 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for 127.0.0.1 at 2015-04-22 15:01:10 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for 127.0.0.1 at 2015-04-22 15:01:10 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for 127.0.0.1 at 2015-04-22 15:01:10 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for 127.0.0.1 at 2015-04-22 15:01:10 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:26:41 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (6.1ms) Rendered events/edit.html.erb within layouts/application (6.6ms) Completed 200 OK in 24ms (Views: 23.6ms | ActiveRecord: 0.1ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:26:41 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:26:41 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:26:41 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:26:41 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:26:41 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:26:41 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:26:41 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:26:41 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:26:41 +0200 Started GET "/assets/bootstrap/dist/fonts/glyphicons-halflings-regular.woff" for ::1 at 2015-04-22 15:26:41 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:27:00 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (6.5ms) Rendered events/edit.html.erb within layouts/application (7.1ms) Completed 200 OK in 25ms (Views: 24.5ms | ActiveRecord: 0.1ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:27:00 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:27:00 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:27:00 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:27:00 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:27:00 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:27:00 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:27:00 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:27:00 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:27:00 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:29:48 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (6.8ms) Rendered events/edit.html.erb within layouts/application (7.2ms) Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.1ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:29:48 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:29:48 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:29:48 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:29:48 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:29:48 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:29:48 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:29:48 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:29:48 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:29:48 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:30:08 +0200 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (299.0ms) Rendered events/edit.html.erb within layouts/application (301.9ms) Completed 200 OK in 433ms (Views: 424.4ms | ActiveRecord: 0.3ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:30:09 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:30:09 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:30:09 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:30:09 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:30:09 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:30:09 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:30:09 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:30:09 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:30:09 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:30:36 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (7.1ms) Rendered events/edit.html.erb within layouts/application (7.7ms) Completed 200 OK in 26ms (Views: 25.4ms | ActiveRecord: 0.1ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:30:37 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:30:37 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:30:37 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:30:37 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:30:37 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:30:37 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:30:37 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:30:37 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:30:37 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:30:59 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (6.5ms) Rendered events/edit.html.erb within layouts/application (7.1ms) Completed 200 OK in 24ms (Views: 23.6ms | ActiveRecord: 0.1ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:30:59 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:30:59 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:30:59 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:30:59 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:30:59 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:30:59 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:30:59 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:30:59 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:30:59 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:31:20 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (235.7ms) Rendered events/edit.html.erb within layouts/application (238.4ms) Completed 500 Internal Server Error in 251ms (ActiveRecord: 0.3ms) ActionView::Template::Error (no implicit conversion of false into String): 12: <% end %> 13: 14:
15: <%= f.input :date %> 16:
17:
18: <%= f.input :datetime %> app/inputs/date_time_input.rb:17:in `input' app/views/events/_form.html.erb:15:in `block in _app_views_events__form_html_erb___4078729175395262397_70118296471740' app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb___4078729175395262397_70118296471740' app/views/events/edit.html.erb:3:in `_app_views_events_edit_html_erb__3602272006146896322_70118296650400' Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.8ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.4ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (28.5ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 15:31:42 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (240.2ms) Rendered events/edit.html.erb within layouts/application (242.8ms) Completed 500 Internal Server Error in 255ms (ActiveRecord: 0.3ms) ActionView::Template::Error (no implicit conversion of nil into String): 12: <% end %> 13: 14:
15: <%= f.input :date %> 16:
17:
18: <%= f.input :datetime %> app/inputs/date_time_input.rb:17:in `input' app/views/events/_form.html.erb:15:in `block in _app_views_events__form_html_erb___2098383271224651985_70293305753760' app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb___2098383271224651985_70293305753760' app/views/events/edit.html.erb:3:in `_app_views_events_edit_html_erb___3252902758771737237_70293305925040' Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.0ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.7ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (26.2ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 15:31:53 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (240.2ms) Rendered events/edit.html.erb within layouts/application (242.8ms) Completed 500 Internal Server Error in 255ms (ActiveRecord: 0.3ms) ActionView::Template::Error (no implicit conversion of nil into String): 12: <% end %> 13: 14:
15: <%= f.input :date %> 16:
17:
18: <%= f.input :datetime %> app/inputs/date_time_input.rb:17:in `input' app/views/events/_form.html.erb:15:in `block in _app_views_events__form_html_erb___3857027375637122327_70158650704200' app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb___3857027375637122327_70158650704200' app/views/events/edit.html.erb:3:in `_app_views_events_edit_html_erb___2459613257191648442_70158650875340' Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.7ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.5ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (22.4ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 15:32:12 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (234.8ms) Rendered events/edit.html.erb within layouts/application (237.6ms) Completed 500 Internal Server Error in 250ms (ActiveRecord: 0.3ms) ActionView::Template::Error (no implicit conversion of false into String): 12: <% end %> 13: 14:
15: <%= f.input :date %> 16:
17:
18: <%= f.input :datetime %> app/inputs/date_time_input.rb:17:in `input' app/views/events/_form.html.erb:15:in `block in _app_views_events__form_html_erb__1664643780126666574_70277476455700' app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb__1664643780126666574_70277476455700' app/views/events/edit.html.erb:3:in `_app_views_events_edit_html_erb___2854987758162593299_70277476634540' Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (9.2ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.4ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (31.1ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 15:32:23 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (257.9ms) Rendered events/edit.html.erb within layouts/application (260.8ms) Completed 200 OK in 399ms (Views: 390.3ms | ActiveRecord: 0.3ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:32:24 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:32:24 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:32:24 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:32:24 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:32:24 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:32:24 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:32:24 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:32:24 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:32:24 +0200 Started GET "/assets/bootstrap/dist/fonts/glyphicons-halflings-regular.woff" for ::1 at 2015-04-22 15:32:24 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:32:28 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (13.4ms) Rendered events/edit.html.erb within layouts/application (14.0ms) Completed 200 OK in 34ms (Views: 33.1ms | ActiveRecord: 0.1ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:32:28 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:32:28 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:32:28 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:32:28 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:32:28 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:32:28 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:32:28 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:32:28 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:32:28 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:33:55 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (231.7ms) Rendered events/edit.html.erb within layouts/application (234.0ms) Completed 500 Internal Server Error in 246ms (ActiveRecord: 0.3ms) ActionView::Template::Error (wrong number of arguments (4 for 2..3)): 12: <% end %> 13: 14:
15: <%= f.input :date %> 16:
17:
18: <%= f.input :datetime %> app/inputs/date_time_input.rb:17:in `input' app/views/events/_form.html.erb:15:in `block in _app_views_events__form_html_erb__3947312029042833512_70340586441460' app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb__3947312029042833512_70340586441460' app/views/events/edit.html.erb:3:in `_app_views_events_edit_html_erb__3055650455281108529_70340586620660' Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.7ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (6.7ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (21.6ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 15:34:48 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (256.2ms) Rendered events/edit.html.erb within layouts/application (258.7ms) Completed 200 OK in 390ms (Views: 381.2ms | ActiveRecord: 0.3ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:34:49 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:34:49 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:34:49 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:34:49 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:34:49 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:34:49 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:34:49 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:34:49 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:34:49 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:35:06 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (251.6ms) Rendered events/edit.html.erb within layouts/application (254.5ms) Completed 200 OK in 384ms (Views: 375.0ms | ActiveRecord: 0.3ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:35:07 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:35:07 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:35:07 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:35:07 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:35:07 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:35:07 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:35:07 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:35:07 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:35:07 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:35:09 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (8.1ms) Rendered events/edit.html.erb within layouts/application (8.6ms) Completed 200 OK in 27ms (Views: 26.0ms | ActiveRecord: 0.1ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:35:09 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:35:09 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:35:09 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:35:09 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:35:09 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:35:09 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:35:09 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:35:09 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:35:09 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:35:29 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (256.5ms) Rendered events/edit.html.erb within layouts/application (259.3ms) Completed 200 OK in 387ms (Views: 377.4ms | ActiveRecord: 0.4ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:35:30 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:35:30 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:35:30 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:35:30 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:35:30 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:35:30 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:35:30 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:35:30 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:35:30 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:35:50 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (253.5ms) Rendered events/edit.html.erb within layouts/application (256.5ms) Completed 200 OK in 391ms (Views: 382.6ms | ActiveRecord: 0.3ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:35:50 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:35:50 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:35:50 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:35:50 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:35:50 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:35:50 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:35:50 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:35:50 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:35:50 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:35:57 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (5.1ms) Rendered events/edit.html.erb within layouts/application (5.6ms) Completed 200 OK in 23ms (Views: 22.8ms | ActiveRecord: 0.1ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:35:57 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:35:57 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:35:57 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:35:57 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:35:57 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:35:57 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:35:57 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:35:57 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:35:57 +0200 Started PATCH "/events/1" for ::1 at 2015-04-22 15:36:15 +0200 Processing by EventsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"nXo29km8stnm8ZBJGP+tlh1KIEs33P5724UvGM9vRJ/Yub/Bd7PUGnlJ7TEtXIvREjo9qvg/SecILc7Z2UaXZQ==", "event"=>{"date"=>"2030-12-18", "datetime"=>"1971-08-15 21:05:03 UTC", "time"=>"01:36"}, "commit"=>"Update Event", "id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) begin transaction SQL (0.3ms) UPDATE "events" SET "date" = ?, "time" = ?, "updated_at" = ? WHERE "events"."id" = ? [["date", "2030-12-18"], ["time", "2000-01-01 01:36:00.000000"], ["updated_at", "2015-04-22 13:36:15.551977"], ["id", 1]]  (1.1ms) commit transaction Redirected to http://localhost:3000/events/1 Completed 302 Found in 5ms (ActiveRecord: 1.5ms) Started GET "/events/1" for ::1 at 2015-04-22 15:36:15 +0200 Processing by EventsController#show as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/show.html.erb within layouts/application (1.0ms) Completed 200 OK in 19ms (Views: 18.9ms | ActiveRecord: 0.1ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 15:36:17 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (5.4ms) Rendered events/edit.html.erb within layouts/application (5.9ms) Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.1ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 15:40:29 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (258.3ms) Rendered events/edit.html.erb within layouts/application (260.8ms) Completed 200 OK in 391ms (Views: 382.9ms | ActiveRecord: 0.3ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:40:30 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:40:30 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:40:30 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:40:30 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:40:30 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:40:30 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:40:30 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:40:30 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:40:30 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:40:33 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (5.4ms) Rendered events/edit.html.erb within layouts/application (6.0ms) Completed 200 OK in 25ms (Views: 24.0ms | ActiveRecord: 0.1ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:40:33 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:40:33 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:40:33 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:40:33 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:40:33 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:40:33 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:40:33 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:40:33 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:40:33 +0200 Started PATCH "/events/1" for ::1 at 2015-04-22 15:40:42 +0200 Processing by EventsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"rDSKU3n+xN7WVrV8EcpZ3beEHEkgih8r58vcVQSlpH/p9wNkR/GiHUnuyAQkaX+auPQBqO9pqLc0Yz2UEox3hQ==", "event"=>{"date"=>"2030-12-18", "datetime"=>"2015-05-12T15:40:35", "time"=>""}, "commit"=>"Update Event", "id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) begin transaction SQL (0.3ms) UPDATE "events" SET "datetime" = ?, "time" = ?, "updated_at" = ? WHERE "events"."id" = ? [["datetime", "2015-05-12 15:40:35.000000"], ["time", nil], ["updated_at", "2015-04-22 13:40:42.978495"], ["id", 1]]  (0.6ms) commit transaction Redirected to http://localhost:3000/events/1 Completed 302 Found in 5ms (ActiveRecord: 1.0ms) Started GET "/events/1" for ::1 at 2015-04-22 15:40:42 +0200 Processing by EventsController#show as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/show.html.erb within layouts/application (0.8ms) Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.1ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 15:40:46 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (5.9ms) Rendered events/edit.html.erb within layouts/application (6.4ms) Completed 200 OK in 26ms (Views: 25.9ms | ActiveRecord: 0.1ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 15:42:02 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (262.6ms) Rendered events/edit.html.erb within layouts/application (265.5ms) Completed 200 OK in 406ms (Views: 396.9ms | ActiveRecord: 0.3ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:42:03 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:42:03 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:42:03 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:42:03 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:42:03 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:42:03 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:42:03 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:42:03 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:42:03 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:42:05 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (5.7ms) Rendered events/edit.html.erb within layouts/application (6.3ms) Completed 200 OK in 28ms (Views: 27.5ms | ActiveRecord: 0.1ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:42:05 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:42:05 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:42:05 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:42:05 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:42:05 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:42:05 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:42:05 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:42:05 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:42:05 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:42:15 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (254.5ms) Rendered events/edit.html.erb within layouts/application (257.3ms) Completed 200 OK in 381ms (Views: 372.4ms | ActiveRecord: 0.3ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:42:16 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:42:16 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:42:16 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:42:16 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:42:16 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:42:16 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:42:16 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:42:16 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:42:16 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:42:20 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (5.1ms) Rendered events/edit.html.erb within layouts/application (5.7ms) Completed 200 OK in 23ms (Views: 22.8ms | ActiveRecord: 0.1ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:42:20 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:42:20 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:42:20 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:42:20 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:42:20 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:42:20 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:42:20 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:42:20 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:42:20 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:43:16 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (261.7ms) Rendered events/edit.html.erb within layouts/application (264.9ms) Completed 200 OK in 397ms (Views: 388.0ms | ActiveRecord: 0.4ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:43:17 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:43:17 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:43:17 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:43:17 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:43:17 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:43:17 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:43:17 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:43:17 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:43:17 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:43:20 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (5.5ms) Rendered events/edit.html.erb within layouts/application (6.0ms) Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.1ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:43:20 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:43:20 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:43:20 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:43:20 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:43:20 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:43:20 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:43:20 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:43:20 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:43:20 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:43:51 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (244.7ms) Rendered events/edit.html.erb within layouts/application (247.4ms) Completed 500 Internal Server Error in 260ms (ActiveRecord: 0.3ms) ActionView::Template::Error (undefined method `strftime' for nil:NilClass): 18: <%= f.input :datetime %> 19:
20:
21: <%= f.input :time %> 22:
23:
24: <%= f.submit %> app/inputs/date_time_input.rb:17:in `input' app/views/events/_form.html.erb:21:in `block in _app_views_events__form_html_erb__2110247311722687710_70211356200060' app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb__2110247311722687710_70211356200060' app/views/events/edit.html.erb:3:in `_app_views_events_edit_html_erb__2032931843838171241_70211356378880' Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.7ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.6ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (23.2ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 15:44:09 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (242.1ms) Rendered events/edit.html.erb within layouts/application (244.7ms) Completed 500 Internal Server Error in 257ms (ActiveRecord: 0.3ms) ActionView::Template::Error (undefined method `strftime' for nil:NilClass): 18: <%= f.input :datetime %> 19:
20:
21: <%= f.input :time %> 22:
23:
24: <%= f.submit %> app/inputs/date_time_input.rb:17:in `input' app/views/events/_form.html.erb:21:in `block in _app_views_events__form_html_erb___4152648515654163422_70136950444180' app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb___4152648515654163422_70136950444180' app/views/events/edit.html.erb:3:in `_app_views_events_edit_html_erb__3640557050457117375_70136950622920' Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.9ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.2ms) Rendered /Users/rafaelnowrotek/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (22.8ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 15:46:31 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (255.3ms) Rendered events/edit.html.erb within layouts/application (258.5ms) Completed 200 OK in 388ms (Views: 378.4ms | ActiveRecord: 0.3ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:46:31 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:46:31 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:46:31 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:46:31 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:46:31 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:46:31 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:46:31 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:46:31 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:46:31 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:46:40 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (5.5ms) Rendered events/edit.html.erb within layouts/application (6.0ms) Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.1ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:46:40 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:46:40 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:46:40 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:46:40 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:46:40 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:46:40 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:46:40 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:46:40 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:46:40 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:47:01 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (260.5ms) Rendered events/edit.html.erb within layouts/application (263.2ms) Completed 200 OK in 390ms (Views: 380.7ms | ActiveRecord: 0.4ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:47:01 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:47:01 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:47:01 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:47:01 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:47:01 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:47:01 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:47:01 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:47:01 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:47:01 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:47:07 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (5.8ms) Rendered events/edit.html.erb within layouts/application (6.3ms) Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 0.1ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:47:07 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:47:07 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:47:07 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:47:07 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:47:07 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:47:07 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:47:07 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:47:07 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:47:07 +0200 Started PATCH "/events/1" for ::1 at 2015-04-22 15:47:16 +0200 Processing by EventsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"k2mJWjhCwz/tqmle6bNiKcVyaHdHoCUnFtjLl094rlrWqgBtBk2l/HISFCbcEERuygJ1lohDkrvFcCpWWVF9oA==", "event"=>{"date"=>"2030-12-18", "datetime"=>"", "time"=>"07:47"}, "commit"=>"Update Event", "id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) begin transaction SQL (0.3ms) UPDATE "events" SET "datetime" = ?, "time" = ?, "updated_at" = ? WHERE "events"."id" = ? [["datetime", nil], ["time", "2000-01-01 07:47:00.000000"], ["updated_at", "2015-04-22 13:47:16.633333"], ["id", 1]]  (0.9ms) commit transaction Redirected to http://localhost:3000/events/1 Completed 302 Found in 5ms (ActiveRecord: 1.3ms) Started GET "/events/1" for ::1 at 2015-04-22 15:47:16 +0200 Processing by EventsController#show as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/show.html.erb within layouts/application (0.8ms) Completed 200 OK in 19ms (Views: 19.0ms | ActiveRecord: 0.1ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 15:47:18 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (6.4ms) Rendered events/edit.html.erb within layouts/application (6.9ms) Completed 200 OK in 26ms (Views: 25.2ms | ActiveRecord: 0.1ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 15:48:30 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (268.3ms) Rendered events/edit.html.erb within layouts/application (271.1ms) Completed 200 OK in 405ms (Views: 396.3ms | ActiveRecord: 0.3ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:48:31 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:48:31 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:48:31 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:48:31 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:48:31 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:48:31 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:48:31 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:48:31 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:48:31 +0200 Started PATCH "/events/1" for ::1 at 2015-04-22 15:48:42 +0200 Processing by EventsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"75ed55Gn2N/mnh7TPREq9jCIGMVv3hJdVc4uSu+YhmCqVBTQr6i+HHkmY6sIsgyxP/gFJKA9pcGGZs+L+bFVmg==", "event"=>{"date"=>"2030-12-18", "datetime"=>"2015-06-11T15:48:31", "time"=>"07:47"}, "commit"=>"Update Event", "id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "events" SET "datetime" = ?, "updated_at" = ? WHERE "events"."id" = ? [["datetime", "2015-06-11 15:48:31.000000"], ["updated_at", "2015-04-22 13:48:42.457363"], ["id", 1]]  (1.1ms) commit transaction Redirected to http://localhost:3000/events/1 Completed 302 Found in 5ms (ActiveRecord: 1.5ms) Started GET "/events/1" for ::1 at 2015-04-22 15:48:42 +0200 Processing by EventsController#show as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/show.html.erb within layouts/application (0.9ms) Completed 200 OK in 19ms (Views: 18.8ms | ActiveRecord: 0.1ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 15:48:44 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (5.5ms) Rendered events/edit.html.erb within layouts/application (6.0ms) Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.1ms) Started GET "/events/1/edit" for ::1 at 2015-04-22 15:48:45 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (5.6ms) Rendered events/edit.html.erb within layouts/application (6.4ms) Completed 200 OK in 26ms (Views: 25.6ms | ActiveRecord: 0.1ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:48:45 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:48:45 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:48:45 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:48:45 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:48:45 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:48:45 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:48:45 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:48:45 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:48:45 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:49:07 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (242.6ms) Rendered events/edit.html.erb within layouts/application (245.2ms) Completed 200 OK in 374ms (Views: 365.1ms | ActiveRecord: 0.3ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:49:07 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:49:07 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:49:07 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:49:07 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:49:07 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:49:07 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:49:07 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:49:07 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:49:07 +0200 Started GET "/assets/bootstrap/dist/fonts/glyphicons-halflings-regular.woff" for ::1 at 2015-04-22 15:49:07 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:49:15 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (7.4ms) Rendered events/edit.html.erb within layouts/application (7.9ms) Completed 200 OK in 27ms (Views: 26.9ms | ActiveRecord: 0.1ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:49:15 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:49:15 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:49:15 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:49:15 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:49:15 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:49:15 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:49:15 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:49:15 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:49:15 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:50:26 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (258.4ms) Rendered events/edit.html.erb within layouts/application (261.3ms) Completed 200 OK in 387ms (Views: 379.1ms | ActiveRecord: 0.3ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:50:26 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:50:26 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:50:26 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:50:26 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:50:26 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:50:26 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:50:26 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:50:26 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:50:26 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:51:09 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (241.4ms) Rendered events/edit.html.erb within layouts/application (244.0ms) Completed 200 OK in 365ms (Views: 356.4ms | ActiveRecord: 0.3ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:51:10 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:51:10 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:51:10 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:51:10 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:51:10 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:51:10 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:51:10 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:51:10 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:51:10 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:51:12 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (6.5ms) Rendered events/edit.html.erb within layouts/application (7.0ms) Completed 200 OK in 28ms (Views: 27.7ms | ActiveRecord: 0.1ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:51:12 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:51:12 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:51:12 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:51:12 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:51:12 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:51:12 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:51:12 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:51:12 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:51:12 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:54:41 +0200 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (253.1ms) Rendered events/edit.html.erb within layouts/application (255.8ms) Completed 200 OK in 392ms (Views: 382.0ms | ActiveRecord: 0.4ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:54:42 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:54:42 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:54:42 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:54:42 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:54:42 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:54:42 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:54:42 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:54:42 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:54:42 +0200 Started GET "/events/1/edit" for ::1 at 2015-04-22 15:54:45 +0200 Processing by EventsController#edit as HTML Parameters: {"id"=>"1"} Event Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 1]] Rendered events/_form.html.erb (6.7ms) Rendered events/edit.html.erb within layouts/application (7.4ms) Completed 200 OK in 26ms (Views: 25.1ms | ActiveRecord: 0.1ms) Started GET "/assets/bootstrap/dist/css/bootstrap.min.self-2c354d7c0179bd35563b93633b23ac5fb07c67d531d40a75695bacbd0eadb799.css?body=1" for ::1 at 2015-04-22 15:54:45 +0200 Started GET "/assets/moment/min/moment.min.self-6f637d0e852d354dfd6c614343dc9cc4610b2872c5a2ae5799fab526de293cf5.js?body=1" for ::1 at 2015-04-22 15:54:45 +0200 Started GET "/assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" for ::1 at 2015-04-22 15:54:45 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.self-7e1c259d30ec4e02e9b8a2fc33785291abbe6cca6fbdd10b2d04d2b7c8c4d2cb.css?body=1" for ::1 at 2015-04-22 15:54:45 +0200 Started GET "/assets/jquery/dist/jquery.min.self-6806c88afe0840c35208894c4ceba911154f696b624614b30b884298c2c3e00d.js?body=1" for ::1 at 2015-04-22 15:54:45 +0200 Started GET "/assets/moment/min/locales.min.self-54dae4d1b5de1b53bda255263a34b97e29375ac7abe075fa1e7fb2a7a38fbed1.js?body=1" for ::1 at 2015-04-22 15:54:45 +0200 Started GET "/assets/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.self-dc0c61517fb305398fd5f4a643f79b0076469bdced83d2e6654770a81e6a1cfd.js?body=1" for ::1 at 2015-04-22 15:54:45 +0200 Started GET "/assets/events.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-22 15:54:45 +0200 Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-04-22 15:54:45 +0200