Started GET "/" for 127.0.0.1 at 2012-12-05 16:37:22 -0600 Connecting to database specified by database.yml ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__1629951799756869645__call__868432791165840498__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.9ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.1ms) Connecting to database specified by database.yml  (154.0ms) DROP DATABASE IF EXISTS "dummy_astrochimp_development"  (115.2ms) DROP DATABASE IF EXISTS "dummy_astrochimp_test"  (290.4ms) CREATE DATABASE "dummy_astrochimp_development" ENCODING = 'unicode' TEMPLATE = "template0"  (269.2ms) CREATE DATABASE "dummy_astrochimp_test" ENCODING = 'unicode' TEMPLATE = "template0"  (19.6ms) CREATE TABLE "astrochimp_signups" ("id" serial primary key, "email" character varying(255), "status" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)   (2.9ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)  (3.9ms)  SELECT distinct i.relname, d.indisunique, d.indkey, pg_get_indexdef(d.indexrelid), t.oid FROM pg_class t INNER JOIN pg_index d ON t.oid = d.indrelid INNER JOIN pg_class i ON d.indexrelid = i.oid WHERE i.relkind = 'i' AND d.indisprimary = 'f' AND t.relname = 'schema_migrations' AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname = ANY (current_schemas(false)) ) ORDER BY i.relname   (3.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.7ms) SELECT version FROM "schema_migrations"  (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20121025202343')  (1.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Connecting to database specified by database.yml  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateAstrochimpSignups (20121025202343) Migrating to AddReferralsToAstrochimpSignup (20121101211218)  (0.2ms) BEGIN  (0.9ms) ALTER TABLE "astrochimp_signups" ADD COLUMN "referral_id" integer  (46.0ms) ALTER TABLE "astrochimp_signups" ADD COLUMN "referral_code" character varying(255)  (6.4ms) ALTER TABLE "astrochimp_signups" ADD COLUMN "referral_count" integer DEFAULT 0  (2.3ms) SELECT distinct i.relname, d.indisunique, d.indkey, pg_get_indexdef(d.indexrelid), t.oid FROM pg_class t INNER JOIN pg_index d ON t.oid = d.indrelid INNER JOIN pg_class i ON d.indexrelid = i.oid WHERE i.relkind = 'i' AND d.indisprimary = 'f' AND t.relname = 'astrochimp_signups' AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname = ANY (current_schemas(false)) ) ORDER BY i.relname  (1.6ms) CREATE INDEX "index_astrochimp_signups_on_referral_id" ON "astrochimp_signups" ("referral_id")  (1.4ms) SELECT distinct i.relname, d.indisunique, d.indkey, pg_get_indexdef(d.indexrelid), t.oid FROM pg_class t INNER JOIN pg_index d ON t.oid = d.indrelid INNER JOIN pg_class i ON d.indexrelid = i.oid WHERE i.relkind = 'i' AND d.indisprimary = 'f' AND t.relname = 'astrochimp_signups' AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname = ANY (current_schemas(false)) ) ORDER BY i.relname Columns for index index_astrochimp_signups_on_referral_id on astrochimp_signups (0.4ms)  SELECT a.attnum, a.attname FROM pg_attribute a WHERE a.attrelid = 77436 AND a.attnum IN (6)   (1.9ms) CREATE INDEX "index_astrochimp_signups_on_referral_code" ON "astrochimp_signups" ("referral_code")  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121101211218')  (1.6ms) COMMIT  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  PK and serial sequence (2.5ms) SELECT attr.attname, seq.relname FROM pg_class seq, pg_attribute attr, pg_depend dep, pg_namespace name, pg_constraint cons WHERE seq.oid = dep.objid AND seq.relkind = 'S' AND attr.attrelid = dep.refobjid AND attr.attnum = dep.refobjsubid AND attr.attrelid = cons.conrelid AND attr.attnum = cons.conkey[1] AND cons.contype = 'p' AND dep.refobjid = '"astrochimp_signups"'::regclass  (2.3ms)  SELECT distinct i.relname, d.indisunique, d.indkey, pg_get_indexdef(d.indexrelid), t.oid FROM pg_class t INNER JOIN pg_index d ON t.oid = d.indrelid INNER JOIN pg_class i ON d.indexrelid = i.oid WHERE i.relkind = 'i' AND d.indisprimary = 'f' AND t.relname = 'astrochimp_signups' AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname = ANY (current_schemas(false)) ) ORDER BY i.relname  Columns for index index_astrochimp_signups_on_referral_code on astrochimp_signups (0.5ms) SELECT a.attnum, a.attname FROM pg_attribute a WHERE a.attrelid = 77436 AND a.attnum IN (7) Columns for index index_astrochimp_signups_on_referral_id on astrochimp_signups (0.5ms)  SELECT a.attnum, a.attname FROM pg_attribute a WHERE a.attrelid = 77436 AND a.attnum IN (6)  Started GET "/" for 127.0.0.1 at 2012-12-05 16:40:02 -0600 ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__1629951799756869645__call__868432791165840498__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.9ms) Started GET "/" for 127.0.0.1 at 2012-12-05 16:41:06 -0600 ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__1629951799756869645__call__868432791165840498__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.0ms) Started GET "/" for 127.0.0.1 at 2012-12-05 16:44:52 -0600 ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__1629951799756869645__call__868432791165840498__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.2ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2012-12-05 16:49:54 -0600 ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__1629951799756869645__call__868432791165840498__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.4ms) Started GET "/" for 127.0.0.1 at 2012-12-05 16:49:57 -0600 ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__1629951799756869645__call__868432791165840498__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.8ms) Started GET "/" for 127.0.0.1 at 2012-12-05 16:50:09 -0600 Connecting to database specified by database.yml ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__4121530679409738535__call__799404103909941461__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.4ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.1ms) Started GET "/" for 127.0.0.1 at 2012-12-05 16:50:14 -0600 ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__4121530679409738535__call__799404103909941461__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.4ms) Started GET "/" for 127.0.0.1 at 2012-12-05 16:50:15 -0600 ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__4121530679409738535__call__799404103909941461__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.0ms) Started GET "/" for 127.0.0.1 at 2012-12-05 16:50:20 -0600 Connecting to database specified by database.yml ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__4035159046253670433__call__2979528415720107776__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.3ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.6ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2012-12-06 10:23:29 -0600 Connecting to database specified by database.yml ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__1809827567695737228__call__3663186350442018955__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.5ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (20.1ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2012-12-06 10:47:46 -0600 Connecting to database specified by database.yml ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__4117374479697390216__call__3953530263290231174__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (23.3ms) Started GET "/" for 127.0.0.1 at 2012-12-06 11:05:32 -0600 Connecting to database specified by database.yml ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__3081987297862036336__call__3799604925374527382__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.2ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.1ms) Started GET "/" for 127.0.0.1 at 2012-12-06 11:06:52 -0600 Connecting to database specified by database.yml ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__3546369894693987945__call__336078139178712314__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.5ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.9ms) Started GET "/" for 127.0.0.1 at 2012-12-06 11:06:55 -0600 ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__3546369894693987945__call__336078139178712314__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.5ms) Started GET "/" for 127.0.0.1 at 2012-12-06 11:07:09 -0600 ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__3546369894693987945__call__336078139178712314__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.7ms) Started GET "/" for 127.0.0.1 at 2012-12-06 11:07:16 -0600 Connecting to database specified by database.yml ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__1979552438780817565__call__3994220976711673802__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.7ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.0ms) Started GET "/" for 127.0.0.1 at 2012-12-06 11:07:46 -0600 Connecting to database specified by database.yml ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__2573280586892661654__call__1630041343532610655__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.5ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.7ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2012-12-06 11:11:23 -0600 Connecting to database specified by database.yml ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__1762782989223050375__call__2335757717895474709__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.2ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.0ms) Started GET "/" for 127.0.0.1 at 2012-12-06 11:16:54 -0600 Connecting to database specified by database.yml ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__4182123133897059616__call__3801498800268670652__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.3ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.1ms) Started GET "/" for 127.0.0.1 at 2012-12-06 11:17:54 -0600 Connecting to database specified by database.yml ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__874518356817755940__call__1096451145517310320__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.1ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.9ms) Started GET "/" for 127.0.0.1 at 2012-12-06 11:18:26 -0600 Connecting to database specified by database.yml ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__2377282647867395501__call__724539625712790645__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.4ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.4ms) Started GET "/" for 127.0.0.1 at 2012-12-06 11:19:13 -0600 Connecting to database specified by database.yml ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__4360334176880657990__call__262832891651624124__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.5ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.5ms) Started GET "/" for 127.0.0.1 at 2012-12-06 11:19:51 -0600 Connecting to database specified by database.yml ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__2747576075260235752__call__3565154884829281087__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.2ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.9ms) Started GET "/" for 127.0.0.1 at 2012-12-06 11:22:09 -0600 Connecting to database specified by database.yml NameError (undefined local variable or method `e' for ActiveRecord::Base:Class): activerecord (3.2.8) lib/active_record/dynamic_matchers.rb:50:in `method_missing' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:172:in `rescue in retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__1655576396948943081__call__315044723807486214__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.3ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.9ms) Started GET "/" for 127.0.0.1 at 2012-12-06 11:22:32 -0600 Connecting to database specified by database.yml RuntimeError (ActiveRecord::Base): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:173:in `rescue in retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__2588095458771683568__call__233563710047752959__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.4ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.2ms) Started GET "/" for 127.0.0.1 at 2012-12-06 11:24:32 -0600 Connecting to database specified by database.yml RuntimeError (ActiveRecord::Base): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:173:in `rescue in retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:474:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__3659798403878336237__call__2741950014137585433__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.6ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.0ms) Started GET "/" for 127.0.0.1 at 2012-12-06 11:26:19 -0600 Connecting to database specified by database.yml NoMethodError (undefined method `config' for Rails:Module): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:173:in `rescue in retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__4276641786757357435__call__1004285039427285084__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.3ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.9ms) Started GET "/" for 127.0.0.1 at 2012-12-06 11:27:47 -0600 Connecting to database specified by database.yml RuntimeError (#, @generators=#{:orm=>:active_record, :test_framework=>:test_unit, :integration_tool=>:test_unit, :performance_tool=>:test_unit}, :active_record=>{:migration=>true, :timestamps=>true}, :test_unit=>{:fixture=>true, :fixture_replacement=>nil}}, @fallbacks={}, @templates=[], @colorize_logging=true, @hidden_namespaces=[]>, @encoding="utf-8", @allow_concurrency=false, @consider_all_requests_local=true, @filter_parameters=[:password], @helpers_paths=["/Users/jcamenisch/projects/astrochimp/test/dummy/app/helpers"], @dependency_loading=true, @serve_static_assets=true, @static_cache_control=nil, @force_ssl=false, @ssl_options={}, @session_store=:cookie_store, @session_options={:key=>"_dummy_session", :coder=>#, :cookie_only=>true}, @time_zone="UTC", @log_level=:debug, @middleware=#, Rack::Runtime, Rack::MethodOverride, ActionDispatch::RequestId, Rails::Rack::Logger, ActionDispatch::ShowExceptions, ActionDispatch::DebugExceptions, ActionDispatch::RemoteIp, ActionDispatch::Reloader, ActionDispatch::Callbacks, ActiveRecord::ConnectionAdapters::ConnectionManagement, ActiveRecord::QueryCache, ActionDispatch::Cookies, ActionDispatch::Session::CookieStore, ActionDispatch::Flash, ActionDispatch::ParamsParser, ActionDispatch::Head, Rack::ConditionalGet, Rack::ETag, ActionDispatch::BestStandardsSupport]>, @cache_store=[:file_store, "/Users/jcamenisch/projects/astrochimp/test/dummy/tmp/cache/"], @railties_order=[:all], @relative_url_root=nil, @reload_classes_only_on_change=true, @file_watcher=ActiveSupport::FileUpdateChecker, @exceptions_app=nil, @assets={:enabled=>true, :paths=>["/Users/jcamenisch/projects/astrochimp/test/dummy/app/assets/javascripts", "/Users/jcamenisch/projects/astrochimp/test/dummy/app/assets/stylesheets", "/Users/jcamenisch/projects/astrochimp/app/assets/images", "/Users/jcamenisch/projects/astrochimp/app/assets/javascripts", "/Users/jcamenisch/projects/astrochimp/app/assets/stylesheets", "/Users/jcamenisch/projects/astrochimp/.bundle/gems/jquery-rails-2.1.3/vendor/assets/javascripts"], :precompile=>[#, /(?:\/|\\|\A)application\.(css|js)$/], :prefix=>"/assets", :version=>"1.0", :debug=>true, :compile=>true, :digest=>false, :manifest=>nil, :cache_store=>[:file_store, "/Users/jcamenisch/projects/astrochimp/test/dummy/tmp/cache/assets/"], :js_compressor=>nil, :css_compressor=>nil, :initialize_on_precompile=>true, :logger=>nil, :compress=>false}, @paths={"app"=>["app"], "app/assets"=>["app/assets"], "app/controllers"=>["app/controllers"], "app/helpers"=>["app/helpers"], "app/models"=>["app/models"], "app/mailers"=>["app/mailers"], "app/views"=>["app/views"], "lib"=>["lib"], "lib/assets"=>["lib/assets"], "lib/tasks"=>["lib/tasks"], "config"=>["config"], "config/environments"=>["config/environments"], "config/initializers"=>["config/initializers"], "config/locales"=>["config/locales"], "config/routes"=>["config/routes.rb"], "db"=>["db"], "db/migrate"=>["db/migrate", "/Users/jcamenisch/projects/astrochimp/db/migrate"], "db/seeds"=>["db/seeds.rb"], "vendor"=>["vendor"], "vendor/assets"=>["vendor/assets"], "vendor/plugins"=>["vendor/plugins"], "config/database"=>["config/database.yml"], "config/environment"=>["config/environment.rb"], "lib/templates"=>["lib/templates"], "log"=>["log/development.log"], "public"=>["public"], "public/javascripts"=>["public/javascripts"], "public/stylesheets"=>["public/stylesheets"], "tmp"=>["tmp"]}, @autoload_paths=[], @eager_load_paths=["/Users/jcamenisch/projects/astrochimp/test/dummy/app/assets", "/Users/jcamenisch/projects/astrochimp/test/dummy/app/controllers", "/Users/jcamenisch/projects/astrochimp/test/dummy/app/helpers", "/Users/jcamenisch/projects/astrochimp/test/dummy/app/mailers", "/Users/jcamenisch/projects/astrochimp/test/dummy/app/models"], @autoload_once_paths=[], @cache_classes=false, @whiny_nils=true, @secret_token="1afd1e9244b930f2801bf6debd18a5a036da1b87ed70bdef65a862a342802a50ae80c0ad531802c44f2c97b3c6625feedf225c420ee788bddd8a4a18bb83a17a">): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:173:in `rescue in retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__2906406418033491886__call__931622310579221583__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.4ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.4ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2012-12-06 11:41:16 -0600 Connecting to database specified by database.yml ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__93806046016128392__call__2466612988876471691__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.5ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.1ms) Started GET "/" for 127.0.0.1 at 2012-12-06 12:04:16 -0600 Connecting to database specified by database.yml ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__4082975679799918008__call__2299167930363467653__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.2ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.6ms) Started GET "/" for 127.0.0.1 at 2012-12-06 12:09:10 -0600 Connecting to database specified by database.yml ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__486882080725887024__call__919406673733243894__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.9ms) Started GET "/" for 127.0.0.1 at 2012-12-06 12:14:44 -0600 Connecting to database specified by database.yml ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__4491670707819677574__call__2623210368577435556__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.2ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.2ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2012-12-06 12:25:06 -0600 Connecting to database specified by database.yml Processing by Astrochimp::SignupsController#index as HTML Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (5.2ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (12.0ms) Compiled astrochimp/signups.css (0ms) (pid 18612) Compiled astrochimp/application.css (38ms) (pid 18612) Compiled jquery.js (4ms) (pid 18612) Compiled jquery_ujs.js (0ms) (pid 18612) Compiled astrochimp/signups.js (0ms) (pid 18612) Compiled astrochimp/application.js (58ms) (pid 18612) Completed 200 OK in 533ms (Views: 193.5ms | ActiveRecord: 286.1ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 12:25:07 -0600 Served asset /astrochimp/application.css - 200 OK (8ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 12:25:07 -0600 Served asset /astrochimp/signups.css - 200 OK (2ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 12:25:07 -0600 Served asset /astrochimp/application.js - 200 OK (11ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 12:25:07 -0600 Served asset /jquery.js - 200 OK (3ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 12:25:07 -0600 Served asset /jquery_ujs.js - 200 OK (3ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 12:25:07 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 200 OK (19ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 12:25:07 -0600 Served asset /astrochimp/signups.js - 200 OK (2ms) Started GET "/assets/astrochimp/bg-noise.png" for 127.0.0.1 at 2012-12-06 12:25:07 -0600 Served asset /astrochimp/bg-noise.png - 200 OK (55ms) Started GET "/assets/astrochimp/iphone4-frame-black.png" for 127.0.0.1 at 2012-12-06 12:25:07 -0600 Served asset /astrochimp/iphone4-frame-black.png - 200 OK (10ms) Started GET "/" for 127.0.0.1 at 2012-12-06 12:25:29 -0600 Connecting to database specified by database.yml Processing by Astrochimp::SignupsController#index as HTML Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (4.1ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (9.5ms) Completed 200 OK in 98ms (Views: 34.9ms | ActiveRecord: 10.2ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 12:25:30 -0600 Served asset /astrochimp/application.css - 304 Not Modified (4ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 12:25:30 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (5ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 12:25:30 -0600 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 12:25:30 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 12:25:30 -0600 Served asset /jquery_ujs.js - 304 Not Modified (2ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 12:25:30 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (3ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 12:25:30 -0600 Served asset /astrochimp/application.js - 304 Not Modified (40ms) Started GET "/" for 127.0.0.1 at 2012-12-06 12:25:35 -0600 Processing by Astrochimp::SignupsController#index as HTML Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (1.1ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (2.0ms) Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 12:25:35 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 12:25:35 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 12:25:35 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 12:25:35 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 12:25:35 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 12:25:35 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 12:25:35 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml  (24.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateAstrochimpSignups (20121025202343) Migrating to AddReferralsToAstrochimpSignup (20121101211218) Migrating to RemoveReferralCodeFromAstrochimpSignup (20121206205605)  (0.2ms) BEGIN  (67.2ms)  SELECT distinct i.relname, d.indisunique, d.indkey, pg_get_indexdef(d.indexrelid), t.oid FROM pg_class t INNER JOIN pg_index d ON t.oid = d.indrelid INNER JOIN pg_class i ON d.indexrelid = i.oid WHERE i.relkind = 'i' AND d.indisprimary = 'f' AND t.relname = 'astrochimp_signups' AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname = ANY (current_schemas(false)) ) ORDER BY i.relname  Columns for index index_astrochimp_signups_on_referral_code on astrochimp_signups (0.6ms) SELECT a.attnum, a.attname FROM pg_attribute a WHERE a.attrelid = 77436 AND a.attnum IN (7) Columns for index index_astrochimp_signups_on_referral_id on astrochimp_signups (0.3ms)  SELECT a.attnum, a.attname FROM pg_attribute a WHERE a.attrelid = 77436 AND a.attnum IN (6)   (92.4ms) DROP INDEX "index_astrochimp_signups_on_referral_code"  (8.3ms) ALTER TABLE "astrochimp_signups" DROP "referral_code"  (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121206205605')  (1.5ms) COMMIT  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" PK and serial sequence (3.5ms)  SELECT attr.attname, seq.relname FROM pg_class seq, pg_attribute attr, pg_depend dep, pg_namespace name, pg_constraint cons WHERE seq.oid = dep.objid AND seq.relkind = 'S' AND attr.attrelid = dep.refobjid AND attr.attnum = dep.refobjsubid AND attr.attrelid = cons.conrelid AND attr.attnum = cons.conkey[1] AND cons.contype = 'p' AND dep.refobjid = '"astrochimp_signups"'::regclass   (3.4ms) SELECT distinct i.relname, d.indisunique, d.indkey, pg_get_indexdef(d.indexrelid), t.oid FROM pg_class t INNER JOIN pg_index d ON t.oid = d.indrelid INNER JOIN pg_class i ON d.indexrelid = i.oid WHERE i.relkind = 'i' AND d.indisprimary = 'f' AND t.relname = 'astrochimp_signups' AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname = ANY (current_schemas(false)) ) ORDER BY i.relname Columns for index index_astrochimp_signups_on_referral_id on astrochimp_signups (0.4ms)  SELECT a.attnum, a.attname FROM pg_attribute a WHERE a.attrelid = 77436 AND a.attnum IN (6)  Started GET "/" for 127.0.0.1 at 2012-12-06 14:59:47 -0600 Connecting to database specified by database.yml ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__4545355292225289767__call__310091078626971522__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.3ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.8ms) Started GET "/" for 127.0.0.1 at 2012-12-06 15:00:18 -0600 Connecting to database specified by database.yml Processing by Astrochimp::SignupsController#index as HTML Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (4.5ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (21.1ms) Completed 200 OK in 261ms (Views: 139.1ms | ActiveRecord: 58.2ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 15:00:19 -0600 Served asset /astrochimp/signups.css - 200 OK (10ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 15:00:19 -0600 Served asset /astrochimp/application.css - 200 OK (5ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 15:00:19 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 200 OK (12ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 15:00:19 -0600 Served asset /astrochimp/signups.js - 200 OK (3ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 15:00:19 -0600 Served asset /jquery_ujs.js - 200 OK (3ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 15:00:19 -0600 Served asset /jquery.js - 200 OK (5ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 15:00:19 -0600 Served asset /astrochimp/application.js - 200 OK (12ms) Started GET "/assets/astrochimp/iphone4-frame-black.png" for 127.0.0.1 at 2012-12-06 15:00:20 -0600 Served asset /astrochimp/iphone4-frame-black.png - 200 OK (13ms) Started GET "/assets/astrochimp/bg-noise.png" for 127.0.0.1 at 2012-12-06 15:00:20 -0600 Served asset /astrochimp/bg-noise.png - 200 OK (10ms) Started POST "/signups" for 127.0.0.1 at 2012-12-06 15:01:09 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WSNX/u/MZmQZv6uuWaFdVA9B71SGEutjsE1xU0oE6LA=", "signup"=>{"email"=>"jonathan+b@camenisch.net"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (1.6ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+b@camenisch.net' LIMIT 1 SQL (3.7ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referral_count", "referral_id", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 06 Dec 2012 21:01:10 UTC +00:00], ["email", "jonathan+b@camenisch.net"], ["referral_count", 0], ["referral_id", nil], ["status", 0], ["updated_at", Thu, 06 Dec 2012 21:01:10 UTC +00:00]]  (0.9ms) COMMIT Redirected to http://astrochimp.dev:3000/ Completed 302 Found in 903ms (ActiveRecord: 6.4ms) Started GET "/" for 127.0.0.1 at 2012-12-06 15:01:10 -0600 Processing by Astrochimp::SignupsController#index as HTML Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (1.1ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (2.0ms) Completed 200 OK in 9ms (Views: 8.1ms | ActiveRecord: 0.0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2012-12-06 15:10:59 -0600 Connecting to database specified by database.yml Processing by Astrochimp::SignupsController#index as HTML Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (4.5ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (11.3ms) Completed 200 OK in 213ms (Views: 129.3ms | ActiveRecord: 51.0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 15:11:00 -0600 Served asset /astrochimp/application.css - 304 Not Modified (32ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 15:11:00 -0600 Served asset /jquery.js - 304 Not Modified (6ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 15:11:00 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (3ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 15:11:00 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 15:11:00 -0600 Served asset /jquery_ujs.js - 304 Not Modified (2ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 15:11:00 -0600 Served asset /astrochimp/application.js - 304 Not Modified (58ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 15:11:00 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (4ms) Started POST "/signups" for 127.0.0.1 at 2012-12-06 15:11:09 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WSNX/u/MZmQZv6uuWaFdVA9B71SGEutjsE1xU0oE6LA=", "signup"=>{"email"=>"jonathan+d@camenisch.net"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (1.2ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+d@camenisch.net' LIMIT 1 SQL (2.9ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referral_count", "referral_id", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 06 Dec 2012 21:11:10 UTC +00:00], ["email", "jonathan+d@camenisch.net"], ["referral_count", 0], ["referral_id", nil], ["status", 0], ["updated_at", Thu, 06 Dec 2012 21:11:10 UTC +00:00]]  (1.3ms) COMMIT Completed 500 Internal Server Error in 888ms ArgumentError (wrong number of arguments(1 for 0)): /Users/jcamenisch/projects/astrochimp/app/models/id_code.rb:12:in `to_i' /Users/jcamenisch/projects/astrochimp/app/models/id_code.rb:12:in `code_to_id' /Users/jcamenisch/projects/astrochimp/app/models/id_code.rb:16:in `find_by_id_code' /Users/jcamenisch/projects/astrochimp/app/models/astrochimp/signup.rb:25:in `find_by_referral_code' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:18:in `show' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:32:in `block (2 levels) in create' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:196:in `call' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:196:in `respond_to' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:26:in `create' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:4:in `send_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:403:in `_run__1184927656756690020__process_action__160703151779346487__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action' .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/railtie/configurable.rb:30:in `method_missing' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call' .bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb:35:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__87662782500944591__call__3109018102519290196__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms) Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms) Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (125.7ms) Started POST "/signups" for 127.0.0.1 at 2012-12-06 15:11:58 -0600 Connecting to database specified by database.yml Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WSNX/u/MZmQZv6uuWaFdVA9B71SGEutjsE1xU0oE6LA=", "signup"=>{"email"=>"jonathan+d@camenisch.net"}, "commit"=>"Notify Me »"}  (0.3ms) BEGIN Astrochimp::Signup Exists (1.3ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+d@camenisch.net' LIMIT 1  (0.3ms) ROLLBACK Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (3.9ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (8.8ms) Completed 200 OK in 190ms (Views: 77.1ms | ActiveRecord: 12.6ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 15:12:00 -0600 Served asset /astrochimp/application.css - 304 Not Modified (5ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 15:12:00 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (5ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 15:12:00 -0600 Served asset /jquery_ujs.js - 304 Not Modified (2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 15:12:00 -0600 Served asset /jquery.js - 304 Not Modified (4ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 15:12:00 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (1ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 15:12:00 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (3ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 15:12:00 -0600 Served asset /astrochimp/application.js - 304 Not Modified (5ms) Started POST "/signups" for 127.0.0.1 at 2012-12-06 15:12:05 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WSNX/u/MZmQZv6uuWaFdVA9B71SGEutjsE1xU0oE6LA=", "signup"=>{"email"=>"jonathan+e@camenisch.net"}, "commit"=>"Notify Me »"}  (0.3ms) BEGIN Astrochimp::Signup Exists (0.6ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+e@camenisch.net' LIMIT 1 SQL (2.2ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referral_count", "referral_id", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 06 Dec 2012 21:12:07 UTC +00:00], ["email", "jonathan+e@camenisch.net"], ["referral_count", 0], ["referral_id", nil], ["status", 0], ["updated_at", Thu, 06 Dec 2012 21:12:07 UTC +00:00]]  (1.3ms) COMMIT Astrochimp::Signup Load (0.9ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", -99999]] Completed 500 Internal Server Error in 1640ms ActiveRecord::RecordNotFound (Couldn't find Astrochimp::Signup with id=-99999): .bundle/gems/activerecord-3.2.8/lib/active_record/relation/finder_methods.rb:341:in `find_one' .bundle/gems/activerecord-3.2.8/lib/active_record/relation/finder_methods.rb:312:in `find_with_ids' .bundle/gems/activerecord-3.2.8/lib/active_record/relation/finder_methods.rb:107:in `find' .bundle/gems/activerecord-3.2.8/lib/active_record/querying.rb:5:in `find' /Users/jcamenisch/projects/astrochimp/app/models/id_code.rb:16:in `find_by_id_code' /Users/jcamenisch/projects/astrochimp/app/models/astrochimp/signup.rb:25:in `find_by_referral_code' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:18:in `show' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:32:in `block (2 levels) in create' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:196:in `call' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:196:in `respond_to' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:26:in `create' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:4:in `send_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:403:in `_run__4287719517761624647__process_action__885378014299034500__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action' .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/railtie/configurable.rb:30:in `method_missing' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call' .bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb:35:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__3758603452129994249__call__942857204822872084__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms) Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.5ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 15:17:54 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 15:17:54 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 15:17:54 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 15:17:54 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 15:17:54 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 15:17:54 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 15:17:54 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started POST "/signups" for 127.0.0.1 at 2012-12-06 15:17:57 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WSNX/u/MZmQZv6uuWaFdVA9B71SGEutjsE1xU0oE6LA=", "signup"=>{"email"=>"jonathan+f@camenisch.net"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (0.5ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+f@camenisch.net' LIMIT 1 SQL (0.6ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referral_count", "referral_id", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 06 Dec 2012 21:17:58 UTC +00:00], ["email", "jonathan+f@camenisch.net"], ["referral_count", 0], ["referral_id", nil], ["status", 0], ["updated_at", Thu, 06 Dec 2012 21:17:58 UTC +00:00]]  (11.5ms) COMMIT Astrochimp::Signup Load (0.6ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", -99999]] Completed 500 Internal Server Error in 724ms ActiveRecord::RecordNotFound (Couldn't find Astrochimp::Signup with id=-99999): .bundle/gems/activerecord-3.2.8/lib/active_record/relation/finder_methods.rb:341:in `find_one' .bundle/gems/activerecord-3.2.8/lib/active_record/relation/finder_methods.rb:312:in `find_with_ids' .bundle/gems/activerecord-3.2.8/lib/active_record/relation/finder_methods.rb:107:in `find' .bundle/gems/activerecord-3.2.8/lib/active_record/querying.rb:5:in `find' /Users/jcamenisch/projects/astrochimp/app/models/id_code.rb:16:in `find_by_id_code' /Users/jcamenisch/projects/astrochimp/app/models/astrochimp/signup.rb:25:in `find_by_referral_code' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:18:in `show' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:33:in `block (2 levels) in create' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:196:in `call' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:196:in `respond_to' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:26:in `create' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:4:in `send_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:403:in `_run__4287719517761624647__process_action__885378014299034500__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action' .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/railtie/configurable.rb:30:in `method_missing' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call' .bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb:35:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__3758603452129994249__call__942857204822872084__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (33.7ms) Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.2ms) Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (44.6ms) Connecting to database specified by database.yml Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 15:18:41 -0600 Connecting to database specified by database.yml Served asset /astrochimp/application.css - 304 Not Modified (4ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 15:18:41 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (2ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 15:18:41 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (2ms) Started POST "/signups" for 127.0.0.1 at 2012-12-06 15:18:44 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WSNX/u/MZmQZv6uuWaFdVA9B71SGEutjsE1xU0oE6LA=", "signup"=>{"email"=>"jonathan+g@camenisch.net"}, "commit"=>"Notify Me »"}  (0.3ms) BEGIN Astrochimp::Signup Exists (1.3ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+g@camenisch.net' LIMIT 1 SQL (2.6ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referral_count", "referral_id", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 06 Dec 2012 21:18:45 UTC +00:00], ["email", "jonathan+g@camenisch.net"], ["referral_count", 0], ["referral_id", nil], ["status", 0], ["updated_at", Thu, 06 Dec 2012 21:18:45 UTC +00:00]]  (1.8ms) COMMIT Redirected to http://astrochimp.dev:3000/signups?id=2566¬ice=Thanks%21+We%27ll+drop+you+a+line+when+we+launch%21 Completed 302 Found in 578ms (ActiveRecord: 16.9ms) Started GET "/signups?id=2566¬ice=Thanks%21+We%27ll+drop+you+a+line+when+we+launch%21" for 127.0.0.1 at 2012-12-06 15:18:45 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"2566", "notice"=>"Thanks! We'll drop you a line when we launch!"} Astrochimp::Signup Load (1.0ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 15]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (3.6ms) Completed 200 OK in 37ms (Views: 33.7ms | ActiveRecord: 1.0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 15:18:45 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 15:18:45 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 15:18:45 -0600 Served asset /astrochimp/signups.js - 200 OK (3ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 15:18:45 -0600 Served asset /jquery_ujs.js - 200 OK (2ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 15:18:45 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 15:18:45 -0600 Served asset /jquery.js - 200 OK (4ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 15:18:45 -0600 Served asset /astrochimp/application.js - 200 OK (52ms) Started GET "/signups?id=2566¬ice=Thanks%21+We%27ll+drop+you+a+line+when+we+launch%21" for 127.0.0.1 at 2012-12-06 15:19:14 -0600 Connecting to database specified by database.yml Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"2566", "notice"=>"Thanks! We'll drop you a line when we launch!"} Astrochimp::Signup Load (4.6ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 15]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (2.6ms) Completed 200 OK in 146ms (Views: 63.2ms | ActiveRecord: 16.0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 15:19:15 -0600 Served asset /jquery_ujs.js - 304 Not Modified (6ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 15:19:15 -0600 Served asset /astrochimp/application.css - 304 Not Modified (4ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 15:19:15 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 15:19:15 -0600 Served asset /jquery.js - 304 Not Modified (3ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 15:19:15 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (3ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 15:19:15 -0600 Served asset /astrochimp/application.js - 304 Not Modified (55ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 15:19:16 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (7ms) Started GET "/signups?id=2566¬ice=Thanks%21+We%27ll+drop+you+a+line+when+we+launch%21" for 127.0.0.1 at 2012-12-06 15:20:02 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"2566", "notice"=>"Thanks! We'll drop you a line when we launch!"} Astrochimp::Signup Load (0.7ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 15]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (0.7ms) Completed 200 OK in 8ms (Views: 6.2ms | ActiveRecord: 0.7ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 15:20:02 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 15:20:02 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 15:20:02 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 15:20:02 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 15:20:02 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 15:20:02 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 15:20:02 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/signups/2566" for 127.0.0.1 at 2012-12-06 15:20:11 -0600 ActionController::RoutingError (No route matches [GET] "/signups/2566"): .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) Started GET "/signups/2566" for 127.0.0.1 at 2012-12-06 15:23:38 -0600 Connecting to database specified by database.yml ActionController::RoutingError (No route matches [GET] "/signups/2566"): .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.5ms) Started GET "/signups?id=2566¬ice=Thanks%21+We%27ll+drop+you+a+line+when+we+launch%21" for 127.0.0.1 at 2012-12-06 15:24:06 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"2566", "notice"=>"Thanks! We'll drop you a line when we launch!"} Astrochimp::Signup Load (4.8ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 15]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (0.7ms) Completed 200 OK in 101ms (Views: 53.2ms | ActiveRecord: 16.3ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 15:24:06 -0600 Served asset /astrochimp/application.css - 304 Not Modified (5ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 15:24:06 -0600 Served asset /astrochimp/application.js - 304 Not Modified (11ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 15:24:06 -0600 Served asset /jquery.js - 304 Not Modified (4ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 15:24:06 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (40ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 15:24:07 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 15:24:07 -0600 Served asset /jquery_ujs.js - 304 Not Modified (3ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 15:24:07 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (2ms) Started GET "/signups/2566" for 127.0.0.1 at 2012-12-06 15:24:11 -0600 ActionController::RoutingError (No route matches [GET] "/signups/2566"): .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/signups/2566" for 127.0.0.1 at 2012-12-06 15:27:30 -0600 Connecting to database specified by database.yml ActionController::RoutingError (No route matches [GET] "/signups/2566"): .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.7ms) Started GET "/signups/2566" for 127.0.0.1 at 2012-12-06 15:28:10 -0600 Connecting to database specified by database.yml ActionController::RoutingError (No route matches [GET] "/signups/2566"): .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.0ms) Started GET "/signups/" for 127.0.0.1 at 2012-12-06 15:28:14 -0600 Processing by Astrochimp::SignupsController#show as HTML Astrochimp::Signup Load (4.6ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", -99999]] Completed 500 Internal Server Error in 36ms ActiveRecord::RecordNotFound (Couldn't find Astrochimp::Signup with id=-99999): .bundle/gems/activerecord-3.2.8/lib/active_record/relation/finder_methods.rb:341:in `find_one' .bundle/gems/activerecord-3.2.8/lib/active_record/relation/finder_methods.rb:312:in `find_with_ids' .bundle/gems/activerecord-3.2.8/lib/active_record/relation/finder_methods.rb:107:in `find' .bundle/gems/activerecord-3.2.8/lib/active_record/querying.rb:5:in `find' /Users/jcamenisch/projects/astrochimp/app/models/id_code.rb:16:in `find_by_id_code' /Users/jcamenisch/projects/astrochimp/app/models/astrochimp/signup.rb:25:in `find_by_referral_code' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:18:in `show' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:4:in `send_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:403:in `_run__4046461120477747288__process_action__3464949499664348081__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action' .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/railtie/configurable.rb:30:in `method_missing' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call' .bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__4354424461151264374__call__3923409111719592512__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms) Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms) Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (100.0ms) Started GET "/signups/?id=2566" for 127.0.0.1 at 2012-12-06 15:28:35 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"2566"} Astrochimp::Signup Load (0.8ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 15]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (1.5ms) Completed 200 OK in 86ms (Views: 70.8ms | ActiveRecord: 0.8ms) Started GET "/signups/?id=2566" for 127.0.0.1 at 2012-12-06 15:29:28 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"2566"} Astrochimp::Signup Load (1.8ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 15]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (1.3ms) Completed 200 OK in 15ms (Views: 10.3ms | ActiveRecord: 1.8ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 15:29:29 -0600 Served asset /astrochimp/application.css - 304 Not Modified (4ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 15:29:29 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (6ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 15:29:29 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (48ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 15:29:29 -0600 Served asset /jquery_ujs.js - 304 Not Modified (2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 15:29:29 -0600 Served asset /jquery.js - 304 Not Modified (3ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 15:29:29 -0600 Served asset /astrochimp/application.js - 304 Not Modified (8ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 15:29:29 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (2ms) Started GET "/signups/?id=2566" for 127.0.0.1 at 2012-12-06 15:29:39 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"2566"} Astrochimp::Signup Load (0.6ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 15]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (0.6ms) Completed 200 OK in 8ms (Views: 6.2ms | ActiveRecord: 0.6ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 15:29:39 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 15:29:39 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 15:29:39 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 15:29:39 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 15:29:39 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 15:29:39 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 15:29:39 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/signups/2566" for 127.0.0.1 at 2012-12-06 15:29:45 -0600 ActionController::RoutingError (No route matches [GET] "/signups/2566"): .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms) Started GET "/signups/?id=2566" for 127.0.0.1 at 2012-12-06 15:30:08 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"2566"} Astrochimp::Signup Load (0.4ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 15]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (0.1ms) Completed 200 OK in 20ms (Views: 5.7ms | ActiveRecord: 3.1ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 15:30:08 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 15:30:08 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 15:30:08 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 15:30:08 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 15:30:08 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 15:30:08 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 15:30:08 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/signups/2566" for 127.0.0.1 at 2012-12-06 15:30:15 -0600 ActionController::RoutingError (No route matches [GET] "/signups/2566"): .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms) Started GET "/signups/2566" for 127.0.0.1 at 2012-12-06 15:30:17 -0600 ActionController::RoutingError (No route matches [GET] "/signups/2566"): .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms) Started GET "/signups/2566" for 127.0.0.1 at 2012-12-06 15:30:30 -0600 Connecting to database specified by database.yml ActionController::RoutingError (No route matches [GET] "/signups/2566"): .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.9ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 15:30:57 -0600 Served asset /astrochimp/application.css - 304 Not Modified (4ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 15:30:57 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (1ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 15:30:57 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 15:30:57 -0600 Served asset /jquery.js - 304 Not Modified (5ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 15:30:57 -0600 Served asset /jquery_ujs.js - 304 Not Modified (3ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 15:30:57 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (2ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 15:30:57 -0600 Served asset /astrochimp/application.js - 304 Not Modified (5ms) Started POST "/signups" for 127.0.0.1 at 2012-12-06 15:31:03 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WSNX/u/MZmQZv6uuWaFdVA9B71SGEutjsE1xU0oE6LA=", "signup"=>{"email"=>"jonathan+h@camenisch.net"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (4.1ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+h@camenisch.net' LIMIT 1 SQL (3.5ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referral_count", "referral_id", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 06 Dec 2012 21:31:04 UTC +00:00], ["email", "jonathan+h@camenisch.net"], ["referral_count", 0], ["referral_id", nil], ["status", 0], ["updated_at", Thu, 06 Dec 2012 21:31:04 UTC +00:00]]  (1.2ms) COMMIT Redirected to http://astrochimp.dev:3000/signups?id=2567¬ice=Thanks%21+We%27ll+drop+you+a+line+when+we+launch%21 Completed 302 Found in 991ms (ActiveRecord: 20.1ms) Started GET "/signups?id=2567¬ice=Thanks%21+We%27ll+drop+you+a+line+when+we+launch%21" for 127.0.0.1 at 2012-12-06 15:31:04 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"2567", "notice"=>"Thanks! We'll drop you a line when we launch!"} Astrochimp::Signup Load (0.8ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 16]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (0.5ms) Completed 200 OK in 20ms (Views: 17.3ms | ActiveRecord: 0.8ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 15:31:04 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 15:31:04 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 15:31:04 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 15:31:04 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 15:31:04 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 15:31:04 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 15:31:04 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/signups?id=2567¬ice=Thanks%21+We%27ll+drop+you+a+line+when+we+launch%21" for 127.0.0.1 at 2012-12-06 15:34:48 -0600 Processing by Astrochimp::SignupsController#index as HTML Parameters: {"id"=>"2567", "notice"=>"Thanks! We'll drop you a line when we launch!"} Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (4.2ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (9.9ms) Completed 200 OK in 32ms (Views: 17.5ms | ActiveRecord: 2.4ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 15:34:48 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 15:34:49 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 15:34:49 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 15:34:49 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 15:34:49 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 15:34:49 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 15:34:49 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/signups?id=2567¬ice=Thanks%21+We%27ll+drop+you+a+line+when+we+launch%21" for 127.0.0.1 at 2012-12-06 15:35:05 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"2567", "notice"=>"Thanks! We'll drop you a line when we launch!"} Astrochimp::Signup Load (0.5ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 16]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (1.2ms) Completed 200 OK in 22ms (Views: 7.1ms | ActiveRecord: 3.2ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 15:35:05 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 15:35:05 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 15:35:05 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 15:35:05 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 15:35:05 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 15:35:05 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 15:35:05 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/signups?id=2567¬ice=Thanks%21+We%27ll+drop+you+a+line+when+we+launch%21" for 127.0.0.1 at 2012-12-06 15:36:04 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"2567", "notice"=>"Thanks! We'll drop you a line when we launch!"} Astrochimp::Signup Load (0.5ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 16]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (1.2ms) Completed 200 OK in 27ms (Views: 7.8ms | ActiveRecord: 6.4ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 15:36:05 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 15:36:05 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 15:36:05 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 15:36:05 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 15:36:05 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 15:36:05 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 15:36:05 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/signups/2567?notice=Thanks%21+We%27ll+drop+you+a+line+when+we+launch%21" for 127.0.0.1 at 2012-12-06 15:36:11 -0600 ActionController::RoutingError (No route matches [GET] "/signups/2567"): .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) Started GET "/signups/2567" for 127.0.0.1 at 2012-12-06 15:36:23 -0600 ActionController::RoutingError (No route matches [GET] "/signups/2567"): .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms) Started GET "/signups/2567" for 127.0.0.1 at 2012-12-06 15:36:25 -0600 ActionController::RoutingError (No route matches [GET] "/signups/2567"): .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms) Started GET "/signups/2567" for 127.0.0.1 at 2012-12-06 15:36:31 -0600 Connecting to database specified by database.yml ActionController::RoutingError (No route matches [GET] "/signups/2567"): .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.8ms) Started GET "/signups/2567" for 127.0.0.1 at 2012-12-06 15:37:52 -0600 ActionController::RoutingError (No route matches [GET] "/signups/2567"): .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) Started GET "/signups/2567" for 127.0.0.1 at 2012-12-06 15:38:04 -0600 Connecting to database specified by database.yml ActionController::RoutingError (No route matches [GET] "/signups/2567"): .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.8ms) Started GET "/signups/2567" for 127.0.0.1 at 2012-12-06 15:39:26 -0600 ActionController::RoutingError (No route matches [GET] "/signups/2567"): .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/signups/2567" for 127.0.0.1 at 2012-12-06 15:40:41 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"2567"} Astrochimp::Signup Load (6.7ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 16]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (4.3ms) Completed 200 OK in 127ms (Views: 72.9ms | ActiveRecord: 21.8ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 15:40:41 -0600 Served asset /astrochimp/application.css - 304 Not Modified (6ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 15:40:41 -0600 Served asset /jquery.js - 304 Not Modified (42ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 15:40:41 -0600 Served asset /jquery_ujs.js - 304 Not Modified (4ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 15:40:41 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (5ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 15:40:41 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (2ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 15:40:41 -0600 Served asset /astrochimp/application.js - 304 Not Modified (5ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 15:40:41 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (2ms) Started GET "/signups?id=2567¬ice=Thanks%21+We%27ll+drop+you+a+line+when+we+launch%21" for 127.0.0.1 at 2012-12-06 15:41:25 -0600 Processing by Astrochimp::SignupsController#index as HTML Parameters: {"id"=>"2567", "notice"=>"Thanks! We'll drop you a line when we launch!"} Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (4.5ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (9.5ms) Completed 200 OK in 33ms (Views: 17.5ms | ActiveRecord: 2.4ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 15:41:25 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 15:41:25 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 15:41:25 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 15:41:25 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 15:41:25 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 15:41:25 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 15:41:25 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2012-12-06 15:41:30 -0600 Processing by Astrochimp::SignupsController#index as HTML Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (1.6ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (2.8ms) Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 15:41:30 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 15:41:30 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 15:41:30 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 15:41:30 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 15:41:30 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 15:41:30 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 15:41:30 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2012-12-06 15:41:37 -0600 Connecting to database specified by database.yml Processing by Astrochimp::SignupsController#index as HTML Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (4.7ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (10.6ms) Completed 200 OK in 112ms (Views: 70.7ms | ActiveRecord: 11.8ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 15:41:38 -0600 Served asset /astrochimp/application.css - 304 Not Modified (11ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 15:41:38 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (3ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 15:41:38 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (5ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 15:41:38 -0600 Served asset /jquery.js - 304 Not Modified (13ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 15:41:38 -0600 Served asset /jquery_ujs.js - 304 Not Modified (3ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 15:41:38 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (7ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 15:41:38 -0600 Served asset /astrochimp/application.js - 304 Not Modified (10ms) Started POST "/signups" for 127.0.0.1 at 2012-12-06 15:41:47 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WSNX/u/MZmQZv6uuWaFdVA9B71SGEutjsE1xU0oE6LA=", "signup"=>{"email"=>"jonathan+h@camenisch.net"}, "commit"=>"Notify Me »"}  (0.3ms) BEGIN Astrochimp::Signup Exists (1.3ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+h@camenisch.net' LIMIT 1  (0.4ms) ROLLBACK Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (2.6ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (3.7ms) Completed 200 OK in 76ms (Views: 9.2ms | ActiveRecord: 2.0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 15:41:48 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 15:41:48 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 15:41:48 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 15:41:48 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 15:41:48 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 15:41:48 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 15:41:48 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started POST "/signups" for 127.0.0.1 at 2012-12-06 15:41:52 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WSNX/u/MZmQZv6uuWaFdVA9B71SGEutjsE1xU0oE6LA=", "signup"=>{"email"=>"jonathan+i@camenisch.net"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (0.5ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+i@camenisch.net' LIMIT 1 SQL (2.3ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referral_count", "referral_id", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 06 Dec 2012 21:41:53 UTC +00:00], ["email", "jonathan+i@camenisch.net"], ["referral_count", 0], ["referral_id", nil], ["status", 0], ["updated_at", Thu, 06 Dec 2012 21:41:53 UTC +00:00]]  (1.4ms) COMMIT Redirected to http://astrochimp.dev:3000/signups/2568?notice=Thanks%21+We%27ll+drop+you+a+line+when+we+launch%21 Completed 302 Found in 1045ms (ActiveRecord: 4.4ms) Started GET "/signups/2568?notice=Thanks%21+We%27ll+drop+you+a+line+when+we+launch%21" for 127.0.0.1 at 2012-12-06 15:41:53 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"notice"=>"Thanks! We'll drop you a line when we launch!", "id"=>"2568"} Astrochimp::Signup Load (0.8ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 17]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (1.1ms) Completed 200 OK in 10ms (Views: 7.0ms | ActiveRecord: 0.8ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 15:41:54 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 15:41:54 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 15:41:54 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 15:41:54 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 15:41:54 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 15:41:54 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 15:41:54 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 15:43:55 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 15:43:55 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 15:43:55 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 15:43:55 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 15:43:55 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 15:43:55 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 15:43:55 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started POST "/signups" for 127.0.0.1 at 2012-12-06 15:44:01 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WSNX/u/MZmQZv6uuWaFdVA9B71SGEutjsE1xU0oE6LA=", "signup"=>{"email"=>"jonathan+j@camenisch.net"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (0.4ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+j@camenisch.net' LIMIT 1 SQL (0.8ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referral_count", "referral_id", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 06 Dec 2012 21:44:02 UTC +00:00], ["email", "jonathan+j@camenisch.net"], ["referral_count", 0], ["referral_id", nil], ["status", 0], ["updated_at", Thu, 06 Dec 2012 21:44:02 UTC +00:00]]  (1.7ms) COMMIT Redirected to http://astrochimp.dev:3000/signups/2569 Completed 302 Found in 875ms (ActiveRecord: 6.9ms) Started GET "/signups/2569" for 127.0.0.1 at 2012-12-06 15:44:02 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"2569"} Astrochimp::Signup Load (0.6ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 18]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (1.0ms) Completed 200 OK in 9ms (Views: 7.0ms | ActiveRecord: 0.6ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 15:44:02 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 15:44:02 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 15:44:02 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 15:44:02 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 15:44:02 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 15:44:02 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 15:44:02 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/signups/2569" for 127.0.0.1 at 2012-12-06 15:45:15 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"2569"} Astrochimp::Signup Load (0.4ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 18]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (0.6ms) Completed 200 OK in 20ms (Views: 6.1ms | ActiveRecord: 2.9ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 15:45:16 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 15:45:16 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 15:45:16 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 15:45:16 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 15:45:16 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 15:45:16 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 15:45:16 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 15:45:17 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 15:45:17 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 15:45:17 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 15:45:17 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 15:45:17 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 15:45:17 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 15:45:17 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started POST "/signups" for 127.0.0.1 at 2012-12-06 15:45:20 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WSNX/u/MZmQZv6uuWaFdVA9B71SGEutjsE1xU0oE6LA=", "signup"=>{"email"=>"jonathan+k@camenisch.net"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (0.5ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+k@camenisch.net' LIMIT 1 SQL (0.6ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referral_count", "referral_id", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 06 Dec 2012 21:45:21 UTC +00:00], ["email", "jonathan+k@camenisch.net"], ["referral_count", 0], ["referral_id", nil], ["status", 0], ["updated_at", Thu, 06 Dec 2012 21:45:21 UTC +00:00]]  (0.9ms) COMMIT Redirected to http://astrochimp.dev:3000/signups/19 Completed 302 Found in 779ms (ActiveRecord: 2.2ms) Started GET "/signups/19" for 127.0.0.1 at 2012-12-06 15:45:21 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"19"} Astrochimp::Signup Load (0.6ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", -99954]] Completed 500 Internal Server Error in 2ms ActiveRecord::RecordNotFound (Couldn't find Astrochimp::Signup with id=-99954): .bundle/gems/activerecord-3.2.8/lib/active_record/relation/finder_methods.rb:341:in `find_one' .bundle/gems/activerecord-3.2.8/lib/active_record/relation/finder_methods.rb:312:in `find_with_ids' .bundle/gems/activerecord-3.2.8/lib/active_record/relation/finder_methods.rb:107:in `find' .bundle/gems/activerecord-3.2.8/lib/active_record/querying.rb:5:in `find' /Users/jcamenisch/projects/astrochimp/app/models/id_code.rb:16:in `find_by_id_code' /Users/jcamenisch/projects/astrochimp/app/models/astrochimp/signup.rb:25:in `find_by_referral_code' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:18:in `show' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:4:in `send_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:403:in `_run__3069508609541433538__process_action__3247429054204720230__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action' .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/railtie/configurable.rb:30:in `method_missing' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call' .bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__1486214886564644326__call__1751983261415996931__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.6ms) Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms) Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (67.0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 15:47:27 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 15:47:27 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 15:47:27 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 15:47:27 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 15:47:27 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 15:47:27 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 15:47:27 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started POST "/signups" for 127.0.0.1 at 2012-12-06 15:47:30 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WSNX/u/MZmQZv6uuWaFdVA9B71SGEutjsE1xU0oE6LA=", "signup"=>{"email"=>"jonathan+l@camenisch.net"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (0.5ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+l@camenisch.net' LIMIT 1 SQL (0.7ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referral_count", "referral_id", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 06 Dec 2012 21:47:31 UTC +00:00], ["email", "jonathan+l@camenisch.net"], ["referral_count", 0], ["referral_id", nil], ["status", 0], ["updated_at", Thu, 06 Dec 2012 21:47:31 UTC +00:00]]  (0.8ms) COMMIT Redirected to http://astrochimp.dev:3000/signups/256b Completed 302 Found in 723ms (ActiveRecord: 4.5ms) Started GET "/signups/256b" for 127.0.0.1 at 2012-12-06 15:47:31 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"256b"} Astrochimp::Signup Load (0.6ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 20]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (0.7ms) Completed 200 OK in 9ms (Views: 6.7ms | ActiveRecord: 0.6ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 15:47:31 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 15:47:31 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 15:47:31 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 15:47:31 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 15:47:31 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 15:47:31 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 15:47:31 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 15:48:08 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 15:48:08 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 15:48:08 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 15:48:08 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 15:48:08 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 15:48:08 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 15:48:08 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started POST "/signups" for 127.0.0.1 at 2012-12-06 16:09:28 -0600 Connecting to database specified by database.yml Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WSNX/u/MZmQZv6uuWaFdVA9B71SGEutjsE1xU0oE6LA=", "signup"=>{"email"=>"jonathan+m@camenisch.net"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (1.4ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+m@camenisch.net' LIMIT 1 SQL (4.0ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referral_count", "referral_id", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 06 Dec 2012 22:09:31 UTC +00:00], ["email", "jonathan+m@camenisch.net"], ["referral_count", 0], ["referral_id", nil], ["status", 0], ["updated_at", Thu, 06 Dec 2012 22:09:31 UTC +00:00]]  (1.0ms) COMMIT Redirected to http://astrochimp.dev:3000/signups/bng Completed 302 Found in 1099ms (ActiveRecord: 20.5ms) Started GET "/signups/bng" for 127.0.0.1 at 2012-12-06 16:09:31 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"bng"} Completed 500 Internal Server Error in 1ms NoMethodError (undefined method `find_by_referral_code' for #): .bundle/gems/activerecord-3.2.8/lib/active_record/dynamic_matchers.rb:27:in `method_missing' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:18:in `show' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:4:in `send_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:403:in `_run__1812927237913668646__process_action__4327735101290716958__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action' .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/railtie/configurable.rb:30:in `method_missing' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call' .bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__1453287134880630886__call__4262739579520414886__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms) Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms) Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.9ms) Started GET "/signups/bng" for 127.0.0.1 at 2012-12-06 16:32:57 -0600 Connecting to database specified by database.yml Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"bng"} Completed 500 Internal Server Error in 63ms NoMethodError (undefined method `find_by_referral_code' for #): .bundle/gems/activerecord-3.2.8/lib/active_record/dynamic_matchers.rb:27:in `method_missing' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:18:in `show' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:4:in `send_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:403:in `_run__3448613152394117499__process_action__1521450167083150871__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action' .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/railtie/configurable.rb:30:in `method_missing' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call' .bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__3104047617820804783__call__2152058248454550848__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms) Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms) Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.7ms) Started GET "/signups/bng" for 127.0.0.1 at 2012-12-06 16:33:24 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"bng"} Completed 500 Internal Server Error in 5ms NameError (undefined local variable or method `code' for #): .bundle/gems/activerecord-3.2.8/lib/active_record/dynamic_matchers.rb:50:in `method_missing' /Users/jcamenisch/projects/astrochimp/app/models/astrochimp/signup.rb:32:in `find' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:18:in `show' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:4:in `send_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:403:in `_run__3448613152394117499__process_action__1521450167083150871__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action' .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/railtie/configurable.rb:30:in `method_missing' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call' .bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__3104047617820804783__call__2152058248454550848__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms) Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms) Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.5ms) Started GET "/signups/bng" for 127.0.0.1 at 2012-12-06 16:33:38 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"bng"} Astrochimp::Signup Load (5.3ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 21]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (4.1ms) Completed 200 OK in 173ms (Views: 152.3ms | ActiveRecord: 8.2ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 16:33:39 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (2ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 16:33:39 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (5ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 16:33:39 -0600 Served asset /astrochimp/application.css - 304 Not Modified (3ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 16:33:39 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 16:33:39 -0600 Served asset /jquery_ujs.js - 304 Not Modified (3ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 16:33:39 -0600 Served asset /jquery.js - 304 Not Modified (4ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 16:33:39 -0600 Served asset /astrochimp/application.js - 304 Not Modified (7ms) Started GET "/signups/" for 127.0.0.1 at 2012-12-06 16:33:48 -0600 Processing by Astrochimp::SignupsController#index as HTML Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (3.2ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (10.2ms) Completed 200 OK in 57ms (Views: 56.2ms | ActiveRecord: 0.0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 16:33:48 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 16:33:48 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 16:33:48 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 16:33:48 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 16:33:48 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 16:33:48 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 16:33:48 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started POST "/signups" for 127.0.0.1 at 2012-12-06 16:33:57 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WSNX/u/MZmQZv6uuWaFdVA9B71SGEutjsE1xU0oE6LA=", "signup"=>{"email"=>"jonathan+n@camenisch.net"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (0.9ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+n@camenisch.net' LIMIT 1 SQL (3.1ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referral_count", "referral_id", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 06 Dec 2012 22:33:57 UTC +00:00], ["email", "jonathan+n@camenisch.net"], ["referral_count", 0], ["referral_id", nil], ["status", 0], ["updated_at", Thu, 06 Dec 2012 22:33:57 UTC +00:00]]  (1.3ms) COMMIT Redirected to http://astrochimp.dev:3000/signups/bnh Completed 302 Found in 854ms (ActiveRecord: 5.6ms) Started GET "/signups/bnh" for 127.0.0.1 at 2012-12-06 16:33:57 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"bnh"} Astrochimp::Signup Load (0.5ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 22]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (0.6ms) Completed 200 OK in 47ms (Views: 45.4ms | ActiveRecord: 0.5ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 16:33:58 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 16:33:58 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 16:33:58 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 16:33:58 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 16:33:58 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 16:33:58 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 16:33:58 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started POST "/signups" for 127.0.0.1 at 2012-12-06 16:34:23 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WSNX/u/MZmQZv6uuWaFdVA9B71SGEutjsE1xU0oE6LA=", "signup"=>{"email"=>"jonathan+o@camenisch.net"}, "commit"=>"Notify Me »"}  (0.4ms) BEGIN Astrochimp::Signup Exists (0.6ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+o@camenisch.net' LIMIT 1 SQL (0.6ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referral_count", "referral_id", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 06 Dec 2012 22:34:24 UTC +00:00], ["email", "jonathan+o@camenisch.net"], ["referral_count", 0], ["referral_id", nil], ["status", 0], ["updated_at", Thu, 06 Dec 2012 22:34:24 UTC +00:00]]  (0.9ms) COMMIT Redirected to http://astrochimp.dev:3000/signups/ovm Completed 302 Found in 1409ms (ActiveRecord: 4.9ms) Started GET "/signups/ovm" for 127.0.0.1 at 2012-12-06 16:34:24 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"ovm"} Astrochimp::Signup Load (0.5ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 23]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (0.9ms) Completed 200 OK in 11ms (Views: 8.6ms | ActiveRecord: 0.5ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 16:34:25 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 16:34:25 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 16:34:25 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 16:34:25 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 16:34:25 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 16:34:25 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 16:34:25 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started POST "/signups" for 127.0.0.1 at 2012-12-06 16:34:41 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WSNX/u/MZmQZv6uuWaFdVA9B71SGEutjsE1xU0oE6LA=", "signup"=>{"email"=>"jonathan+p@camenisch.net"}, "commit"=>"Notify Me »"}  (0.3ms) BEGIN Astrochimp::Signup Exists (0.5ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+p@camenisch.net' LIMIT 1 SQL (0.7ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referral_count", "referral_id", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 06 Dec 2012 22:34:42 UTC +00:00], ["email", "jonathan+p@camenisch.net"], ["referral_count", 0], ["referral_id", nil], ["status", 0], ["updated_at", Thu, 06 Dec 2012 22:34:42 UTC +00:00]]  (0.9ms) COMMIT Redirected to http://astrochimp.dev:3000/signups/frzb Completed 302 Found in 1305ms (ActiveRecord: 5.0ms) Started GET "/signups/frzb" for 127.0.0.1 at 2012-12-06 16:34:42 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"frzb"} Astrochimp::Signup Load (0.5ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 24]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (0.6ms) Completed 200 OK in 9ms (Views: 6.5ms | ActiveRecord: 0.5ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 16:34:42 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 16:34:42 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 16:34:42 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 16:34:42 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 16:34:42 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 16:34:42 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 16:34:42 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started POST "/signups" for 127.0.0.1 at 2012-12-06 16:36:15 -0600 Connecting to database specified by database.yml Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WSNX/u/MZmQZv6uuWaFdVA9B71SGEutjsE1xU0oE6LA=", "signup"=>{"email"=>"jonathan+q@camenisch.net"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (1.5ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+q@camenisch.net' LIMIT 1 SQL (2.6ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referral_count", "referral_id", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 06 Dec 2012 22:36:17 UTC +00:00], ["email", "jonathan+q@camenisch.net"], ["referral_count", 0], ["referral_id", nil], ["status", 0], ["updated_at", Thu, 06 Dec 2012 22:36:17 UTC +00:00]]  (1.3ms) COMMIT Redirected to http://astrochimp.dev:3000/signups/bkyp Completed 302 Found in 939ms (ActiveRecord: 45.8ms) Started GET "/signups/bkyp" for 127.0.0.1 at 2012-12-06 16:36:17 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"bkyp"} Astrochimp::Signup Load (1.0ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 25]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (3.0ms) Completed 200 OK in 39ms (Views: 36.6ms | ActiveRecord: 1.0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 16:36:17 -0600 Served asset /astrochimp/application.css - 304 Not Modified (5ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 16:36:17 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (4ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 16:36:17 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (3ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 16:36:17 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 16:36:17 -0600 Served asset /jquery.js - 304 Not Modified (3ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 16:36:17 -0600 Served asset /jquery_ujs.js - 304 Not Modified (2ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 16:36:17 -0600 Served asset /astrochimp/application.js - 304 Not Modified (50ms) Started POST "/signups" for 127.0.0.1 at 2012-12-06 16:37:22 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WSNX/u/MZmQZv6uuWaFdVA9B71SGEutjsE1xU0oE6LA=", "signup"=>{"email"=>"jonathan+r@camenisch.net"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (0.4ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+r@camenisch.net' LIMIT 1 SQL (0.8ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referral_count", "referral_id", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 06 Dec 2012 22:37:23 UTC +00:00], ["email", "jonathan+r@camenisch.net"], ["referral_count", 0], ["referral_id", nil], ["status", 0], ["updated_at", Thu, 06 Dec 2012 22:37:23 UTC +00:00]]  (1.6ms) COMMIT Redirected to http://astrochimp.dev:3000/signups/bmla Completed 302 Found in 277ms (ActiveRecord: 2.9ms) Started GET "/signups/bmla" for 127.0.0.1 at 2012-12-06 16:37:23 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"bmla"} Astrochimp::Signup Load (0.5ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 26]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (0.5ms) Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.5ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 16:37:23 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 16:37:23 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 16:37:23 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 16:37:23 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 16:37:23 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 16:37:23 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 16:37:23 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started POST "/signups" for 127.0.0.1 at 2012-12-06 16:37:50 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WSNX/u/MZmQZv6uuWaFdVA9B71SGEutjsE1xU0oE6LA=", "signup"=>{"email"=>"jonathan+s@camenisch.net"}, "commit"=>"Notify Me »"}  (0.3ms) BEGIN Astrochimp::Signup Exists (0.6ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+s@camenisch.net' LIMIT 1 SQL (0.7ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referral_count", "referral_id", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 06 Dec 2012 22:37:50 UTC +00:00], ["email", "jonathan+s@camenisch.net"], ["referral_count", 0], ["referral_id", nil], ["status", 0], ["updated_at", Thu, 06 Dec 2012 22:37:50 UTC +00:00]]  (15.5ms) COMMIT Redirected to http://astrochimp.dev:3000/signups/dyv Completed 302 Found in 657ms (ActiveRecord: 20.0ms) Started GET "/signups/dyv" for 127.0.0.1 at 2012-12-06 16:37:51 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"dyv"} Astrochimp::Signup Load (0.5ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 27]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (0.7ms) Completed 200 OK in 9ms (Views: 6.5ms | ActiveRecord: 0.5ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 16:37:51 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 16:37:51 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 16:37:51 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 16:37:51 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 16:37:51 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 16:37:51 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 16:37:51 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/signups/dyv" for 127.0.0.1 at 2012-12-06 16:38:14 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"dyv"} Astrochimp::Signup Load (0.5ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 27]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (0.7ms) Completed 200 OK in 8ms (Views: 6.2ms | ActiveRecord: 0.5ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 16:38:14 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 16:38:14 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 16:38:14 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 16:38:14 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 16:38:14 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 16:38:14 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 16:38:14 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/signups/dyv" for 127.0.0.1 at 2012-12-06 16:38:16 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"dyv"} Astrochimp::Signup Load (0.6ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 27]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (0.7ms) Completed 200 OK in 10ms (Views: 7.6ms | ActiveRecord: 0.6ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 16:38:16 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 16:38:16 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 16:38:16 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 16:38:16 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 16:38:16 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 16:38:16 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 16:38:16 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/signups" for 127.0.0.1 at 2012-12-06 17:01:44 -0600 Connecting to database specified by database.yml Processing by Astrochimp::SignupsController#index as HTML Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (4.9ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (38.1ms) Completed 200 OK in 121ms (Views: 69.1ms | ActiveRecord: 23.5ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 17:01:45 -0600 Served asset /astrochimp/application.css - 304 Not Modified (7ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 17:01:45 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (2ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 17:01:45 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 17:01:45 -0600 Served asset /jquery_ujs.js - 304 Not Modified (2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 17:01:45 -0600 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 17:01:45 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (2ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 17:01:45 -0600 Served asset /astrochimp/application.js - 304 Not Modified (70ms) Started POST "/signups" for 127.0.0.1 at 2012-12-06 17:01:51 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WSNX/u/MZmQZv6uuWaFdVA9B71SGEutjsE1xU0oE6LA=", "signup"=>{"email"=>"jonathan+t@camenisch.net"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (1.7ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+t@camenisch.net' LIMIT 1 SQL (314.5ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referral_count", "referral_id", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 06 Dec 2012 23:01:52 UTC +00:00], ["email", "jonathan+t@camenisch.net"], ["referral_count", 0], ["referral_id", nil], ["status", 0], ["updated_at", Thu, 06 Dec 2012 23:01:52 UTC +00:00]]  (1.2ms) COMMIT Redirected to http://astrochimp.dev:3000/signups/bwd Completed 302 Found in 1178ms (ActiveRecord: 317.6ms) Started GET "/signups/bwd" for 127.0.0.1 at 2012-12-06 17:01:52 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"bwd"} Astrochimp::Signup Load (0.9ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 28]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (1.3ms) Completed 200 OK in 10ms (Views: 7.3ms | ActiveRecord: 0.9ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 17:01:52 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 17:01:52 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 17:01:52 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 17:01:52 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 17:01:52 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 17:01:52 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 17:01:52 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started POST "/signups" for 127.0.0.1 at 2012-12-06 17:02:17 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WSNX/u/MZmQZv6uuWaFdVA9B71SGEutjsE1xU0oE6LA=", "signup"=>{"email"=>"jonathan+u@camenisch.net"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (0.4ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+u@camenisch.net' LIMIT 1 SQL (0.9ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referral_count", "referral_id", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 06 Dec 2012 23:02:18 UTC +00:00], ["email", "jonathan+u@camenisch.net"], ["referral_count", 0], ["referral_id", nil], ["status", 0], ["updated_at", Thu, 06 Dec 2012 23:02:18 UTC +00:00]]  (0.8ms) COMMIT Redirected to http://astrochimp.dev:3000/signups/peq Completed 302 Found in 329ms (ActiveRecord: 5.6ms) Started GET "/signups/peq" for 127.0.0.1 at 2012-12-06 17:02:18 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"peq"} Astrochimp::Signup Load (0.5ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 29]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (0.8ms) Completed 200 OK in 9ms (Views: 6.7ms | ActiveRecord: 0.5ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 17:02:18 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 17:02:18 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 17:02:18 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 17:02:18 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 17:02:18 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 17:02:18 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 17:02:18 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started POST "/signups" for 127.0.0.1 at 2012-12-06 17:02:33 -0600 Connecting to database specified by database.yml Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WSNX/u/MZmQZv6uuWaFdVA9B71SGEutjsE1xU0oE6LA=", "signup"=>{"email"=>"jonathan+v@camenisch.net"}, "commit"=>"Notify Me »"}  (0.6ms) BEGIN Astrochimp::Signup Exists (1.2ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+v@camenisch.net' LIMIT 1 SQL (2.7ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referral_count", "referral_id", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 06 Dec 2012 23:02:34 UTC +00:00], ["email", "jonathan+v@camenisch.net"], ["referral_count", 0], ["referral_id", nil], ["status", 0], ["updated_at", Thu, 06 Dec 2012 23:02:34 UTC +00:00]]  (1.4ms) COMMIT Redirected to http://astrochimp.dev:3000/signups/pez Completed 302 Found in 481ms (ActiveRecord: 45.0ms) Started GET "/signups/pez" for 127.0.0.1 at 2012-12-06 17:02:34 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"pez"} Astrochimp::Signup Load (1.0ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 30]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (2.9ms) Completed 200 OK in 36ms (Views: 32.8ms | ActiveRecord: 1.0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 17:02:34 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (4ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 17:02:34 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (2ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 17:02:34 -0600 Served asset /astrochimp/application.css - 304 Not Modified (4ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 17:02:34 -0600 Served asset /jquery_ujs.js - 304 Not Modified (3ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 17:02:35 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (3ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 17:02:35 -0600 Served asset /jquery.js - 304 Not Modified (3ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 17:02:35 -0600 Served asset /astrochimp/application.js - 304 Not Modified (48ms) Started POST "/signups" for 127.0.0.1 at 2012-12-06 17:02:53 -0600 Connecting to database specified by database.yml Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WSNX/u/MZmQZv6uuWaFdVA9B71SGEutjsE1xU0oE6LA=", "signup"=>{"email"=>"jonathan+w@camenisch.net"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (1.2ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+w@camenisch.net' LIMIT 1 SQL (2.4ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referral_count", "referral_id", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 06 Dec 2012 23:02:54 UTC +00:00], ["email", "jonathan+w@camenisch.net"], ["referral_count", 0], ["referral_id", nil], ["status", 0], ["updated_at", Thu, 06 Dec 2012 23:02:54 UTC +00:00]]  (1.0ms) COMMIT Redirected to http://astrochimp.dev:3000/signups/fsiw Completed 302 Found in 491ms (ActiveRecord: 14.9ms) Started GET "/signups/fsiw" for 127.0.0.1 at 2012-12-06 17:02:54 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"fsiw"} Astrochimp::Signup Load (1.1ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 31]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (3.6ms) Completed 200 OK in 66ms (Views: 63.6ms | ActiveRecord: 1.1ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 17:02:54 -0600 Served asset /astrochimp/application.css - 304 Not Modified (4ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 17:02:54 -0600 Served asset /jquery_ujs.js - 304 Not Modified (5ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 17:02:54 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (2ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 17:02:54 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (2ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 17:02:55 -0600 Served asset /astrochimp/application.js - 304 Not Modified (7ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 17:02:55 -0600 Served asset /jquery.js - 304 Not Modified (3ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 17:02:55 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (62ms) Connecting to database specified by database.yml Started POST "/signups" for 127.0.0.1 at 2012-12-06 17:10:26 -0600 Connecting to database specified by database.yml Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WSNX/u/MZmQZv6uuWaFdVA9B71SGEutjsE1xU0oE6LA=", "signup"=>{"email"=>"jonathan+x@camenisch.net"}, "commit"=>"Notify Me »"}  (0.4ms) BEGIN Astrochimp::Signup Exists (1.2ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+x@camenisch.net' LIMIT 1 SQL (2.4ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referral_count", "referral_id", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 06 Dec 2012 23:10:28 UTC +00:00], ["email", "jonathan+x@camenisch.net"], ["referral_count", 0], ["referral_id", nil], ["status", 0], ["updated_at", Thu, 06 Dec 2012 23:10:28 UTC +00:00]]  (1.4ms) COMMIT Redirected to http://astrochimp.dev:3000/signups/oc Completed 302 Found in 867ms (ActiveRecord: 15.6ms) Started GET "/signups/oc" for 127.0.0.1 at 2012-12-06 17:10:28 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"oc"} Astrochimp::Signup Load (1.0ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 32]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (3.5ms) Completed 200 OK in 36ms (Views: 33.7ms | ActiveRecord: 1.0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 17:10:28 -0600 Served asset /jquery_ujs.js - 304 Not Modified (5ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 17:10:28 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (2ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 17:10:28 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (3ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 17:10:28 -0600 Served asset /astrochimp/application.css - 304 Not Modified (4ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 17:10:28 -0600 Served asset /jquery.js - 304 Not Modified (3ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 17:10:28 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (2ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 17:10:28 -0600 Served asset /astrochimp/application.js - 304 Not Modified (8ms) Started GET "/signups/oc" for 127.0.0.1 at 2012-12-06 17:10:51 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"oc"} Astrochimp::Signup Load (0.5ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 32]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (0.7ms) Completed 200 OK in 8ms (Views: 5.9ms | ActiveRecord: 0.5ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 17:10:51 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 17:10:51 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 17:10:51 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 17:10:51 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 17:10:51 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 17:10:51 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 17:10:51 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/signups/oc" for 127.0.0.1 at 2012-12-06 17:11:55 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"oc"} Astrochimp::Signup Load (0.4ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 32]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (1.4ms) Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.4ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 17:11:55 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 17:11:55 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 17:11:55 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 17:11:55 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 17:11:55 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 17:11:55 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 17:11:55 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/signups/oc" for 127.0.0.1 at 2012-12-06 17:12:23 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"oc"} Astrochimp::Signup Load (0.5ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 32]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (1.5ms) Completed 200 OK in 11ms (Views: 8.6ms | ActiveRecord: 0.5ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 17:12:23 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 17:12:23 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 17:12:23 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 17:12:23 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 17:12:23 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 17:12:23 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 17:12:23 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started POST "/signups" for 127.0.0.1 at 2012-12-06 17:13:38 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WSNX/u/MZmQZv6uuWaFdVA9B71SGEutjsE1xU0oE6LA=", "signup"=>{"email"=>"jonathan+y@camenisch.net"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (0.4ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+y@camenisch.net' LIMIT 1 SQL (0.8ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referral_count", "referral_id", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 06 Dec 2012 23:13:39 UTC +00:00], ["email", "jonathan+y@camenisch.net"], ["referral_count", 0], ["referral_id", nil], ["status", 0], ["updated_at", Thu, 06 Dec 2012 23:13:39 UTC +00:00]]  (3.1ms) COMMIT Redirected to http://astrochimp.dev:3000/signups/mk Completed 302 Found in 736ms (ActiveRecord: 7.2ms) Started GET "/signups/mk" for 127.0.0.1 at 2012-12-06 17:13:39 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"mk"} Astrochimp::Signup Load (0.5ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 33]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (1.0ms) Completed 200 OK in 9ms (Views: 7.1ms | ActiveRecord: 0.5ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 17:13:39 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 17:13:39 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 17:13:39 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 17:13:39 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 17:13:39 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 17:13:39 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 17:13:39 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/signups/" for 127.0.0.1 at 2012-12-06 17:13:53 -0600 Connecting to database specified by database.yml Processing by Astrochimp::SignupsController#index as HTML Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (5.5ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (10.7ms) Completed 200 OK in 133ms (Views: 63.6ms | ActiveRecord: 14.0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 17:13:54 -0600 Served asset /astrochimp/application.css - 304 Not Modified (8ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 17:13:54 -0600 Served asset /jquery_ujs.js - 304 Not Modified (2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 17:13:54 -0600 Served asset /jquery.js - 304 Not Modified (4ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 17:13:54 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (2ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 17:13:54 -0600 Served asset /astrochimp/application.js - 304 Not Modified (48ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 17:13:54 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (4ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 17:13:54 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (3ms) Started POST "/signups" for 127.0.0.1 at 2012-12-06 17:14:04 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WSNX/u/MZmQZv6uuWaFdVA9B71SGEutjsE1xU0oE6LA=", "signup"=>{"email"=>"jonathan+z@camenisch.net"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (1.5ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+z@camenisch.net' LIMIT 1 SQL (2.1ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referral_count", "referral_id", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 06 Dec 2012 23:14:04 UTC +00:00], ["email", "jonathan+z@camenisch.net"], ["referral_count", 0], ["referral_id", nil], ["status", 0], ["updated_at", Thu, 06 Dec 2012 23:14:04 UTC +00:00]]  (1.1ms) COMMIT Redirected to http://astrochimp.dev:3000/signups/mt Completed 302 Found in 504ms (ActiveRecord: 5.1ms) Started GET "/signups/mt" for 127.0.0.1 at 2012-12-06 17:14:05 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"mt"} Astrochimp::Signup Load (1.2ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 34]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (2.2ms) Completed 200 OK in 13ms (Views: 9.1ms | ActiveRecord: 1.2ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 17:14:05 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 17:14:05 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 17:14:05 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 17:14:05 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 17:14:05 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 17:14:05 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 17:14:05 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started POST "/signups" for 127.0.0.1 at 2012-12-06 17:14:24 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WSNX/u/MZmQZv6uuWaFdVA9B71SGEutjsE1xU0oE6LA=", "signup"=>{"email"=>"jonathan+aa@camenisch.net"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (0.4ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+aa@camenisch.net' LIMIT 1 SQL (0.7ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referral_count", "referral_id", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 06 Dec 2012 23:14:24 UTC +00:00], ["email", "jonathan+aa@camenisch.net"], ["referral_count", 0], ["referral_id", nil], ["status", 0], ["updated_at", Thu, 06 Dec 2012 23:14:24 UTC +00:00]]  (1.3ms) COMMIT Redirected to http://astrochimp.dev:3000/signups/bamd Completed 302 Found in 309ms (ActiveRecord: 5.8ms) Started GET "/signups/bamd" for 127.0.0.1 at 2012-12-06 17:14:24 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"bamd"} Astrochimp::Signup Load (0.5ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 35]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (1.0ms) Completed 200 OK in 9ms (Views: 6.6ms | ActiveRecord: 0.5ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 17:14:24 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 17:14:24 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 17:14:24 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 17:14:24 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 17:14:24 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 17:14:24 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 17:14:24 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2012-12-06 20:42:20 -0600 Processing by Astrochimp::SignupsController#index as HTML Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (2.5ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (4.1ms) Completed 200 OK in 24ms (Views: 11.7ms | ActiveRecord: 2.6ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 20:42:20 -0600 Served asset /astrochimp/signups.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 20:42:20 -0600 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 20:42:20 -0600 Served asset /astrochimp/application.css - 200 OK (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 20:42:20 -0600 Served asset /astrochimp/application.js - 200 OK (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 20:42:20 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 20:42:20 -0600 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 20:42:20 -0600 Served asset /astrochimp/signups.js - 200 OK (0ms) Started GET "/assets/astrochimp/bg-noise.png" for 127.0.0.1 at 2012-12-06 20:42:20 -0600 Served asset /astrochimp/bg-noise.png - 200 OK (5ms) Started GET "/assets/astrochimp/iphone4-frame-black.png" for 127.0.0.1 at 2012-12-06 20:42:20 -0600 Served asset /astrochimp/iphone4-frame-black.png - 200 OK (3ms) Connecting to database specified by database.yml Started GET "/bamd" for 127.0.0.1 at 2012-12-06 20:43:21 -0600 Processing by Astrochimp::SignupsController#index as HTML Parameters: {"referral_id"=>"bamd"} Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (1.3ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (2.2ms) Completed 200 OK in 45ms (Views: 43.9ms | ActiveRecord: 0.0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 20:43:22 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 20:43:22 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 20:43:22 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 20:43:22 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/bamd" for 127.0.0.1 at 2012-12-06 20:43:24 -0600 Processing by Astrochimp::SignupsController#index as HTML Parameters: {"referral_id"=>"bamd"} Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (1.2ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (2.0ms) Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 20:43:24 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 20:43:24 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 20:43:24 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 20:43:24 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 20:43:24 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 20:43:24 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 20:43:24 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/bg-noise.png" for 127.0.0.1 at 2012-12-06 20:43:24 -0600 Served asset /astrochimp/bg-noise.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/iphone4-frame-black.png" for 127.0.0.1 at 2012-12-06 20:43:24 -0600 Served asset /astrochimp/iphone4-frame-black.png - 304 Not Modified (0ms) Started GET "/bamd" for 127.0.0.1 at 2012-12-06 20:51:02 -0600 Processing by Astrochimp::SignupsController#index as HTML Parameters: {"referral_id"=>"bamd"} Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (1.9ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (3.2ms) Completed 200 OK in 19ms (Views: 8.1ms | ActiveRecord: 2.6ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 20:51:02 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 20:51:02 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 20:51:02 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 20:51:02 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 20:51:02 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 20:51:02 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 20:51:02 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/iphone4-frame-black.png" for 127.0.0.1 at 2012-12-06 20:51:02 -0600 Served asset /astrochimp/iphone4-frame-black.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/bg-noise.png" for 127.0.0.1 at 2012-12-06 20:51:02 -0600 Served asset /astrochimp/bg-noise.png - 304 Not Modified (0ms) Started GET "/bamd" for 127.0.0.1 at 2012-12-06 20:52:39 -0600 Processing by Astrochimp::SignupsController#index as HTML Parameters: {"referral_code"=>"bamd"} Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (2.5ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (3.9ms) Completed 200 OK in 21ms (Views: 9.8ms | ActiveRecord: 2.6ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 20:52:39 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 20:52:39 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 20:52:39 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 20:52:39 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 20:52:39 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 20:52:39 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 20:52:39 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/bamd" for 127.0.0.1 at 2012-12-06 20:52:43 -0600 Processing by Astrochimp::SignupsController#index as HTML Parameters: {"referral_code"=>"bamd"} Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (1.9ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (3.2ms) Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 20:52:43 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 20:52:43 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 20:52:43 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 20:52:43 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 20:52:43 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 20:52:43 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 20:52:43 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/bamd" for 127.0.0.1 at 2012-12-06 20:59:34 -0600 Processing by Astrochimp::SignupsController#index as HTML Parameters: {"referral_code"=>"bamd"} Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (1.9ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (3.1ms) Completed 200 OK in 21ms (Views: 8.5ms | ActiveRecord: 2.6ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 20:59:34 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 20:59:34 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 20:59:34 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 20:59:34 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 20:59:34 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 20:59:34 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 20:59:34 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started POST "/signups" for 127.0.0.1 at 2012-12-06 20:59:59 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"aQinR0KJjvGYAqelp/+RNxqWvm93bYyrcCCr0SsvSSs=", "signup"=>{"email"=>"jonathan+bb@camenisch.net"}, "commit"=>"Notify Me »"} Completed 500 Internal Server Error in 1ms ActiveModel::MassAssignmentSecurity::Error (Can't mass-assign protected attributes: referral_id): .bundle/gems/activemodel-3.2.8/lib/active_model/mass_assignment_security/sanitizer.rb:48:in `process_removed_attributes' .bundle/gems/activemodel-3.2.8/lib/active_model/mass_assignment_security/sanitizer.rb:20:in `debug_protected_attribute_removal' .bundle/gems/activemodel-3.2.8/lib/active_model/mass_assignment_security/sanitizer.rb:12:in `sanitize' .bundle/gems/activemodel-3.2.8/lib/active_model/mass_assignment_security.rb:230:in `sanitize_for_mass_assignment' .bundle/gems/activerecord-3.2.8/lib/active_record/attribute_assignment.rb:75:in `assign_attributes' .bundle/gems/activerecord-3.2.8/lib/active_record/base.rb:498:in `initialize' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:29:in `new' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:29:in `create' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:4:in `send_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:403:in `_run__4443394568741555155__process_action__1174199498484126570__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action' .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/railtie/configurable.rb:30:in `method_missing' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call' .bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb:35:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__3933331644276234895__call__3993505467526701896__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms) Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms) Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.6ms) Started POST "/signups" for 127.0.0.1 at 2012-12-06 21:00:22 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"aQinR0KJjvGYAqelp/+RNxqWvm93bYyrcCCr0SsvSSs=", "signup"=>{"email"=>"jonathan+bb@camenisch.net"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (0.4ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+bb@camenisch.net' LIMIT 1 SQL (0.9ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referral_count", "referral_id", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Fri, 07 Dec 2012 03:00:23 UTC +00:00], ["email", "jonathan+bb@camenisch.net"], ["referral_count", 0], ["referral_id", 35], ["status", 0], ["updated_at", Fri, 07 Dec 2012 03:00:23 UTC +00:00]]  (1.1ms) COMMIT Redirected to http://localhost:3000/signups/bamm Completed 302 Found in 366ms (ActiveRecord: 4.2ms) Started GET "/signups/bamm" for 127.0.0.1 at 2012-12-06 21:00:23 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"bamm"} Astrochimp::Signup Load (0.6ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 36]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (1.0ms) Completed 200 OK in 10ms (Views: 7.3ms | ActiveRecord: 0.6ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 21:00:23 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 21:00:23 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 21:00:23 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 21:00:23 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 21:00:23 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 21:00:23 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 21:00:23 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/signups/bamm" for 127.0.0.1 at 2012-12-06 21:04:52 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"bamm"} Astrochimp::Signup Load (0.4ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 36]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (32.8ms) Completed 500 Internal Server Error in 83ms ActionView::Template::Error (wrong number of arguments (2 for 1)): 1:

