diff --git a/.idea/rijeci.iml b/.idea/rijeci.iml
index c9990ce..239dcc9 100644
--- a/.idea/rijeci.iml
+++ b/.idea/rijeci.iml
@@ -175,6 +175,7 @@
+
@@ -183,7 +184,7 @@
-
+
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index b52901b..3e3d1ac 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -12,7 +12,7 @@
-
+
@@ -30,7 +30,16 @@
-
+
+
+
+
+
+
+
+
+
+
@@ -39,16 +48,25 @@
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
@@ -57,43 +75,7 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
@@ -102,7 +84,7 @@
-
+
@@ -111,7 +93,16 @@
-
+
+
+
+
+
+
+
+
+
+
@@ -137,7 +128,6 @@
-
@@ -148,22 +138,24 @@
-
+
+
+
+
-
-
+
+
-
-
+
@@ -192,8 +184,8 @@
-
+
@@ -257,102 +249,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -412,24 +308,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -448,28 +326,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -505,6 +361,7 @@
+
@@ -713,7 +570,7 @@
-
+
@@ -721,7 +578,7 @@
-
+
@@ -755,20 +612,44 @@
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -806,9 +687,7 @@
-
-
-
+
@@ -871,13 +750,6 @@
-
-
-
-
-
-
-
@@ -943,44 +815,17 @@
-
-
-
+
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
@@ -988,6 +833,42 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -995,51 +876,51 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Gemfile b/Gemfile
index e2b69c4..3345eb7 100644
--- a/Gemfile
+++ b/Gemfile
@@ -34,7 +34,7 @@ end
gem 'rack-cors', :require => 'rack/cors'
-gem 'ridc'
+gem 'ridc', '~> 0.0.7'
# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.1.2'
diff --git a/Gemfile.lock b/Gemfile.lock
index 870fb54..791dee3 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -52,6 +52,7 @@ GEM
mime-types (1.25.1)
minitest (4.7.5)
multi_json (1.8.2)
+ oj (2.4.0)
polyglot (0.3.3)
rack (1.5.2)
rack-cors (0.2.9)
@@ -73,7 +74,9 @@ GEM
rake (10.1.0)
rdoc (3.12.2)
json (~> 1.4)
- ridc (0.0.5)
+ ridc (0.0.7)
+ multi_json (~> 1.8.2)
+ oj (~> 2.4.0)
sass (3.2.12)
sass-rails (4.0.1)
railties (>= 4.0.0, < 5.0)
@@ -115,7 +118,7 @@ DEPENDENCIES
jquery-rails
rack-cors
rails (= 4.0.1)
- ridc
+ ridc (~> 0.0.7)
sass-rails (~> 4.0.0)
sdoc
sqlite3
diff --git a/app/controllers/guesses_controller.rb b/app/controllers/guesses_controller.rb
index 1aa687b..4d3037e 100644
--- a/app/controllers/guesses_controller.rb
+++ b/app/controllers/guesses_controller.rb
@@ -7,6 +7,7 @@ class GuessesController < ApplicationController
# GET /guesses.json
def index
@guesses = Guess.all.order("created_at DESC")
+ Rails.logger.info("Showing guesses!")
end
@@ -18,6 +19,7 @@ class GuessesController < ApplicationController
@guess.definition = params[:definition]
Rails.logger.debug(params.inspect)
+
respond_to do |format|
if @guess.save
format.json { render action: 'show', status: :created, location: @guess }
diff --git a/log/development.log b/log/development.log
index e8b3fb8..cc0c891 100644
--- a/log/development.log
+++ b/log/development.log
@@ -2943,3 +2943,8631 @@ ActionView::Template::Error (undefined local variable or method `guess' for #<#<
Rendered /Users/senaduka/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
Rendered /Users/senaduka/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.7ms)
Rendered /Users/senaduka/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (46.3ms)
+
+
+RIDC: Getting the sender.
+RIDC: Getting the sender.
+
+
+RIDC: Getting the sender.
+RIDC: Getting the sender.
+
+
+RIDC: Getting the sender.
+RIDC: Getting the sender.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/guesses" for 127.0.0.1 at 2013-12-11 06:34:33 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Processing by GuessesController#index as HTML
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[35mGuess Load (0.4ms)[0m SELECT "guesses".* FROM "guesses" ORDER BY created_at DESC
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ Rendered guesses/index.html.erb within layouts/application (106.9ms)
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Completed 200 OK in 698ms (Views: 622.7ms | ActiveRecord: 0.7ms)
+RIDC: Getting the sender.
+RIDC: Loading event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/guesses" for 127.0.0.1 at 2013-12-11 06:49:21 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Processing by GuessesController#index as HTML
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[35mGuess Load (0.4ms)[0m SELECT "guesses".* FROM "guesses" ORDER BY created_at DESC
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ Rendered guesses/index.html.erb within layouts/application (31.8ms)
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Completed 200 OK in 240ms (Views: 170.6ms | ActiveRecord: 0.8ms)
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/guesses" for 127.0.0.1 at 2013-12-12 06:27:08 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Getting the sender.
+RIDC: Loading event.
+ArgumentError: wrong number of arguments (0 for 5): SELECT name
+ FROM sqlite_master
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
+ AND name = "schema_migrations"
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+ActiveRecord::StatementInvalid (ArgumentError: wrong number of arguments (0 for 5): SELECT name
+ FROM sqlite_master
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
+ AND name = "schema_migrations"):
+ activesupport (4.0.1) lib/active_support/notifications/instrumenter.rb:50:in `initialize'
+ ridc (0.0.7) lib/ridc.rb:18:in `new'
+ ridc (0.0.7) lib/ridc.rb:18:in `block (2 levels) in '
+ activesupport (4.0.1) lib/active_support/notifications/fanout.rb:125:in `call'
+ activesupport (4.0.1) lib/active_support/notifications/fanout.rb:125:in `finish'
+ activesupport (4.0.1) lib/active_support/notifications/fanout.rb:139:in `finish'
+ activesupport (4.0.1) lib/active_support/notifications/fanout.rb:40:in `block in finish'
+ activesupport (4.0.1) lib/active_support/notifications/fanout.rb:40:in `each'
+ activesupport (4.0.1) lib/active_support/notifications/fanout.rb:40:in `finish'
+ activesupport (4.0.1) lib/active_support/notifications/instrumenter.rb:36:in `finish'
+ activesupport (4.0.1) lib/active_support/notifications/instrumenter.rb:25:in `instrument'
+ activerecord (4.0.1) lib/active_record/connection_adapters/abstract_adapter.rb:430:in `log'
+ activerecord (4.0.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:295:in `exec_query'
+ activerecord (4.0.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:388:in `tables'
+ activerecord (4.0.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:394:in `table_exists?'
+ activerecord (4.0.1) lib/active_record/migration.rb:792:in `current_version'
+ activerecord (4.0.1) lib/active_record/migration.rb:800:in `needs_migration?'
+ activerecord (4.0.1) lib/active_record/migration.rb:379:in `check_pending!'
+ activerecord (4.0.1) lib/active_record/migration.rb:366:in `call'
+ actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
+ activesupport (4.0.1) lib/active_support/callbacks.rb:373:in `_run__4173353007481961276__call__callbacks'
+ activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
+ actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
+ actionpack (4.0.1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
+ actionpack (4.0.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
+ ridc (0.0.7) lib/exception_reporter.rb:9:in `call'
+ actionpack (4.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ actionpack (4.0.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
+ railties (4.0.1) lib/rails/rack/logger.rb:38:in `call_app'
+ railties (4.0.1) lib/rails/rack/logger.rb:22:in `call'
+ actionpack (4.0.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
+ activesupport (4.0.1) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
+ actionpack (4.0.1) lib/action_dispatch/middleware/static.rb:64:in `call'
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
+ railties (4.0.1) lib/rails/engine.rb:511:in `call'
+ railties (4.0.1) lib/rails/application.rb:97:in `call'
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
+ /Users/senaduka/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
+ /Users/senaduka/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
+ /Users/senaduka/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
+
+
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/guesses" for 127.0.0.1 at 2013-12-12 06:28:25 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Getting the sender.
+RIDC: Loading event.
+ArgumentError: wrong number of arguments (0 for 5): SELECT name
+ FROM sqlite_master
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
+ AND name = "schema_migrations"
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+ActiveRecord::StatementInvalid (ArgumentError: wrong number of arguments (0 for 5): SELECT name
+ FROM sqlite_master
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
+ AND name = "schema_migrations"):
+ activesupport (4.0.1) lib/active_support/notifications/instrumenter.rb:50:in `initialize'
+ ridc (0.0.7) lib/ridc.rb:18:in `new'
+ ridc (0.0.7) lib/ridc.rb:18:in `block (2 levels) in '
+ activesupport (4.0.1) lib/active_support/notifications/fanout.rb:125:in `call'
+ activesupport (4.0.1) lib/active_support/notifications/fanout.rb:125:in `finish'
+ activesupport (4.0.1) lib/active_support/notifications/fanout.rb:139:in `finish'
+ activesupport (4.0.1) lib/active_support/notifications/fanout.rb:40:in `block in finish'
+ activesupport (4.0.1) lib/active_support/notifications/fanout.rb:40:in `each'
+ activesupport (4.0.1) lib/active_support/notifications/fanout.rb:40:in `finish'
+ activesupport (4.0.1) lib/active_support/notifications/instrumenter.rb:36:in `finish'
+ activesupport (4.0.1) lib/active_support/notifications/instrumenter.rb:25:in `instrument'
+ activerecord (4.0.1) lib/active_record/connection_adapters/abstract_adapter.rb:430:in `log'
+ activerecord (4.0.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:295:in `exec_query'
+ activerecord (4.0.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:388:in `tables'
+ activerecord (4.0.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:394:in `table_exists?'
+ activerecord (4.0.1) lib/active_record/migration.rb:792:in `current_version'
+ activerecord (4.0.1) lib/active_record/migration.rb:800:in `needs_migration?'
+ activerecord (4.0.1) lib/active_record/migration.rb:379:in `check_pending!'
+ activerecord (4.0.1) lib/active_record/migration.rb:366:in `call'
+ actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
+ activesupport (4.0.1) lib/active_support/callbacks.rb:373:in `_run__3950319741884743556__call__callbacks'
+ activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
+ actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
+ actionpack (4.0.1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
+ actionpack (4.0.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
+ ridc (0.0.7) lib/exception_reporter.rb:9:in `call'
+ actionpack (4.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
+ actionpack (4.0.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
+ railties (4.0.1) lib/rails/rack/logger.rb:38:in `call_app'
+ railties (4.0.1) lib/rails/rack/logger.rb:22:in `call'
+ actionpack (4.0.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
+ activesupport (4.0.1) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
+ actionpack (4.0.1) lib/action_dispatch/middleware/static.rb:64:in `call'
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
+ railties (4.0.1) lib/rails/engine.rb:511:in `call'
+ railties (4.0.1) lib/rails/application.rb:97:in `call'
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
+ /Users/senaduka/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
+ /Users/senaduka/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
+ /Users/senaduka/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
+
+
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/guesses" for 127.0.0.1 at 2013-12-12 06:29:17 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+Connection refused - connect(2)
+"sql.active_record"
+"2013-12-12T06:29:18+01:00"
+"2013-12-12T06:29:18+01:00"
+"421c7f47882360f45a1e"
+{"sql":" SELECT name\n FROM sqlite_master\n WHERE type = 'table' AND NOT name = 'sqlite_sequence'\n AND name = \"schema_migrations\"","name":"SCHEMA","connection_id":70352149364440,"binds":[]}
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+"sql.active_record"
+"2013-12-12T06:29:18+01:00"
+"2013-12-12T06:29:18+01:00"
+"421c7f47882360f45a1e"
+{"sql":"SELECT \"schema_migrations\".* FROM \"schema_migrations\"","name":"ActiveRecord::SchemaMigration Load","connection_id":70352149364440,"binds":[]}
+RIDC: Getting the sender.
+RIDC: Loading event.
+"sql.active_record"
+"2013-12-12T06:29:18+01:00"
+"2013-12-12T06:29:18+01:00"
+"421c7f47882360f45a1e"
+{"sql":"PRAGMA table_info(\"schema_migrations\")","name":"SCHEMA","connection_id":70352149364440,"binds":[]}
+RIDC: Getting the sender.
+RIDC: Loading event.
+"sql.active_record"
+"2013-12-12T06:29:18+01:00"
+"2013-12-12T06:29:18+01:00"
+"421c7f47882360f45a1e"
+{"sql":" SELECT name\n FROM sqlite_master\n WHERE type = 'table' AND NOT name = 'sqlite_sequence'\n AND name = \"schema_migrations\"","name":"SCHEMA","connection_id":70352149364440,"binds":[]}
+RIDC: Getting the sender.
+RIDC: Loading event.
+"sql.active_record"
+"2013-12-12T06:29:18+01:00"
+"2013-12-12T06:29:18+01:00"
+"421c7f47882360f45a1e"
+{"sql":"PRAGMA table_info(\"schema_migrations\")","name":"SCHEMA","connection_id":70352149364440,"binds":[]}
+RIDC: Getting the sender.
+RIDC: Loading event.
+"start_processing.action_controller"
+"2013-12-12T06:29:18+01:00"
+"2013-12-12T06:29:18+01:00"
+"421c7f47882360f45a1e"
+{"controller":"GuessesController","action":"index","params":{"action":"index","controller":"guesses"},"format":"html","method":"GET","path":"/guesses"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+Processing by GuessesController#index as HTML
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[35mGuess Load (2.2ms)[0m SELECT "guesses".* FROM "guesses" ORDER BY created_at DESC
+"sql.active_record"
+"2013-12-12T06:29:18+01:00"
+"2013-12-12T06:29:18+01:00"
+"421c7f47882360f45a1e"
+{"sql":"SELECT \"guesses\".* FROM \"guesses\" ORDER BY created_at DESC","name":"Guess Load","connection_id":70352149364440,"binds":[]}
+RIDC: Getting the sender.
+RIDC: Loading event.
+"sql.active_record"
+"2013-12-12T06:29:18+01:00"
+"2013-12-12T06:29:18+01:00"
+"421c7f47882360f45a1e"
+{"sql":"PRAGMA table_info(\"guesses\")","name":"SCHEMA","connection_id":70352149364440,"binds":[]}
+RIDC: Getting the sender.
+RIDC: Loading event.
+"sql.active_record"
+"2013-12-12T06:29:18+01:00"
+"2013-12-12T06:29:18+01:00"
+"421c7f47882360f45a1e"
+{"sql":" SELECT name\n FROM sqlite_master\n WHERE type = 'table' AND NOT name = 'sqlite_sequence'\n AND name = \"guesses\"","name":"SCHEMA","connection_id":70352149364440,"binds":[]}
+RIDC: Getting the sender.
+RIDC: Loading event.
+"sql.active_record"
+"2013-12-12T06:29:18+01:00"
+"2013-12-12T06:29:18+01:00"
+"421c7f47882360f45a1e"
+{"sql":"PRAGMA table_info(\"guesses\")","name":"SCHEMA","connection_id":70352149364440,"binds":[]}
+RIDC: Getting the sender.
+RIDC: Loading event.
+"!render_template.action_view"
+"2013-12-12T06:29:18+01:00"
+"2013-12-12T06:29:18+01:00"
+"421c7f47882360f45a1e"
+{"virtual_path":"guesses/index","identifier":"/Users/senaduka/Dropbox/source/usinc/rijeci/app/views/guesses/index.html.erb"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+"render_template.action_view"
+"2013-12-12T06:29:18+01:00"
+"2013-12-12T06:29:18+01:00"
+"421c7f47882360f45a1e"
+{"identifier":"/Users/senaduka/Dropbox/source/usinc/rijeci/app/views/guesses/index.html.erb","layout":"layouts/application"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ Rendered guesses/index.html.erb within layouts/application (84.3ms)
+"!render_template.action_view"
+"2013-12-12T06:29:18+01:00"
+"2013-12-12T06:29:18+01:00"
+"421c7f47882360f45a1e"
+{"virtual_path":"layouts/application","identifier":"/Users/senaduka/Dropbox/source/usinc/rijeci/app/views/layouts/application.html.erb"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+"process_action.action_controller"
+"2013-12-12T06:29:18+01:00"
+"2013-12-12T06:29:18+01:00"
+"421c7f47882360f45a1e"
+{"controller":"GuessesController","action":"index","params":{"action":"index","controller":"guesses"},"format":"html","method":"GET","path":"/guesses","status":200,"view_runtime":431.067,"db_runtime":2.5980000000000003}
+RIDC: Getting the sender.
+RIDC: Loading event.
+Completed 200 OK in 534ms (Views: 431.1ms | ActiveRecord: 2.6ms)
+"request.action_dispatch"
+"2013-12-12T06:29:17+01:00"
+"2013-12-12T06:29:18+01:00"
+"421c7f47882360f45a1e"
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/guesses" for 127.0.0.1 at 2013-12-12 06:34:56 +0100
+"start_processing.action_controller"
+"2013-12-12T06:34:56+01:00"
+"2013-12-12T06:34:56+01:00"
+"81de18f5ca90c5a01c15"
+{"controller":"GuessesController","action":"index","params":{"action":"index","controller":"guesses"},"format":"html","method":"GET","path":"/guesses"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+Processing by GuessesController#index as HTML
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[36mGuess Load (0.3ms)[0m [1mSELECT "guesses".* FROM "guesses" ORDER BY created_at DESC[0m
+"sql.active_record"
+"2013-12-12T06:34:56+01:00"
+"2013-12-12T06:34:56+01:00"
+"421c7f47882360f45a1e"
+{"sql":"SELECT \"guesses\".* FROM \"guesses\" ORDER BY created_at DESC","name":"Guess Load","connection_id":70352149364440,"binds":[]}
+RIDC: Getting the sender.
+RIDC: Loading event.
+"!render_template.action_view"
+RIDC: Sending all events
+"2013-12-12T06:34:56+01:00"
+RIDC: Sending event.
+"2013-12-12T06:34:56+01:00"
+"81de18f5ca90c5a01c15"
+{"virtual_path":"guesses/index","identifier":"/Users/senaduka/Dropbox/source/usinc/rijeci/app/views/guesses/index.html.erb"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+"render_template.action_view"
+"2013-12-12T06:34:56+01:00"
+"2013-12-12T06:34:56+01:00"
+"81de18f5ca90c5a01c15"
+{"identifier":"/Users/senaduka/Dropbox/source/usinc/rijeci/app/views/guesses/index.html.erb","layout":"layouts/application"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ Rendered guesses/index.html.erb within layouts/application (15.0ms)
+"!render_template.action_view"
+"2013-12-12T06:34:56+01:00"
+"2013-12-12T06:34:56+01:00"
+"81de18f5ca90c5a01c15"
+{"virtual_path":"layouts/application","identifier":"/Users/senaduka/Dropbox/source/usinc/rijeci/app/views/layouts/application.html.erb"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+"process_action.action_controller"
+"2013-12-12T06:34:56+01:00"
+"2013-12-12T06:34:56+01:00"
+"81de18f5ca90c5a01c15"
+{"controller":"GuessesController","action":"index","params":{"action":"index","controller":"guesses"},"format":"html","method":"GET","path":"/guesses","status":200,"view_runtime":21.01,"db_runtime":0.326}
+RIDC: Getting the sender.
+RIDC: Loading event.
+Completed 200 OK in 24ms (Views: 21.0ms | ActiveRecord: 0.3ms)
+"request.action_dispatch"
+"2013-12-12T06:34:56+01:00"
+"2013-12-12T06:34:56+01:00"
+"81de18f5ca90c5a01c15"
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/guesses" for 127.0.0.1 at 2013-12-12 06:34:59 +0100
+"start_processing.action_controller"
+RIDC: Sending all events
+"2013-12-12T06:34:59+01:00"
+RIDC: Sending event.
+"2013-12-12T06:34:59+01:00"
+"922ae040b170398f75c7"
+{"controller":"GuessesController","action":"index","params":{"action":"index","controller":"guesses"},"format":"html","method":"GET","path":"/guesses"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+Processing by GuessesController#index as HTML
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[35mGuess Load (0.3ms)[0m SELECT "guesses".* FROM "guesses" ORDER BY created_at DESC
+"sql.active_record"
+"2013-12-12T06:34:59+01:00"
+"2013-12-12T06:34:59+01:00"
+"421c7f47882360f45a1e"
+{"sql":"SELECT \"guesses\".* FROM \"guesses\" ORDER BY created_at DESC","name":"Guess Load","connection_id":70352149364440,"binds":[]}
+RIDC: Getting the sender.
+RIDC: Loading event.
+"!render_template.action_view"
+"2013-12-12T06:34:59+01:00"
+"2013-12-12T06:34:59+01:00"
+"922ae040b170398f75c7"
+{"virtual_path":"guesses/index","identifier":"/Users/senaduka/Dropbox/source/usinc/rijeci/app/views/guesses/index.html.erb"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+"render_template.action_view"
+"2013-12-12T06:34:59+01:00"
+"2013-12-12T06:34:59+01:00"
+"922ae040b170398f75c7"
+{"identifier":"/Users/senaduka/Dropbox/source/usinc/rijeci/app/views/guesses/index.html.erb","layout":"layouts/application"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ Rendered guesses/index.html.erb within layouts/application (12.5ms)
+"!render_template.action_view"
+"2013-12-12T06:34:59+01:00"
+"2013-12-12T06:34:59+01:00"
+"922ae040b170398f75c7"
+{"virtual_path":"layouts/application","identifier":"/Users/senaduka/Dropbox/source/usinc/rijeci/app/views/layouts/application.html.erb"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+"process_action.action_controller"
+"2013-12-12T06:34:59+01:00"
+"2013-12-12T06:34:59+01:00"
+"922ae040b170398f75c7"
+{"controller":"GuessesController","action":"index","params":{"action":"index","controller":"guesses"},"format":"html","method":"GET","path":"/guesses","status":200,"view_runtime":42.211,"db_runtime":0.28600000000000003}
+RIDC: Getting the sender.
+RIDC: Loading event.
+Completed 200 OK in 45ms (Views: 42.2ms | ActiveRecord: 0.3ms)
+"request.action_dispatch"
+"2013-12-12T06:34:59+01:00"
+"2013-12-12T06:34:59+01:00"
+"922ae040b170398f75c7"
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/guesses" for 127.0.0.1 at 2013-12-12 06:35:01 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+"start_processing.action_controller"
+"2013-12-12T06:35:01+01:00"
+"2013-12-12T06:35:01+01:00"
+"9eb6231933d818e435f0"
+{"controller":"GuessesController","action":"index","params":{"action":"index","controller":"guesses"},"format":"html","method":"GET","path":"/guesses"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+Processing by GuessesController#index as HTML
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[36mGuess Load (0.3ms)[0m [1mSELECT "guesses".* FROM "guesses" ORDER BY created_at DESC[0m
+"sql.active_record"
+"2013-12-12T06:35:01+01:00"
+"2013-12-12T06:35:01+01:00"
+"421c7f47882360f45a1e"
+{"sql":"SELECT \"guesses\".* FROM \"guesses\" ORDER BY created_at DESC","name":"Guess Load","connection_id":70352149364440,"binds":[]}
+RIDC: Getting the sender.
+RIDC: Loading event.
+"!render_template.action_view"
+"2013-12-12T06:35:01+01:00"
+"2013-12-12T06:35:01+01:00"
+"9eb6231933d818e435f0"
+{"virtual_path":"guesses/index","identifier":"/Users/senaduka/Dropbox/source/usinc/rijeci/app/views/guesses/index.html.erb"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+"render_template.action_view"
+"2013-12-12T06:35:01+01:00"
+"2013-12-12T06:35:01+01:00"
+"9eb6231933d818e435f0"
+{"identifier":"/Users/senaduka/Dropbox/source/usinc/rijeci/app/views/guesses/index.html.erb","layout":"layouts/application"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ Rendered guesses/index.html.erb within layouts/application (54.5ms)
+"!render_template.action_view"
+"2013-12-12T06:35:01+01:00"
+"2013-12-12T06:35:01+01:00"
+"9eb6231933d818e435f0"
+{"virtual_path":"layouts/application","identifier":"/Users/senaduka/Dropbox/source/usinc/rijeci/app/views/layouts/application.html.erb"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+"process_action.action_controller"
+"2013-12-12T06:35:01+01:00"
+"2013-12-12T06:35:01+01:00"
+"9eb6231933d818e435f0"
+{"controller":"GuessesController","action":"index","params":{"action":"index","controller":"guesses"},"format":"html","method":"GET","path":"/guesses","status":200,"view_runtime":60.312000000000005,"db_runtime":0.29}
+RIDC: Getting the sender.
+RIDC: Loading event.
+Completed 200 OK in 63ms (Views: 60.3ms | ActiveRecord: 0.3ms)
+"request.action_dispatch"
+"2013-12-12T06:35:01+01:00"
+"2013-12-12T06:35:01+01:00"
+"9eb6231933d818e435f0"
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/guesses" for 127.0.0.1 at 2013-12-12 06:43:37 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+Connection refused - connect(2)
+{"sql":" SELECT name\n FROM sqlite_master\n WHERE type = 'table' AND NOT name = 'sqlite_sequence'\n AND name = \"schema_migrations\"","name":"SCHEMA","connection_id":70260377188820,"binds":[]}
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+{"sql":"SELECT \"schema_migrations\".* FROM \"schema_migrations\"","name":"ActiveRecord::SchemaMigration Load","connection_id":70260377188820,"binds":[]}
+RIDC: Getting the sender.
+RIDC: Loading event.
+{"sql":"PRAGMA table_info(\"schema_migrations\")","name":"SCHEMA","connection_id":70260377188820,"binds":[]}
+RIDC: Getting the sender.
+RIDC: Loading event.
+{"sql":" SELECT name\n FROM sqlite_master\n WHERE type = 'table' AND NOT name = 'sqlite_sequence'\n AND name = \"schema_migrations\"","name":"SCHEMA","connection_id":70260377188820,"binds":[]}
+RIDC: Getting the sender.
+RIDC: Loading event.
+{"sql":"PRAGMA table_info(\"schema_migrations\")","name":"SCHEMA","connection_id":70260377188820,"binds":[]}
+RIDC: Getting the sender.
+RIDC: Loading event.
+{"controller":"GuessesController","action":"index","params":{"action":"index","controller":"guesses"},"format":"html","method":"GET","path":"/guesses"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+Processing by GuessesController#index as HTML
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[35mGuess Load (0.4ms)[0m SELECT "guesses".* FROM "guesses" ORDER BY created_at DESC
+{"sql":"SELECT \"guesses\".* FROM \"guesses\" ORDER BY created_at DESC","name":"Guess Load","connection_id":70260377188820,"binds":[]}
+RIDC: Getting the sender.
+RIDC: Loading event.
+{"sql":"PRAGMA table_info(\"guesses\")","name":"SCHEMA","connection_id":70260377188820,"binds":[]}
+RIDC: Getting the sender.
+RIDC: Loading event.
+{"sql":" SELECT name\n FROM sqlite_master\n WHERE type = 'table' AND NOT name = 'sqlite_sequence'\n AND name = \"guesses\"","name":"SCHEMA","connection_id":70260377188820,"binds":[]}
+RIDC: Getting the sender.
+RIDC: Loading event.
+{"sql":"PRAGMA table_info(\"guesses\")","name":"SCHEMA","connection_id":70260377188820,"binds":[]}
+RIDC: Getting the sender.
+RIDC: Loading event.
+{"virtual_path":"guesses/index","identifier":"/Users/senaduka/Dropbox/source/usinc/rijeci/app/views/guesses/index.html.erb"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+{"identifier":"/Users/senaduka/Dropbox/source/usinc/rijeci/app/views/guesses/index.html.erb","layout":"layouts/application"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ Rendered guesses/index.html.erb within layouts/application (27.4ms)
+{"virtual_path":"layouts/application","identifier":"/Users/senaduka/Dropbox/source/usinc/rijeci/app/views/layouts/application.html.erb"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+{"controller":"GuessesController","action":"index","params":{"action":"index","controller":"guesses"},"format":"html","method":"GET","path":"/guesses","status":200,"view_runtime":152.064,"db_runtime":0.7639999999999999}
+RIDC: Getting the sender.
+RIDC: Loading event.
+Completed 200 OK in 221ms (Views: 152.1ms | ActiveRecord: 0.8ms)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/guesses" for 127.0.0.1 at 2013-12-12 06:46:04 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+Connection refused - connect(2)
+{"sql":" SELECT name\n FROM sqlite_master\n WHERE type = 'table' AND NOT name = 'sqlite_sequence'\n AND name = \"schema_migrations\"","name":"SCHEMA","connection_id":70255508091700,"binds":[]}
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+{"sql":"SELECT \"schema_migrations\".* FROM \"schema_migrations\"","name":"ActiveRecord::SchemaMigration Load","connection_id":70255508091700,"binds":[]}
+RIDC: Getting the sender.
+RIDC: Loading event.
+{"sql":"PRAGMA table_info(\"schema_migrations\")","name":"SCHEMA","connection_id":70255508091700,"binds":[]}
+RIDC: Getting the sender.
+RIDC: Loading event.
+{"sql":" SELECT name\n FROM sqlite_master\n WHERE type = 'table' AND NOT name = 'sqlite_sequence'\n AND name = \"schema_migrations\"","name":"SCHEMA","connection_id":70255508091700,"binds":[]}
+RIDC: Getting the sender.
+RIDC: Loading event.
+{"sql":"PRAGMA table_info(\"schema_migrations\")","name":"SCHEMA","connection_id":70255508091700,"binds":[]}
+RIDC: Getting the sender.
+RIDC: Loading event.
+{"controller":"GuessesController","action":"index","params":{"action":"index","controller":"guesses"},"format":"html","method":"GET","path":"/guesses"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+Processing by GuessesController#index as HTML
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[35mGuess Load (0.4ms)[0m SELECT "guesses".* FROM "guesses" ORDER BY created_at DESC
+{"sql":"SELECT \"guesses\".* FROM \"guesses\" ORDER BY created_at DESC","name":"Guess Load","connection_id":70255508091700,"binds":[]}
+RIDC: Getting the sender.
+RIDC: Loading event.
+{"sql":"PRAGMA table_info(\"guesses\")","name":"SCHEMA","connection_id":70255508091700,"binds":[]}
+RIDC: Getting the sender.
+RIDC: Loading event.
+{"sql":" SELECT name\n FROM sqlite_master\n WHERE type = 'table' AND NOT name = 'sqlite_sequence'\n AND name = \"guesses\"","name":"SCHEMA","connection_id":70255508091700,"binds":[]}
+RIDC: Getting the sender.
+RIDC: Loading event.
+{"sql":"PRAGMA table_info(\"guesses\")","name":"SCHEMA","connection_id":70255508091700,"binds":[]}
+RIDC: Getting the sender.
+RIDC: Loading event.
+{"virtual_path":"guesses/index","identifier":"/Users/senaduka/Dropbox/source/usinc/rijeci/app/views/guesses/index.html.erb"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+{"identifier":"/Users/senaduka/Dropbox/source/usinc/rijeci/app/views/guesses/index.html.erb","layout":"layouts/application"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ Rendered guesses/index.html.erb within layouts/application (25.0ms)
+{"virtual_path":"layouts/application","identifier":"/Users/senaduka/Dropbox/source/usinc/rijeci/app/views/layouts/application.html.erb"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+{"controller":"GuessesController","action":"index","params":{"action":"index","controller":"guesses"},"format":"html","method":"GET","path":"/guesses","status":200,"view_runtime":108.70799999999998,"db_runtime":0.662}
+RIDC: Getting the sender.
+RIDC: Loading event.
+Completed 200 OK in 174ms (Views: 108.7ms | ActiveRecord: 0.7ms)
+{"request":"#"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2013-12-12 06:46:05 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+{"request":"#"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/normalize.css?body=1" for 127.0.0.1 at 2013-12-12 06:46:05 +0100
+{"request":"#"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+Started GET "/assets/guesses.js?body=1" for 127.0.0.1 at 2013-12-12 06:46:05 +0100
+{"request":"#"}
+RIDC: Getting the sender.
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-12 06:46:05 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+{"request":"#"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-12 06:46:05 +0100
+{"request":"#"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-12 06:46:05 +0100
+{"request":"#"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+Started GET "/assets/solutions.js?body=1" for 127.0.0.1 at 2013-12-12 06:46:05 +0100
+{"request":"#"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+Started GET "/assets/jquery.min.js?body=1" for 127.0.0.1 at 2013-12-12 06:46:05 +0100
+{"request":"#"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-12 06:46:05 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+{"request":"#"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-12 06:46:05 +0100
+{"request":"#"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+Connection refused - connect(2)
+RIDC: Sending event.
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2013-12-12 06:46:05 +0100
+{"request":"#"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+Started GET "/assets/lodash.min.js?body=1" for 127.0.0.1 at 2013-12-12 06:46:05 +0100
+Connection refused - connect(2)
+RIDC: Sending event.
+{"request":"#"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+Started GET "/assets/results.js?body=1" for 127.0.0.1 at 2013-12-12 06:46:05 +0100
+{"request":"#"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+RIDC: Sending event.
+Connection refused - connect(2)
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+Started GET "/assets/oxygen700.woff" for 127.0.0.1 at 2013-12-12 06:46:05 +0100
+{"request":"#"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+Started GET "/assets/oxygen400.woff" for 127.0.0.1 at 2013-12-12 06:46:05 +0100
+Connection refused - connect(2)
+RIDC: Sending event.
+{"request":"#"}
+RIDC: Getting the sender.
+RIDC: Loading event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/guesses" for 127.0.0.1 at 2013-12-12 06:47:49 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Processing by GuessesController#index as HTML
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[35mGuess Load (0.4ms)[0m SELECT "guesses".* FROM "guesses" ORDER BY created_at DESC
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ Rendered guesses/index.html.erb within layouts/application (67.7ms)
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Completed 200 OK in 262ms (Views: 220.3ms | ActiveRecord: 0.8ms)
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-12 06:47:50 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-12 06:47:50 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-12 06:47:50 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+RIDC: Sending all events
+RIDC: Sending event.
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/guesses.js?body=1" for 127.0.0.1 at 2013-12-12 06:47:50 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2013-12-12 06:47:50 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/normalize.css?body=1" for 127.0.0.1 at 2013-12-12 06:47:50 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-12 06:47:50 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/lodash.min.js?body=1" for 127.0.0.1 at 2013-12-12 06:47:50 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery.min.js?body=1" for 127.0.0.1 at 2013-12-12 06:47:50 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2013-12-12 06:47:50 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/solutions.js?body=1" for 127.0.0.1 at 2013-12-12 06:47:50 +0100
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/results.js?body=1" for 127.0.0.1 at 2013-12-12 06:47:50 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-12 06:47:50 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/guesses" for 127.0.0.1 at 2013-12-12 06:50:36 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Processing by GuessesController#index as HTML
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[35mGuess Load (0.4ms)[0m SELECT "guesses".* FROM "guesses" ORDER BY created_at DESC
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ Rendered guesses/index.html.erb within layouts/application (62.4ms)
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Completed 200 OK in 271ms (Views: 233.1ms | ActiveRecord: 0.7ms)
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-12 06:50:37 +0100
+RIDC: Getting the sender.
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2013-12-12 06:50:37 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/normalize.css?body=1" for 127.0.0.1 at 2013-12-12 06:50:37 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+Connection refused - connect(2)
+RIDC: Sending event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-12 06:50:37 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-12 06:50:37 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery.min.js?body=1" for 127.0.0.1 at 2013-12-12 06:50:37 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/lodash.min.js?body=1" for 127.0.0.1 at 2013-12-12 06:50:37 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-12 06:50:37 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/guesses.js?body=1" for 127.0.0.1 at 2013-12-12 06:50:37 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending event.
+RIDC: Sending all events
+
+
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/results.js?body=1" for 127.0.0.1 at 2013-12-12 06:50:37 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+Connection refused - connect(2)
+RIDC: Sending event.
+RIDC: Sending all events
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+
+
+Connection refused - connect(2)
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2013-12-12 06:50:37 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-12 06:50:37 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/solutions.js?body=1" for 127.0.0.1 at 2013-12-12 06:50:37 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/guesses" for 127.0.0.1 at 2013-12-12 07:06:18 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[36mActiveRecord::SchemaMigration Load (0.7ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Processing by GuessesController#index as HTML
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[35mGuess Load (0.4ms)[0m SELECT "guesses".* FROM "guesses" ORDER BY created_at DESC
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ Rendered guesses/index.html.erb within layouts/application (67.4ms)
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Completed 200 OK in 441ms (Views: 307.4ms | ActiveRecord: 0.8ms)
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-12 07:06:19 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/normalize.css?body=1" for 127.0.0.1 at 2013-12-12 07:06:19 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2013-12-12 07:06:19 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/guesses.js?body=1" for 127.0.0.1 at 2013-12-12 07:06:19 +0100
+RIDC: Sending event.
+RIDC: Sending all events
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-12 07:06:19 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Connection refused - connect(2)
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-12 07:06:19 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery.min.js?body=1" for 127.0.0.1 at 2013-12-12 07:06:19 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/results.js?body=1" for 127.0.0.1 at 2013-12-12 07:06:19 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/solutions.js?body=1" for 127.0.0.1 at 2013-12-12 07:06:19 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/lodash.min.js?body=1" for 127.0.0.1 at 2013-12-12 07:06:19 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-12 07:06:19 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-12 07:06:19 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2013-12-12 07:06:19 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/guesses" for 127.0.0.1 at 2013-12-13 06:11:54 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Processing by GuessesController#index as HTML
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[35mGuess Load (0.4ms)[0m SELECT "guesses".* FROM "guesses" ORDER BY created_at DESC
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ Rendered guesses/index.html.erb within layouts/application (105.5ms)
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Completed 200 OK in 429ms (Views: 377.3ms | ActiveRecord: 0.7ms)
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-13 06:11:55 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2013-12-13 06:11:55 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/normalize.css?body=1" for 127.0.0.1 at 2013-12-13 06:11:55 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-13 06:11:55 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-13 06:11:55 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-13 06:11:55 +0100
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+RIDC: Sending event.
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/guesses.js?body=1" for 127.0.0.1 at 2013-12-13 06:11:55 +0100
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+RIDC: Sending all events
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+RIDC: Sending event.
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/lodash.min.js?body=1" for 127.0.0.1 at 2013-12-13 06:11:56 +0100
+RIDC: Sending all events
+RIDC: Getting the sender.
+RIDC: Sending event.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery.min.js?body=1" for 127.0.0.1 at 2013-12-13 06:11:56 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/results.js?body=1" for 127.0.0.1 at 2013-12-13 06:11:56 +0100
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+RIDC: Sending all events
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2013-12-13 06:11:56 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/solutions.js?body=1" for 127.0.0.1 at 2013-12-13 06:11:56 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-13 06:11:56 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/oxygen400.woff" for 127.0.0.1 at 2013-12-13 06:11:56 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/oxygen700.woff" for 127.0.0.1 at 2013-12-13 06:11:56 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Wrapping the rails logger!
+RIDC: Wrapped the rails logger!
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/guesses" for 127.0.0.1 at 2013-12-13 06:13:34 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Processing by GuessesController#index as HTML
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[35mGuess Load (0.4ms)[0m SELECT "guesses".* FROM "guesses" ORDER BY created_at DESC
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ Rendered guesses/index.html.erb within layouts/application (63.0ms)
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Completed 200 OK in 303ms (Views: 267.0ms | ActiveRecord: 0.7ms)
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-13 06:13:35 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-13 06:13:35 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/normalize.css?body=1" for 127.0.0.1 at 2013-12-13 06:13:35 +0100
+RIDC: Sending all events
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-13 06:13:35 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2013-12-13 06:13:35 +0100
+RIDC: Sending all events
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery.min.js?body=1" for 127.0.0.1 at 2013-12-13 06:13:35 +0100
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-13 06:13:35 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/guesses.js?body=1" for 127.0.0.1 at 2013-12-13 06:13:35 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/lodash.min.js?body=1" for 127.0.0.1 at 2013-12-13 06:13:36 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/results.js?body=1" for 127.0.0.1 at 2013-12-13 06:13:36 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/solutions.js?body=1" for 127.0.0.1 at 2013-12-13 06:13:36 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2013-12-13 06:13:36 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-13 06:13:36 +0100
+RIDC: Sending all events
+Connection refused - connect(2)
+RIDC: Sending event.
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/solutions" for 127.0.0.1 at 2013-12-13 06:13:50 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Processing by SolutionsController#index as HTML
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[36mSolution Load (0.4ms)[0m [1mSELECT "solutions".* FROM "solutions"[0m
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ Rendered solutions/index.html.erb within layouts/application (12.8ms)
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Completed 200 OK in 63ms (Views: 35.9ms | ActiveRecord: 0.7ms)
+RIDC: Getting the sender.
+RIDC: Loading event.
+Connection refused - connect(2)
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-13 06:13:51 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2013-12-13 06:13:51 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+RIDC: Sending all events
+
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/normalize.css?body=1" for 127.0.0.1 at 2013-12-13 06:13:51 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-13 06:13:51 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-13 06:13:51 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-13 06:13:51 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/guesses.js?body=1" for 127.0.0.1 at 2013-12-13 06:13:51 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery.min.js?body=1" for 127.0.0.1 at 2013-12-13 06:13:51 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/lodash.min.js?body=1" for 127.0.0.1 at 2013-12-13 06:13:51 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/results.js?body=1" for 127.0.0.1 at 2013-12-13 06:13:51 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/solutions.js?body=1" for 127.0.0.1 at 2013-12-13 06:13:51 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2013-12-13 06:13:51 +0100
+RIDC: Getting the sender.
+Connection refused - connect(2)
+RIDC: Sending event.
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Loading event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-13 06:13:51 +0100
+RIDC: Sending all events
+RIDC: Getting the sender.
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Loading event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Wrapping the rails logger!
+RIDC: Wrapped the rails logger!
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/solutions" for 127.0.0.1 at 2013-12-13 06:16:05 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Processing by SolutionsController#index as HTML
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[35mSolution Load (0.3ms)[0m SELECT "solutions".* FROM "solutions"
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ Rendered solutions/index.html.erb within layouts/application (67.4ms)
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Completed 200 OK in 310ms (Views: 230.9ms | ActiveRecord: 0.6ms)
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-13 06:16:06 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/normalize.css?body=1" for 127.0.0.1 at 2013-12-13 06:16:06 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2013-12-13 06:16:06 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-13 06:16:06 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-13 06:16:06 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery.min.js?body=1" for 127.0.0.1 at 2013-12-13 06:16:06 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/guesses.js?body=1" for 127.0.0.1 at 2013-12-13 06:16:06 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-13 06:16:06 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/lodash.min.js?body=1" for 127.0.0.1 at 2013-12-13 06:16:06 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/results.js?body=1" for 127.0.0.1 at 2013-12-13 06:16:06 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/solutions.js?body=1" for 127.0.0.1 at 2013-12-13 06:16:06 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-13 06:16:06 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+RIDC: Getting the sender.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2013-12-13 06:16:06 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+RIDC: Sending event.
+Connection refused - connect(2)
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/solutions" for 127.0.0.1 at 2013-12-13 06:21:13 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+Processing by SolutionsController#index as HTML
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[36mSolution Load (0.4ms)[0m [1mSELECT "solutions".* FROM "solutions"[0m
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ Rendered solutions/index.html.erb within layouts/application (3.8ms)
+RIDC: Getting the sender.
+RIDC: Sending all events
+RIDC: Loading event.
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Completed 200 OK in 12ms (Views: 10.6ms | ActiveRecord: 0.4ms)
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-13 06:21:13 +0100
+RIDC: Sending all events
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2013-12-13 06:21:13 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/normalize.css?body=1" for 127.0.0.1 at 2013-12-13 06:21:13 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-13 06:21:13 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-13 06:21:13 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/guesses.js?body=1" for 127.0.0.1 at 2013-12-13 06:21:13 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-13 06:21:13 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery.min.js?body=1" for 127.0.0.1 at 2013-12-13 06:21:13 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/lodash.min.js?body=1" for 127.0.0.1 at 2013-12-13 06:21:13 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/results.js?body=1" for 127.0.0.1 at 2013-12-13 06:21:13 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2013-12-13 06:21:13 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/solutions.js?body=1" for 127.0.0.1 at 2013-12-13 06:21:13 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-13 06:21:14 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Wrapping the rails logger!
+RIDC: Wrapped the rails logger!
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/solutions" for 127.0.0.1 at 2013-12-13 06:23:14 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Processing by SolutionsController#index as HTML
+undefined method `chunked=' for #
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[35mSolution Load (0.4ms)[0m SELECT "solutions".* FROM "solutions"
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ Rendered solutions/index.html.erb within layouts/application (27.7ms)
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Completed 200 OK in 231ms (Views: 172.9ms | ActiveRecord: 0.8ms)
+RIDC: Getting the sender.
+RIDC: Loading event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Wrapping the rails logger!
+RIDC: Wrapped the rails logger!
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/solutions" for 127.0.0.1 at 2013-12-13 06:26:00 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Processing by SolutionsController#index as HTML
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[35mSolution Load (0.3ms)[0m SELECT "solutions".* FROM "solutions"
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ Rendered solutions/index.html.erb within layouts/application (22.1ms)
+undefined method `chunked=' for #
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Completed 200 OK in 155ms (Views: 120.3ms | ActiveRecord: 0.6ms)
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2013-12-13 06:26:00 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/normalize.css?body=1" for 127.0.0.1 at 2013-12-13 06:26:01 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+RIDC: Sending all events
+Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-13 06:26:01 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Sending event.
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-13 06:26:01 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery.min.js?body=1" for 127.0.0.1 at 2013-12-13 06:26:01 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-13 06:26:01 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/guesses.js?body=1" for 127.0.0.1 at 2013-12-13 06:26:01 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-13 06:26:01 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/lodash.min.js?body=1" for 127.0.0.1 at 2013-12-13 06:26:01 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/results.js?body=1" for 127.0.0.1 at 2013-12-13 06:26:01 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/solutions.js?body=1" for 127.0.0.1 at 2013-12-13 06:26:01 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2013-12-13 06:26:01 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-13 06:26:01 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/guesses" for 127.0.0.1 at 2013-12-13 06:32:41 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+Processing by GuessesController#index as HTML
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[36mGuess Load (0.4ms)[0m [1mSELECT "guesses".* FROM "guesses" ORDER BY created_at DESC[0m
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Sending all events
+RIDC: Loading event.
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ Rendered guesses/index.html.erb within layouts/application (19.7ms)
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Completed 200 OK in 70ms (Views: 24.8ms | ActiveRecord: 0.7ms)
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-13 06:32:41 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2013-12-13 06:32:41 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/normalize.css?body=1" for 127.0.0.1 at 2013-12-13 06:32:41 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-13 06:32:41 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-13 06:32:41 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-13 06:32:41 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/guesses.js?body=1" for 127.0.0.1 at 2013-12-13 06:32:41 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/lodash.min.js?body=1" for 127.0.0.1 at 2013-12-13 06:32:41 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/results.js?body=1" for 127.0.0.1 at 2013-12-13 06:32:41 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery.min.js?body=1" for 127.0.0.1 at 2013-12-13 06:32:41 +0100
+RIDC: Getting the sender.
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2013-12-13 06:32:41 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/solutions.js?body=1" for 127.0.0.1 at 2013-12-13 06:32:41 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-13 06:32:42 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/oxygen400.woff" for 127.0.0.1 at 2013-12-13 06:32:42 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/oxygen700.woff" for 127.0.0.1 at 2013-12-13 06:32:42 +0100
+RIDC: Sending all events
+undefined method `chunked=' for #
+RIDC: Sending event.
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/guesses" for 127.0.0.1 at 2013-12-13 06:35:39 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+Processing by GuessesController#index as HTML
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[35mGuess Load (0.3ms)[0m SELECT "guesses".* FROM "guesses" ORDER BY created_at DESC
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ Rendered guesses/index.html.erb within layouts/application (12.7ms)
+RIDC: Getting the sender.
+RIDC: Sending all events
+RIDC: Loading event.
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Completed 200 OK in 21ms (Views: 19.8ms | ActiveRecord: 0.3ms)
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-13 06:35:39 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2013-12-13 06:35:39 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/normalize.css?body=1" for 127.0.0.1 at 2013-12-13 06:35:39 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-13 06:35:39 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-13 06:35:39 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-13 06:35:39 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/guesses.js?body=1" for 127.0.0.1 at 2013-12-13 06:35:39 +0100
+RIDC: Sending all events
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery.min.js?body=1" for 127.0.0.1 at 2013-12-13 06:35:39 +0100
+RIDC: Getting the sender.
+RIDC: Sending all events
+RIDC: Loading event.
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/lodash.min.js?body=1" for 127.0.0.1 at 2013-12-13 06:35:39 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/results.js?body=1" for 127.0.0.1 at 2013-12-13 06:35:39 +0100
+RIDC: Getting the sender.
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/solutions.js?body=1" for 127.0.0.1 at 2013-12-13 06:35:40 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2013-12-13 06:35:40 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-13 06:35:40 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Wrapping the rails logger!
+RIDC: Wrapped the rails logger!
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/guesses" for 127.0.0.1 at 2013-12-13 06:36:42 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+undefined method `chunked=' for #
+RIDC: Sending event.
+RIDC: Loading event.
+Processing by GuessesController#index as HTML
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[35mGuess Load (0.4ms)[0m SELECT "guesses".* FROM "guesses" ORDER BY created_at DESC
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ Rendered guesses/index.html.erb within layouts/application (36.3ms)
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Completed 200 OK in 201ms (Views: 143.4ms | ActiveRecord: 0.8ms)
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-13 06:36:43 +0100
+RIDC: Getting the sender.
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-13 06:36:43 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-13 06:36:43 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2013-12-13 06:36:43 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-13 06:36:43 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/normalize.css?body=1" for 127.0.0.1 at 2013-12-13 06:36:43 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/guesses.js?body=1" for 127.0.0.1 at 2013-12-13 06:36:43 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/jquery.min.js?body=1" for 127.0.0.1 at 2013-12-13 06:36:43 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/lodash.min.js?body=1" for 127.0.0.1 at 2013-12-13 06:36:43 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/results.js?body=1" for 127.0.0.1 at 2013-12-13 06:36:43 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/solutions.js?body=1" for 127.0.0.1 at 2013-12-13 06:36:43 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2013-12-13 06:36:43 +0100
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Sending all events
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-13 06:36:43 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+RIDC: Getting the sender.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+RIDC: Loading event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Wrapping the rails logger!
+RIDC: Wrapped the rails logger!
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Wrapping the rails logger!
+RIDC: Wrapped the rails logger!
+
+
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Starting sender thread.
+Started GET "/guesses" for 127.0.0.1 at 2013-12-13 06:59:39 +0100
+RIDC: Sending all events
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Processing by GuessesController#index as HTML
+undefined method `chunked=' for #
+RIDC: Sending event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ [1m[35mGuess Load (0.4ms)[0m SELECT "guesses".* FROM "guesses" ORDER BY created_at DESC
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+ Rendered guesses/index.html.erb within layouts/application (154.2ms)
+RIDC: Getting the sender.
+RIDC: Loading event.
+RIDC: Getting the sender.
+RIDC: Loading event.
+Completed 200 OK in 419ms (Views: 317.7ms | ActiveRecord: 10.2ms)
+RIDC: Getting the sender.
+RIDC: Loading event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #
+RIDC: Sending event.
+undefined method `chunked=' for #