2:

3: Your referral link to invite others: 4: <%= url_for :referral_link, referral_code: @signup.referral_code %> 6:

7:

Your signup object:

.bundle/gems/actionpack-3.2.8/lib/action_view/helpers/url_helper.rb:100:in `url_for' /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb:4:in `___sers_jcamenisch_projects_astrochimp_app_views_astrochimp_signups_show_html_erb__4086888284527222157_2165089320' .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:145:in `block in render' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:125:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:143:in `render' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:45:in `render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:18:in `render' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:36:in `render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:17:in `render' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:110:in `_render_template' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/streaming.rb:225:in `_render_template' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:103:in `render_to_body' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/renderers.rb:28:in `render_to_body' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/compatibility.rb:50:in `render_to_body' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:88:in `render' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:16:in `render' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' .bundle/gems/activesupport-3.2.8/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' .bundle/gems/activesupport-3.2.8/lib/active_support/core_ext/benchmark.rb:5:in `ms' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:40:in `block in render' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:39:in `render' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:10:in `default_render' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:5:in `send_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:403:in `_run__4443394568741555155__process_action__3102736460580023962__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action' .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/railtie/configurable.rb:30:in `method_missing' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call' .bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__3933331644276234895__call__3993505467526701896__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms) Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.1ms) Started GET "/signups/bamm" for 127.0.0.1 at 2012-12-06 21:11:59 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"bamm"} Astrochimp::Signup Load (0.6ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 36]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (2.5ms) Completed 200 OK in 11ms (Views: 8.4ms | ActiveRecord: 0.6ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 21:11:59 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 21:11:59 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 21:11:59 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 21:11:59 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 21:11:59 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 21:11:59 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 21:11:59 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/signups/bamm" for 127.0.0.1 at 2012-12-06 21:12:58 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"bamm"} Astrochimp::Signup Load (0.5ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 36]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (1.5ms) Completed 200 OK in 8ms (Views: 6.1ms | ActiveRecord: 0.5ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 21:12:58 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 21:12:58 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 21:12:58 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 21:12:58 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 21:12:58 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 21:12:58 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (5ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 21:12:58 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/signups/bamm" for 127.0.0.1 at 2012-12-06 21:13:24 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"bamm"} Astrochimp::Signup Load (0.4ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 36]] ERROR: compiling ___sers_jcamenisch_projects_astrochimp_app_views_astrochimp_signups_show_html_erb__4086888284527222157_2190538060 RAISED /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb:5: syntax error, unexpected ')', expecting tASSOC ...e: @signup.referral_code, true) );@output_buffer.safe_concat... ... ^ /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb:12: syntax error, unexpected keyword_ensure, expecting ')' /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb:14: syntax error, unexpected keyword_end, expecting ')' Function body: def ___sers_jcamenisch_projects_astrochimp_app_views_astrochimp_signups_show_html_erb__4086888284527222157_2190538060(local_assigns, output_buffer) _old_virtual_path, @virtual_path = @virtual_path, "astrochimp/signups/show";_old_output_buffer = @output_buffer;;@output_buffer = output_buffer || ActionView::OutputBuffer.new;@output_buffer.safe_concat('

Your referral link to invite others: ');@output_buffer.append= ( link_to referral_link_path(referral_code: @signup.referral_code), referral_link_path(referral_code: @signup.referral_code, true) );@output_buffer.safe_concat(' ');@output_buffer.safe_concat('

Your signup object:

  ');@output_buffer.append= ( @signup.inspect );@output_buffer.safe_concat('
');@output_buffer.safe_concat('
');@output_buffer.to_s ensure @virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer end Backtrace: /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:297:in `module_eval' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:297:in `compile' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:244:in `block in compile!' :10:in `synchronize' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:232:in `compile!' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:144:in `block in render' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:125:in `instrument' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:143:in `render' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:45:in `render_template' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:18:in `render' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:36:in `render_template' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:17:in `render' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:110:in `_render_template' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_controller/metal/streaming.rb:225:in `_render_template' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:103:in `render_to_body' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_controller/metal/renderers.rb:28:in `render_to_body' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_controller/metal/compatibility.rb:50:in `render_to_body' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:88:in `render' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:16:in `render' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/activesupport-3.2.8/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/activesupport-3.2.8/lib/active_support/core_ext/benchmark.rb:5:in `ms' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:40:in `block in render' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:39:in `render' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:10:in `default_render' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:5:in `send_action' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:403:in `_run__4443394568741555155__process_action__3102736460580023962__callbacks' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/railties-3.2.8/lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__3933331644276234895__call__3993505467526701896__callbacks' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' /Users/jcamenisch/projects/astrochimp/test/dummy/.bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (1.1ms) Completed 500 Internal Server Error in 6ms ActionView::Template::Error (/Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb:5: syntax error, unexpected ')', expecting tASSOC ...e: @signup.referral_code, true) );@output_buffer.safe_concat... ... ^ /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb:12: syntax error, unexpected keyword_ensure, expecting ')' /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb:14: syntax error, unexpected keyword_end, expecting ')'): 2:

3: Your referral link to invite others: 4: <%= link_to referral_link_path(referral_code: @signup.referral_code), 5: referral_link_path(referral_code: @signup.referral_code, true) %> 6:

7:

Your signup object:

8:
  .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:297:in `module_eval'
  .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:297:in `compile'
  .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:244:in `block in compile!'
  :10:in `synchronize'
  .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:232:in `compile!'
  .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:144:in `block in render'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:125:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:143:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:18:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:36:in `render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:17:in `render'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:110:in `_render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/streaming.rb:225:in `_render_template'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:103:in `render_to_body'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:88:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:16:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
  .bundle/gems/activesupport-3.2.8/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
  .bundle/gems/activesupport-3.2.8/lib/active_support/core_ext/benchmark.rb:5:in `ms'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
  .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:39:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:403:in `_run__4443394568741555155__process_action__3102736460580023962__callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
  .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/railtie/configurable.rb:30:in `method_missing'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
  .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call'
  .bundle/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call'
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__3933331644276234895__call__3993505467526701896__callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app'
  .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call'
  .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'


  Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
  Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
  Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.0ms)


Started GET "/signups/bamm" for 127.0.0.1 at 2012-12-06 21:15:01 -0600
Processing by Astrochimp::SignupsController#show as HTML
  Parameters: {"id"=>"bamm"}
  Astrochimp::Signup Load (0.5ms)  SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1  [["id", 36]]
  Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (2.0ms)
Completed 200 OK in 10ms (Views: 7.6ms | ActiveRecord: 0.5ms)


Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 21:15:02 -0600
Served asset /astrochimp/application.css - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 21:15:02 -0600
Served asset /astrochimp/signups.css - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 21:15:02 -0600
Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms)


Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 21:15:02 -0600
Served asset /jquery_ujs.js - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 21:15:02 -0600
Served asset /astrochimp/signups.js - 304 Not Modified (0ms)


Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 21:15:02 -0600
Served asset /jquery.js - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 21:15:02 -0600
Served asset /astrochimp/application.js - 304 Not Modified (0ms)


Started GET "/bamm" for 127.0.0.1 at 2012-12-06 21:15:13 -0600
Processing by Astrochimp::SignupsController#index as HTML
  Parameters: {"referral_code"=>"bamm"}
  Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (3.1ms)
  Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (4.8ms)
Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms)


Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 21:15:13 -0600
Served asset /astrochimp/application.css - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 21:15:13 -0600
Served asset /astrochimp/signups.css - 304 Not Modified (0ms)


Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 21:15:13 -0600
Served asset /jquery.js - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 21:15:13 -0600
Served asset /astrochimp/signups.js - 304 Not Modified (0ms)


Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 21:15:13 -0600
Served asset /jquery_ujs.js - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 21:15:13 -0600
Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 21:15:13 -0600
Served asset /astrochimp/application.js - 304 Not Modified (0ms)


Started POST "/signups" for 127.0.0.1 at 2012-12-06 21:15:21 -0600
Processing by Astrochimp::SignupsController#create as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"aQinR0KJjvGYAqelp/+RNxqWvm93bYyrcCCr0SsvSSs=", "signup"=>{"email"=>"jonathan+cc@camenisch.net"}, "commit"=>"Notify Me »"}
   (0.3ms)  BEGIN
  Astrochimp::Signup Exists (0.5ms)  SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+cc@camenisch.net' LIMIT 1
  SQL (0.7ms)  INSERT INTO "astrochimp_signups" ("created_at", "email", "referral_count", "referral_id", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", Fri, 07 Dec 2012 03:15:22 UTC +00:00], ["email", "jonathan+cc@camenisch.net"], ["referral_count", 0], ["referral_id", 36], ["status", 0], ["updated_at", Fri, 07 Dec 2012 03:15:22 UTC +00:00]]
   (0.8ms)  COMMIT
Redirected to http://localhost:3000/signups/bamv
Completed 302 Found in 707ms (ActiveRecord: 2.2ms)


Started GET "/signups/bamv" for 127.0.0.1 at 2012-12-06 21:15:22 -0600
Processing by Astrochimp::SignupsController#show as HTML
  Parameters: {"id"=>"bamv"}
  Astrochimp::Signup Load (0.4ms)  SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1  [["id", 37]]
  Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (1.0ms)
Completed 200 OK in 8ms (Views: 6.2ms | ActiveRecord: 0.4ms)


Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 21:15:22 -0600
Served asset /astrochimp/application.css - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 21:15:22 -0600
Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 21:15:22 -0600
Served asset /astrochimp/signups.css - 304 Not Modified (0ms)


Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 21:15:22 -0600
Served asset /jquery.js - 304 Not Modified (0ms)


Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 21:15:22 -0600
Served asset /jquery_ujs.js - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 21:15:22 -0600
Served asset /astrochimp/signups.js - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 21:15:22 -0600
Served asset /astrochimp/application.js - 304 Not Modified (0ms)


Started GET "/signups/bamv" for 127.0.0.1 at 2012-12-06 21:16:48 -0600
Processing by Astrochimp::SignupsController#show as HTML
  Parameters: {"id"=>"bamv"}
  Astrochimp::Signup Load (0.5ms)  SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1  [["id", 37]]
  Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (1.8ms)
Completed 200 OK in 9ms (Views: 7.5ms | ActiveRecord: 0.5ms)


Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 21:16:48 -0600
Served asset /astrochimp/signups.css - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 21:16:48 -0600
Served asset /astrochimp/application.css - 304 Not Modified (0ms)


Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 21:16:48 -0600
Served asset /jquery_ujs.js - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 21:16:48 -0600
Served asset /astrochimp/signups.js - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 21:16:48 -0600
Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms)


Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 21:16:48 -0600
Served asset /jquery.js - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 21:16:48 -0600
Served asset /astrochimp/application.js - 304 Not Modified (0ms)


Started GET "/bamv" for 127.0.0.1 at 2012-12-06 21:40:45 -0600
Processing by Astrochimp::SignupsController#index as HTML
  Parameters: {"referrer_code"=>"bamv"}
  Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (2.0ms)
  Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (2.7ms)
Completed 200 OK in 19ms (Views: 7.7ms | ActiveRecord: 2.0ms)


Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 21:40:45 -0600
Served asset /astrochimp/application.css - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 21:40:45 -0600
Served asset /astrochimp/signups.css - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 21:40:45 -0600
Served asset /astrochimp/signups.js - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 21:40:45 -0600
Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms)


Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 21:40:45 -0600
Served asset /jquery.js - 304 Not Modified (0ms)


Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 21:40:45 -0600
Served asset /jquery_ujs.js - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 21:40:45 -0600
Served asset /astrochimp/application.js - 304 Not Modified (0ms)


Started POST "/signups" for 127.0.0.1 at 2012-12-06 21:40:55 -0600
Processing by Astrochimp::SignupsController#create as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"aQinR0KJjvGYAqelp/+RNxqWvm93bYyrcCCr0SsvSSs=", "signup"=>{"email"=>"jonathan+dd@camenisch.net"}, "commit"=>"Notify Me »"}
Completed 500 Internal Server Error in 1ms

ActiveRecord::UnknownAttributeError (unknown attribute: referrer_id):
  .bundle/gems/activerecord-3.2.8/lib/active_record/attribute_assignment.rb:88:in `block in assign_attributes'
  .bundle/gems/activerecord-3.2.8/lib/active_record/attribute_assignment.rb:78:in `each'
  .bundle/gems/activerecord-3.2.8/lib/active_record/attribute_assignment.rb:78:in `assign_attributes'
  .bundle/gems/activerecord-3.2.8/lib/active_record/base.rb:498:in `initialize'
  /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:29:in `new'
  /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:29:in `create'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:4:in `send_action'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:403:in `_run__4443394568741555155__process_action__1174199498484126570__callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
  .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/railtie/configurable.rb:30:in `method_missing'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb:35:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
  .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call'
  .bundle/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call'
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__3933331644276234895__call__3993505467526701896__callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app'
  .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call'
  .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'


  Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
  Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
  Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.7ms)


Started POST "/signups" for 127.0.0.1 at 2012-12-06 21:41:57 -0600
Processing by Astrochimp::SignupsController#create as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"aQinR0KJjvGYAqelp/+RNxqWvm93bYyrcCCr0SsvSSs=", "signup"=>{"email"=>"jonathan+dd@camenisch.net"}, "commit"=>"Notify Me »"}
Completed 500 Internal Server Error in 1ms

ActiveRecord::UnknownAttributeError (unknown attribute: referrer_id):
  .bundle/gems/activerecord-3.2.8/lib/active_record/attribute_assignment.rb:88:in `block in assign_attributes'
  .bundle/gems/activerecord-3.2.8/lib/active_record/attribute_assignment.rb:78:in `each'
  .bundle/gems/activerecord-3.2.8/lib/active_record/attribute_assignment.rb:78:in `assign_attributes'
  .bundle/gems/activerecord-3.2.8/lib/active_record/base.rb:498:in `initialize'
  /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:29:in `new'
  /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:29:in `create'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:4:in `send_action'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:403:in `_run__4443394568741555155__process_action__1174199498484126570__callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
  .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/railtie/configurable.rb:30:in `method_missing'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb:35:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
  .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call'
  .bundle/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call'
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__3933331644276234895__call__3993505467526701896__callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app'
  .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call'
  .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'


  Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
  Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
  Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.7ms)
Connecting to database specified by database.yml
Connecting to database specified by database.yml
   (1.5ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" 
Migrating to CreateAstrochimpSignups (20121025202343)
Migrating to AddReferralsToAstrochimpSignup (20121101211218)
Migrating to RemoveReferralCodeFromAstrochimpSignup (20121206205605)
Migrating to RenameReferrerIdForeignKeyColumn (20121207033108)
   (0.5ms)  BEGIN
   (8.3ms)   SELECT distinct i.relname, d.indisunique, d.indkey, pg_get_indexdef(d.indexrelid), t.oid
 FROM pg_class t
 INNER JOIN pg_index d ON t.oid = d.indrelid
 INNER JOIN pg_class i ON d.indexrelid = i.oid
 WHERE i.relkind = 'i'
 AND d.indisprimary = 'f'
 AND t.relname = 'astrochimp_signups'
 AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname = ANY (current_schemas(false)) )
 ORDER BY i.relname

  Columns for index index_astrochimp_signups_on_referral_id on astrochimp_signups (1.0ms)   SELECT a.attnum, a.attname
 FROM pg_attribute a
 WHERE a.attrelid = 77436
 AND a.attnum IN (6)

   (23.1ms)  DROP INDEX "index_astrochimp_signups_on_referral_id"
   (0.9ms)  ALTER TABLE "astrochimp_signups" RENAME COLUMN "referral_id" TO "referrer_id"
   (1.2ms)   SELECT distinct i.relname, d.indisunique, d.indkey, pg_get_indexdef(d.indexrelid), t.oid
 FROM pg_class t
 INNER JOIN pg_index d ON t.oid = d.indrelid
 INNER JOIN pg_class i ON d.indexrelid = i.oid
 WHERE i.relkind = 'i'
 AND d.indisprimary = 'f'
 AND t.relname = 'astrochimp_signups'
 AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname = ANY (current_schemas(false)) )
 ORDER BY i.relname

   (59.3ms)  CREATE INDEX "index_astrochimp_signups_on_referrer_id" ON "astrochimp_signups" ("referrer_id")
   (2.5ms)  INSERT INTO "schema_migrations" ("version") VALUES ('20121207033108')
   (1.2ms)  COMMIT
   (0.6ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" 
  PK and serial sequence (2.7ms)   SELECT attr.attname, seq.relname
 FROM pg_class seq,
 pg_attribute attr,
 pg_depend dep,
 pg_namespace name,
 pg_constraint cons
 WHERE seq.oid = dep.objid
 AND seq.relkind = 'S'
 AND attr.attrelid = dep.refobjid
 AND attr.attnum = dep.refobjsubid
 AND attr.attrelid = cons.conrelid
 AND attr.attnum = cons.conkey[1]
 AND cons.contype = 'p'
 AND dep.refobjid = '"astrochimp_signups"'::regclass

   (2.7ms)   SELECT distinct i.relname, d.indisunique, d.indkey, pg_get_indexdef(d.indexrelid), t.oid
 FROM pg_class t
 INNER JOIN pg_index d ON t.oid = d.indrelid
 INNER JOIN pg_class i ON d.indexrelid = i.oid
 WHERE i.relkind = 'i'
 AND d.indisprimary = 'f'
 AND t.relname = 'astrochimp_signups'
 AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname = ANY (current_schemas(false)) )
 ORDER BY i.relname

  Columns for index index_astrochimp_signups_on_referrer_id on astrochimp_signups (0.6ms)   SELECT a.attnum, a.attname
 FROM pg_attribute a
 WHERE a.attrelid = 77436
 AND a.attnum IN (6)



Started POST "/signups" for 127.0.0.1 at 2012-12-06 21:44:16 -0600
Processing by Astrochimp::SignupsController#create as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"aQinR0KJjvGYAqelp/+RNxqWvm93bYyrcCCr0SsvSSs=", "signup"=>{"email"=>"jonathan+dd@camenisch.net"}, "commit"=>"Notify Me »"}
   (0.2ms)  BEGIN
  Astrochimp::Signup Exists (0.6ms)  SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+dd@camenisch.net' LIMIT 1
  SQL (1.2ms)  INSERT INTO "astrochimp_signups" ("created_at", "email", "referral_count", "referrer_id", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", Fri, 07 Dec 2012 03:44:16 UTC +00:00], ["email", "jonathan+dd@camenisch.net"], ["referral_count", 0], ["referrer_id", 37], ["status", 0], ["updated_at", Fri, 07 Dec 2012 03:44:16 UTC +00:00]]
  Astrochimp::Signup Load (0.6ms)  SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = 37 LIMIT 1
  SQL (153.1ms)  UPDATE "astrochimp_signups" SET "signups_count" = COALESCE("signups_count", 0) + 1 WHERE "astrochimp_signups"."id" = 37
PG::Error: ERROR:  column "signups_count" does not exist
LINE 1: ...strochimp_signups" SET "signups_count" = COALESCE("signups_c...
                                                             ^
: UPDATE "astrochimp_signups" SET "signups_count" = COALESCE("signups_count", 0) + 1 WHERE "astrochimp_signups"."id" = 37
   (0.4ms)  ROLLBACK
Completed 500 Internal Server Error in 790ms

ActiveRecord::StatementInvalid (PG::Error: ERROR:  column "signups_count" does not exist
LINE 1: ...strochimp_signups" SET "signups_count" = COALESCE("signups_c...
                                                             ^
: UPDATE "astrochimp_signups" SET "signups_count" = COALESCE("signups_count", 0) + 1 WHERE "astrochimp_signups"."id" = 37):
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/postgresql_adapter.rb:1158:in `async_exec'
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/postgresql_adapter.rb:1158:in `exec_no_cache'
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/postgresql_adapter.rb:675:in `block in exec_delete'
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract_adapter.rb:280:in `block in log'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract_adapter.rb:275:in `log'
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/postgresql_adapter.rb:674:in `exec_delete'
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/database_statements.rb:96:in `update'
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/query_cache.rb:14:in `update'
  .bundle/gems/activerecord-3.2.8/lib/active_record/relation.rb:294:in `update_all'
  .bundle/gems/activerecord-3.2.8/lib/active_record/relation.rb:278:in `update_all'
  .bundle/gems/activerecord-3.2.8/lib/active_record/querying.rb:7:in `update_all'
  .bundle/gems/activerecord-3.2.8/lib/active_record/counter_cache.rb:80:in `update_counters'
  .bundle/gems/activerecord-3.2.8/lib/active_record/locking/optimistic.rb:166:in `update_counters'
  .bundle/gems/activerecord-3.2.8/lib/active_record/counter_cache.rb:99:in `increment_counter'
  .bundle/gems/activerecord-3.2.8/lib/active_record/associations/builder/belongs_to.rb:30:in `block in add_counter_cache_callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:420:in `_run__135996250076584268__create__3993505467526701896__callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_create_callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks'
  .bundle/gems/activerecord-3.2.8/lib/active_record/callbacks.rb:268:in `create'
  .bundle/gems/activerecord-3.2.8/lib/active_record/persistence.rb:347:in `create_or_update'
  .bundle/gems/activerecord-3.2.8/lib/active_record/callbacks.rb:264:in `block in create_or_update'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:425:in `_run__135996250076584268__save__3993505467526701896__callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_save_callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks'
  .bundle/gems/activerecord-3.2.8/lib/active_record/callbacks.rb:264:in `create_or_update'
  .bundle/gems/activerecord-3.2.8/lib/active_record/persistence.rb:84:in `save'
  .bundle/gems/activerecord-3.2.8/lib/active_record/validations.rb:50:in `save'
  .bundle/gems/activerecord-3.2.8/lib/active_record/attribute_methods/dirty.rb:22:in `save'
  .bundle/gems/activerecord-3.2.8/lib/active_record/transactions.rb:241:in `block (2 levels) in save'
  .bundle/gems/activerecord-3.2.8/lib/active_record/transactions.rb:295:in `block in with_transaction_returning_status'
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/database_statements.rb:192:in `transaction'
  .bundle/gems/activerecord-3.2.8/lib/active_record/transactions.rb:208:in `transaction'
  .bundle/gems/activerecord-3.2.8/lib/active_record/transactions.rb:293:in `with_transaction_returning_status'
  .bundle/gems/activerecord-3.2.8/lib/active_record/transactions.rb:241:in `block in save'
  .bundle/gems/activerecord-3.2.8/lib/active_record/transactions.rb:252:in `rollback_active_record_state!'
  .bundle/gems/activerecord-3.2.8/lib/active_record/transactions.rb:240:in `save'
  /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:33:in `block in create'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:270:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:270:in `retrieve_collector_from_mimes'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:194:in `respond_to'
  /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:32:in `create'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:4:in `send_action'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:403:in `_run__4443394568741555155__process_action__1174199498484126570__callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
  .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/railtie/configurable.rb:30:in `method_missing'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb:35:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
  .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call'
  .bundle/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call'
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__3933331644276234895__call__3993505467526701896__callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app'
  .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call'
  .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'


  Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
  Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
  Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.0ms)
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
   (0.6ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" 
Migrating to CreateAstrochimpSignups (20121025202343)
Migrating to AddReferralsToAstrochimpSignup (20121101211218)
Migrating to RemoveReferralCodeFromAstrochimpSignup (20121206205605)
Migrating to RenameReferrerIdForeignKeyColumn (20121207033108)
Migrating to RenameReferralsCounterCacheColumn (20121207034527)
   (0.1ms)  BEGIN
   (0.4ms)  ALTER TABLE "astrochimp_signups" RENAME COLUMN "referral_count" TO "signups_count"
   (0.6ms)  INSERT INTO "schema_migrations" ("version") VALUES ('20121207034527')
   (1.1ms)  COMMIT
   (0.4ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" 
  PK and serial sequence (2.2ms)   SELECT attr.attname, seq.relname
 FROM pg_class seq,
 pg_attribute attr,
 pg_depend dep,
 pg_namespace name,
 pg_constraint cons
 WHERE seq.oid = dep.objid
 AND seq.relkind = 'S'
 AND attr.attrelid = dep.refobjid
 AND attr.attnum = dep.refobjsubid
 AND attr.attrelid = cons.conrelid
 AND attr.attnum = cons.conkey[1]
 AND cons.contype = 'p'
 AND dep.refobjid = '"astrochimp_signups"'::regclass

   (2.3ms)   SELECT distinct i.relname, d.indisunique, d.indkey, pg_get_indexdef(d.indexrelid), t.oid
 FROM pg_class t
 INNER JOIN pg_index d ON t.oid = d.indrelid
 INNER JOIN pg_class i ON d.indexrelid = i.oid
 WHERE i.relkind = 'i'
 AND d.indisprimary = 'f'
 AND t.relname = 'astrochimp_signups'
 AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname = ANY (current_schemas(false)) )
 ORDER BY i.relname

  Columns for index index_astrochimp_signups_on_referrer_id on astrochimp_signups (0.6ms)   SELECT a.attnum, a.attname
 FROM pg_attribute a
 WHERE a.attrelid = 77436
 AND a.attnum IN (6)



Started POST "/signups" for 127.0.0.1 at 2012-12-06 21:47:15 -0600
Processing by Astrochimp::SignupsController#create as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"aQinR0KJjvGYAqelp/+RNxqWvm93bYyrcCCr0SsvSSs=", "signup"=>{"email"=>"jonathan+dd@camenisch.net"}, "commit"=>"Notify Me »"}
   (0.3ms)  BEGIN
  Astrochimp::Signup Exists (0.7ms)  SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+dd@camenisch.net' LIMIT 1
   (0.4ms)  ROLLBACK
  Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (2.0ms)
  Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (2.8ms)
Completed 200 OK in 616ms (Views: 7.8ms | ActiveRecord: 3.4ms)


Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 21:47:16 -0600
Served asset /astrochimp/application.css - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 21:47:16 -0600
Served asset /astrochimp/signups.css - 304 Not Modified (0ms)


Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 21:47:16 -0600
Served asset /jquery_ujs.js - 304 Not Modified (0ms)


Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 21:47:16 -0600
Served asset /jquery.js - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 21:47:16 -0600
Served asset /astrochimp/signups.js - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 21:47:16 -0600
Served asset /astrochimp/application.js - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 21:47:16 -0600
Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms)


Started POST "/signups" for 127.0.0.1 at 2012-12-06 21:47:31 -0600
Processing by Astrochimp::SignupsController#create as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"aQinR0KJjvGYAqelp/+RNxqWvm93bYyrcCCr0SsvSSs=", "signup"=>{"email"=>"jonathan+ee@camenisch.net"}, "commit"=>"Notify Me »"}
   (0.1ms)  BEGIN
  Astrochimp::Signup Exists (0.4ms)  SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+ee@camenisch.net' LIMIT 1
  SQL (1.2ms)  INSERT INTO "astrochimp_signups" ("created_at", "email", "referrer_id", "signups_count", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", Fri, 07 Dec 2012 03:47:32 UTC +00:00], ["email", "jonathan+ee@camenisch.net"], ["referrer_id", 37], ["signups_count", 0], ["status", 0], ["updated_at", Fri, 07 Dec 2012 03:47:32 UTC +00:00]]
  Astrochimp::Signup Load (0.6ms)  SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = 37 LIMIT 1
  SQL (71.6ms)  UPDATE "astrochimp_signups" SET "signups_count" = COALESCE("signups_count", 0) + 1 WHERE "astrochimp_signups"."id" = 37
   (82.5ms)  COMMIT
Redirected to http://localhost:3000/signups/bann
Completed 302 Found in 413ms (ActiveRecord: 156.3ms)


Started GET "/signups/bann" for 127.0.0.1 at 2012-12-06 21:47:32 -0600
Processing by Astrochimp::SignupsController#show as HTML
  Parameters: {"id"=>"bann"}
  Astrochimp::Signup Load (1.3ms)  SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1  [["id", 39]]
  Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (1.2ms)
Completed 500 Internal Server Error in 6ms

ActionController::RoutingError (No route matches {:controller=>"astrochimp/signups", :referral_code=>"bann"}):
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:532:in `raise_routing_error'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:528:in `rescue in generate'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:520:in `generate'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:561:in `generate'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:586:in `url_for'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/url_for.rb:148:in `url_for'
  .bundle/gems/actionpack-3.2.8/lib/action_view/helpers/url_helper.rb:107:in `url_for'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:213:in `referral_link_path'
  /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb:4:in `___sers_jcamenisch_projects_astrochimp_app_views_astrochimp_signups_show_html_erb__4086888284527222157_2153312300'
  .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:145:in `block in render'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:125:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:143:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:18:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:36:in `render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:17:in `render'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:110:in `_render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/streaming.rb:225:in `_render_template'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:103:in `render_to_body'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:88:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:16:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
  .bundle/gems/activesupport-3.2.8/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
  .bundle/gems/activesupport-3.2.8/lib/active_support/core_ext/benchmark.rb:5:in `ms'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
  .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:39:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:403:in `_run__4443394568741555155__process_action__3102736460580023962__callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
  .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/railtie/configurable.rb:30:in `method_missing'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
  .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call'
  .bundle/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call'
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__3933331644276234895__call__3993505467526701896__callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app'
  .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call'
  .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'


  Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)


Started GET "/signups/bann" for 127.0.0.1 at 2012-12-06 21:48:48 -0600
Processing by Astrochimp::SignupsController#show as HTML
  Parameters: {"id"=>"bann"}
  Astrochimp::Signup Load (0.5ms)  SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1  [["id", 39]]
  Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (1.3ms)
Completed 500 Internal Server Error in 6ms

ActionController::RoutingError (No route matches {:controller=>"astrochimp/signups", :referral_code=>"bann"}):
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:532:in `raise_routing_error'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:528:in `rescue in generate'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:520:in `generate'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:561:in `generate'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:586:in `url_for'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/url_for.rb:148:in `url_for'
  .bundle/gems/actionpack-3.2.8/lib/action_view/helpers/url_helper.rb:107:in `url_for'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:213:in `referral_link_path'
  /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb:4:in `___sers_jcamenisch_projects_astrochimp_app_views_astrochimp_signups_show_html_erb__4086888284527222157_2153312300'
  .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:145:in `block in render'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:125:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:143:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:18:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:36:in `render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:17:in `render'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:110:in `_render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/streaming.rb:225:in `_render_template'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:103:in `render_to_body'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:88:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:16:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
  .bundle/gems/activesupport-3.2.8/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
  .bundle/gems/activesupport-3.2.8/lib/active_support/core_ext/benchmark.rb:5:in `ms'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
  .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:39:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:403:in `_run__4443394568741555155__process_action__3102736460580023962__callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
  .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/railtie/configurable.rb:30:in `method_missing'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
  .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call'
  .bundle/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call'
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__3933331644276234895__call__3993505467526701896__callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app'
  .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call'
  .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'


  Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)


Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 21:48:59 -0600
Served asset /astrochimp/application.css - 304 Not Modified (0ms)


Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 21:48:59 -0600
Served asset /jquery.js - 304 Not Modified (0ms)


Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 21:48:59 -0600
Served asset /jquery_ujs.js - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 21:48:59 -0600
Served asset /astrochimp/signups.css - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 21:49:00 -0600
Served asset /astrochimp/application.js - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 21:49:00 -0600
Served asset /astrochimp/signups.js - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 21:49:00 -0600
Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms)


Started GET "/bamv" for 127.0.0.1 at 2012-12-06 21:49:05 -0600
Processing by Astrochimp::SignupsController#index as HTML
  Parameters: {"referrer_code"=>"bamv"}
  Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (1.4ms)
  Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (2.3ms)
Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)


Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 21:49:05 -0600
Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 21:49:05 -0600
Served asset /astrochimp/application.css - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 21:49:05 -0600
Served asset /astrochimp/signups.css - 304 Not Modified (0ms)


Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 21:49:05 -0600
Served asset /jquery_ujs.js - 304 Not Modified (0ms)


Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 21:49:05 -0600
Served asset /jquery.js - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 21:49:05 -0600
Served asset /astrochimp/signups.js - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 21:49:05 -0600
Served asset /astrochimp/application.js - 304 Not Modified (0ms)


Started POST "/signups" for 127.0.0.1 at 2012-12-06 21:49:17 -0600
Processing by Astrochimp::SignupsController#create as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"aQinR0KJjvGYAqelp/+RNxqWvm93bYyrcCCr0SsvSSs=", "signup"=>{"email"=>"jonathan+ff@camenisch.net"}, "commit"=>"Notify Me »"}
   (0.3ms)  BEGIN
  Astrochimp::Signup Exists (0.6ms)  SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+ff@camenisch.net' LIMIT 1
  SQL (0.6ms)  INSERT INTO "astrochimp_signups" ("created_at", "email", "referrer_id", "signups_count", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", Fri, 07 Dec 2012 03:49:17 UTC +00:00], ["email", "jonathan+ff@camenisch.net"], ["referrer_id", 37], ["signups_count", 0], ["status", 0], ["updated_at", Fri, 07 Dec 2012 03:49:17 UTC +00:00]]
  Astrochimp::Signup Load (0.3ms)  SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = 37 LIMIT 1
  SQL (0.3ms)  UPDATE "astrochimp_signups" SET "signups_count" = COALESCE("signups_count", 0) + 1 WHERE "astrochimp_signups"."id" = 37
   (1.0ms)  COMMIT
Redirected to http://localhost:3000/signups/banw
Completed 302 Found in 678ms (ActiveRecord: 3.1ms)


Started GET "/signups/banw" for 127.0.0.1 at 2012-12-06 21:49:17 -0600
Processing by Astrochimp::SignupsController#show as HTML
  Parameters: {"id"=>"banw"}
  Astrochimp::Signup Load (0.5ms)  SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1  [["id", 40]]
  Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (1.2ms)
Completed 500 Internal Server Error in 5ms

ActionController::RoutingError (No route matches {:controller=>"astrochimp/signups", :referral_code=>"banw"}):
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:532:in `raise_routing_error'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:528:in `rescue in generate'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:520:in `generate'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:561:in `generate'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:586:in `url_for'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/url_for.rb:148:in `url_for'
  .bundle/gems/actionpack-3.2.8/lib/action_view/helpers/url_helper.rb:107:in `url_for'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:213:in `referral_link_path'
  /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb:4:in `___sers_jcamenisch_projects_astrochimp_app_views_astrochimp_signups_show_html_erb__4086888284527222157_2153312300'
  .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:145:in `block in render'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:125:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:143:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:18:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:36:in `render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:17:in `render'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:110:in `_render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/streaming.rb:225:in `_render_template'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:103:in `render_to_body'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:88:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:16:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
  .bundle/gems/activesupport-3.2.8/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
  .bundle/gems/activesupport-3.2.8/lib/active_support/core_ext/benchmark.rb:5:in `ms'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
  .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:39:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:403:in `_run__4443394568741555155__process_action__3102736460580023962__callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
  .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/railtie/configurable.rb:30:in `method_missing'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
  .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call'
  .bundle/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call'
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__3933331644276234895__call__3993505467526701896__callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app'
  .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call'
  .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'


  Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)


Started GET "/signups/banw" for 127.0.0.1 at 2012-12-06 21:50:27 -0600
Connecting to database specified by database.yml
Processing by Astrochimp::SignupsController#show as HTML
  Parameters: {"id"=>"banw"}
  Astrochimp::Signup Load (5.2ms)  SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1  [["id", 40]]
  Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (8.5ms)
Completed 500 Internal Server Error in 100ms

ActionController::RoutingError (No route matches {:controller=>"astrochimp/signups", :referral_code=>"banw"}):
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:532:in `raise_routing_error'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:528:in `rescue in generate'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:520:in `generate'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:561:in `generate'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:586:in `url_for'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/url_for.rb:148:in `url_for'
  .bundle/gems/actionpack-3.2.8/lib/action_view/helpers/url_helper.rb:107:in `url_for'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:213:in `referral_link_path'
  /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb:4:in `___sers_jcamenisch_projects_astrochimp_app_views_astrochimp_signups_show_html_erb__3229491223922853728_2166030720'
  .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:145:in `block in render'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:125:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:143:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:18:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:36:in `render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:17:in `render'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:110:in `_render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/streaming.rb:225:in `_render_template'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:103:in `render_to_body'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:88:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:16:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
  .bundle/gems/activesupport-3.2.8/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
  .bundle/gems/activesupport-3.2.8/lib/active_support/core_ext/benchmark.rb:5:in `ms'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
  .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:39:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:403:in `_run__4542274778394096964__process_action__2104062710425007466__callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
  .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/railtie/configurable.rb:30:in `method_missing'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
  .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call'
  .bundle/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call'
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__899505116419080566__call__2268383820198406523__callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app'
  .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call'
  .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'


  Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)


Started GET "/signups/banw" for 127.0.0.1 at 2012-12-06 21:51:03 -0600
Processing by Astrochimp::SignupsController#show as HTML
  Parameters: {"id"=>"banw"}
  Astrochimp::Signup Load (0.5ms)  SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1  [["id", 40]]
  Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (2.9ms)
Completed 500 Internal Server Error in 7ms

ActionView::Template::Error (undefined method `referral_count' for #):
    6: 

7:

8: Number of people you have referred: 9: <%= @signup.referral_count %> 10:

11:

Your signup object:

12:
  .bundle/gems/activemodel-3.2.8/lib/active_model/attribute_methods.rb:407:in `method_missing'
  .bundle/gems/activerecord-3.2.8/lib/active_record/attribute_methods.rb:149:in `method_missing'
  /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb:9:in `___sers_jcamenisch_projects_astrochimp_app_views_astrochimp_signups_show_html_erb__3229491223922853728_2177751380'
  .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:145:in `block in render'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:125:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:143:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:18:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:36:in `render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:17:in `render'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:110:in `_render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/streaming.rb:225:in `_render_template'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:103:in `render_to_body'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:88:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:16:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
  .bundle/gems/activesupport-3.2.8/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
  .bundle/gems/activesupport-3.2.8/lib/active_support/core_ext/benchmark.rb:5:in `ms'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
  .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:39:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:403:in `_run__4542274778394096964__process_action__2104062710425007466__callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
  .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/railtie/configurable.rb:30:in `method_missing'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
  .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call'
  .bundle/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call'
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__899505116419080566__call__2268383820198406523__callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app'
  .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call'
  .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'


  Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
  Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
  Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.8ms)


Started GET "/signups/banw" for 127.0.0.1 at 2012-12-06 21:51:46 -0600
Processing by Astrochimp::SignupsController#show as HTML
  Parameters: {"id"=>"banw"}
  Astrochimp::Signup Load (0.5ms)  SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1  [["id", 40]]
   (20.9ms)  SELECT COUNT(*) FROM "astrochimp_signups" WHERE "astrochimp_signups"."signup_id" = 40
PG::Error: ERROR:  column astrochimp_signups.signup_id does not exist
LINE 1: SELECT COUNT(*) FROM "astrochimp_signups"  WHERE "astrochimp...
                                                         ^
: SELECT COUNT(*) FROM "astrochimp_signups"  WHERE "astrochimp_signups"."signup_id" = 40
  Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (74.3ms)
Completed 500 Internal Server Error in 78ms

ActionView::Template::Error (PG::Error: ERROR:  column astrochimp_signups.signup_id does not exist
LINE 1: SELECT COUNT(*) FROM "astrochimp_signups"  WHERE "astrochimp...
                                                         ^
: SELECT COUNT(*) FROM "astrochimp_signups"  WHERE "astrochimp_signups"."signup_id" = 40):
    6: 

7:

8: Number of people you have referred: 9: <%= @signup.referrals.size %> 10:

11:

Your signup object:

12:
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/postgresql_adapter.rb:1158:in `async_exec'
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/postgresql_adapter.rb:1158:in `exec_no_cache'
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/postgresql_adapter.rb:664:in `block in exec_query'
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract_adapter.rb:280:in `block in log'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract_adapter.rb:275:in `log'
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/postgresql_adapter.rb:663:in `exec_query'
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/postgresql_adapter.rb:1253:in `select'
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/database_statements.rb:18:in `select_all'
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/query_cache.rb:61:in `block in select_all'
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/query_cache.rb:75:in `cache_sql'
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/query_cache.rb:61:in `select_all'
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/database_statements.rb:24:in `select_one'
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/database_statements.rb:30:in `select_value'
  .bundle/gems/activerecord-3.2.8/lib/active_record/relation/calculations.rb:243:in `execute_simple_calculation'
  .bundle/gems/activerecord-3.2.8/lib/active_record/relation/calculations.rb:208:in `perform_calculation'
  .bundle/gems/activerecord-3.2.8/lib/active_record/relation/calculations.rb:159:in `calculate'
  .bundle/gems/activerecord-3.2.8/lib/active_record/relation/calculations.rb:58:in `count'
  .bundle/gems/activerecord-3.2.8/lib/active_record/associations/has_many_association.rb:41:in `count_records'
  .bundle/gems/activerecord-3.2.8/lib/active_record/associations/collection_association.rb:259:in `size'
  .bundle/gems/activerecord-3.2.8/lib/active_record/associations/collection_proxy.rb:46:in `size'
  /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb:9:in `___sers_jcamenisch_projects_astrochimp_app_views_astrochimp_signups_show_html_erb__3229491223922853728_2189476560'
  .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:145:in `block in render'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:125:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:143:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:18:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:36:in `render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:17:in `render'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:110:in `_render_template'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/streaming.rb:225:in `_render_template'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:103:in `render_to_body'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:88:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:16:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
  .bundle/gems/activesupport-3.2.8/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
  .bundle/gems/activesupport-3.2.8/lib/active_support/core_ext/benchmark.rb:5:in `ms'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
  .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:39:in `render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:403:in `_run__4542274778394096964__process_action__2104062710425007466__callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
  .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
  .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process'
  .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
  .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/railtie/configurable.rb:30:in `method_missing'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
  .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
  .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call'
  .bundle/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call'
  .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__899505116419080566__call__2268383820198406523__callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
  .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app'
  .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call'
  .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call'
  .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call'
  .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call'
  .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
  /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'


  Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
  Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
  Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.7ms)


Started GET "/signups/banw" for 127.0.0.1 at 2012-12-06 21:52:31 -0600
Processing by Astrochimp::SignupsController#show as HTML
  Parameters: {"id"=>"banw"}
  Astrochimp::Signup Load (0.6ms)  SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1  [["id", 40]]
  Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (2.3ms)
Completed 200 OK in 24ms (Views: 22.4ms | ActiveRecord: 0.6ms)


Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 21:52:31 -0600
Served asset /astrochimp/application.css - 304 Not Modified (3ms)


Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 21:52:31 -0600
Served asset /astrochimp/signups.css - 304 Not Modified (2ms)


Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 21:52:31 -0600
Served asset /astrochimp/signups.js - 304 Not Modified (2ms)


Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 21:52:31 -0600
Served asset /jquery.js - 304 Not Modified (41ms)


Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 21:52:31 -0600
Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (3ms)


Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 21:52:31 -0600
Served asset /jquery_ujs.js - 304 Not Modified (2ms)


Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 21:52:31 -0600
Served asset /astrochimp/application.js - 304 Not Modified (5ms)


Started GET "/signups/bamv" for 127.0.0.1 at 2012-12-06 21:52:44 -0600
Processing by Astrochimp::SignupsController#show as HTML
  Parameters: {"id"=>"bamv"}
  Astrochimp::Signup Load (0.5ms)  SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1  [["id", 37]]
  Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (1.4ms)
Completed 200 OK in 9ms (Views: 7.3ms | ActiveRecord: 0.5ms)


Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-06 21:52:44 -0600
Served asset /astrochimp/application.css - 304 Not Modified (0ms)


Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-06 21:52:44 -0600
Served asset /jquery_ujs.js - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-06 21:52:44 -0600
Served asset /astrochimp/signups.js - 304 Not Modified (0ms)


Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-06 21:52:44 -0600
Served asset /jquery.js - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-06 21:52:44 -0600
Served asset /astrochimp/signups.css - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-06 21:52:44 -0600
Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-06 21:52:44 -0600
Served asset /astrochimp/application.js - 304 Not Modified (0ms)


Started GET "/" for 127.0.0.1 at 2012-12-11 09:10:52 -0600
Connecting to database specified by database.yml
Processing by Astrochimp::SignupsController#index as HTML
  Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (5.3ms)
  Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (17.5ms)
Completed 200 OK in 512ms (Views: 174.0ms | ActiveRecord: 270.2ms)


Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-11 09:10:54 -0600
Served asset /astrochimp/application.css - 304 Not Modified (7ms)


Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-11 09:10:54 -0600
Served asset /astrochimp/signups.css - 304 Not Modified (3ms)


Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-11 09:10:54 -0600
Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (21ms)


Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-11 09:10:54 -0600
Served asset /jquery_ujs.js - 304 Not Modified (2ms)


Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-11 09:10:54 -0600
Served asset /astrochimp/signups.js - 304 Not Modified (3ms)


Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-11 09:10:54 -0600
Served asset /astrochimp/application.js - 304 Not Modified (9ms)


Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-11 09:10:54 -0600
Served asset /jquery.js - 304 Not Modified (45ms)


Started GET "/assets/astrochimp/bg-noise.png" for 127.0.0.1 at 2012-12-11 09:10:55 -0600
Served asset /astrochimp/bg-noise.png - 304 Not Modified (6ms)


Started GET "/assets/astrochimp/iphone4-frame-black.png" for 127.0.0.1 at 2012-12-11 09:10:55 -0600
Served asset /astrochimp/iphone4-frame-black.png - 304 Not Modified (55ms)


Started POST "/signups" for 127.0.0.1 at 2012-12-11 09:11:10 -0600
Processing by Astrochimp::SignupsController#create as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"8dDL3apiAFf/OtKulf/kb0QvCNmvx1OgF777TyQPyao=", "signup"=>{"email"=>"jonathan+ba"}, "commit"=>"Notify Me »"}
   (0.3ms)  BEGIN
  Astrochimp::Signup Exists (52.3ms)  SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+ba' LIMIT 1
   (0.5ms)  ROLLBACK
  Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (24.9ms)
  Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (25.7ms)
Completed 200 OK in 135ms (Views: 30.6ms | ActiveRecord: 53.0ms)


Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-11 09:11:10 -0600
Served asset /astrochimp/application.css - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-11 09:11:10 -0600
Served asset /astrochimp/signups.js - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-11 09:11:10 -0600
Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms)


Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-11 09:11:10 -0600
Served asset /jquery_ujs.js - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-11 09:11:10 -0600
Served asset /astrochimp/signups.css - 304 Not Modified (0ms)


Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-11 09:11:10 -0600
Served asset /jquery.js - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-11 09:11:10 -0600
Served asset /astrochimp/application.js - 304 Not Modified (0ms)


Started POST "/signups" for 127.0.0.1 at 2012-12-11 09:11:17 -0600
Processing by Astrochimp::SignupsController#create as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"8dDL3apiAFf/OtKulf/kb0QvCNmvx1OgF777TyQPyao=", "signup"=>{"email"=>"jonathan+ba@camenisch.net"}, "commit"=>"Notify Me »"}
   (0.1ms)  BEGIN
  Astrochimp::Signup Exists (0.6ms)  SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+ba@camenisch.net' LIMIT 1
   (0.4ms)  ROLLBACK
  Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (1.3ms)
  Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (2.2ms)
Completed 200 OK in 13ms (Views: 7.0ms | ActiveRecord: 1.1ms)


Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-11 09:11:17 -0600
Served asset /astrochimp/application.css - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-11 09:11:17 -0600
Served asset /astrochimp/signups.css - 304 Not Modified (0ms)


Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-11 09:11:17 -0600
Served asset /jquery.js - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-11 09:11:17 -0600
Served asset /astrochimp/signups.js - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-11 09:11:17 -0600
Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms)


Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-11 09:11:17 -0600
Served asset /jquery_ujs.js - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-11 09:11:17 -0600
Served asset /astrochimp/application.js - 304 Not Modified (0ms)


Started POST "/signups" for 127.0.0.1 at 2012-12-11 09:11:56 -0600
Connecting to database specified by database.yml
Processing by Astrochimp::SignupsController#create as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"8dDL3apiAFf/OtKulf/kb0QvCNmvx1OgF777TyQPyao=", "signup"=>{"email"=>"jonathan+ba@camenisch.net"}, "commit"=>"Notify Me »"}
   (0.3ms)  BEGIN
  Astrochimp::Signup Exists (1.3ms)  SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+ba@camenisch.net' LIMIT 1
  SQL (37.8ms)  INSERT INTO "astrochimp_signups" ("created_at", "email", "referrer_id", "signups_count", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", Tue, 11 Dec 2012 15:11:58 UTC +00:00], ["email", "jonathan+ba@camenisch.net"], ["referrer_id", nil], ["signups_count", 0], ["status", 0], ["updated_at", Tue, 11 Dec 2012 15:11:58 UTC +00:00]]
   (1.4ms)  COMMIT
Redirected to http://localhost:3000/signups/baof
Completed 302 Found in 1228ms (ActiveRecord: 51.2ms)


Started GET "/signups/baof" for 127.0.0.1 at 2012-12-11 09:11:58 -0600
Processing by Astrochimp::SignupsController#show as HTML
  Parameters: {"id"=>"baof"}
  Astrochimp::Signup Load (1.0ms)  SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1  [["id", 41]]
  Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (4.5ms)
Completed 200 OK in 76ms (Views: 72.9ms | ActiveRecord: 1.0ms)


Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-11 09:11:59 -0600
Served asset /astrochimp/application.css - 304 Not Modified (3ms)


Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-11 09:11:59 -0600
Served asset /jquery_ujs.js - 304 Not Modified (2ms)


Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-11 09:11:59 -0600
Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (4ms)


Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-11 09:11:59 -0600
Served asset /astrochimp/signups.js - 304 Not Modified (1ms)


Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-11 09:11:59 -0600
Served asset /jquery.js - 304 Not Modified (2ms)


Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-11 09:11:59 -0600
Served asset /astrochimp/signups.css - 304 Not Modified (2ms)


Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-11 09:11:59 -0600
Served asset /astrochimp/application.js - 304 Not Modified (48ms)


Started GET "/baof" for 127.0.0.1 at 2012-12-11 09:12:12 -0600
Processing by Astrochimp::SignupsController#index as HTML
  Parameters: {"referrer_code"=>"baof"}
  Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (1.9ms)
  Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (5.4ms)
Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.0ms)


Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2012-12-11 09:12:12 -0600
Served asset /astrochimp/application.css - 304 Not Modified (0ms)


Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-11 09:12:12 -0600
Served asset /jquery_ujs.js - 304 Not Modified (0ms)


Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-11 09:12:12 -0600
Served asset /jquery.js - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2012-12-11 09:12:12 -0600
Served asset /astrochimp/signups.css - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2012-12-11 09:12:12 -0600
Served asset /astrochimp/signups.js - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2012-12-11 09:12:12 -0600
Served asset /astrochimp/application.js - 304 Not Modified (0ms)


Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2012-12-11 09:12:12 -0600
Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms)
Connecting to database specified by database.yml
Connecting to database specified by database.yml


Started GET "/signups/" for 127.0.0.1 at 2013-01-03 10:07:13 -0600
Connecting to database specified by database.yml

ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
  activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection'
  activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection'
  activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection'
  activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call'
  activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call'
  activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
  actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
  activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__500158663642195347__call__20185350211125232__callbacks'
  activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
  activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
  activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
  actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
  actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
  actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
  actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
  actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
  railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
  railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
  actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
  rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
  rack (1.4.1) lib/rack/runtime.rb:17:in `call'
  activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
  rack (1.4.1) lib/rack/lock.rb:15:in `call'
  actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
  railties (3.2.8) lib/rails/engine.rb:479:in `call'
  railties (3.2.8) lib/rails/application.rb:223:in `call'
  railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing'
  /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle'
  /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start'
  /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start'
  /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each'
  /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start'
  /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop'
  /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start'
  /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run'
  /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.5ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.0ms) Started GET "/signups/" for 127.0.0.1 at 2013-01-03 10:07:21 -0600 ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__500158663642195347__call__20185350211125232__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.9ms) Started GET "/signups/" for 127.0.0.1 at 2013-01-03 10:09:09 -0600 Connecting to database specified by database.yml Processing by Astrochimp::SignupsController#index as HTML Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (4.1ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (17.6ms) Completed 200 OK in 372ms (Views: 177.4ms | ActiveRecord: 135.2ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2013-01-03 10:09:11 -0600 Served asset /astrochimp/application.css - 200 OK (5ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2013-01-03 10:09:11 -0600 Served asset /astrochimp/signups.css - 200 OK (4ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2013-01-03 10:09:11 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 200 OK (31ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-03 10:09:11 -0600 Served asset /jquery.js - 200 OK (4ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-03 10:09:11 -0600 Served asset /jquery_ujs.js - 200 OK (3ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2013-01-03 10:09:11 -0600 Served asset /astrochimp/signups.js - 200 OK (39ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2013-01-03 10:09:11 -0600 Served asset /astrochimp/application.js - 200 OK (5ms) Started GET "/assets/astrochimp/bg-noise.png" for 127.0.0.1 at 2013-01-03 10:09:11 -0600 Served asset /astrochimp/bg-noise.png - 200 OK (26ms) Started GET "/assets/astrochimp/iphone4-frame-black.png" for 127.0.0.1 at 2013-01-03 10:09:11 -0600 Served asset /astrochimp/iphone4-frame-black.png - 200 OK (2ms) Started GET "/" for 127.0.0.1 at 2013-01-03 14:04:09 -0600 Connecting to database specified by database.yml Processing by Astrochimp::SignupsController#index as HTML Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (4.1ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (10.3ms) Completed 200 OK in 252ms (Views: 71.1ms | ActiveRecord: 152.2ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2013-01-03 14:04:11 -0600 Served asset /astrochimp/application.css - 304 Not Modified (5ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2013-01-03 14:04:11 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (3ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-03 14:04:11 -0600 Served asset /jquery.js - 304 Not Modified (11ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-03 14:04:11 -0600 Served asset /jquery_ujs.js - 304 Not Modified (3ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2013-01-03 14:04:11 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (7ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2013-01-03 14:04:11 -0600 Served asset /astrochimp/application.js - 304 Not Modified (74ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2013-01-03 14:04:11 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (115ms) Started GET "/assets/astrochimp/iphone4-frame-black.png" for 127.0.0.1 at 2013-01-03 14:04:11 -0600 Served asset /astrochimp/iphone4-frame-black.png - 304 Not Modified (35ms) Started GET "/assets/astrochimp/bg-noise.png" for 127.0.0.1 at 2013-01-03 14:04:11 -0600 Served asset /astrochimp/bg-noise.png - 304 Not Modified (55ms) Started POST "/signups" for 127.0.0.1 at 2013-01-03 14:04:30 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2qrRFYIEn/dJVhoWcdJfoAk9IkHR/hTop5E1X+tapA=", "signup"=>{"email"=>"jonathan+031404@camenisch.net"}, "commit"=>"Notify Me »"}  (0.4ms) BEGIN Astrochimp::Signup Exists (62.1ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+031404@camenisch.net' LIMIT 1  (0.3ms) ROLLBACK Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (1.3ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (2.2ms) Completed 200 OK in 221ms (Views: 7.5ms | ActiveRecord: 62.7ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2013-01-03 14:04:31 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2013-01-03 14:04:31 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2013-01-03 14:04:31 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2013-01-03 14:04:31 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2013-01-03 14:04:31 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-03 14:04:31 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-03 14:04:31 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/signups" for 127.0.0.1 at 2013-01-03 14:06:11 -0600 Connecting to database specified by database.yml ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished): activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection' activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call' activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call' activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__1063098312901235439__call__2040499706110139088__callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.8) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.8) lib/rails/engine.rb:479:in `call' railties (3.2.8) lib/rails/application.rb:223:in `call' railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/jcamenisch/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.4ms) Rendered /Users/jcamenisch/projects/astrochimp/.bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.1ms) Started POST "/signups" for 127.0.0.1 at 2013-01-03 14:07:27 -0600 Connecting to database specified by database.yml Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2qrRFYIEn/dJVhoWcdJfoAk9IkHR/hTop5E1X+tapA=", "signup"=>{"email"=>"jonathan+031404@camenisch.net"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (1.1ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+031404@camenisch.net' LIMIT 1  (0.3ms) ROLLBACK Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (7.2ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (16.4ms) Completed 200 OK in 173ms (Views: 79.4ms | ActiveRecord: 11.7ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2013-01-03 14:07:29 -0600 Served asset /astrochimp/application.css - 200 OK (3ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2013-01-03 14:07:29 -0600 Served asset /astrochimp/signups.js - 200 OK (1ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2013-01-03 14:07:29 -0600 Served asset /astrochimp/signups.css - 200 OK (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-03 14:07:29 -0600 Served asset /jquery_ujs.js - 200 OK (2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-03 14:07:29 -0600 Served asset /jquery.js - 200 OK (4ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2013-01-03 14:07:29 -0600 Served asset /astrochimp/application.js - 200 OK (10ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2013-01-03 14:07:29 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 200 OK (2ms) Started GET "/assets/astrochimp/iphone4-frame-black.png" for 127.0.0.1 at 2013-01-03 14:07:29 -0600 Served asset /astrochimp/iphone4-frame-black.png - 304 Not Modified (2ms) Started GET "/assets/astrochimp/bg-noise.png" for 127.0.0.1 at 2013-01-03 14:07:29 -0600 Served asset /astrochimp/bg-noise.png - 304 Not Modified (1ms) Started POST "/signups" for 127.0.0.1 at 2013-01-03 14:11:56 -0600 Connecting to database specified by database.yml Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2qrRFYIEn/dJVhoWcdJfoAk9IkHR/hTop5E1X+tapA=", "signup"=>{"email"=>"jonathan+031404@camenisch.net"}, "commit"=>"Notify Me »"}  (0.3ms) BEGIN Astrochimp::Signup Exists (1.3ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+031404@camenisch.net' LIMIT 1 SQL (76.1ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referrer_id", "signups_count", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 03 Jan 2013 20:11:58 UTC +00:00], ["email", "jonathan+031404@camenisch.net"], ["referrer_id", nil], ["signups_count", 0], ["status", 0], ["updated_at", Thu, 03 Jan 2013 20:11:58 UTC +00:00]]  (1.2ms) COMMIT Redirected to http://astrochimp.dev:3000/signups/baoo Completed 302 Found in 1016ms (ActiveRecord: 89.8ms) Started GET "/signups/baoo" for 127.0.0.1 at 2013-01-03 14:11:58 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"baoo"} Astrochimp::Signup Load (1.2ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 42]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (3.3ms) Completed 200 OK in 72ms (Views: 69.6ms | ActiveRecord: 1.2ms) Started GET "/r/baoo" for 127.0.0.1 at 2013-01-03 14:12:06 -0600 Processing by Astrochimp::SignupsController#index as HTML Parameters: {"referrer_code"=>"baoo"} Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (2.0ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (5.8ms) Completed 200 OK in 12ms (Views: 10.8ms | ActiveRecord: 0.0ms) Started GET "/" for 127.0.0.1 at 2013-01-03 15:28:57 -0600 Connecting to database specified by database.yml Processing by Astrochimp::SignupsController#index as HTML Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (4.0ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (9.4ms) Completed 200 OK in 459ms (Views: 37.9ms | ActiveRecord: 395.5ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-03 15:28:58 -0600 Served asset /jquery.js - 304 Not Modified (38ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2013-01-03 15:28:59 -0600 Served asset /astrochimp/application.js - 304 Not Modified (6ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2013-01-03 15:28:59 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-03 15:28:59 -0600 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2013-01-03 15:28:59 -0600 Served asset /astrochimp/application.css - 304 Not Modified (4ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2013-01-03 15:28:59 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (2ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2013-01-03 15:28:59 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (2ms) Started POST "/signups" for 127.0.0.1 at 2013-01-03 15:29:12 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2qrRFYIEn/dJVhoWcdJfoAk9IkHR/hTop5E1X+tapA=", "signup"=>{"email"=>"jonathan+11529@camenisch.net"}, "commit"=>"Notify Me »"}  (0.3ms) BEGIN Astrochimp::Signup Exists (3.0ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+11529@camenisch.net' LIMIT 1 SQL (4.1ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referrer_id", "signups_count", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 03 Jan 2013 21:29:13 UTC +00:00], ["email", "jonathan+11529@camenisch.net"], ["referrer_id", 42], ["signups_count", 0], ["status", 0], ["updated_at", Thu, 03 Jan 2013 21:29:13 UTC +00:00]] Astrochimp::Signup Load (0.8ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = 42 LIMIT 1 SQL (24.0ms) UPDATE "astrochimp_signups" SET "signups_count" = COALESCE("signups_count", 0) + 1 WHERE "astrochimp_signups"."id" = 42  (1.2ms) COMMIT Redirected to http://astrochimp.dev:3000/signups/baox Completed 302 Found in 1058ms (ActiveRecord: 33.4ms) Started GET "/signups/baox" for 127.0.0.1 at 2013-01-03 15:29:13 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"baox"} Astrochimp::Signup Load (0.8ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 43]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (1.7ms) Completed 200 OK in 10ms (Views: 7.5ms | ActiveRecord: 0.8ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2013-01-03 15:29:13 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-03 15:29:13 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2013-01-03 15:29:13 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2013-01-03 15:29:13 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2013-01-03 15:29:13 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-03 15:29:13 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2013-01-03 15:29:13 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-01-03 15:41:18 -0600 Processing by Astrochimp::SignupsController#index as HTML Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (2.3ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (3.2ms) Completed 200 OK in 21ms (Views: 8.7ms | ActiveRecord: 2.5ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2013-01-03 15:41:19 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2013-01-03 15:41:19 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2013-01-03 15:41:19 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2013-01-03 15:41:19 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-03 15:41:19 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2013-01-03 15:41:19 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-03 15:41:19 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/bg-noise.png" for 127.0.0.1 at 2013-01-03 15:41:19 -0600 Served asset /astrochimp/bg-noise.png - 304 Not Modified (2ms) Started GET "/assets/astrochimp/iphone4-frame-black.png" for 127.0.0.1 at 2013-01-03 15:41:19 -0600 Served asset /astrochimp/iphone4-frame-black.png - 304 Not Modified (2ms) Started POST "/signups" for 127.0.0.1 at 2013-01-03 15:41:50 -0600 Connecting to database specified by database.yml Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2qrRFYIEn/dJVhoWcdJfoAk9IkHR/hTop5E1X+tapA=", "signup"=>{"email"=>"jonathan+3341@brightbit.com"}, "commit"=>"Notify Me »"}  (0.3ms) BEGIN Astrochimp::Signup Exists (2.0ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+3341@brightbit.com' LIMIT 1 SQL (2.3ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referrer_id", "signups_count", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 03 Jan 2013 21:41:52 UTC +00:00], ["email", "jonathan+3341@brightbit.com"], ["referrer_id", 42], ["signups_count", 0], ["status", 0], ["updated_at", Thu, 03 Jan 2013 21:41:52 UTC +00:00]] Astrochimp::Signup Load (0.8ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = 42 LIMIT 1 SQL (0.9ms) UPDATE "astrochimp_signups" SET "signups_count" = COALESCE("signups_count", 0) + 1 WHERE "astrochimp_signups"."id" = 42  (2.0ms) COMMIT Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signup_mailer/signup_complete.text.erb (9.2ms) Completed 500 Internal Server Error in 1235ms ActionView::Template::Error (Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set :only_path to true): 1: You have successfully signed up. 2: 3: Your custom referral link: <%= link_to referral_link_path(referrer_code: @signup.referral_code, only_path: false), 4: referral_link_path(referrer_code: @signup.referral_code) %> 5: 6: To view the status of your referrals, visit <%= link_to @signup %> .bundle/gems/actionpack-3.2.8/lib/action_dispatch/http/url.rb:25:in `url_for' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:590:in `url_for' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/url_for.rb:148:in `url_for' .bundle/gems/actionpack-3.2.8/lib/action_view/helpers/url_helper.rb:107:in `url_for' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:213:in `referral_link_path' /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signup_mailer/signup_complete.text.erb:3:in `___sers_jcamenisch_projects_astrochimp_app_views_astrochimp_signup_mailer_signup_complete_text_erb___108461815318595782_2160165800' .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:145:in `block in render' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:125:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:143:in `render' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:45:in `render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:18:in `render' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:36:in `render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:17:in `render' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:110:in `_render_template' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:103:in `render_to_body' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:88:in `render' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:701:in `block in collect_responses_and_parts_order' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:712:in `each' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:712:in `each_template' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:697:in `collect_responses_and_parts_order' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:636:in `mail' /Users/jcamenisch/projects/astrochimp/app/mailers/astrochimp/signup_mailer.rb:7:in `signup_complete' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:457:in `process' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:452:in `initialize' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:439:in `new' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:439:in `method_missing' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:38:in `block in create' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:270:in `call' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:270:in `retrieve_collector_from_mimes' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:194:in `respond_to' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:32:in `create' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:4:in `send_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:403:in `_run__2824363218091591098__process_action__4044428878793349544__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action' .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/railtie/configurable.rb:30:in `method_missing' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call' .bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb:35:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__403799743417376779__call__313345597806114806__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms) Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms) Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.4ms) Started POST "/signups" for 127.0.0.1 at 2013-01-03 15:42:49 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2qrRFYIEn/dJVhoWcdJfoAk9IkHR/hTop5E1X+tapA=", "signup"=>{"email"=>"jonathan+3341@brightbit.com"}, "commit"=>"Notify Me »"}  (0.1ms) BEGIN Astrochimp::Signup Exists (0.5ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+3341@brightbit.com' LIMIT 1  (0.5ms) ROLLBACK Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (2.4ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (6.3ms) Completed 200 OK in 78ms (Views: 33.3ms | ActiveRecord: 1.1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-03 15:42:49 -0600 Served asset /jquery.js - 304 Not Modified (11ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2013-01-03 15:42:49 -0600 Served asset /astrochimp/application.js - 304 Not Modified (6ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2013-01-03 15:42:49 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (2ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2013-01-03 15:42:49 -0600 Served asset /astrochimp/application.css - 304 Not Modified (3ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-03 15:42:49 -0600 Served asset /jquery_ujs.js - 304 Not Modified (2ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2013-01-03 15:42:49 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (2ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2013-01-03 15:42:49 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (3ms) Started POST "/signups" for 127.0.0.1 at 2013-01-03 15:42:55 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2qrRFYIEn/dJVhoWcdJfoAk9IkHR/hTop5E1X+tapA=", "signup"=>{"email"=>"jonathan+3342@brightbit.com"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (0.5ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+3342@brightbit.com' LIMIT 1 SQL (0.7ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referrer_id", "signups_count", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 03 Jan 2013 21:42:55 UTC +00:00], ["email", "jonathan+3342@brightbit.com"], ["referrer_id", 42], ["signups_count", 0], ["status", 0], ["updated_at", Thu, 03 Jan 2013 21:42:55 UTC +00:00]] Astrochimp::Signup Load (0.4ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = 42 LIMIT 1 SQL (0.3ms) UPDATE "astrochimp_signups" SET "signups_count" = COALESCE("signups_count", 0) + 1 WHERE "astrochimp_signups"."id" = 42  (0.8ms) COMMIT Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signup_mailer/signup_complete.text.erb (2.7ms) Completed 500 Internal Server Error in 294ms ActionView::Template::Error (Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set :only_path to true): 1: You have successfully signed up. 2: 3: Your custom referral link: <%= link_to referral_link_path(referrer_code: @signup.referral_code, only_path: false), 4: referral_link_path(referrer_code: @signup.referral_code), 5: host: 'http://astrochimp.dev:3000/' %> 6: .bundle/gems/actionpack-3.2.8/lib/action_dispatch/http/url.rb:25:in `url_for' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:590:in `url_for' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/url_for.rb:148:in `url_for' .bundle/gems/actionpack-3.2.8/lib/action_view/helpers/url_helper.rb:107:in `url_for' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:213:in `referral_link_path' /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signup_mailer/signup_complete.text.erb:3:in `___sers_jcamenisch_projects_astrochimp_app_views_astrochimp_signup_mailer_signup_complete_text_erb___108461815318595782_2166084520' .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:145:in `block in render' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:125:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:143:in `render' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:45:in `render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:18:in `render' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:36:in `render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:17:in `render' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:110:in `_render_template' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:103:in `render_to_body' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:88:in `render' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:701:in `block in collect_responses_and_parts_order' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:712:in `each' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:712:in `each_template' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:697:in `collect_responses_and_parts_order' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:636:in `mail' /Users/jcamenisch/projects/astrochimp/app/mailers/astrochimp/signup_mailer.rb:7:in `signup_complete' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:457:in `process' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:452:in `initialize' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:439:in `new' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:439:in `method_missing' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:38:in `block in create' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:270:in `call' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:270:in `retrieve_collector_from_mimes' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:194:in `respond_to' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:32:in `create' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:4:in `send_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:403:in `_run__2824363218091591098__process_action__4044428878793349544__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action' .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/railtie/configurable.rb:30:in `method_missing' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call' .bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb:35:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__403799743417376779__call__313345597806114806__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms) Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.1ms) Started POST "/signups" for 127.0.0.1 at 2013-01-03 15:43:55 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2qrRFYIEn/dJVhoWcdJfoAk9IkHR/hTop5E1X+tapA=", "signup"=>{"email"=>"jonathan+3342@brightbit.com"}, "commit"=>"Notify Me »"}  (0.1ms) BEGIN Astrochimp::Signup Exists (0.4ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+3342@brightbit.com' LIMIT 1  (0.2ms) ROLLBACK Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (1.6ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (2.5ms) Completed 200 OK in 13ms (Views: 7.3ms | ActiveRecord: 0.7ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2013-01-03 15:43:55 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-03 15:43:55 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2013-01-03 15:43:55 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-03 15:43:55 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2013-01-03 15:43:55 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2013-01-03 15:43:55 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2013-01-03 15:43:55 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started POST "/signups" for 127.0.0.1 at 2013-01-03 15:44:00 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2qrRFYIEn/dJVhoWcdJfoAk9IkHR/hTop5E1X+tapA=", "signup"=>{"email"=>"jonathan+3343@brightbit.com"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (0.5ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+3343@brightbit.com' LIMIT 1 SQL (0.7ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referrer_id", "signups_count", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 03 Jan 2013 21:44:01 UTC +00:00], ["email", "jonathan+3343@brightbit.com"], ["referrer_id", 42], ["signups_count", 0], ["status", 0], ["updated_at", Thu, 03 Jan 2013 21:44:01 UTC +00:00]] Astrochimp::Signup Load (0.5ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = 42 LIMIT 1 SQL (0.5ms) UPDATE "astrochimp_signups" SET "signups_count" = COALESCE("signups_count", 0) + 1 WHERE "astrochimp_signups"."id" = 42  (0.9ms) COMMIT Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signup_mailer/signup_complete.text.erb (2.5ms) Completed 500 Internal Server Error in 668ms ActionController::RoutingError (No route matches {}): .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:532:in `raise_routing_error' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:528:in `rescue in generate' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:520:in `generate' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:561:in `generate' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:586:in `url_for' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/url_for.rb:148:in `url_for' .bundle/gems/actionpack-3.2.8/lib/action_view/helpers/url_helper.rb:107:in `url_for' .bundle/gems/actionpack-3.2.8/lib/action_view/helpers/url_helper.rb:242:in `link_to' /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signup_mailer/signup_complete.text.erb:6:in `___sers_jcamenisch_projects_astrochimp_app_views_astrochimp_signup_mailer_signup_complete_text_erb___108461815318595782_2160775020' .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:145:in `block in render' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:125:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:143:in `render' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:45:in `render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:18:in `render' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:36:in `render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:17:in `render' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:110:in `_render_template' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:103:in `render_to_body' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:88:in `render' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:701:in `block in collect_responses_and_parts_order' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:712:in `each' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:712:in `each_template' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:697:in `collect_responses_and_parts_order' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:636:in `mail' /Users/jcamenisch/projects/astrochimp/app/mailers/astrochimp/signup_mailer.rb:7:in `signup_complete' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:457:in `process' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:452:in `initialize' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:439:in `new' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:439:in `method_missing' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:38:in `block in create' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:270:in `call' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:270:in `retrieve_collector_from_mimes' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:194:in `respond_to' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:32:in `create' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:4:in `send_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:403:in `_run__2824363218091591098__process_action__4044428878793349544__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action' .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/railtie/configurable.rb:30:in `method_missing' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call' .bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb:35:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__403799743417376779__call__313345597806114806__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2013-01-03 15:44:33 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2013-01-03 15:44:33 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2013-01-03 15:44:33 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2013-01-03 15:44:33 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-03 15:44:33 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2013-01-03 15:44:33 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-03 15:44:33 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2013-01-03 15:44:34 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2013-01-03 15:44:34 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-03 15:44:34 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2013-01-03 15:44:34 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-03 15:44:34 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2013-01-03 15:44:34 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2013-01-03 15:44:34 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-01-03 15:44:38 -0600 Processing by Astrochimp::SignupsController#index as HTML Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (2.2ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (3.8ms) Completed 200 OK in 14ms (Views: 12.6ms | ActiveRecord: 0.0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2013-01-03 15:44:38 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2013-01-03 15:44:38 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-03 15:44:38 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-03 15:44:38 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2013-01-03 15:44:38 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2013-01-03 15:44:38 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2013-01-03 15:44:38 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/bg-noise.png" for 127.0.0.1 at 2013-01-03 15:44:39 -0600 Served asset /astrochimp/bg-noise.png - 304 Not Modified (3ms) Started GET "/assets/astrochimp/iphone4-frame-black.png" for 127.0.0.1 at 2013-01-03 15:44:39 -0600 Served asset /astrochimp/iphone4-frame-black.png - 304 Not Modified (5ms) Started POST "/signups" for 127.0.0.1 at 2013-01-03 15:44:59 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2qrRFYIEn/dJVhoWcdJfoAk9IkHR/hTop5E1X+tapA=", "signup"=>{"email"=>"jonathan+3344@brightbit.com"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (0.5ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+3344@brightbit.com' LIMIT 1 SQL (0.8ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referrer_id", "signups_count", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 03 Jan 2013 21:45:01 UTC +00:00], ["email", "jonathan+3344@brightbit.com"], ["referrer_id", 42], ["signups_count", 0], ["status", 0], ["updated_at", Thu, 03 Jan 2013 21:45:01 UTC +00:00]] Astrochimp::Signup Load (0.6ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = 42 LIMIT 1 SQL (0.4ms) UPDATE "astrochimp_signups" SET "signups_count" = COALESCE("signups_count", 0) + 1 WHERE "astrochimp_signups"."id" = 42  (1.0ms) COMMIT Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signup_mailer/signup_complete.text.erb (1.6ms) Completed 500 Internal Server Error in 1381ms ActionController::RoutingError (No route matches {}): .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:532:in `raise_routing_error' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:528:in `rescue in generate' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:520:in `generate' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:561:in `generate' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:586:in `url_for' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/url_for.rb:148:in `url_for' .bundle/gems/actionpack-3.2.8/lib/action_view/helpers/url_helper.rb:107:in `url_for' .bundle/gems/actionpack-3.2.8/lib/action_view/helpers/url_helper.rb:242:in `link_to' /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signup_mailer/signup_complete.text.erb:6:in `___sers_jcamenisch_projects_astrochimp_app_views_astrochimp_signup_mailer_signup_complete_text_erb___108461815318595782_2160775020' .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:145:in `block in render' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:125:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:143:in `render' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:45:in `render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:18:in `render' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:36:in `render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:17:in `render' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:110:in `_render_template' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:103:in `render_to_body' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:88:in `render' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:701:in `block in collect_responses_and_parts_order' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:712:in `each' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:712:in `each_template' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:697:in `collect_responses_and_parts_order' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:636:in `mail' /Users/jcamenisch/projects/astrochimp/app/mailers/astrochimp/signup_mailer.rb:7:in `signup_complete' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:457:in `process' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:452:in `initialize' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:439:in `new' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:439:in `method_missing' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:38:in `block in create' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:270:in `call' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:270:in `retrieve_collector_from_mimes' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:194:in `respond_to' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:32:in `create' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:4:in `send_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:403:in `_run__2824363218091591098__process_action__4044428878793349544__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action' .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/railtie/configurable.rb:30:in `method_missing' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call' .bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb:35:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__403799743417376779__call__313345597806114806__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started POST "/signups" for 127.0.0.1 at 2013-01-03 15:46:13 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2qrRFYIEn/dJVhoWcdJfoAk9IkHR/hTop5E1X+tapA=", "signup"=>{"email"=>"jonathan+3346@brightbit.com"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (0.5ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+3346@brightbit.com' LIMIT 1 SQL (0.8ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referrer_id", "signups_count", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 03 Jan 2013 21:46:13 UTC +00:00], ["email", "jonathan+3346@brightbit.com"], ["referrer_id", 42], ["signups_count", 0], ["status", 0], ["updated_at", Thu, 03 Jan 2013 21:46:13 UTC +00:00]] Astrochimp::Signup Load (0.4ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = 42 LIMIT 1 SQL (0.4ms) UPDATE "astrochimp_signups" SET "signups_count" = COALESCE("signups_count", 0) + 1 WHERE "astrochimp_signups"."id" = 42  (1.3ms) COMMIT Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signup_mailer/signup_complete.text.erb (1.8ms) Completed 500 Internal Server Error in 755ms ActionController::RoutingError (No route matches {}): .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:532:in `raise_routing_error' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:528:in `rescue in generate' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:520:in `generate' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:561:in `generate' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:586:in `url_for' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/url_for.rb:148:in `url_for' .bundle/gems/actionpack-3.2.8/lib/action_view/helpers/url_helper.rb:107:in `url_for' .bundle/gems/actionpack-3.2.8/lib/action_view/helpers/url_helper.rb:242:in `link_to' /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signup_mailer/signup_complete.text.erb:5:in `___sers_jcamenisch_projects_astrochimp_app_views_astrochimp_signup_mailer_signup_complete_text_erb___108461815318595782_2163096040' .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:145:in `block in render' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:125:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:143:in `render' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:45:in `render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:18:in `render' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:36:in `render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:17:in `render' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:110:in `_render_template' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:103:in `render_to_body' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:88:in `render' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:701:in `block in collect_responses_and_parts_order' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:712:in `each' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:712:in `each_template' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:697:in `collect_responses_and_parts_order' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:636:in `mail' /Users/jcamenisch/projects/astrochimp/app/mailers/astrochimp/signup_mailer.rb:7:in `signup_complete' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:457:in `process' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:452:in `initialize' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:439:in `new' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:439:in `method_missing' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:38:in `block in create' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:270:in `call' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:270:in `retrieve_collector_from_mimes' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:194:in `respond_to' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:32:in `create' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:4:in `send_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:403:in `_run__2824363218091591098__process_action__4044428878793349544__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action' .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/railtie/configurable.rb:30:in `method_missing' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call' .bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb:35:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__403799743417376779__call__313345597806114806__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started POST "/signups" for 127.0.0.1 at 2013-01-03 15:46:23 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2qrRFYIEn/dJVhoWcdJfoAk9IkHR/hTop5E1X+tapA=", "signup"=>{"email"=>"jonathan+3346@brightbit.com"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (0.6ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+3346@brightbit.com' LIMIT 1  (0.2ms) ROLLBACK Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (1.7ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (2.5ms) Completed 200 OK in 13ms (Views: 7.2ms | ActiveRecord: 0.9ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2013-01-03 15:46:23 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-03 15:46:23 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2013-01-03 15:46:23 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-03 15:46:23 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2013-01-03 15:46:23 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2013-01-03 15:46:23 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2013-01-03 15:46:23 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/bg-noise.png" for 127.0.0.1 at 2013-01-03 15:46:23 -0600 Served asset /astrochimp/bg-noise.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/iphone4-frame-black.png" for 127.0.0.1 at 2013-01-03 15:46:23 -0600 Served asset /astrochimp/iphone4-frame-black.png - 304 Not Modified (0ms) Started POST "/signups" for 127.0.0.1 at 2013-01-03 15:46:28 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2qrRFYIEn/dJVhoWcdJfoAk9IkHR/hTop5E1X+tapA=", "signup"=>{"email"=>"jonathan+3347@brightbit.com"}, "commit"=>"Notify Me »"}  (0.3ms) BEGIN Astrochimp::Signup Exists (0.5ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+3347@brightbit.com' LIMIT 1 SQL (0.8ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referrer_id", "signups_count", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 03 Jan 2013 21:46:28 UTC +00:00], ["email", "jonathan+3347@brightbit.com"], ["referrer_id", 42], ["signups_count", 0], ["status", 0], ["updated_at", Thu, 03 Jan 2013 21:46:28 UTC +00:00]] Astrochimp::Signup Load (0.6ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = 42 LIMIT 1 SQL (0.4ms) UPDATE "astrochimp_signups" SET "signups_count" = COALESCE("signups_count", 0) + 1 WHERE "astrochimp_signups"."id" = 42  (1.4ms) COMMIT Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signup_mailer/signup_complete.text.erb (0.4ms) Sent mail to jonathan+3347@brightbit.com (6330ms) Date: Thu, 03 Jan 2013 15:46:28 -0600 From: from@example.com To: jonathan+3347@brightbit.com Message-ID: <50e5fc34e5253_9efb806f362066936@jcmbp.mail> Subject: You have successfully signed up for Astrochimp Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit You have successfully signed up. Your custom referral link: To view the status of your referrals, visit Redirected to http://astrochimp.dev:3000/signups/baqz Completed 302 Found in 6627ms (ActiveRecord: 3.8ms) Started GET "/signups/baqz" for 127.0.0.1 at 2013-01-03 15:46:35 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"baqz"} Astrochimp::Signup Load (0.7ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 49]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (1.6ms) Completed 200 OK in 9ms (Views: 6.5ms | ActiveRecord: 0.7ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2013-01-03 15:46:35 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2013-01-03 15:46:35 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2013-01-03 15:46:35 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-03 15:46:35 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-03 15:46:35 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2013-01-03 15:46:35 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2013-01-03 15:46:35 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/bg-noise.png" for 127.0.0.1 at 2013-01-03 15:46:35 -0600 Served asset /astrochimp/bg-noise.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/iphone4-frame-black.png" for 127.0.0.1 at 2013-01-03 15:46:35 -0600 Served asset /astrochimp/iphone4-frame-black.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2013-01-03 15:47:51 -0600 Served asset /astrochimp/signups.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2013-01-03 15:47:51 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2013-01-03 15:47:51 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2013-01-03 15:47:52 -0600 Served asset /astrochimp/signups.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2013-01-03 15:47:52 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-03 15:47:52 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-03 15:47:52 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/bg-noise.png" for 127.0.0.1 at 2013-01-03 15:47:52 -0600 Served asset /astrochimp/bg-noise.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/iphone4-frame-black.png" for 127.0.0.1 at 2013-01-03 15:47:52 -0600 Served asset /astrochimp/iphone4-frame-black.png - 304 Not Modified (0ms) Started POST "/signups" for 127.0.0.1 at 2013-01-03 15:51:50 -0600 Connecting to database specified by database.yml Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2qrRFYIEn/dJVhoWcdJfoAk9IkHR/hTop5E1X+tapA=", "signup"=>{"email"=>"jonathan+3351@brightbit.com"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (1.4ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+3351@brightbit.com' LIMIT 1 SQL (2.6ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referrer_id", "signups_count", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 03 Jan 2013 21:51:52 UTC +00:00], ["email", "jonathan+3351@brightbit.com"], ["referrer_id", 42], ["signups_count", 0], ["status", 0], ["updated_at", Thu, 03 Jan 2013 21:51:52 UTC +00:00]] Astrochimp::Signup Load (0.7ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = 42 LIMIT 1 SQL (0.7ms) UPDATE "astrochimp_signups" SET "signups_count" = COALESCE("signups_count", 0) + 1 WHERE "astrochimp_signups"."id" = 42  (1.1ms) COMMIT Completed 500 Internal Server Error in 942ms RuntimeError (Invalid delivery method :letter_opener): .bundle/gems/actionmailer-3.2.8/lib/action_mailer/delivery_methods.rb:71:in `wrap_delivery_behavior' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/delivery_methods.rb:83:in `wrap_delivery_behavior!' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:629:in `mail' /Users/jcamenisch/projects/astrochimp/app/mailers/astrochimp/signup_mailer.rb:7:in `signup_complete' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:457:in `process' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:452:in `initialize' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:439:in `new' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:439:in `method_missing' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:38:in `block in create' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:270:in `call' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:270:in `retrieve_collector_from_mimes' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:194:in `respond_to' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:32:in `create' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:4:in `send_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:403:in `_run__1330503057029915719__process_action__3077891995995708327__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action' .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/railtie/configurable.rb:30:in `method_missing' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call' .bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb:35:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__2590267604686188364__call__3397563078463903169__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms) Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms) Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (42.4ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2013-01-03 15:53:37 -0600 Connecting to database specified by database.yml Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-03 15:53:37 -0600 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-03 15:53:37 -0600 Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2013-01-03 15:53:37 -0600 Served asset /astrochimp/application.css - 304 Not Modified (5ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2013-01-03 15:53:37 -0600 Served asset /astrochimp/application.js - 304 Not Modified (8ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2013-01-03 15:53:37 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (4ms) Started POST "/signups" for 127.0.0.1 at 2013-01-03 15:53:41 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2qrRFYIEn/dJVhoWcdJfoAk9IkHR/hTop5E1X+tapA=", "signup"=>{"email"=>"jonathan+3352@brightbit.com"}, "commit"=>"Notify Me »"}  (0.3ms) BEGIN Astrochimp::Signup Exists (1.2ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+3352@brightbit.com' LIMIT 1 SQL (3.1ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referrer_id", "signups_count", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 03 Jan 2013 21:53:43 UTC +00:00], ["email", "jonathan+3352@brightbit.com"], ["referrer_id", 42], ["signups_count", 0], ["status", 0], ["updated_at", Thu, 03 Jan 2013 21:53:43 UTC +00:00]] Astrochimp::Signup Load (0.7ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = 42 LIMIT 1 SQL (0.8ms) UPDATE "astrochimp_signups" SET "signups_count" = COALESCE("signups_count", 0) + 1 WHERE "astrochimp_signups"."id" = 42  (2.1ms) COMMIT Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signup_mailer/signup_complete.text.erb (2.1ms) Sent mail to jonathan+3352@brightbit.com (55ms) Date: Thu, 03 Jan 2013 15:53:43 -0600 From: from@example.com To: jonathan+3352@brightbit.com Message-ID: <50e5fde77ddd3_a02981e5912080455@jcmbp.mail> Subject: You have successfully signed up for Astrochimp Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit You have successfully signed up. Your custom referral link: To view the status of your referrals, visit Redirected to http://astrochimp.dev:3000/signups/barr Completed 302 Found in 2439ms (ActiveRecord: 19.7ms) Started GET "/signups/barr" for 127.0.0.1 at 2013-01-03 15:53:43 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"barr"} Astrochimp::Signup Load (1.0ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 51]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (3.7ms) Completed 200 OK in 42ms (Views: 38.0ms | ActiveRecord: 1.0ms) Started GET "/assets/astrochimp/signups.js?body=1" for 127.0.0.1 at 2013-01-03 15:53:43 -0600 Served asset /astrochimp/signups.js - 200 OK (5ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2013-01-03 15:53:43 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-03 15:53:43 -0600 Served asset /jquery_ujs.js - 200 OK (3ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-03 15:53:43 -0600 Served asset /jquery.js - 200 OK (5ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2013-01-03 15:53:43 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2013-01-03 15:53:43 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/signups.css?body=1" for 127.0.0.1 at 2013-01-03 15:53:43 -0600 Served asset /astrochimp/signups.css - 200 OK (3ms) Started GET "/r/barr" for 127.0.0.1 at 2013-01-03 15:54:39 -0600 Processing by Astrochimp::SignupsController#index as HTML Parameters: {"referrer_code"=>"barr"} Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (2.2ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (6.6ms) Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2013-01-03 15:54:39 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2013-01-03 15:54:39 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2013-01-03 15:54:40 -0600 Served asset /astrochimp/application.js - 304 Not Modified (2ms) Started POST "/signups" for 127.0.0.1 at 2013-01-03 15:54:50 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2qrRFYIEn/dJVhoWcdJfoAk9IkHR/hTop5E1X+tapA=", "signup"=>{"email"=>"jonathan+3354@brightbit.com"}, "commit"=>"Notify Me »"}  (0.3ms) BEGIN Astrochimp::Signup Exists (0.5ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+3354@brightbit.com' LIMIT 1 SQL (0.7ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referrer_id", "signups_count", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 03 Jan 2013 21:54:50 UTC +00:00], ["email", "jonathan+3354@brightbit.com"], ["referrer_id", 51], ["signups_count", 0], ["status", 0], ["updated_at", Thu, 03 Jan 2013 21:54:50 UTC +00:00]] Astrochimp::Signup Load (0.6ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = 51 LIMIT 1 SQL (0.5ms) UPDATE "astrochimp_signups" SET "signups_count" = COALESCE("signups_count", 0) + 1 WHERE "astrochimp_signups"."id" = 51  (0.9ms) COMMIT Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signup_mailer/signup_complete.text.erb (49.7ms) Completed 500 Internal Server Error in 744ms ActionController::RoutingError (No route matches {}): .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:532:in `raise_routing_error' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:528:in `rescue in generate' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:520:in `generate' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:561:in `generate' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:586:in `url_for' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/url_for.rb:148:in `url_for' .bundle/gems/actionpack-3.2.8/lib/action_view/helpers/url_helper.rb:107:in `url_for' .bundle/gems/actionpack-3.2.8/lib/action_view/helpers/url_helper.rb:242:in `link_to' /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signup_mailer/signup_complete.text.erb:6:in `___sers_jcamenisch_projects_astrochimp_app_views_astrochimp_signup_mailer_signup_complete_text_erb__3173766473021464923_2154211280' .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:145:in `block in render' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:125:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:143:in `render' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:45:in `render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:18:in `render' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:36:in `render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:17:in `render' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:110:in `_render_template' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:103:in `render_to_body' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:88:in `render' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:701:in `block in collect_responses_and_parts_order' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:712:in `each' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:712:in `each_template' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:697:in `collect_responses_and_parts_order' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:636:in `mail' /Users/jcamenisch/projects/astrochimp/app/mailers/astrochimp/signup_mailer.rb:7:in `signup_complete' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:457:in `process' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:452:in `initialize' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:439:in `new' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:439:in `method_missing' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:38:in `block in create' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:270:in `call' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:270:in `retrieve_collector_from_mimes' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:194:in `respond_to' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:32:in `create' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:4:in `send_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:403:in `_run__2930020686546999432__process_action__428863678012814622__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action' .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/railtie/configurable.rb:30:in `method_missing' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call' .bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb:35:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__2973418888116666777__call__2226655438092100570__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started POST "/signups" for 127.0.0.1 at 2013-01-03 15:55:25 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2qrRFYIEn/dJVhoWcdJfoAk9IkHR/hTop5E1X+tapA=", "signup"=>{"email"=>"jonathan+3355@brightbit.com"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (0.5ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+3355@brightbit.com' LIMIT 1 SQL (0.7ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referrer_id", "signups_count", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 03 Jan 2013 21:55:26 UTC +00:00], ["email", "jonathan+3355@brightbit.com"], ["referrer_id", 51], ["signups_count", 0], ["status", 0], ["updated_at", Thu, 03 Jan 2013 21:55:26 UTC +00:00]] Astrochimp::Signup Load (0.5ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = 51 LIMIT 1 SQL (0.3ms) UPDATE "astrochimp_signups" SET "signups_count" = COALESCE("signups_count", 0) + 1 WHERE "astrochimp_signups"."id" = 51  (1.0ms) COMMIT Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signup_mailer/signup_complete.text.erb (2.7ms) Completed 500 Internal Server Error in 630ms ActionController::RoutingError (No route matches {}): .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:532:in `raise_routing_error' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:528:in `rescue in generate' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:520:in `generate' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:561:in `generate' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:586:in `url_for' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/url_for.rb:148:in `url_for' .bundle/gems/actionpack-3.2.8/lib/action_view/helpers/url_helper.rb:107:in `url_for' .bundle/gems/actionpack-3.2.8/lib/action_view/helpers/url_helper.rb:242:in `link_to' /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signup_mailer/signup_complete.text.erb:6:in `___sers_jcamenisch_projects_astrochimp_app_views_astrochimp_signup_mailer_signup_complete_text_erb__3173766473021464923_2157237960' .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:145:in `block in render' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:125:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:143:in `render' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:45:in `render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:18:in `render' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:36:in `render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:17:in `render' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:110:in `_render_template' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:103:in `render_to_body' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:88:in `render' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:701:in `block in collect_responses_and_parts_order' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:712:in `each' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:712:in `each_template' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:697:in `collect_responses_and_parts_order' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:636:in `mail' /Users/jcamenisch/projects/astrochimp/app/mailers/astrochimp/signup_mailer.rb:7:in `signup_complete' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:457:in `process' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:452:in `initialize' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:439:in `new' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:439:in `method_missing' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:38:in `block in create' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:270:in `call' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:270:in `retrieve_collector_from_mimes' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:194:in `respond_to' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:32:in `create' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:4:in `send_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:403:in `_run__2930020686546999432__process_action__428863678012814622__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action' .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/railtie/configurable.rb:30:in `method_missing' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call' .bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb:35:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__2973418888116666777__call__2226655438092100570__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started POST "/signups" for 127.0.0.1 at 2013-01-03 15:56:30 -0600 Connecting to database specified by database.yml Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2qrRFYIEn/dJVhoWcdJfoAk9IkHR/hTop5E1X+tapA=", "signup"=>{"email"=>"jonathan+3356@brightbit.com"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (1.2ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+3356@brightbit.com' LIMIT 1 SQL (2.8ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referrer_id", "signups_count", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 03 Jan 2013 21:56:31 UTC +00:00], ["email", "jonathan+3356@brightbit.com"], ["referrer_id", 51], ["signups_count", 0], ["status", 0], ["updated_at", Thu, 03 Jan 2013 21:56:31 UTC +00:00]] Astrochimp::Signup Load (0.8ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = 51 LIMIT 1 SQL (0.9ms) UPDATE "astrochimp_signups" SET "signups_count" = COALESCE("signups_count", 0) + 1 WHERE "astrochimp_signups"."id" = 51  (1.3ms) COMMIT Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signup_mailer/signup_complete.text.erb (4.3ms) Sent mail to jonathan+3356@brightbit.com (20ms) Date: Thu, 03 Jan 2013 15:56:31 -0600 From: from@example.com To: jonathan+3356@brightbit.com Message-ID: <50e5fe8f3c163_a07281def478456db@jcmbp.mail> Subject: You have successfully signed up for Astrochimp Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit You have successfully signed up. Your custom referral link: /r/bass To view the status of your referrals, visit Redirected to http://astrochimp.dev:3000/signups/bass Completed 302 Found in 730ms (ActiveRecord: 17.5ms) Started GET "/signups/bass" for 127.0.0.1 at 2013-01-03 15:56:31 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"bass"} Astrochimp::Signup Load (0.9ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 54]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (3.0ms) Completed 200 OK in 41ms (Views: 37.7ms | ActiveRecord: 0.9ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2013-01-03 15:56:31 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (3ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2013-01-03 15:56:31 -0600 Served asset /astrochimp/application.js - 304 Not Modified (24ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2013-01-03 15:56:31 -0600 Served asset /astrochimp/application.css - 304 Not Modified (6ms) Started GET "/r/bass" for 127.0.0.1 at 2013-01-03 15:57:04 -0600 Processing by Astrochimp::SignupsController#index as HTML Parameters: {"referrer_code"=>"bass"} Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (2.1ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (45.9ms) Completed 200 OK in 51ms (Views: 50.6ms | ActiveRecord: 0.0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2013-01-03 15:57:04 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2013-01-03 15:57:04 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2013-01-03 15:57:04 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started POST "/signups" for 127.0.0.1 at 2013-01-03 15:57:13 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2qrRFYIEn/dJVhoWcdJfoAk9IkHR/hTop5E1X+tapA=", "signup"=>{"email"=>"jonathan+3357@brightbit.com"}, "commit"=>"Notify Me »"}  (0.3ms) BEGIN Astrochimp::Signup Exists (0.5ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+3357@brightbit.com' LIMIT 1 SQL (0.8ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referrer_id", "signups_count", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 03 Jan 2013 21:57:13 UTC +00:00], ["email", "jonathan+3357@brightbit.com"], ["referrer_id", 54], ["signups_count", 0], ["status", 0], ["updated_at", Thu, 03 Jan 2013 21:57:13 UTC +00:00]] Astrochimp::Signup Load (0.5ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = 54 LIMIT 1 SQL (0.4ms) UPDATE "astrochimp_signups" SET "signups_count" = COALESCE("signups_count", 0) + 1 WHERE "astrochimp_signups"."id" = 54  (54.2ms) COMMIT Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signup_mailer/signup_complete.text.erb (0.5ms) Sent mail to jonathan+3357@brightbit.com (12ms) Date: Thu, 03 Jan 2013 15:57:13 -0600 From: from@example.com To: jonathan+3357@brightbit.com Message-ID: <50e5feb9dd604_a0728159d5a445741@jcmbp.mail> Subject: You have successfully signed up for Astrochimp Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit You have successfully signed up. Your custom referral link: referral_link_path(referrer_code: @signup.referral_code, path_only: false, host: 'astrochimp.dev:3000') To view the status of your referrals, visit Redirected to http://astrochimp.dev:3000/signups/batb Completed 302 Found in 753ms (ActiveRecord: 56.8ms) Started GET "/signups/batb" for 127.0.0.1 at 2013-01-03 15:57:13 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"batb"} Astrochimp::Signup Load (0.6ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 55]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (1.9ms) Completed 200 OK in 13ms (Views: 9.9ms | ActiveRecord: 0.6ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2013-01-03 15:57:14 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2013-01-03 15:57:14 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2013-01-03 15:57:14 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/r/batb" for 127.0.0.1 at 2013-01-03 15:57:48 -0600 Processing by Astrochimp::SignupsController#index as HTML Parameters: {"referrer_code"=>"batb"} Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (1.5ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (2.3ms) Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2013-01-03 15:57:49 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2013-01-03 15:57:49 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2013-01-03 15:57:49 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started POST "/signups" for 127.0.0.1 at 2013-01-03 15:58:05 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2qrRFYIEn/dJVhoWcdJfoAk9IkHR/hTop5E1X+tapA=", "signup"=>{"email"=>"jonathan+3358@brightbit.com"}, "commit"=>"Notify Me »"}  (0.3ms) BEGIN Astrochimp::Signup Exists (0.4ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+3358@brightbit.com' LIMIT 1 SQL (0.7ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referrer_id", "signups_count", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 03 Jan 2013 21:58:05 UTC +00:00], ["email", "jonathan+3358@brightbit.com"], ["referrer_id", 55], ["signups_count", 0], ["status", 0], ["updated_at", Thu, 03 Jan 2013 21:58:05 UTC +00:00]] Astrochimp::Signup Load (0.5ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = 55 LIMIT 1 SQL (0.4ms) UPDATE "astrochimp_signups" SET "signups_count" = COALESCE("signups_count", 0) + 1 WHERE "astrochimp_signups"."id" = 55  (1.0ms) COMMIT Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signup_mailer/signup_complete.text.erb (1.3ms) Sent mail to jonathan+3358@brightbit.com (16ms) Date: Thu, 03 Jan 2013 15:58:05 -0600 From: from@example.com To: jonathan+3358@brightbit.com Message-ID: <50e5feedd7c08_a07282c5757445815@jcmbp.mail> Subject: You have successfully signed up for Astrochimp Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit You have successfully signed up. Your custom referral link: /r/batk?path_only=false To view the status of your referrals, visit Redirected to http://astrochimp.dev:3000/signups/batk Completed 302 Found in 309ms (ActiveRecord: 3.2ms) Started GET "/signups/batk" for 127.0.0.1 at 2013-01-03 15:58:05 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"batk"} Astrochimp::Signup Load (0.8ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 56]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (1.9ms) Completed 200 OK in 15ms (Views: 11.0ms | ActiveRecord: 0.8ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2013-01-03 15:58:06 -0600 Served asset /astrochimp/application.js - 304 Not Modified (1ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2013-01-03 15:58:06 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2013-01-03 15:58:06 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/r/batk" for 127.0.0.1 at 2013-01-03 16:00:15 -0600 Processing by Astrochimp::SignupsController#index as HTML Parameters: {"referrer_code"=>"batk"} Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (1.3ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (2.5ms) Completed 200 OK in 8ms (Views: 7.9ms | ActiveRecord: 0.0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2013-01-03 16:00:15 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2013-01-03 16:00:15 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2013-01-03 16:00:15 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started POST "/signups" for 127.0.0.1 at 2013-01-03 16:00:30 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2qrRFYIEn/dJVhoWcdJfoAk9IkHR/hTop5E1X+tapA=", "signup"=>{"email"=>"jonathan+3400@brightbit.com"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (0.5ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+3400@brightbit.com' LIMIT 1 SQL (0.8ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referrer_id", "signups_count", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 03 Jan 2013 22:00:31 UTC +00:00], ["email", "jonathan+3400@brightbit.com"], ["referrer_id", 56], ["signups_count", 0], ["status", 0], ["updated_at", Thu, 03 Jan 2013 22:00:31 UTC +00:00]] Astrochimp::Signup Load (0.6ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = 56 LIMIT 1 SQL (0.4ms) UPDATE "astrochimp_signups" SET "signups_count" = COALESCE("signups_count", 0) + 1 WHERE "astrochimp_signups"."id" = 56  (1.3ms) COMMIT Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signup_mailer/signup_complete.text.erb (62.4ms) Completed 500 Internal Server Error in 759ms ActionView::Template::Error (undefined method `signups_show_path' for #<#:0x00000101936cd0>): 2: 3: Your custom referral link: <%= referral_link_path(referrer_code: @signup.referral_code, only_path: false, host: 'astrochimp.dev:3000') %> 4: 5: To view the status of your referrals, visit <%= signups_show_path(@signup.id, only_path: false, host: 'astrochimp.dev:3000') %> /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signup_mailer/signup_complete.text.erb:5:in `___sers_jcamenisch_projects_astrochimp_app_views_astrochimp_signup_mailer_signup_complete_text_erb__920095370083016085_2160704760' .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:145:in `block in render' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:125:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_view/template.rb:143:in `render' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:45:in `render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:18:in `render' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:36:in `render_template' .bundle/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:17:in `render' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:110:in `_render_template' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:103:in `render_to_body' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:88:in `render' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:701:in `block in collect_responses_and_parts_order' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:712:in `each' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:712:in `each_template' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:697:in `collect_responses_and_parts_order' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:636:in `mail' /Users/jcamenisch/projects/astrochimp/app/mailers/astrochimp/signup_mailer.rb:7:in `signup_complete' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:457:in `process' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:452:in `initialize' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:439:in `new' .bundle/gems/actionmailer-3.2.8/lib/action_mailer/base.rb:439:in `method_missing' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:38:in `block in create' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:270:in `call' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:270:in `retrieve_collector_from_mimes' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/mime_responds.rb:194:in `respond_to' /Users/jcamenisch/projects/astrochimp/app/controllers/astrochimp/signups_controller.rb:32:in `create' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:4:in `send_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:403:in `_run__1469218203733879890__process_action__2832160916940167350__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument' .bundle/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action' .bundle/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process' .bundle/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/railtie/configurable.rb:30:in `method_missing' .bundle/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' .bundle/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call' .bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb:35:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context' .bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call' .bundle/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__489597268310705292__call__3051284435613381752__callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks' .bundle/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app' .bundle/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call' .bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call' .bundle/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call' .bundle/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call' .bundle/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call' .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call' .bundle/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call' .bundle/gems/railties-3.2.8/lib/rails/application.rb:223:in `call' .bundle/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call' .bundle/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call' .bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/jcamenisch/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms) Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms) Rendered .bundle/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.7ms) Started POST "/signups" for 127.0.0.1 at 2013-01-03 16:03:32 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2qrRFYIEn/dJVhoWcdJfoAk9IkHR/hTop5E1X+tapA=", "signup"=>{"email"=>"jonathan+3403@brightbit.com"}, "commit"=>"Notify Me »"}  (0.1ms) BEGIN Astrochimp::Signup Exists (0.6ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+3403@brightbit.com' LIMIT 1 SQL (0.8ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referrer_id", "signups_count", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 03 Jan 2013 22:03:34 UTC +00:00], ["email", "jonathan+3403@brightbit.com"], ["referrer_id", 56], ["signups_count", 0], ["status", 0], ["updated_at", Thu, 03 Jan 2013 22:03:34 UTC +00:00]] Astrochimp::Signup Load (0.6ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = 56 LIMIT 1 SQL (0.4ms) UPDATE "astrochimp_signups" SET "signups_count" = COALESCE("signups_count", 0) + 1 WHERE "astrochimp_signups"."id" = 56  (1.2ms) COMMIT Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signup_mailer/signup_complete.text.erb (1.5ms) Sent mail to jonathan+3403@brightbit.com (13ms) Date: Thu, 03 Jan 2013 16:03:34 -0600 From: from@example.com To: jonathan+3403@brightbit.com Message-ID: <50e60036b1c1d_a07281747fbc45921@jcmbp.mail> Subject: You have successfully signed up for Astrochimp Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit You have successfully signed up. Your custom referral link: http://astrochimp.dev:3000/r/bauc To view the status of your referrals, visit http://astrochimp.dev:3000/signups/58 Redirected to http://astrochimp.dev:3000/signups/bauc Completed 302 Found in 1875ms (ActiveRecord: 6.6ms) Started GET "/signups/bauc" for 127.0.0.1 at 2013-01-03 16:03:34 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"bauc"} Astrochimp::Signup Load (0.6ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 58]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (2.2ms) Completed 200 OK in 15ms (Views: 11.4ms | ActiveRecord: 0.6ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2013-01-03 16:03:34 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2013-01-03 16:03:34 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2013-01-03 16:03:34 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/r/bauc" for 127.0.0.1 at 2013-01-03 16:04:03 -0600 Processing by Astrochimp::SignupsController#index as HTML Parameters: {"referrer_code"=>"bauc"} Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/_form.html.erb (1.5ms) Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/index.html.erb (2.3ms) Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2013-01-03 16:04:03 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2013-01-03 16:04:03 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2013-01-03 16:04:03 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started POST "/signups" for 127.0.0.1 at 2013-01-03 16:04:09 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2qrRFYIEn/dJVhoWcdJfoAk9IkHR/hTop5E1X+tapA=", "signup"=>{"email"=>"jonathan+3404@brightbit.com"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (0.5ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+3404@brightbit.com' LIMIT 1 SQL (0.8ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referrer_id", "signups_count", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 03 Jan 2013 22:04:10 UTC +00:00], ["email", "jonathan+3404@brightbit.com"], ["referrer_id", 58], ["signups_count", 0], ["status", 0], ["updated_at", Thu, 03 Jan 2013 22:04:10 UTC +00:00]] Astrochimp::Signup Load (0.5ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = 58 LIMIT 1 SQL (0.5ms) UPDATE "astrochimp_signups" SET "signups_count" = COALESCE("signups_count", 0) + 1 WHERE "astrochimp_signups"."id" = 58  (1.0ms) COMMIT Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signup_mailer/signup_complete.text.erb (1.3ms) Sent mail to jonathan+3404@brightbit.com (16ms) Date: Thu, 03 Jan 2013 16:04:10 -0600 From: from@example.com To: jonathan+3404@brightbit.com Message-ID: <50e6005a3eb1a_a07282f08ae8460e2@jcmbp.mail> Subject: You have successfully signed up for Astrochimp Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit You have successfully signed up. Your custom referral link: http://astrochimp.dev:3000/r/baul To view the status of your referrals, visit http://astrochimp.dev:3000/signups/baul Redirected to http://astrochimp.dev:3000/signups/baul Completed 302 Found in 393ms (ActiveRecord: 3.5ms) Started GET "/signups/baul" for 127.0.0.1 at 2013-01-03 16:04:10 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"baul"} Astrochimp::Signup Load (0.6ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 59]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (1.9ms) Completed 200 OK in 13ms (Views: 9.9ms | ActiveRecord: 0.6ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2013-01-03 16:04:10 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2013-01-03 16:04:10 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2013-01-03 16:04:10 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms) Started POST "/signups" for 127.0.0.1 at 2013-01-03 16:09:53 -0600 Connecting to database specified by database.yml Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2qrRFYIEn/dJVhoWcdJfoAk9IkHR/hTop5E1X+tapA=", "signup"=>{"email"=>"jonathan+3409@brightbit.com"}, "commit"=>"Notify Me »"}  (0.4ms) BEGIN Astrochimp::Signup Exists (1.3ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+3409@brightbit.com' LIMIT 1 SQL (2.6ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referrer_id", "signups_count", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 03 Jan 2013 22:09:54 UTC +00:00], ["email", "jonathan+3409@brightbit.com"], ["referrer_id", 58], ["signups_count", 0], ["status", 0], ["updated_at", Thu, 03 Jan 2013 22:09:54 UTC +00:00]] Astrochimp::Signup Load (0.7ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = 58 LIMIT 1 SQL (0.7ms) UPDATE "astrochimp_signups" SET "signups_count" = COALESCE("signups_count", 0) + 1 WHERE "astrochimp_signups"."id" = 58  (6.7ms) COMMIT Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signup_mailer/signup_complete.text.erb (4.5ms) Sent mail to jonathan+3409@brightbit.com (22ms) Date: Thu, 03 Jan 2013 16:09:54 -0600 From: from@example.com To: jonathan+3409@brightbit.com Message-ID: <50e601b298edb_a347812249689689d@jcmbp.mail> Subject: You have successfully signed up for Astrochimp Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit You have successfully signed up. Your custom referral link: http://astrochimp.dev:3000/r/bauu To view the status of your referrals, visit http://astrochimp.dev:3000/signups/bauu Redirected to http://astrochimp.dev:3000/signups/bauu Completed 302 Found in 1113ms (ActiveRecord: 22.7ms) Started GET "/signups/bauu" for 127.0.0.1 at 2013-01-03 16:09:54 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"bauu"} Astrochimp::Signup Load (1.0ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 60]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (2.5ms) Completed 200 OK in 112ms (Views: 107.8ms | ActiveRecord: 1.0ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2013-01-03 16:09:54 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (3ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2013-01-03 16:09:54 -0600 Served asset /astrochimp/application.js - 304 Not Modified (10ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2013-01-03 16:09:54 -0600 Served asset /astrochimp/application.css - 304 Not Modified (23ms) Started POST "/signups" for 127.0.0.1 at 2013-01-03 16:10:27 -0600 Processing by Astrochimp::SignupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2qrRFYIEn/dJVhoWcdJfoAk9IkHR/hTop5E1X+tapA=", "signup"=>{"email"=>"jonathan+3410@brightbit.com"}, "commit"=>"Notify Me »"}  (0.2ms) BEGIN Astrochimp::Signup Exists (0.5ms) SELECT 1 AS one FROM "astrochimp_signups" WHERE "astrochimp_signups"."email" = 'jonathan+3410@brightbit.com' LIMIT 1 SQL (0.8ms) INSERT INTO "astrochimp_signups" ("created_at", "email", "referrer_id", "signups_count", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["created_at", Thu, 03 Jan 2013 22:10:27 UTC +00:00], ["email", "jonathan+3410@brightbit.com"], ["referrer_id", 58], ["signups_count", 0], ["status", 0], ["updated_at", Thu, 03 Jan 2013 22:10:27 UTC +00:00]] Astrochimp::Signup Load (0.6ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = 58 LIMIT 1 SQL (0.4ms) UPDATE "astrochimp_signups" SET "signups_count" = COALESCE("signups_count", 0) + 1 WHERE "astrochimp_signups"."id" = 58  (0.8ms) COMMIT Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signup_mailer/signup_complete.text.erb (1.1ms) Sent mail to jonathan+3410@brightbit.com (16ms) Date: Thu, 03 Jan 2013 16:10:27 -0600 From: from@example.com To: jonathan+3410@brightbit.com Message-ID: <50e601d3a5672_a3478136d23496979@jcmbp.mail> Subject: You have successfully signed up for Astrochimp Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit You have successfully signed up. Your custom referral link: http://localhost:3000/r/bavd To view the status of your referrals, visit http://localhost:3000/signups/bavd Redirected to http://astrochimp.dev:3000/signups/bavd Completed 302 Found in 287ms (ActiveRecord: 3.3ms) Started GET "/signups/bavd" for 127.0.0.1 at 2013-01-03 16:10:27 -0600 Processing by Astrochimp::SignupsController#show as HTML Parameters: {"id"=>"bavd"} Astrochimp::Signup Load (0.6ms) SELECT "astrochimp_signups".* FROM "astrochimp_signups" WHERE "astrochimp_signups"."id" = $1 LIMIT 1 [["id", 61]] Rendered /Users/jcamenisch/projects/astrochimp/app/views/astrochimp/signups/show.html.erb (1.4ms) Completed 200 OK in 12ms (Views: 9.6ms | ActiveRecord: 0.6ms) Started GET "/assets/astrochimp/Astrochimp-phone-splash.png" for 127.0.0.1 at 2013-01-03 16:10:27 -0600 Served asset /astrochimp/Astrochimp-phone-splash.png - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.js?body=1" for 127.0.0.1 at 2013-01-03 16:10:27 -0600 Served asset /astrochimp/application.js - 304 Not Modified (0ms) Started GET "/assets/astrochimp/application.css?body=1" for 127.0.0.1 at 2013-01-03 16:10:27 -0600 Served asset /astrochimp/application.css - 304 Not Modified (0ms)