diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9d89633 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +db/*.sqlite3 +db/schema.rb +config/database.yml +log/*.log +tmp/**/* + diff --git a/app/models/event.rb b/app/models/event.rb index 1fe81e9..2d31f83 100644 --- a/app/models/event.rb +++ b/app/models/event.rb @@ -5,7 +5,6 @@ class Event < ActiveRecord::Base has_many :participants has_many :attendees, :through => :participants, :source => :user - # has_many :users, :through => :participants accepts_nested_attributes_for :participants diff --git a/app/models/user.rb b/app/models/user.rb index 6bcfb54..5535e60 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -4,6 +4,13 @@ class User < ActiveRecord::Base devise :database_authenticatable, :registerable, :recoverable, :rememberable, :trackable, :validatable + scope :investors, where('investor_id IS NOT NULL') + scope :employees, where('investor_id IS NULL') + + # if the assignments were all there this would work + #scope :investors, joins(:assignments).where('assignments.role_id = 3') + #scope :employees, joins(:assignments).where('assignments.role_id in (1,2)') + def has_role(role) self.roles.find_by_name(role) end @@ -30,5 +37,9 @@ def has_role(role) has_many :roles, :through => :assignments accepts_nested_attributes_for :participants + + def to_s + [first_name, last_name].join(' ') + end end diff --git a/app/views/events/show.html.erb b/app/views/events/show.html.erb index 7b23687..9dab8c7 100644 --- a/app/views/events/show.html.erb +++ b/app/views/events/show.html.erb @@ -19,7 +19,7 @@
<%= f.label :admin %> - 22: <%= f.check_box :admin %>
- 23: - 24:<%= f.label :manager %> - 25: <%= f.check_box :manager %>
- app/views/devise/registrations/new.html.erb:22:in `block in _app_views_devise_registrations_new_html_erb__2895956215087855473_2174664420__502772393118930264' - app/views/devise/registrations/new.html.erb:3:in `_app_views_devise_registrations_new_html_erb__2895956215087855473_2174664420__502772393118930264' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.7ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (26.4ms) - [1m[36mSQL (0.3ms)[0m [1m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' -[0m - [1m[35mSQL (0.2ms)[0m select sqlite_version(*) - [1m[36mSQL (1.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m - [1m[35mSQL (0.1ms)[0m PRAGMA index_list("schema_migrations") - [1m[36mSQL (1.3ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m - [1m[35mSQL (0.2ms)[0m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' - [1m[36mSQL (0.2ms)[0m [1m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' -[0m - [1m[35mSQL (0.2ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations" -Migrating to DeviseCreateUsers (20110604032136) - [1m[36mSQL (0.6ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "phone" varchar(255), "notes" text, "role" varchar(255), "user_type" varchar(255), "investor_id" integer, "created_at" datetime, "updated_at" datetime) [0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_list("users") - [1m[36mSQL (8.1ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")[0m - [1m[35mSQL (0.6ms)[0m PRAGMA index_list("users") - [1m[36mSQL (0.1ms)[0m [1mPRAGMA index_info('index_users_on_email')[0m - [1m[35mSQL (0.2ms)[0m CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token") - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110604032136')[0m -Migrating to CreateInvestors (20110604033014) - [1m[35mSQL (0.5ms)[0m CREATE TABLE "investors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "organization" varchar(255), "investor_type" varchar(255), "street" varchar(255), "city" varchar(255), "state" varchar(255), "zipcode" integer, "status" varchar(255), "status_description" text, "stage" varchar(255), "assets" integer, "potential_commitment" integer, "expected_close" date, "probability" varchar(255), "closed_commitment" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110604033014')[0m -Migrating to CreateEvents (20110604035812) - [1m[35mSQL (0.5ms)[0m CREATE TABLE "events" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "event_type" varchar(255), "date" date, "notes" text, "investor_id" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110604035812')[0m -Migrating to CreateDocuments (20110604155344) - [1m[35mSQL (0.6ms)[0m CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "attachment" varchar(255), "private" boolean DEFAULT 't', "stage" varchar(255), "folder_id" integer, "investor_id" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110604155344')[0m -Migrating to CreateFolders (20110604155935) - [1m[35mSQL (0.6ms)[0m CREATE TABLE "folders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "private" boolean DEFAULT 't', "stage" varchar(255), "investor_id" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110604155935')[0m -Migrating to CreateRoles (20110610062055) - [1m[35mSQL (1.0ms)[0m CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110610062055')[0m -Migrating to CreateTasks (20110610065929) - [1m[35mSQL (0.6ms)[0m CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "due_date" date, "task_owner" integer, "completed" boolean, "completed_date" date, "event_id" integer, "investor" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110610065929')[0m -Migrating to CreateAssignments (20110610185354) - [1m[35mSQL (0.5ms)[0m CREATE TABLE "assignments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "role_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110610185354')[0m -Migrating to CreateEventUsers (20110610204445) - [1m[35mSQL (0.5ms)[0m CREATE TABLE "event_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "event_id" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110610204445')[0m -Migrating to CreateTaskUsers (20110610204839) - [1m[35mSQL (0.5ms)[0m CREATE TABLE "task_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110610204839')[0m - [1m[35mSQL (0.3ms)[0m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' - [1m[36mSQL (0.2ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations"[0m - [1m[35mSQL (0.2ms)[0m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' - [1m[36mSQL (0.1ms)[0m [1mPRAGMA index_list("assignments")[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_list("documents") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_list("event_users")[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_list("events") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_list("folders")[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_list("investors") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_list("roles")[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_list("task_users") - [1m[36mSQL (0.1ms)[0m [1mPRAGMA index_list("tasks")[0m - [1m[35mSQL (0.1ms)[0m PRAGMA index_list("users") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_info('index_users_on_reset_password_token')[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_info('index_users_on_email') - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:32:24 -0600 - Processing by Devise::RegistrationsController#new as HTML -Rendered devise/shared/_links.erb (1.5ms) -Rendered devise/registrations/new.html.erb within layouts/application (133.4ms) -Completed 200 OK in 206ms (Views: 138.3ms | ActiveRecord: 0.0ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:35:08 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[36mRole Load (0.2ms)[0m [1mSELECT "roles".* FROM "roles"[0m -Rendered devise/shared/_links.erb (1.3ms) -Rendered devise/registrations/new.html.erb within layouts/application (157.5ms) -Completed 200 OK in 228ms (Views: 162.0ms | ActiveRecord: 0.2ms) - [1m[35mRole Load (0.6ms)[0m SELECT "roles".* FROM "roles" - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:38:09 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[35mRole Load (0.2ms)[0m SELECT "roles".* FROM "roles" - [1m[36mSQL (0.3ms)[0m [1m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' -[0m -Rendered devise/registrations/new.html.erb within layouts/application (38.1ms) -Completed in 109ms - -ActionView::Template::Error (undefined method `roless' for #<%= f.label :role %>
- 25: <%= f.select :role, [Role.roless.all.collect {|r| [r.name, r.id]}], :include_blank => true %>
<%= f.submit "Sign up" %>
- app/views/devise/registrations/new.html.erb:25:in `block in _app_views_devise_registrations_new_html_erb___1534232325321219570_2172062900__102877640264166775' - app/views/devise/registrations/new.html.erb:3:in `_app_views_devise_registrations_new_html_erb___1534232325321219570_2172062900__102877640264166775' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.1ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (37.1ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:38:21 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[35mRole Load (0.2ms)[0m SELECT "roles".* FROM "roles" -Rendered devise/registrations/new.html.erb within layouts/application (85.5ms) -Completed in 118ms - -ActionView::Template::Error (undefined local variable or method `roless' for #<#<%= f.label :role %>
- 25: <%= f.select :role, [roless.all.collect {|r| [r.name, r.id]}], :include_blank => true %>
<%= f.submit "Sign up" %>
- app/views/devise/registrations/new.html.erb:25:in `block in _app_views_devise_registrations_new_html_erb___1534232325321219570_2171485480__102877640264166775' - app/views/devise/registrations/new.html.erb:3:in `_app_views_devise_registrations_new_html_erb___1534232325321219570_2171485480__102877640264166775' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.5ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.7ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:38:44 -0600 - Processing by Devise::RegistrationsController#new as HTML -ERROR: compiling _app_views_devise_registrations_new_html_erb___1534232325321219570_2172044880__102877640264166775 RAISED /Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:25: syntax error, unexpected ')', expecting ']' -...ns_for_select => [roless.to_a );@output_buffer.safe_concat('... -... ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:29: syntax error, unexpected keyword_end, expecting ')' -'); end - ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:33: syntax error, unexpected keyword_ensure, expecting ')' -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:35: syntax error, unexpected keyword_end, expecting ')' -Function body: def _app_views_devise_registrations_new_html_erb___1534232325321219570_2172044880__102877640264166775(local_assigns) - _old_virtual_path, @_virtual_path = @_virtual_path, "devise/registrations/new";_old_output_buffer = @output_buffer;;@output_buffer = ActionView::OutputBuffer.new;@output_buffer.safe_concat('');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select :role, options_for_select => [roless.to_a );@output_buffer.safe_concat('
');@output_buffer.append= ( f.submit "Sign up" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -');@output_buffer.append= ( render :partial => "devise/shared/links" );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `block in new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `default_render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:126:in `to_html' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:119:in `respond' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:112:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/mime_responds.rb:232:in `respond_with' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/internal_helpers.rb:128:in `respond_with_navigational' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:451:in `_run__1272670757181124482__process_action__4426122700394371883__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -<%= f.label :role %>
- 25: <%= f.select :role, options_for_select => [roless.to_a %>
<%= f.submit "Sign up" %>
- - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (16.6ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (21.8ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:38:52 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[36mRole Load (0.3ms)[0m [1mSELECT "roles".* FROM "roles"[0m -Rendered devise/registrations/new.html.erb within layouts/application (34.5ms) -Completed in 106ms - -ActionView::Template::Error (wrong number of arguments (0 for 1)): - 22: <%= f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true %> - 23: - 24:<%= f.label :role %>
- 25: <%= f.select :role, options_for_select => [roless.to_a] %>
<%= f.submit "Sign up" %>
- app/views/devise/registrations/new.html.erb:25:in `block in _app_views_devise_registrations_new_html_erb___1534232325321219570_2171922840__102877640264166775' - app/views/devise/registrations/new.html.erb:3:in `_app_views_devise_registrations_new_html_erb___1534232325321219570_2171922840__102877640264166775' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.5ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.7ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:40:50 -0600 - Processing by Devise::RegistrationsController#new as HTML -ERROR: compiling _app_views_devise_registrations_new_html_erb___1534232325321219570_2171369380__102877640264166775 RAISED /Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:28: syntax error, unexpected keyword_end, expecting ')' -'); end - ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:32: syntax error, unexpected keyword_ensure, expecting ')' -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:34: syntax error, unexpected keyword_end, expecting ')' -Function body: def _app_views_devise_registrations_new_html_erb___1534232325321219570_2171369380__102877640264166775(local_assigns) - _old_virtual_path, @_virtual_path = @_virtual_path, "devise/registrations/new";_old_output_buffer = @output_buffer;;@output_buffer = ActionView::OutputBuffer.new;@output_buffer.safe_concat('');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select(:user, :role, Role::ROLESS, {:include_blalnk => true} );@output_buffer.safe_concat('
');@output_buffer.append= ( f.submit "Sign up" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -');@output_buffer.append= ( render :partial => "devise/shared/links" );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `block in new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `default_render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:126:in `to_html' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:119:in `respond' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:112:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/mime_responds.rb:232:in `respond_with' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/internal_helpers.rb:128:in `respond_with_navigational' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:451:in `_run__1272670757181124482__process_action__4426122700394371883__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -<%= f.submit "Sign up" %>
- 28: <% end %> - 29: - 30: <%= render :partial => "devise/shared/links" %> - - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (55.5ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (60.8ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:41:08 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[35mRole Load (0.2ms)[0m SELECT "roles".* FROM "roles" -Rendered devise/registrations/new.html.erb within layouts/application (73.0ms) -Completed in 111ms - -ActionView::Template::Error (undefined method `merge' for ["admin", "manager", "investor"]:Array): - 22: <%= f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true %> - 23: - 24:<%= f.label :role %>
- 25: <%= f.select(:user, :role, Role::ROLESS, {:include_blalnk => true}) %>
<%= f.submit "Sign up" %>
- 28: <% end %> - app/views/devise/registrations/new.html.erb:25:in `block in _app_views_devise_registrations_new_html_erb___1534232325321219570_2171125540__102877640264166775' - app/views/devise/registrations/new.html.erb:3:in `_app_views_devise_registrations_new_html_erb___1534232325321219570_2171125540__102877640264166775' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.6ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.6ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:41:51 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[36mRole Load (0.2ms)[0m [1mSELECT "roles".* FROM "roles"[0m -Rendered devise/shared/_links.erb (1.3ms) -Rendered devise/registrations/new.html.erb within layouts/application (38.9ms) -Completed 200 OK in 109ms (Views: 42.7ms | ActiveRecord: 0.2ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:42:10 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[35mRole Load (0.2ms)[0m SELECT "roles".* FROM "roles" -Rendered devise/shared/_links.erb (1.3ms) -Rendered devise/registrations/new.html.erb within layouts/application (77.4ms) -Completed 200 OK in 108ms (Views: 81.3ms | ActiveRecord: 0.2ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:42:32 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[36mRole Load (0.2ms)[0m [1mSELECT "roles".* FROM "roles"[0m -Rendered devise/shared/_links.erb (1.3ms) -Rendered devise/registrations/new.html.erb within layouts/application (37.5ms) -Completed 200 OK in 108ms (Views: 41.4ms | ActiveRecord: 0.2ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:42:55 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[35mRole Load (0.2ms)[0m SELECT "roles".* FROM "roles" -Rendered devise/registrations/new.html.erb within layouts/application (80.3ms) -Completed in 111ms - -ActionView::Template::Error (uninitialized constant Role::ROLESTYPES): - 22: <%= f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true %> - 23: - 24:<%= f.label :role %>
- 25: <%= f.select(:role, Role::ROLESTYPES, {:include_blalnk => true}) %>
<%= f.submit "Sign up" %>
- 28: <% end %> - app/views/devise/registrations/new.html.erb:25:in `block in _app_views_devise_registrations_new_html_erb___1534232325321219570_2171235540__102877640264166775' - app/views/devise/registrations/new.html.erb:3:in `_app_views_devise_registrations_new_html_erb___1534232325321219570_2171235540__102877640264166775' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.6ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.7ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:43:00 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[36mRole Load (0.2ms)[0m [1mSELECT "roles".* FROM "roles"[0m -Rendered devise/shared/_links.erb (1.3ms) -Rendered devise/registrations/new.html.erb within layouts/application (38.0ms) -Completed 200 OK in 110ms (Views: 41.8ms | ActiveRecord: 0.2ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:44:36 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[35mRole Load (0.2ms)[0m SELECT "roles".* FROM "roles" -Rendered devise/shared/_links.erb (1.3ms) -Rendered devise/registrations/new.html.erb within layouts/application (79.1ms) -Completed 200 OK in 110ms (Views: 83.5ms | ActiveRecord: 0.2ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:45:35 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[36mRole Load (0.2ms)[0m [1mSELECT "roles".* FROM "roles"[0m -Rendered devise/shared/_links.erb (1.3ms) -Rendered devise/registrations/new.html.erb within layouts/application (38.6ms) -Completed 200 OK in 108ms (Views: 43.0ms | ActiveRecord: 0.2ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:45:56 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[35mRole Load (0.2ms)[0m SELECT "roles".* FROM "roles" -Rendered devise/shared/_links.erb (1.4ms) -Rendered devise/registrations/new.html.erb within layouts/application (76.0ms) -Completed 200 OK in 107ms (Views: 79.8ms | ActiveRecord: 0.2ms) - - -Started POST "/users" for 127.0.0.1 at 2011-06-11 11:46:36 -0600 - Processing by Devise::RegistrationsController#create as HTML - Parameters: {"utf8"=>"✓", "authenticity_token"=>"BDPGnPzH9BwT2xTo8wvZEAET0CvmgqvfdN8AmRW4k/c=", "user"=>{"first_name"=>"Derek", "last_name"=>"Keller", "email"=>"derek@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "role"=>"admin"}, "commit"=>"Sign up"} -WARNING: Can't mass-assign protected attributes: last_name, role - [1m[36mSQL (0.2ms)[0m [1mSELECT 1 FROM "users" WHERE ("users"."email" = 'derek@gmail.com') LIMIT 1[0m - [1m[35mSQL (0.3ms)[0m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' - [1m[36mAREL (0.6ms)[0m [1mINSERT INTO "users" ("email", "encrypted_password", "reset_password_token", "reset_password_sent_at", "remember_created_at", "sign_in_count", "current_sign_in_at", "last_sign_in_at", "current_sign_in_ip", "last_sign_in_ip", "first_name", "last_name", "phone", "notes", "role", "user_type", "investor_id", "created_at", "updated_at") VALUES ('derek@gmail.com', '$2a$10$BxzzHz.vt6ZiV3ScqD9BwOS5o5xqI3XWeZuL4MU0LNy7hq0Ugxtou', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'Derek', NULL, NULL, NULL, NULL, NULL, NULL, '2011-06-11 17:46:36.754181', '2011-06-11 17:46:36.754181')[0m - [1m[35mAREL (0.3ms)[0m UPDATE "users" SET "last_sign_in_at" = '2011-06-11 17:46:36.847407', "current_sign_in_at" = '2011-06-11 17:46:36.847407', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2011-06-11 17:46:36.847805' WHERE "users"."id" = 1 -Redirected to http://localhost:3000/investors -Completed 302 Found in 322ms - - -Started GET "/investors" for 127.0.0.1 at 2011-06-11 11:46:36 -0600 - Processing by InvestorsController#index as HTML - [1m[36mUser Load (1.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m - [1m[35mInvestor Load (0.3ms)[0m SELECT "investors".* FROM "investors" -Rendered investors/index.html.erb within layouts/application (4.0ms) -Completed 200 OK in 138ms (Views: 9.7ms | ActiveRecord: 1.4ms) - [1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users"[0m - [1m[35mSQL (0.4ms)[0m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' - [1m[36mRole Load (0.2ms)[0m [1mSELECT "roles".* FROM "roles"[0m - - -Started GET "/users/sign_out" for 127.0.0.1 at 2011-06-11 11:47:29 -0600 - Processing by Devise::SessionsController#destroy as HTML - [1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m -Redirected to http://localhost:3000/ -Completed 302 Found in 89ms - - -Started GET "/" for 127.0.0.1 at 2011-06-11 11:47:29 -0600 - Processing by PagesController#index as HTML -Rendered pages/index.html.erb within layouts/pages (21.4ms) -Completed 200 OK in 63ms (Views: 62.5ms | ActiveRecord: 1.2ms) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2011-06-11 11:47:31 -0600 - Processing by Devise::SessionsController#new as HTML -Rendered devise/shared/_links.erb (1.2ms) -Rendered devise/sessions/new.html.erb within layouts/application (10.6ms) -Completed 200 OK in 132ms (Views: 54.1ms | ActiveRecord: 0.0ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:47:34 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[35mRole Load (0.2ms)[0m SELECT "roles".* FROM "roles" -Rendered devise/registrations/new.html.erb within layouts/application (32.7ms) -Completed in 108ms - -ActionView::Template::Error (undefined method `merge' for ["admin", "manager", "investor"]:Array): - 22: <%= f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true %> - 23: - 24:<%= f.label :role %>
- 25: <%= f.select(:user, :role, Role::ROLES, {:include_blank => true}) %>
<%= f.submit "Sign up" %>
- 28: <% end %> - app/views/devise/registrations/new.html.erb:25:in `block in _app_views_devise_registrations_new_html_erb___1534232325321219570_2171963100__102877640264166775' - app/views/devise/registrations/new.html.erb:3:in `_app_views_devise_registrations_new_html_erb___1534232325321219570_2171963100__102877640264166775' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.6ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.7ms) - [1m[35mRole Load (0.7ms)[0m SELECT "roles".* FROM "roles" - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:48:43 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[36mRole Load (0.2ms)[0m [1mSELECT "roles".* FROM "roles"[0m -Rendered devise/registrations/new.html.erb within layouts/application (78.2ms) -Completed in 110ms - -ActionView::Template::Error (uninitialized constant Role::ROLES): - 22: <%= f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true %> - 23: - 24:<%= f.label :role %>
- 25: <%= f.select(:user, :role, Role::ROLES, {:include_blank => true}) %>
<%= f.submit "Sign up" %>
- 28: <% end %> - app/views/devise/registrations/new.html.erb:25:in `block in _app_views_devise_registrations_new_html_erb___1534232325321219570_2171432600__102877640264166775' - app/views/devise/registrations/new.html.erb:3:in `_app_views_devise_registrations_new_html_erb___1534232325321219570_2171432600__102877640264166775' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.5ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.4ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:48:58 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[35mRole Load (0.2ms)[0m SELECT "roles".* FROM "roles" -Rendered devise/registrations/new.html.erb within layouts/application (32.9ms) -Completed in 106ms - -ActionView::Template::Error (undefined method `merge' for ["admin", "manager", "investor"]:Array): - 22: <%= f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true %> - 23: - 24:<%= f.label :role %>
- 25: <%= f.select(:user, :role, User::ROLES, {:include_blank => true}) %>
<%= f.submit "Sign up" %>
- 28: <% end %> - app/views/devise/registrations/new.html.erb:25:in `block in _app_views_devise_registrations_new_html_erb___1534232325321219570_2172070660__102877640264166775' - app/views/devise/registrations/new.html.erb:3:in `_app_views_devise_registrations_new_html_erb___1534232325321219570_2172070660__102877640264166775' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.6ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.6ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:49:23 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[36mRole Load (0.2ms)[0m [1mSELECT "roles".* FROM "roles"[0m -Rendered devise/registrations/new.html.erb within layouts/application (32.2ms) -Completed in 104ms - -ActionView::Template::Error (undefined method `merge' for ["admin", "manager", "investor"]:Array): - 22: <%= f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true %> - 23: - 24:<%= f.label :role %>
- 25: <%= f.select(:user, :role, User::ROLESS, {:include_blank => true}) %>
<%= f.submit "Sign up" %>
- 28: <% end %> - app/views/devise/registrations/new.html.erb:25:in `block in _app_views_devise_registrations_new_html_erb___1534232325321219570_2171647280__102877640264166775' - app/views/devise/registrations/new.html.erb:3:in `_app_views_devise_registrations_new_html_erb___1534232325321219570_2171647280__102877640264166775' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (44.4ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (49.6ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:50:16 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[35mRole Load (0.2ms)[0m SELECT "roles".* FROM "roles" -Rendered devise/registrations/new.html.erb within layouts/application (88.6ms) -Completed in 119ms - -ActionView::Template::Error (uninitialized constant ActionView::CompiledTemplates::ROLESS): - 22: <%= f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true %> - 23: - 24:<%= f.label :role %>
- 25: <%= f.select(:user, :role, ROLESS, {:include_blank => true}) %>
<%= f.submit "Sign up" %>
- 28: <% end %> - app/views/devise/registrations/new.html.erb:25:in `block in _app_views_devise_registrations_new_html_erb___1534232325321219570_2171004560__102877640264166775' - app/views/devise/registrations/new.html.erb:3:in `_app_views_devise_registrations_new_html_erb___1534232325321219570_2171004560__102877640264166775' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.6ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.9ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:50:32 -0600 - Processing by Devise::RegistrationsController#new as HTML -ERROR: compiling _app_views_devise_registrations_new_html_erb___1534232325321219570_2171780680__102877640264166775 RAISED /Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:25: syntax error, unexpected ')', expecting tASSOC -...YPES, {:include_blank => true}) );@output_buffer.safe_concat... -... ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:28: syntax error, unexpected keyword_end, expecting ')' -'); end - ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:32: syntax error, unexpected keyword_ensure, expecting ')' -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:34: syntax error, unexpected keyword_end, expecting ')' -Function body: def _app_views_devise_registrations_new_html_erb___1534232325321219570_2171780680__102877640264166775(local_assigns) - _old_virtual_path, @_virtual_path = @_virtual_path, "devise/registrations/new";_old_output_buffer = @output_buffer;;@output_buffer = ActionView::OutputBuffer.new;@output_buffer.safe_concat('');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select(:user, :role, User:ROLETYPES, {:include_blank => true}) );@output_buffer.safe_concat('
');@output_buffer.append= ( f.submit "Sign up" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -');@output_buffer.append= ( render :partial => "devise/shared/links" );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `block in new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `default_render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:126:in `to_html' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:119:in `respond' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:112:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/mime_responds.rb:232:in `respond_with' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/internal_helpers.rb:128:in `respond_with_navigational' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:451:in `_run__1272670757181124482__process_action__4426122700394371883__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -<%= f.label :role %>
- 25: <%= f.select(:user, :role, User:ROLETYPES, {:include_blank => true}) %>
<%= f.submit "Sign up" %>
- 28: <% end %> - - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (16.4ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (21.5ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:51:15 -0600 - Processing by Devise::RegistrationsController#new as HTML -ERROR: compiling _app_views_devise_registrations_new_html_erb___1534232325321219570_2171593800__102877640264166775 RAISED /Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:25: syntax error, unexpected ',', expecting ')' -...pend= ( f.select(:user, (:role, User:ROLETYPES, {:include_bl... -... ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:25: dynamic constant assignment -...(:user, (:role, User:ROLETYPES, {:include_blank => true})) )... -... ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:25: syntax error, unexpected ')', expecting tCOLON2 or '[' or '.' -...YPES, {:include_blank => true})) );@output_buffer.safe_conca... -... ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:28: syntax error, unexpected keyword_end, expecting ')' -'); end - ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:32: syntax error, unexpected keyword_ensure, expecting ')' -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:34: syntax error, unexpected keyword_end, expecting ')' -Function body: def _app_views_devise_registrations_new_html_erb___1534232325321219570_2171593800__102877640264166775(local_assigns) - _old_virtual_path, @_virtual_path = @_virtual_path, "devise/registrations/new";_old_output_buffer = @output_buffer;;@output_buffer = ActionView::OutputBuffer.new;@output_buffer.safe_concat('');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select(:user, (:role, User:ROLETYPES, {:include_blank => true})) );@output_buffer.safe_concat('
');@output_buffer.append= ( f.submit "Sign up" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -');@output_buffer.append= ( render :partial => "devise/shared/links" );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `block in new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `default_render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:126:in `to_html' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:119:in `respond' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:112:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/mime_responds.rb:232:in `respond_with' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/internal_helpers.rb:128:in `respond_with_navigational' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:451:in `_run__1272670757181124482__process_action__4426122700394371883__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -<%= f.label :role %>
- 25: <%= f.select(:user, (:role, User:ROLETYPES, {:include_blank => true})) %>
<%= f.submit "Sign up" %>
- 28: <% end %> - - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (16.1ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (21.1ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:51:33 -0600 - Processing by Devise::RegistrationsController#new as HTML -ERROR: compiling _app_views_devise_registrations_new_html_erb___1534232325321219570_2171324840__102877640264166775 RAISED /Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:25: syntax error, unexpected ')', expecting tASSOC -...PES, {:include_blank => true} );@output_buffer.safe_concat('... -... ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:28: syntax error, unexpected keyword_end, expecting ')' -'); end - ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:32: syntax error, unexpected keyword_ensure, expecting ')' -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:34: syntax error, unexpected keyword_end, expecting ')' -Function body: def _app_views_devise_registrations_new_html_erb___1534232325321219570_2171324840__102877640264166775(local_assigns) - _old_virtual_path, @_virtual_path = @_virtual_path, "devise/registrations/new";_old_output_buffer = @output_buffer;;@output_buffer = ActionView::OutputBuffer.new;@output_buffer.safe_concat('');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select :user, :role, User:ROLETYPES, {:include_blank => true} );@output_buffer.safe_concat('
');@output_buffer.append= ( f.submit "Sign up" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -');@output_buffer.append= ( render :partial => "devise/shared/links" );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `block in new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `default_render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:126:in `to_html' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:119:in `respond' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:112:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/mime_responds.rb:232:in `respond_with' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/internal_helpers.rb:128:in `respond_with_navigational' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:451:in `_run__1272670757181124482__process_action__4426122700394371883__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -<%= f.label :role %>
- 25: <%= f.select :user, :role, User:ROLETYPES, {:include_blank => true} %>
<%= f.submit "Sign up" %>
- 28: <% end %> - - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (55.7ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (61.0ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:52:01 -0600 - Processing by Devise::RegistrationsController#new as HTML -ERROR: compiling _app_views_devise_registrations_new_html_erb___1534232325321219570_2171024860__102877640264166775 RAISED /Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:25: syntax error, unexpected ')', expecting tASSOC -...YPES, {:include_blank => true}) );@output_buffer.safe_concat... -... ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:28: syntax error, unexpected keyword_end, expecting ')' -'); end - ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:32: syntax error, unexpected keyword_ensure, expecting ')' -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:34: syntax error, unexpected keyword_end, expecting ')' -Function body: def _app_views_devise_registrations_new_html_erb___1534232325321219570_2171024860__102877640264166775(local_assigns) - _old_virtual_path, @_virtual_path = @_virtual_path, "devise/registrations/new";_old_output_buffer = @output_buffer;;@output_buffer = ActionView::OutputBuffer.new;@output_buffer.safe_concat('');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select(:user, :role, User:ROLETYPES, {:include_blank => true}) );@output_buffer.safe_concat('
');@output_buffer.append= ( f.submit "Sign up" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -');@output_buffer.append= ( render :partial => "devise/shared/links" );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `block in new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `default_render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:126:in `to_html' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:119:in `respond' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:112:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/mime_responds.rb:232:in `respond_with' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/internal_helpers.rb:128:in `respond_with_navigational' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:451:in `_run__1272670757181124482__process_action__4426122700394371883__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -<%= f.label :role %>
- 25: <%= f.select(:user, :role, User:ROLETYPES, {:include_blank => true}) %>
<%= f.submit "Sign up" %>
- 28: <% end %> - - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (57.1ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (62.4ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:52:13 -0600 - Processing by Devise::RegistrationsController#new as HTML -ERROR: compiling _app_views_devise_registrations_new_html_erb___1534232325321219570_2172077860__102877640264166775 RAISED /Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:25: syntax error, unexpected ',', expecting ')' -...(:user, :role, User:ROLETYPES), {:include_blank => true} );@... -... ^ -Function body: def _app_views_devise_registrations_new_html_erb___1534232325321219570_2172077860__102877640264166775(local_assigns) - _old_virtual_path, @_virtual_path = @_virtual_path, "devise/registrations/new";_old_output_buffer = @output_buffer;;@output_buffer = ActionView::OutputBuffer.new;@output_buffer.safe_concat('');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select(:user, :role, User:ROLETYPES), {:include_blank => true} );@output_buffer.safe_concat('
');@output_buffer.append= ( f.submit "Sign up" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -');@output_buffer.append= ( render :partial => "devise/shared/links" );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `block in new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `default_render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:126:in `to_html' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:119:in `respond' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:112:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/mime_responds.rb:232:in `respond_with' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/internal_helpers.rb:128:in `respond_with_navigational' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:451:in `_run__1272670757181124482__process_action__4426122700394371883__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -<%= f.label :role %>
- 25: <%= f.select(:user, :role, User:ROLETYPES), {:include_blank => true} %>
<%= f.submit "Sign up" %>
- 28: <% end %> - - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (16.1ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (21.3ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:52:18 -0600 - Processing by Devise::RegistrationsController#new as HTML -ERROR: compiling _app_views_devise_registrations_new_html_erb___1534232325321219570_2171983140__102877640264166775 RAISED /Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:25: syntax error, unexpected ')', expecting tASSOC -...YPES, {:include_blank => true}) );@output_buffer.safe_concat... -... ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:28: syntax error, unexpected keyword_end, expecting ')' -'); end - ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:32: syntax error, unexpected keyword_ensure, expecting ')' -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:34: syntax error, unexpected keyword_end, expecting ')' -Function body: def _app_views_devise_registrations_new_html_erb___1534232325321219570_2171983140__102877640264166775(local_assigns) - _old_virtual_path, @_virtual_path = @_virtual_path, "devise/registrations/new";_old_output_buffer = @output_buffer;;@output_buffer = ActionView::OutputBuffer.new;@output_buffer.safe_concat('');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select(:user, :role, User:ROLETYPES, {:include_blank => true}) );@output_buffer.safe_concat('
');@output_buffer.append= ( f.submit "Sign up" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -');@output_buffer.append= ( render :partial => "devise/shared/links" );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `block in new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `default_render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:126:in `to_html' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:119:in `respond' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:112:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/mime_responds.rb:232:in `respond_with' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/internal_helpers.rb:128:in `respond_with_navigational' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:451:in `_run__1272670757181124482__process_action__4426122700394371883__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -<%= f.label :role %>
- 25: <%= f.select(:user, :role, User:ROLETYPES, {:include_blank => true}) %>
<%= f.submit "Sign up" %>
- 28: <% end %> - - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (15.8ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (20.9ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:52:58 -0600 - Processing by Devise::RegistrationsController#new as HTML -ERROR: compiling _app_views_devise_registrations_new_html_erb___1534232325321219570_2171791140__102877640264166775 RAISED /Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:24: syntax error, unexpected ')', expecting tASSOC -...YPES, {:include_blank => true}) );@output_buffer.safe_concat... -... ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:27: syntax error, unexpected keyword_end, expecting ')' -'); end - ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:31: syntax error, unexpected keyword_ensure, expecting ')' -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:33: syntax error, unexpected keyword_end, expecting ')' -Function body: def _app_views_devise_registrations_new_html_erb___1534232325321219570_2171791140__102877640264166775(local_assigns) - _old_virtual_path, @_virtual_path = @_virtual_path, "devise/registrations/new";_old_output_buffer = @output_buffer;;@output_buffer = ActionView::OutputBuffer.new;@output_buffer.safe_concat('');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select(:user, :role, User:ROLETYPES, {:include_blank => true}) );@output_buffer.safe_concat('
');@output_buffer.append= ( f.submit "Sign up" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -');@output_buffer.append= ( render :partial => "devise/shared/links" );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `block in new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `default_render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:126:in `to_html' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:119:in `respond' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:112:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/mime_responds.rb:232:in `respond_with' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/internal_helpers.rb:128:in `respond_with_navigational' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:451:in `_run__1272670757181124482__process_action__4426122700394371883__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -<%= f.label :role %>
- 24: <%= f.select(:user, :role, User:ROLETYPES, {:include_blank => true}) %>
<%= f.submit "Sign up" %>
- 27: <% end %> - - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (15.6ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (20.7ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:53:01 -0600 - Processing by Devise::RegistrationsController#new as HTML -ERROR: compiling _app_views_devise_registrations_new_html_erb___1534232325321219570_2171576400__102877640264166775 RAISED /Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:25: syntax error, unexpected ')', expecting tASSOC -...YPES, {:include_blank => true}) );@output_buffer.safe_concat... -... ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:28: syntax error, unexpected keyword_end, expecting ')' -'); end - ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:32: syntax error, unexpected keyword_ensure, expecting ')' -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:34: syntax error, unexpected keyword_end, expecting ')' -Function body: def _app_views_devise_registrations_new_html_erb___1534232325321219570_2171576400__102877640264166775(local_assigns) - _old_virtual_path, @_virtual_path = @_virtual_path, "devise/registrations/new";_old_output_buffer = @output_buffer;;@output_buffer = ActionView::OutputBuffer.new;@output_buffer.safe_concat('');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select(:user, :role, User:ROLETYPES, {:include_blank => true}) );@output_buffer.safe_concat('
');@output_buffer.append= ( f.submit "Sign up" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -');@output_buffer.append= ( render :partial => "devise/shared/links" );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `block in new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `default_render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:126:in `to_html' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:119:in `respond' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:112:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/mime_responds.rb:232:in `respond_with' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/internal_helpers.rb:128:in `respond_with_navigational' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:451:in `_run__1272670757181124482__process_action__4426122700394371883__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -<%= f.label :role %>
- 25: <%= f.select(:user, :role, User:ROLETYPES, {:include_blank => true}) %>
<%= f.submit "Sign up" %>
- 28: <% end %> - - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (15.7ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (20.8ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:54:13 -0600 - Processing by Devise::RegistrationsController#new as HTML -ERROR: compiling _app_views_devise_registrations_new_html_erb___1534232325321219570_2171308620__102877640264166775 RAISED /Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:25: syntax error, unexpected ')', expecting tASSOC -...YPES, {:include_blank => true}) );@output_buffer.safe_concat... -... ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:28: syntax error, unexpected keyword_end, expecting ')' -'); end - ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:32: syntax error, unexpected keyword_ensure, expecting ')' -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:34: syntax error, unexpected keyword_end, expecting ')' -Function body: def _app_views_devise_registrations_new_html_erb___1534232325321219570_2171308620__102877640264166775(local_assigns) - _old_virtual_path, @_virtual_path = @_virtual_path, "devise/registrations/new";_old_output_buffer = @output_buffer;;@output_buffer = ActionView::OutputBuffer.new;@output_buffer.safe_concat('');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select("user", "role", User:ROLETYPES, {:include_blank => true}) );@output_buffer.safe_concat('
');@output_buffer.append= ( f.submit "Sign up" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -');@output_buffer.append= ( render :partial => "devise/shared/links" );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `block in new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `default_render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:126:in `to_html' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:119:in `respond' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:112:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/mime_responds.rb:232:in `respond_with' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/internal_helpers.rb:128:in `respond_with_navigational' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:451:in `_run__1272670757181124482__process_action__4426122700394371883__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -<%= f.label :role %>
- 25: <%= f.select("user", "role", User:ROLETYPES, {:include_blank => true}) %>
<%= f.submit "Sign up" %>
- 28: <% end %> - - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (56.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (61.7ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:54:15 -0600 - Processing by Devise::RegistrationsController#new as HTML -ERROR: compiling _app_views_devise_registrations_new_html_erb___1534232325321219570_2171016660__102877640264166775 RAISED /Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:25: syntax error, unexpected ')', expecting tASSOC -...YPES, {:include_blank => true}) );@output_buffer.safe_concat... -... ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:28: syntax error, unexpected keyword_end, expecting ')' -'); end - ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:32: syntax error, unexpected keyword_ensure, expecting ')' -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:34: syntax error, unexpected keyword_end, expecting ')' -Function body: def _app_views_devise_registrations_new_html_erb___1534232325321219570_2171016660__102877640264166775(local_assigns) - _old_virtual_path, @_virtual_path = @_virtual_path, "devise/registrations/new";_old_output_buffer = @output_buffer;;@output_buffer = ActionView::OutputBuffer.new;@output_buffer.safe_concat('');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select("user", "role", User:ROLETYPES, {:include_blank => true}) );@output_buffer.safe_concat('
');@output_buffer.append= ( f.submit "Sign up" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -');@output_buffer.append= ( render :partial => "devise/shared/links" );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `block in new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `default_render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:126:in `to_html' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:119:in `respond' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:112:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/mime_responds.rb:232:in `respond_with' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/internal_helpers.rb:128:in `respond_with_navigational' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:451:in `_run__1272670757181124482__process_action__4426122700394371883__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -<%= f.label :role %>
- 25: <%= f.select("user", "role", User:ROLETYPES, {:include_blank => true}) %>
<%= f.submit "Sign up" %>
- 28: <% end %> - - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (56.9ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (62.1ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:54:17 -0600 - Processing by Devise::RegistrationsController#new as HTML -ERROR: compiling _app_views_devise_registrations_new_html_erb___1534232325321219570_2172078800__102877640264166775 RAISED /Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:25: syntax error, unexpected ')', expecting tASSOC -...YPES, {:include_blank => true}) );@output_buffer.safe_concat... -... ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:28: syntax error, unexpected keyword_end, expecting ')' -'); end - ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:32: syntax error, unexpected keyword_ensure, expecting ')' -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:34: syntax error, unexpected keyword_end, expecting ')' -Function body: def _app_views_devise_registrations_new_html_erb___1534232325321219570_2172078800__102877640264166775(local_assigns) - _old_virtual_path, @_virtual_path = @_virtual_path, "devise/registrations/new";_old_output_buffer = @output_buffer;;@output_buffer = ActionView::OutputBuffer.new;@output_buffer.safe_concat('');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select("user", "role", User:ROLETYPES, {:include_blank => true}) );@output_buffer.safe_concat('
');@output_buffer.append= ( f.submit "Sign up" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -');@output_buffer.append= ( render :partial => "devise/shared/links" );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `block in new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `default_render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:126:in `to_html' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:119:in `respond' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:112:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/mime_responds.rb:232:in `respond_with' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/internal_helpers.rb:128:in `respond_with_navigational' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:451:in `_run__1272670757181124482__process_action__4426122700394371883__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -<%= f.label :role %>
- 25: <%= f.select("user", "role", User:ROLETYPES, {:include_blank => true}) %>
<%= f.submit "Sign up" %>
- 28: <% end %> - - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (16.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (21.4ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:54:18 -0600 - Processing by Devise::RegistrationsController#new as HTML -ERROR: compiling _app_views_devise_registrations_new_html_erb___1534232325321219570_2171984640__102877640264166775 RAISED /Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:25: syntax error, unexpected ')', expecting tASSOC -...YPES, {:include_blank => true}) );@output_buffer.safe_concat... -... ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:28: syntax error, unexpected keyword_end, expecting ')' -'); end - ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:32: syntax error, unexpected keyword_ensure, expecting ')' -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:34: syntax error, unexpected keyword_end, expecting ')' -Function body: def _app_views_devise_registrations_new_html_erb___1534232325321219570_2171984640__102877640264166775(local_assigns) - _old_virtual_path, @_virtual_path = @_virtual_path, "devise/registrations/new";_old_output_buffer = @output_buffer;;@output_buffer = ActionView::OutputBuffer.new;@output_buffer.safe_concat('');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select("user", "role", User:ROLETYPES, {:include_blank => true}) );@output_buffer.safe_concat('
');@output_buffer.append= ( f.submit "Sign up" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -');@output_buffer.append= ( render :partial => "devise/shared/links" );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `block in new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `default_render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:126:in `to_html' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:119:in `respond' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:112:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/mime_responds.rb:232:in `respond_with' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/internal_helpers.rb:128:in `respond_with_navigational' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:451:in `_run__1272670757181124482__process_action__4426122700394371883__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -<%= f.label :role %>
- 25: <%= f.select("user", "role", User:ROLETYPES, {:include_blank => true}) %>
<%= f.submit "Sign up" %>
- 28: <% end %> - - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (16.7ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (22.3ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:54:19 -0600 - Processing by Devise::RegistrationsController#new as HTML -ERROR: compiling _app_views_devise_registrations_new_html_erb___1534232325321219570_2171794620__102877640264166775 RAISED /Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:25: syntax error, unexpected ')', expecting tASSOC -...YPES, {:include_blank => true}) );@output_buffer.safe_concat... -... ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:28: syntax error, unexpected keyword_end, expecting ')' -'); end - ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:32: syntax error, unexpected keyword_ensure, expecting ')' -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:34: syntax error, unexpected keyword_end, expecting ')' -Function body: def _app_views_devise_registrations_new_html_erb___1534232325321219570_2171794620__102877640264166775(local_assigns) - _old_virtual_path, @_virtual_path = @_virtual_path, "devise/registrations/new";_old_output_buffer = @output_buffer;;@output_buffer = ActionView::OutputBuffer.new;@output_buffer.safe_concat('');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select("user", "role", User:ROLETYPES, {:include_blank => true}) );@output_buffer.safe_concat('
');@output_buffer.append= ( f.submit "Sign up" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -');@output_buffer.append= ( render :partial => "devise/shared/links" );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `block in new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `default_render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:126:in `to_html' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:119:in `respond' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:112:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/mime_responds.rb:232:in `respond_with' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/internal_helpers.rb:128:in `respond_with_navigational' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:451:in `_run__1272670757181124482__process_action__4426122700394371883__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -<%= f.label :role %>
- 25: <%= f.select("user", "role", User:ROLETYPES, {:include_blank => true}) %>
<%= f.submit "Sign up" %>
- 28: <% end %> - - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (18.0ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (23.3ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:54:21 -0600 - Processing by Devise::RegistrationsController#new as HTML -ERROR: compiling _app_views_devise_registrations_new_html_erb___1534232325321219570_2171597420__102877640264166775 RAISED /Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:25: syntax error, unexpected ')', expecting tASSOC -...YPES, {:include_blank => true}) );@output_buffer.safe_concat... -... ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:28: syntax error, unexpected keyword_end, expecting ')' -'); end - ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:32: syntax error, unexpected keyword_ensure, expecting ')' -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:34: syntax error, unexpected keyword_end, expecting ')' -Function body: def _app_views_devise_registrations_new_html_erb___1534232325321219570_2171597420__102877640264166775(local_assigns) - _old_virtual_path, @_virtual_path = @_virtual_path, "devise/registrations/new";_old_output_buffer = @output_buffer;;@output_buffer = ActionView::OutputBuffer.new;@output_buffer.safe_concat('');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select("user", "role", User:ROLETYPES, {:include_blank => true}) );@output_buffer.safe_concat('
');@output_buffer.append= ( f.submit "Sign up" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -');@output_buffer.append= ( render :partial => "devise/shared/links" );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `block in new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `default_render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:126:in `to_html' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:119:in `respond' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:112:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/mime_responds.rb:232:in `respond_with' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/internal_helpers.rb:128:in `respond_with_navigational' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:451:in `_run__1272670757181124482__process_action__4426122700394371883__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -<%= f.label :role %>
- 25: <%= f.select("user", "role", User:ROLETYPES, {:include_blank => true}) %>
<%= f.submit "Sign up" %>
- 28: <% end %> - - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (15.7ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (20.9ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:54:47 -0600 - Processing by Devise::RegistrationsController#new as HTML -ERROR: compiling _app_views_devise_registrations_new_html_erb___1534232325321219570_2171354960__102877640264166775 RAISED /Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:25: syntax error, unexpected ')', expecting tASSOC -...YPES, {:include_blank => true}) );@output_buffer.safe_concat... -... ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:28: syntax error, unexpected keyword_end, expecting ')' -'); end - ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:32: syntax error, unexpected keyword_ensure, expecting ')' -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:34: syntax error, unexpected keyword_end, expecting ')' -Function body: def _app_views_devise_registrations_new_html_erb___1534232325321219570_2171354960__102877640264166775(local_assigns) - _old_virtual_path, @_virtual_path = @_virtual_path, "devise/registrations/new";_old_output_buffer = @output_buffer;;@output_buffer = ActionView::OutputBuffer.new;@output_buffer.safe_concat('');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select( :role, User:ROLETYPES, {:include_blank => true}) );@output_buffer.safe_concat('
');@output_buffer.append= ( f.submit "Sign up" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -');@output_buffer.append= ( render :partial => "devise/shared/links" );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `block in new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `default_render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:126:in `to_html' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:119:in `respond' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:112:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/mime_responds.rb:232:in `respond_with' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/internal_helpers.rb:128:in `respond_with_navigational' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:451:in `_run__1272670757181124482__process_action__4426122700394371883__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -<%= f.label :role %>
- 25: <%= f.select( :role, User:ROLETYPES, {:include_blank => true}) %>
<%= f.submit "Sign up" %>
- 28: <% end %> - - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (55.4ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (60.5ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:54:53 -0600 - Processing by Devise::RegistrationsController#new as HTML -ERROR: compiling _app_views_devise_registrations_new_html_erb___1534232325321219570_2171060640__102877640264166775 RAISED /Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:25: syntax error, unexpected ')', expecting tASSOC -...YPES, {:include_blank => true}) );@output_buffer.safe_concat... -... ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:28: syntax error, unexpected keyword_end, expecting ')' -'); end - ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:32: syntax error, unexpected keyword_ensure, expecting ')' -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:34: syntax error, unexpected keyword_end, expecting ')' -Function body: def _app_views_devise_registrations_new_html_erb___1534232325321219570_2171060640__102877640264166775(local_assigns) - _old_virtual_path, @_virtual_path = @_virtual_path, "devise/registrations/new";_old_output_buffer = @output_buffer;;@output_buffer = ActionView::OutputBuffer.new;@output_buffer.safe_concat('');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select( :role, Role:ROLETYPES, {:include_blank => true}) );@output_buffer.safe_concat('
');@output_buffer.append= ( f.submit "Sign up" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -');@output_buffer.append= ( render :partial => "devise/shared/links" );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `block in new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `default_render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:126:in `to_html' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:119:in `respond' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:112:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/mime_responds.rb:232:in `respond_with' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/internal_helpers.rb:128:in `respond_with_navigational' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:451:in `_run__1272670757181124482__process_action__4426122700394371883__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -<%= f.label :role %>
- 25: <%= f.select( :role, Role:ROLETYPES, {:include_blank => true}) %>
<%= f.submit "Sign up" %>
- 28: <% end %> - - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (56.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (61.4ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:54:58 -0600 - Processing by Devise::RegistrationsController#new as HTML -ERROR: compiling _app_views_devise_registrations_new_html_erb___1534232325321219570_2171971500__102877640264166775 RAISED /Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:25: syntax error, unexpected ')', expecting tASSOC -...YPES, {:include_blank => true}) );@output_buffer.safe_concat... -... ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:28: syntax error, unexpected keyword_end, expecting ')' -'); end - ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:32: syntax error, unexpected keyword_ensure, expecting ')' -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:34: syntax error, unexpected keyword_end, expecting ')' -Function body: def _app_views_devise_registrations_new_html_erb___1534232325321219570_2171971500__102877640264166775(local_assigns) - _old_virtual_path, @_virtual_path = @_virtual_path, "devise/registrations/new";_old_output_buffer = @output_buffer;;@output_buffer = ActionView::OutputBuffer.new;@output_buffer.safe_concat('');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select( :role, USER:ROLETYPES, {:include_blank => true}) );@output_buffer.safe_concat('
');@output_buffer.append= ( f.submit "Sign up" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -');@output_buffer.append= ( render :partial => "devise/shared/links" );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `block in new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `default_render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:126:in `to_html' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:119:in `respond' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:112:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/mime_responds.rb:232:in `respond_with' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/internal_helpers.rb:128:in `respond_with_navigational' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:451:in `_run__1272670757181124482__process_action__4426122700394371883__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -<%= f.label :role %>
- 25: <%= f.select( :role, USER:ROLETYPES, {:include_blank => true}) %>
<%= f.submit "Sign up" %>
- 28: <% end %> - - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (15.9ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (21.1ms) - [1m[36mUser Load (0.8ms)[0m [1mSELECT "users".* FROM "users" ORDER BY users.id DESC LIMIT 1[0m - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:57:16 -0600 - Processing by Devise::RegistrationsController#new as HTML -ERROR: compiling _app_views_devise_registrations_new_html_erb___1534232325321219570_2172002560__102877640264166775 RAISED /Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:25: syntax error, unexpected ')', expecting tASSOC -...OLES, {:include_blank => true}) );@output_buffer.safe_concat... -... ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:28: syntax error, unexpected keyword_end, expecting ')' -'); end - ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:32: syntax error, unexpected keyword_ensure, expecting ')' -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:34: syntax error, unexpected keyword_end, expecting ')' -Function body: def _app_views_devise_registrations_new_html_erb___1534232325321219570_2172002560__102877640264166775(local_assigns) - _old_virtual_path, @_virtual_path = @_virtual_path, "devise/registrations/new";_old_output_buffer = @output_buffer;;@output_buffer = ActionView::OutputBuffer.new;@output_buffer.safe_concat('');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select(:user, :role, User:ROLES, {:include_blank => true}) );@output_buffer.safe_concat('
');@output_buffer.append= ( f.submit "Sign up" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -');@output_buffer.append= ( render :partial => "devise/shared/links" );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `block in new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `default_render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:126:in `to_html' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:119:in `respond' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:112:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/mime_responds.rb:232:in `respond_with' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/internal_helpers.rb:128:in `respond_with_navigational' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:451:in `_run__1272670757181124482__process_action__4426122700394371883__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -<%= f.label :role %>
- 25: <%= f.select(:user, :role, User:ROLES, {:include_blank => true}) %>
<%= f.submit "Sign up" %>
- 28: <% end %> - - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (15.7ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (20.9ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:57:17 -0600 - Processing by Devise::RegistrationsController#new as HTML -ERROR: compiling _app_views_devise_registrations_new_html_erb___1534232325321219570_2171803320__102877640264166775 RAISED /Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:25: syntax error, unexpected ')', expecting tASSOC -...OLES, {:include_blank => true}) );@output_buffer.safe_concat... -... ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:28: syntax error, unexpected keyword_end, expecting ')' -'); end - ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:32: syntax error, unexpected keyword_ensure, expecting ')' -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:34: syntax error, unexpected keyword_end, expecting ')' -Function body: def _app_views_devise_registrations_new_html_erb___1534232325321219570_2171803320__102877640264166775(local_assigns) - _old_virtual_path, @_virtual_path = @_virtual_path, "devise/registrations/new";_old_output_buffer = @output_buffer;;@output_buffer = ActionView::OutputBuffer.new;@output_buffer.safe_concat('');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select(:user, :role, User:ROLES, {:include_blank => true}) );@output_buffer.safe_concat('
');@output_buffer.append= ( f.submit "Sign up" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -');@output_buffer.append= ( render :partial => "devise/shared/links" );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `block in new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `default_render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:126:in `to_html' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:119:in `respond' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:112:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/mime_responds.rb:232:in `respond_with' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/internal_helpers.rb:128:in `respond_with_navigational' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:451:in `_run__1272670757181124482__process_action__4426122700394371883__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -<%= f.label :role %>
- 25: <%= f.select(:user, :role, User:ROLES, {:include_blank => true}) %>
<%= f.submit "Sign up" %>
- 28: <% end %> - - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (16.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (21.6ms) - [1m[36mSQL (0.3ms)[0m [1m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' -[0m - [1m[35mSQL (0.1ms)[0m select sqlite_version(*) - [1m[36mSQL (1.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m - [1m[35mSQL (0.1ms)[0m PRAGMA index_list("schema_migrations") - [1m[36mSQL (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m - [1m[35mSQL (0.1ms)[0m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' - [1m[36mSQL (0.1ms)[0m [1m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' -[0m - [1m[35mSQL (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations" -Migrating to DeviseCreateUsers (20110604032136) - [1m[36mSQL (0.7ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "phone" varchar(255), "notes" text, "role" integer, "user_type" varchar(255), "investor_id" integer, "created_at" datetime, "updated_at" datetime) [0m - [1m[35mSQL (0.1ms)[0m PRAGMA index_list("users") - [1m[36mSQL (0.4ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")[0m - [1m[35mSQL (0.1ms)[0m PRAGMA index_list("users") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_info('index_users_on_email')[0m - [1m[35mSQL (0.2ms)[0m CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token") - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110604032136')[0m -Migrating to CreateInvestors (20110604033014) - [1m[35mSQL (0.6ms)[0m CREATE TABLE "investors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "organization" varchar(255), "investor_type" varchar(255), "street" varchar(255), "city" varchar(255), "state" varchar(255), "zipcode" integer, "status" varchar(255), "status_description" text, "stage" varchar(255), "assets" integer, "potential_commitment" integer, "expected_close" date, "probability" varchar(255), "closed_commitment" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110604033014')[0m -Migrating to CreateEvents (20110604035812) - [1m[35mSQL (0.6ms)[0m CREATE TABLE "events" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "event_type" varchar(255), "date" date, "notes" text, "investor_id" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110604035812')[0m -Migrating to CreateDocuments (20110604155344) - [1m[35mSQL (0.6ms)[0m CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "attachment" varchar(255), "private" boolean DEFAULT 't', "stage" varchar(255), "folder_id" integer, "investor_id" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110604155344')[0m -Migrating to CreateFolders (20110604155935) - [1m[35mSQL (0.6ms)[0m CREATE TABLE "folders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "private" boolean DEFAULT 't', "stage" varchar(255), "investor_id" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110604155935')[0m -Migrating to CreateRoles (20110610062055) - [1m[35mSQL (0.6ms)[0m CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110610062055')[0m -Migrating to CreateTasks (20110610065929) - [1m[35mSQL (0.6ms)[0m CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "due_date" date, "task_owner" integer, "completed" boolean, "completed_date" date, "event_id" integer, "investor" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110610065929')[0m -Migrating to CreateAssignments (20110610185354) - [1m[35mSQL (0.5ms)[0m CREATE TABLE "assignments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "role_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110610185354')[0m -Migrating to CreateEventUsers (20110610204445) - [1m[35mSQL (0.4ms)[0m CREATE TABLE "event_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "event_id" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110610204445')[0m -Migrating to CreateTaskUsers (20110610204839) - [1m[35mSQL (0.6ms)[0m CREATE TABLE "task_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110610204839')[0m - [1m[35mSQL (0.3ms)[0m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' - [1m[36mSQL (0.2ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations"[0m - [1m[35mSQL (0.2ms)[0m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' - [1m[36mSQL (0.1ms)[0m [1mPRAGMA index_list("assignments")[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_list("documents") - [1m[36mSQL (0.2ms)[0m [1mPRAGMA index_list("event_users")[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_list("events") - [1m[36mSQL (0.1ms)[0m [1mPRAGMA index_list("folders")[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_list("investors") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_list("roles")[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_list("task_users") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_list("tasks")[0m - [1m[35mSQL (0.1ms)[0m PRAGMA index_list("users") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_info('index_users_on_reset_password_token')[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_info('index_users_on_email') - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:58:09 -0600 - Processing by Devise::RegistrationsController#new as HTML -ERROR: compiling _app_views_devise_registrations_new_html_erb__4106891255374490279_2164187600__1484596982519862841 RAISED /Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:25: syntax error, unexpected ')', expecting tASSOC -...OLES, {:include_blank => true}) );@output_buffer.safe_concat... -... ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:28: syntax error, unexpected keyword_end, expecting ')' -'); end - ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:32: syntax error, unexpected keyword_ensure, expecting ')' -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:34: syntax error, unexpected keyword_end, expecting ')' -Function body: def _app_views_devise_registrations_new_html_erb__4106891255374490279_2164187600__1484596982519862841(local_assigns) - _old_virtual_path, @_virtual_path = @_virtual_path, "devise/registrations/new";_old_output_buffer = @output_buffer;;@output_buffer = ActionView::OutputBuffer.new;@output_buffer.safe_concat('');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select(:user, :role, User:ROLES, {:include_blank => true}) );@output_buffer.safe_concat('
');@output_buffer.append= ( f.submit "Sign up" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -');@output_buffer.append= ( render :partial => "devise/shared/links" );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `block in new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `default_render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:126:in `to_html' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:119:in `respond' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:112:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/mime_responds.rb:232:in `respond_with' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/internal_helpers.rb:128:in `respond_with_navigational' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:451:in `_run__3592031136823444506__process_action__595881657710984530__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -<%= f.label :role %>
- 25: <%= f.select(:user, :role, User:ROLES, {:include_blank => true}) %>
<%= f.submit "Sign up" %>
- 28: <% end %> - - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (18.0ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (23.8ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 11:58:11 -0600 - Processing by Devise::RegistrationsController#new as HTML -ERROR: compiling _app_views_devise_registrations_new_html_erb__4106891255374490279_2181708660__1484596982519862841 RAISED /Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:25: syntax error, unexpected ')', expecting tASSOC -...OLES, {:include_blank => true}) );@output_buffer.safe_concat... -... ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:28: syntax error, unexpected keyword_end, expecting ')' -'); end - ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:32: syntax error, unexpected keyword_ensure, expecting ')' -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:34: syntax error, unexpected keyword_end, expecting ')' -Function body: def _app_views_devise_registrations_new_html_erb__4106891255374490279_2181708660__1484596982519862841(local_assigns) - _old_virtual_path, @_virtual_path = @_virtual_path, "devise/registrations/new";_old_output_buffer = @output_buffer;;@output_buffer = ActionView::OutputBuffer.new;@output_buffer.safe_concat('');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select(:user, :role, User:ROLES, {:include_blank => true}) );@output_buffer.safe_concat('
');@output_buffer.append= ( f.submit "Sign up" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -');@output_buffer.append= ( render :partial => "devise/shared/links" );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `block in new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `default_render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:126:in `to_html' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:119:in `respond' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:112:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/mime_responds.rb:232:in `respond_with' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/internal_helpers.rb:128:in `respond_with_navigational' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:451:in `_run__3592031136823444506__process_action__595881657710984530__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -<%= f.label :role %>
- 25: <%= f.select(:user, :role, User:ROLES, {:include_blank => true}) %>
<%= f.submit "Sign up" %>
- 28: <% end %> - - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (16.0ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (21.9ms) - [1m[36mSQL (0.3ms)[0m [1m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' -[0m - [1m[35mSQL (0.1ms)[0m select sqlite_version(*) - [1m[36mSQL (1.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_list("schema_migrations") - [1m[36mSQL (1.4ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m - [1m[35mSQL (0.1ms)[0m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' - [1m[36mSQL (0.1ms)[0m [1m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' -[0m - [1m[35mSQL (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations" -Migrating to DeviseCreateUsers (20110604032136) - [1m[36mSQL (0.6ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "phone" varchar(255), "notes" text, "role" varchar(255), "user_type" varchar(255), "investor_id" integer, "created_at" datetime, "updated_at" datetime) [0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_list("users") - [1m[36mSQL (0.6ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")[0m - [1m[35mSQL (0.1ms)[0m PRAGMA index_list("users") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_info('index_users_on_email')[0m - [1m[35mSQL (0.2ms)[0m CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token") - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110604032136')[0m -Migrating to CreateInvestors (20110604033014) - [1m[35mSQL (0.5ms)[0m CREATE TABLE "investors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "organization" varchar(255), "investor_type" varchar(255), "street" varchar(255), "city" varchar(255), "state" varchar(255), "zipcode" integer, "status" varchar(255), "status_description" text, "stage" varchar(255), "assets" integer, "potential_commitment" integer, "expected_close" date, "probability" varchar(255), "closed_commitment" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110604033014')[0m -Migrating to CreateEvents (20110604035812) - [1m[35mSQL (0.5ms)[0m CREATE TABLE "events" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "event_type" varchar(255), "date" date, "notes" text, "investor_id" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110604035812')[0m -Migrating to CreateDocuments (20110604155344) - [1m[35mSQL (0.5ms)[0m CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "attachment" varchar(255), "private" boolean DEFAULT 't', "stage" varchar(255), "folder_id" integer, "investor_id" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110604155344')[0m -Migrating to CreateFolders (20110604155935) - [1m[35mSQL (1.1ms)[0m CREATE TABLE "folders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "private" boolean DEFAULT 't', "stage" varchar(255), "investor_id" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110604155935')[0m -Migrating to CreateRoles (20110610062055) - [1m[35mSQL (0.4ms)[0m CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110610062055')[0m -Migrating to CreateTasks (20110610065929) - [1m[35mSQL (0.5ms)[0m CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "due_date" date, "task_owner" integer, "completed" boolean, "completed_date" date, "event_id" integer, "investor" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110610065929')[0m -Migrating to CreateAssignments (20110610185354) - [1m[35mSQL (0.5ms)[0m CREATE TABLE "assignments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "role_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110610185354')[0m -Migrating to CreateEventUsers (20110610204445) - [1m[35mSQL (0.5ms)[0m CREATE TABLE "event_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "event_id" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110610204445')[0m -Migrating to CreateTaskUsers (20110610204839) - [1m[35mSQL (0.4ms)[0m CREATE TABLE "task_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110610204839')[0m - [1m[35mSQL (0.3ms)[0m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' - [1m[36mSQL (0.2ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations"[0m - [1m[35mSQL (0.3ms)[0m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' - [1m[36mSQL (0.1ms)[0m [1mPRAGMA index_list("assignments")[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_list("documents") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_list("event_users")[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_list("events") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_list("folders")[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_list("investors") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_list("roles")[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_list("task_users") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_list("tasks")[0m - [1m[35mSQL (0.1ms)[0m PRAGMA index_list("users") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_info('index_users_on_reset_password_token')[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_info('index_users_on_email') - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 12:01:51 -0600 - Processing by Devise::RegistrationsController#new as HTML -ERROR: compiling _app_views_devise_registrations_new_html_erb__2022560802804377765_2181077260__4198404904359799694 RAISED /Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:25: syntax error, unexpected ')', expecting tASSOC -...OLES, {:include_blank => true}) );@output_buffer.safe_concat... -... ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:28: syntax error, unexpected keyword_end, expecting ')' -'); end - ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:32: syntax error, unexpected keyword_ensure, expecting ')' -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:34: syntax error, unexpected keyword_end, expecting ')' -Function body: def _app_views_devise_registrations_new_html_erb__2022560802804377765_2181077260__4198404904359799694(local_assigns) - _old_virtual_path, @_virtual_path = @_virtual_path, "devise/registrations/new";_old_output_buffer = @output_buffer;;@output_buffer = ActionView::OutputBuffer.new;@output_buffer.safe_concat('');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select(:user, :role, User:ROLES, {:include_blank => true}) );@output_buffer.safe_concat('
');@output_buffer.append= ( f.submit "Sign up" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -');@output_buffer.append= ( render :partial => "devise/shared/links" );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `block in new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `default_render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:126:in `to_html' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:119:in `respond' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:112:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/mime_responds.rb:232:in `respond_with' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/internal_helpers.rb:128:in `respond_with_navigational' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:451:in `_run__3135925244095684553__process_action__2306571494216305072__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -<%= f.label :role %>
- 25: <%= f.select(:user, :role, User:ROLES, {:include_blank => true}) %>
<%= f.submit "Sign up" %>
- 28: <% end %> - - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (58.5ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (65.2ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 12:03:28 -0600 - Processing by Devise::RegistrationsController#new as HTML -ERROR: compiling _app_views_devise_registrations_new_html_erb__2022560802804377765_2181170460__4198404904359799694 RAISED /Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:22: syntax error, unexpected ')', expecting keyword_end -...d]}], :include_blank => true) );@output_buffer.safe_concat('... -... ^ -Function body: def _app_views_devise_registrations_new_html_erb__2022560802804377765_2181170460__4198404904359799694(local_assigns) - _old_virtual_path, @_virtual_path = @_virtual_path, "devise/registrations/new";_old_output_buffer = @output_buffer;;@output_buffer = ActionView::OutputBuffer.new;@output_buffer.safe_concat('');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
-
');@output_buffer.append= ( f.label :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true) );@output_buffer.safe_concat('
- -');@output_buffer.append= ( f.submit "Sign up" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -');@output_buffer.append= ( render :partial => "devise/shared/links" );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `block in new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `default_render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:126:in `to_html' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:119:in `respond' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:112:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/mime_responds.rb:232:in `respond_with' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/internal_helpers.rb:128:in `respond_with_navigational' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:451:in `_run__3135925244095684553__process_action__2306571494216305072__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -<%= f.label :role %>
- 22:
<%= f.label :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true) %>
- 23: - 24:<%= f.submit "Sign up" %>
- 25: <% end %> - - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (18.1ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (23.2ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 12:03:56 -0600 - Processing by Devise::RegistrationsController#new as HTML -ERROR: compiling _app_views_devise_registrations_new_html_erb__2022560802804377765_2181876280__4198404904359799694 RAISED /Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:22: syntax error, unexpected ')', expecting keyword_end -...d]}], :include_blank => true) );@output_buffer.safe_concat('... -... ^ -Function body: def _app_views_devise_registrations_new_html_erb__2022560802804377765_2181876280__4198404904359799694(local_assigns) - _old_virtual_path, @_virtual_path = @_virtual_path, "devise/registrations/new";_old_output_buffer = @output_buffer;;@output_buffer = ActionView::OutputBuffer.new;@output_buffer.safe_concat('');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
-
');@output_buffer.append= ( f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true) );@output_buffer.safe_concat('
- -');@output_buffer.append= ( f.submit "Sign up" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -');@output_buffer.append= ( render :partial => "devise/shared/links" );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `block in new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `default_render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:126:in `to_html' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:119:in `respond' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:112:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/mime_responds.rb:232:in `respond_with' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/internal_helpers.rb:128:in `respond_with_navigational' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:451:in `_run__3135925244095684553__process_action__2306571494216305072__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -<%= f.label :role %>
- 22:
<%= f.select :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true) %>
- 23: - 24:<%= f.submit "Sign up" %>
- 25: <% end %> - - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (18.0ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (23.1ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 12:04:01 -0600 - Processing by Devise::RegistrationsController#new as HTML -ERROR: compiling _app_views_devise_registrations_new_html_erb__2022560802804377765_2181696440__4198404904359799694 RAISED /Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:22: syntax error, unexpected ',', expecting tCOLON2 or '[' or '.' -...ffer.append= ( f.select, :role, [Role.all.collect {|r| [r.na... -... ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:22: syntax error, unexpected ',', expecting ')' -....collect {|r| [r.name, r.id]}], :include_blank => true) );@o... -... ^ -Function body: def _app_views_devise_registrations_new_html_erb__2022560802804377765_2181696440__4198404904359799694(local_assigns) - _old_virtual_path, @_virtual_path = @_virtual_path, "devise/registrations/new";_old_output_buffer = @output_buffer;;@output_buffer = ActionView::OutputBuffer.new;@output_buffer.safe_concat('');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
-
');@output_buffer.append= ( f.select, :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true) );@output_buffer.safe_concat('
- -');@output_buffer.append= ( f.submit "Sign up" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -');@output_buffer.append= ( render :partial => "devise/shared/links" );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `block in new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `default_render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:126:in `to_html' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:119:in `respond' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:112:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/mime_responds.rb:232:in `respond_with' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/internal_helpers.rb:128:in `respond_with_navigational' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:451:in `_run__3135925244095684553__process_action__2306571494216305072__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -<%= f.label :role %>
- 22:
<%= f.select, :role, [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true) %>
- 23: - 24:<%= f.submit "Sign up" %>
- 25: <% end %> - - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (17.4ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (23.9ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 12:04:06 -0600 - Processing by Devise::RegistrationsController#new as HTML -ERROR: compiling _app_views_devise_registrations_new_html_erb__2022560802804377765_2181520480__4198404904359799694 RAISED /Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/new.html.erb:22: syntax error, unexpected ')', expecting keyword_end -...d]}], :include_blank => true) );@output_buffer.safe_concat('... -... ^ -Function body: def _app_views_devise_registrations_new_html_erb__2022560802804377765_2181520480__4198404904359799694(local_assigns) - _old_virtual_path, @_virtual_path = @_virtual_path, "devise/registrations/new";_old_output_buffer = @output_buffer;;@output_buffer = ActionView::OutputBuffer.new;@output_buffer.safe_concat('');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
-
');@output_buffer.append= ( f.select :role [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true) );@output_buffer.safe_concat('
- -');@output_buffer.append= ( f.submit "Sign up" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -');@output_buffer.append= ( render :partial => "devise/shared/links" );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `block in new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `default_render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:126:in `to_html' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:119:in `respond' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:112:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/mime_responds.rb:232:in `respond_with' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/internal_helpers.rb:128:in `respond_with_navigational' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:451:in `_run__3135925244095684553__process_action__2306571494216305072__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -<%= f.label :role %>
- 22:
<%= f.select :role [Role.all.collect {|r| [r.name, r.id]}], :include_blank => true) %>
- 23: - 24:<%= f.submit "Sign up" %>
- 25: <% end %> - - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (16.3ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (21.9ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 12:04:31 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[36mRole Load (0.2ms)[0m [1mSELECT "roles".* FROM "roles"[0m -Rendered devise/shared/_links.erb (1.4ms) -Rendered devise/registrations/new.html.erb within layouts/application (141.0ms) -Completed 200 OK in 174ms (Views: 145.0ms | ActiveRecord: 0.2ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 12:04:53 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[35mRole Load (0.2ms)[0m SELECT "roles".* FROM "roles" -Rendered devise/shared/_links.erb (1.3ms) -Rendered devise/registrations/new.html.erb within layouts/application (41.1ms) -Completed 200 OK in 110ms (Views: 45.0ms | ActiveRecord: 0.2ms) - [1m[36mSQL (0.8ms)[0m [1m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' -[0m - [1m[35mSQL (0.2ms)[0m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' - [1m[36mSQL (0.2ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations"[0m - [1m[35mAREL (0.8ms)[0m INSERT INTO "roles" ("name", "created_at", "updated_at") VALUES ('admin', '2011-06-11 18:05:10.272716', '2011-06-11 18:05:10.272716') - [1m[36mAREL (0.6ms)[0m [1mINSERT INTO "roles" ("name", "created_at", "updated_at") VALUES ('manager', '2011-06-11 18:05:10.357528', '2011-06-11 18:05:10.357528')[0m - [1m[35mAREL (0.3ms)[0m INSERT INTO "roles" ("name", "created_at", "updated_at") VALUES ('investor', '2011-06-11 18:05:10.360140', '2011-06-11 18:05:10.360140') - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 12:05:12 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[36mRole Load (0.3ms)[0m [1mSELECT "roles".* FROM "roles"[0m -Rendered devise/shared/_links.erb (15.0ms) -Rendered devise/registrations/new.html.erb within layouts/application (109.4ms) -Completed 200 OK in 145ms (Views: 113.3ms | ActiveRecord: 0.3ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 12:05:18 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[35mRole Load (0.2ms)[0m SELECT "roles".* FROM "roles" -Rendered devise/shared/_links.erb (1.4ms) -Rendered devise/registrations/new.html.erb within layouts/application (47.0ms) -Completed 200 OK in 122ms (Views: 50.8ms | ActiveRecord: 0.2ms) - [1m[36mSQL (0.8ms)[0m [1m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' -[0m - [1m[35mSQL (0.2ms)[0m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' - [1m[36mSQL (0.2ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations"[0m - [1m[35mAREL (0.5ms)[0m INSERT INTO "roles" ("name", "created_at", "updated_at") VALUES ('admin', '2011-06-11 18:05:49.561624', '2011-06-11 18:05:49.561624') - [1m[36mAREL (0.3ms)[0m [1mINSERT INTO "roles" ("name", "created_at", "updated_at") VALUES ('manager', '2011-06-11 18:05:49.644725', '2011-06-11 18:05:49.644725')[0m - [1m[35mAREL (0.2ms)[0m INSERT INTO "roles" ("name", "created_at", "updated_at") VALUES ('investor', '2011-06-11 18:05:49.647216', '2011-06-11 18:05:49.647216') - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 12:06:03 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[36mRole Load (0.3ms)[0m [1mSELECT "roles".* FROM "roles"[0m -Rendered devise/shared/_links.erb (1.5ms) -Rendered devise/registrations/new.html.erb within layouts/application (105.7ms) -Completed 200 OK in 139ms (Views: 109.3ms | ActiveRecord: 0.3ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 12:06:34 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[35mRole Load (0.4ms)[0m SELECT "roles".* FROM "roles" -Rendered devise/shared/_links.erb (1.3ms) -Rendered devise/registrations/new.html.erb within layouts/application (98.4ms) -Completed 200 OK in 131ms (Views: 103.2ms | ActiveRecord: 0.4ms) - [1m[36mSQL (0.3ms)[0m [1m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' -[0m - [1m[35mSQL (0.1ms)[0m select sqlite_version(*) - [1m[36mSQL (1.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_list("schema_migrations") - [1m[36mSQL (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m - [1m[35mSQL (0.3ms)[0m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' - [1m[36mSQL (0.1ms)[0m [1m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' -[0m - [1m[35mSQL (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations" -Migrating to DeviseCreateUsers (20110604032136) - [1m[36mSQL (0.6ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "phone" varchar(255), "notes" text, "role" varchar(255), "user_type" varchar(255), "investor_id" integer, "created_at" datetime, "updated_at" datetime) [0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_list("users") - [1m[36mSQL (0.4ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")[0m - [1m[35mSQL (0.1ms)[0m PRAGMA index_list("users") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_info('index_users_on_email')[0m - [1m[35mSQL (0.2ms)[0m CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token") - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110604032136')[0m -Migrating to CreateInvestors (20110604033014) - [1m[35mSQL (0.7ms)[0m CREATE TABLE "investors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "organization" varchar(255), "investor_type" varchar(255), "street" varchar(255), "city" varchar(255), "state" varchar(255), "zipcode" integer, "status" varchar(255), "status_description" text, "stage" varchar(255), "assets" integer, "potential_commitment" integer, "expected_close" date, "probability" varchar(255), "closed_commitment" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110604033014')[0m -Migrating to CreateEvents (20110604035812) - [1m[35mSQL (0.9ms)[0m CREATE TABLE "events" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "event_type" varchar(255), "date" date, "notes" text, "investor_id" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110604035812')[0m -Migrating to CreateDocuments (20110604155344) - [1m[35mSQL (0.5ms)[0m CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "attachment" varchar(255), "private" boolean DEFAULT 't', "stage" varchar(255), "folder_id" integer, "investor_id" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110604155344')[0m -Migrating to CreateFolders (20110604155935) - [1m[35mSQL (0.5ms)[0m CREATE TABLE "folders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "private" boolean DEFAULT 't', "stage" varchar(255), "investor_id" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110604155935')[0m -Migrating to CreateRoles (20110610062055) - [1m[35mSQL (0.4ms)[0m CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110610062055')[0m -Migrating to CreateTasks (20110610065929) - [1m[35mSQL (0.5ms)[0m CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "due_date" date, "task_owner" integer, "completed" boolean, "completed_date" date, "event_id" integer, "investor" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110610065929')[0m -Migrating to CreateAssignments (20110610185354) - [1m[35mSQL (0.7ms)[0m CREATE TABLE "assignments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "role_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110610185354')[0m -Migrating to CreateEventUsers (20110610204445) - [1m[35mSQL (0.6ms)[0m CREATE TABLE "event_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "event_id" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110610204445')[0m -Migrating to CreateTaskUsers (20110610204839) - [1m[35mSQL (0.4ms)[0m CREATE TABLE "task_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110610204839')[0m - [1m[35mSQL (0.3ms)[0m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' - [1m[36mSQL (0.2ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations"[0m - [1m[35mSQL (0.2ms)[0m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' - [1m[36mSQL (0.1ms)[0m [1mPRAGMA index_list("assignments")[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_list("documents") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_list("event_users")[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_list("events") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_list("folders")[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_list("investors") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_list("roles")[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_list("task_users") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_list("tasks")[0m - [1m[35mSQL (0.1ms)[0m PRAGMA index_list("users") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_info('index_users_on_reset_password_token')[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_info('index_users_on_email') - [1m[36mSQL (0.8ms)[0m [1m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' -[0m - [1m[35mSQL (0.2ms)[0m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' - [1m[36mSQL (0.2ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations"[0m - [1m[35mAREL (0.4ms)[0m INSERT INTO "roles" ("name", "created_at", "updated_at") VALUES ('admin', '2011-06-11 18:07:25.319661', '2011-06-11 18:07:25.319661') - [1m[36mAREL (0.3ms)[0m [1mINSERT INTO "roles" ("name", "created_at", "updated_at") VALUES ('manager', '2011-06-11 18:07:25.395062', '2011-06-11 18:07:25.395062')[0m - [1m[35mAREL (0.2ms)[0m INSERT INTO "roles" ("name", "created_at", "updated_at") VALUES ('investor', '2011-06-11 18:07:25.397091', '2011-06-11 18:07:25.397091') - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 12:08:13 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[36mRole Load (0.2ms)[0m [1mSELECT "roles".* FROM "roles"[0m -Rendered devise/shared/_links.erb (1.4ms) -Rendered devise/registrations/new.html.erb within layouts/application (142.4ms) -Completed 200 OK in 183ms (Views: 146.6ms | ActiveRecord: 0.2ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 12:08:33 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[35mSQL (0.3ms)[0m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' -Rendered devise/registrations/new.html.erb within layouts/application (40.3ms) -Completed in 114ms - -ActionView::Template::Error (undefined method `collect' for #<%= f.label :role %>
- 22: <%= f.select :role, [Role.collect.all {|r| [r.name, r.id]}], :include_blank => true %>
<%= f.submit "Sign up" %>
- 25: <% end %> - app/views/devise/registrations/new.html.erb:22:in `block in _app_views_devise_registrations_new_html_erb___1021212426411512142_2182380260_3927350516635334142' - app/views/devise/registrations/new.html.erb:3:in `_app_views_devise_registrations_new_html_erb___1021212426411512142_2182380260_3927350516635334142' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.5ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (53.7ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 12:08:39 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[36mRole Load (0.2ms)[0m [1mSELECT "roles".* FROM "roles"[0m -Rendered devise/shared/_links.erb (1.6ms) -Rendered devise/registrations/new.html.erb within layouts/application (90.6ms) -Completed 200 OK in 127ms (Views: 94.2ms | ActiveRecord: 0.2ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 12:10:13 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[35mRole Load (0.2ms)[0m SELECT "roles".* FROM "roles" -Rendered devise/shared/_links.erb (4.3ms) -Rendered devise/registrations/new.html.erb within layouts/application (91.4ms) -Completed 200 OK in 126ms (Views: 95.1ms | ActiveRecord: 0.2ms) - [1m[36mRole Load (0.8ms)[0m [1mSELECT "roles".* FROM "roles"[0m - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 12:13:52 -0600 - Processing by Devise::RegistrationsController#new as HTML -Rendered devise/registrations/new.html.erb within layouts/application (29.8ms) -Completed in 121ms - -ActionView::Template::Error (undefined method `text' for #<%= f.label :notes %>
- 19: <%= f.text :notes %>
<%= f.label :password %>
- 22: <%= f.password_field :password %>
');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :phone );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :phone );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :notes );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_area :notes, :size => "22x10" );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :role );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select :role, (Role.all.collect {|r| [r.name, r.id]}), :include_blank => true );@output_buffer.safe_concat('
If Investor
- ');@output_buffer.append= ( f.label :investor_id );@output_buffer.safe_concat('
-');@output_buffer.safe_concat(' ');@output_buffer.append= ( f.select :investor_id, (Investor.all.collect {|i| (i.name, i.id)}), :include_blank => true );@output_buffer.safe_concat('
-');@output_buffer.safe_concat('
');@output_buffer.append= ( f.submit "Sign up" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -');@output_buffer.append= ( render :partial => "devise/shared/links" );@output_buffer.safe_concat(' -');@output_buffer.safe_concat(' - t.string "user_type" - t.integer "investor_id"');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `block in new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:190:in `default_render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:126:in `to_html' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:119:in `respond' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/responder.rb:112:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/mime_responds.rb:232:in `respond_with' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/internal_helpers.rb:128:in `respond_with_navigational' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:9:in `new' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:451:in `_run__651807217247494896__process_action__4115784175665353769__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -If Investor
- 31: <%= f.label :investor_id %>
- 32: <%= f.select :investor_id, (Investor.all.collect {|i| (i.name, i.id)}), :include_blank => true %>
- 33:
<%= f.submit "Sign up" %>
- - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (17.5ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (23.2ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 12:17:11 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[35mRole Load (0.2ms)[0m SELECT "roles".* FROM "roles" - [1m[36mInvestor Load (15.9ms)[0m [1mSELECT "investors".* FROM "investors"[0m -Rendered devise/shared/_links.erb (1.3ms) -Rendered devise/registrations/new.html.erb within layouts/application (168.3ms) -Completed 200 OK in 203ms (Views: 157.3ms | ActiveRecord: 16.1ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 12:17:29 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[35mRole Load (0.2ms)[0m SELECT "roles".* FROM "roles" - [1m[36mInvestor Load (0.3ms)[0m [1mSELECT "investors".* FROM "investors"[0m -Rendered devise/shared/_links.erb (1.5ms) -Rendered devise/registrations/new.html.erb within layouts/application (103.7ms) -Completed 200 OK in 138ms (Views: 108.1ms | ActiveRecord: 0.6ms) - [1m[36mSQL (0.3ms)[0m [1m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' -[0m - [1m[35mSQL (0.1ms)[0m select sqlite_version(*) - [1m[36mSQL (1.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_list("schema_migrations") - [1m[36mSQL (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m - [1m[35mSQL (0.1ms)[0m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' - [1m[36mSQL (0.1ms)[0m [1m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' -[0m - [1m[35mSQL (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations" -Migrating to DeviseCreateUsers (20110604032136) - [1m[36mSQL (0.6ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "phone" varchar(255), "notes" text, "role" varchar(255), "user_type" varchar(255), "investor_id" integer, "created_at" datetime, "updated_at" datetime) [0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_list("users") - [1m[36mSQL (60.6ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")[0m - [1m[35mSQL (0.1ms)[0m PRAGMA index_list("users") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_info('index_users_on_email')[0m - [1m[35mSQL (0.2ms)[0m CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token") - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110604032136')[0m -Migrating to CreateInvestors (20110604033014) - [1m[35mSQL (0.6ms)[0m CREATE TABLE "investors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "investor_type" varchar(255), "street" varchar(255), "city" varchar(255), "state" varchar(255), "zipcode" integer, "status" varchar(255), "status_description" text, "stage" varchar(255), "assets" integer, "potential_commitment" integer, "expected_close" date, "probability" varchar(255), "closed_commitment" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110604033014')[0m -Migrating to CreateEvents (20110604035812) - [1m[35mSQL (0.5ms)[0m CREATE TABLE "events" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "event_type" varchar(255), "date" date, "notes" text, "investor_id" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110604035812')[0m -Migrating to CreateDocuments (20110604155344) - [1m[35mSQL (0.5ms)[0m CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "attachment" varchar(255), "private" boolean DEFAULT 't', "stage" varchar(255), "folder_id" integer, "investor_id" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110604155344')[0m -Migrating to CreateFolders (20110604155935) - [1m[35mSQL (0.5ms)[0m CREATE TABLE "folders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "private" boolean DEFAULT 't', "stage" varchar(255), "investor_id" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110604155935')[0m -Migrating to CreateRoles (20110610062055) - [1m[35mSQL (0.4ms)[0m CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110610062055')[0m -Migrating to CreateTasks (20110610065929) - [1m[35mSQL (0.5ms)[0m CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "due_date" date, "task_owner" integer, "completed" boolean, "completed_date" date, "event_id" integer, "investor" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110610065929')[0m -Migrating to CreateAssignments (20110610185354) - [1m[35mSQL (0.5ms)[0m CREATE TABLE "assignments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "role_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (1.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110610185354')[0m -Migrating to CreateEventUsers (20110610204445) - [1m[35mSQL (0.4ms)[0m CREATE TABLE "event_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "event_id" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110610204445')[0m -Migrating to CreateTaskUsers (20110610204839) - [1m[35mSQL (0.7ms)[0m CREATE TABLE "task_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110610204839')[0m - [1m[35mSQL (0.4ms)[0m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' - [1m[36mSQL (0.2ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations"[0m - [1m[35mSQL (0.2ms)[0m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' - [1m[36mSQL (0.1ms)[0m [1mPRAGMA index_list("assignments")[0m - [1m[35mSQL (0.1ms)[0m PRAGMA index_list("documents") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_list("event_users")[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_list("events") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_list("folders")[0m - [1m[35mSQL (0.1ms)[0m PRAGMA index_list("investors") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_list("roles")[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_list("task_users") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_list("tasks")[0m - [1m[35mSQL (0.1ms)[0m PRAGMA index_list("users") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_info('index_users_on_reset_password_token')[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_info('index_users_on_email') - [1m[36mSQL (0.8ms)[0m [1m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' -[0m - [1m[35mSQL (0.2ms)[0m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' - [1m[36mSQL (0.2ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations"[0m - [1m[35mAREL (0.4ms)[0m INSERT INTO "roles" ("name", "created_at", "updated_at") VALUES ('admin', '2011-06-11 18:18:38.135988', '2011-06-11 18:18:38.135988') - [1m[36mAREL (0.3ms)[0m [1mINSERT INTO "roles" ("name", "created_at", "updated_at") VALUES ('manager', '2011-06-11 18:18:38.243180', '2011-06-11 18:18:38.243180')[0m - [1m[35mAREL (0.2ms)[0m INSERT INTO "roles" ("name", "created_at", "updated_at") VALUES ('investor', '2011-06-11 18:18:38.245552', '2011-06-11 18:18:38.245552') - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 12:18:55 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[36mRole Load (0.2ms)[0m [1mSELECT "roles".* FROM "roles"[0m - [1m[35mInvestor Load (0.2ms)[0m SELECT "investors".* FROM "investors" -Rendered devise/shared/_links.erb (1.5ms) -Rendered devise/registrations/new.html.erb within layouts/application (161.4ms) -Completed 200 OK in 196ms (Views: 165.4ms | ActiveRecord: 0.5ms) - [1m[36mSQL (0.2ms)[0m [1m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' -[0m - [1m[35mAREL (0.6ms)[0m INSERT INTO "investors" ("name", "investor_type", "street", "city", "state", "zipcode", "status", "status_description", "stage", "assets", "potential_commitment", "expected_close", "probability", "closed_commitment", "created_at", "updated_at") VALUES ('Peters Investment Fund', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2011-06-11 18:20:50.552041', '2011-06-11 18:20:50.552041') - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 12:20:56 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[36mRole Load (0.3ms)[0m [1mSELECT "roles".* FROM "roles"[0m - [1m[35mInvestor Load (2.6ms)[0m SELECT "investors".* FROM "investors" -Rendered devise/shared/_links.erb (40.1ms) -Rendered devise/registrations/new.html.erb within layouts/application (182.2ms) -Completed 200 OK in 249ms (Views: 189.4ms | ActiveRecord: 2.9ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 12:21:51 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[36mRole Load (0.3ms)[0m [1mSELECT "roles".* FROM "roles"[0m - [1m[35mInvestor Load (2.3ms)[0m SELECT "investors".* FROM "investors" -Rendered devise/shared/_links.erb (1.8ms) -Rendered devise/registrations/new.html.erb within layouts/application (130.4ms) -Completed 200 OK in 227ms (Views: 132.6ms | ActiveRecord: 2.6ms) - [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users"[0m - - -Started POST "/users" for 127.0.0.1 at 2011-06-11 12:23:09 -0600 - Processing by Devise::RegistrationsController#create as HTML - Parameters: {"utf8"=>"✓", "authenticity_token"=>"mATtsOFFxDKiaq1l/z1BLCfOudsPqQuecNavFi+Jzmk=", "user"=>{"first_name"=>"Derek", "last_name"=>"Keller", "email"=>"derek@gmail.com", "phone"=>"", "notes"=>"Derek is an associate with Highway 12 Ventures out of Boise, Idaho.", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "role"=>"1", "investor_id"=>""}, "commit"=>"Sign up"} -WARNING: Can't mass-assign protected attributes: last_name, phone, notes, role, investor_id - [1m[36mSQL (0.2ms)[0m [1mSELECT 1 FROM "users" WHERE ("users"."email" = 'derek@gmail.com') LIMIT 1[0m - [1m[35mSQL (0.2ms)[0m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' - [1m[36mAREL (0.5ms)[0m [1mINSERT INTO "users" ("email", "encrypted_password", "reset_password_token", "reset_password_sent_at", "remember_created_at", "sign_in_count", "current_sign_in_at", "last_sign_in_at", "current_sign_in_ip", "last_sign_in_ip", "first_name", "last_name", "phone", "notes", "role", "user_type", "investor_id", "created_at", "updated_at") VALUES ('derek@gmail.com', '$2a$10$BAreC3CMs7jMG72.chTVCe3mXbq47iHGXjBC/7Ua1j3rKtMeUucey', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'Derek', NULL, NULL, NULL, NULL, NULL, NULL, '2011-06-11 18:23:09.308398', '2011-06-11 18:23:09.308398')[0m - [1m[35mAREL (0.3ms)[0m UPDATE "users" SET "last_sign_in_at" = '2011-06-11 18:23:09.372633', "current_sign_in_at" = '2011-06-11 18:23:09.372633', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2011-06-11 18:23:09.373068' WHERE "users"."id" = 1 -Redirected to http://localhost:3000/investors -Completed 302 Found in 299ms - - -Started GET "/investors" for 127.0.0.1 at 2011-06-11 12:23:09 -0600 - Processing by InvestorsController#index as HTML - [1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m - [1m[35mInvestor Load (1.5ms)[0m SELECT "investors".* FROM "investors" -Rendered investors/index.html.erb within layouts/application (19.4ms) -Completed in 147ms - -ActionView::Template::Error (undefined method `first_name' for #<%= f.label :user_id %>
- 37: <%= f.select :user_id, (User.all.collect {|u| [u.email, u.id]}), :include_blank => true %>
<%= f.submit :Submit %>
- 40: - app/views/investors/_form.html.erb:37:in `block in _app_views_investors__form_html_erb___2792807354273083465_2173732060_2067958606733640612' - app/views/investors/_form.html.erb:1:in `_app_views_investors__form_html_erb___2792807354273083465_2173732060_2067958606733640612' - app/views/investors/new.html.erb:3:in `_app_views_investors_new_html_erb___4192529044576919342_2173743260_2080415545349179924' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.1ms) - - -Started GET "/investors/new" for 127.0.0.1 at 2011-06-11 13:00:39 -0600 - Processing by InvestorsController#new as HTML -Rendered investors/_form.html.erb (24.2ms) -Rendered investors/new.html.erb within layouts/application (48.7ms) -Completed 200 OK in 111ms (Views: 53.5ms | ActiveRecord: 0.0ms) - - -Started GET "/investors/new" for 127.0.0.1 at 2011-06-11 13:00:58 -0600 - Processing by InvestorsController#new as HTML -Rendered investors/_form.html.erb (18.7ms) -Rendered investors/new.html.erb within layouts/application (84.4ms) -Completed 200 OK in 105ms (Views: 89.2ms | ActiveRecord: 0.0ms) - - -Started GET "/investors/new" for 127.0.0.1 at 2011-06-11 13:01:08 -0600 - Processing by InvestorsController#new as HTML -Rendered investors/_form.html.erb (58.3ms) -Rendered investors/new.html.erb within layouts/application (82.0ms) -Completed 200 OK in 102ms (Views: 86.7ms | ActiveRecord: 0.0ms) - - -Started GET "/investors/new" for 127.0.0.1 at 2011-06-11 13:03:12 -0600 - Processing by InvestorsController#new as HTML -Rendered investors/_form.html.erb (18.9ms) -Rendered investors/new.html.erb within layouts/application (42.3ms) -Completed 200 OK in 105ms (Views: 47.9ms | ActiveRecord: 0.0ms) - - -Started GET "/investors/new" for 127.0.0.1 at 2011-06-11 13:03:38 -0600 - Processing by InvestorsController#new as HTML -Rendered investors/_form.html.erb (21.0ms) -Rendered investors/new.html.erb within layouts/application (87.3ms) -Completed 200 OK in 110ms (Views: 93.0ms | ActiveRecord: 0.0ms) - - -Started GET "/investors/new" for 127.0.0.1 at 2011-06-11 13:05:50 -0600 - Processing by InvestorsController#new as HTML -Rendered investors/_form.html.erb (61.9ms) -Rendered investors/new.html.erb within layouts/application (85.1ms) -Completed 200 OK in 106ms (Views: 89.9ms | ActiveRecord: 0.0ms) - - -Started GET "/investors/new" for 127.0.0.1 at 2011-06-11 13:06:02 -0600 - Processing by InvestorsController#new as HTML -Rendered investors/_form.html.erb (36.3ms) -Rendered investors/new.html.erb within layouts/application (64.5ms) -Completed 200 OK in 127ms (Views: 69.4ms | ActiveRecord: 0.0ms) - - -Started GET "/investors/new" for 127.0.0.1 at 2011-06-11 13:06:59 -0600 - Processing by InvestorsController#new as HTML -Rendered investors/_form.html.erb (20.9ms) -Rendered investors/new.html.erb within layouts/application (85.0ms) -Completed 200 OK in 107ms (Views: 90.5ms | ActiveRecord: 0.0ms) - - -Started POST "/investors" for 127.0.0.1 at 2011-06-11 13:07:38 -0600 - Processing by InvestorsController#create as HTML - Parameters: {"utf8"=>"✓", "authenticity_token"=>"mATtsOFFxDKiaq1l/z1BLCfOudsPqQuecNavFi+Jzmk=", "investor"=>{"name"=>"Hamilton Lane", "street"=>"", "city"=>"San Francisco", "state"=>"CA", "zipcode"=>"", "stage"=>"1", "status"=>"Looking interested, still too early to tell.", "probability"=>"high", "assets"=>"300000000", "potential_commitment"=>"15000000", "closed_commitment"=>""}, "commit"=>"Submit"} - [1m[35mAREL (0.5ms)[0m INSERT INTO "investors" ("name", "investor_type", "street", "city", "state", "zipcode", "stage", "status", "assets", "potential_commitment", "expected_close", "probability", "closed_commitment", "created_at", "updated_at") VALUES ('Hamilton Lane', NULL, '', 'San Francisco', 'CA', NULL, 1, 'Looking interested, still too early to tell.', 300000000, 15000000, NULL, 'high', NULL, '2011-06-11 19:07:38.583597', '2011-06-11 19:07:38.583597') -Redirected to http://localhost:3000/investors -Completed 302 Found in 101ms - - -Started GET "/investors" for 127.0.0.1 at 2011-06-11 13:07:38 -0600 - Processing by InvestorsController#index as HTML - [1m[36mInvestor Load (1.1ms)[0m [1mSELECT "investors".* FROM "investors"[0m -Rendered investors/index.html.erb within layouts/application (62.2ms) -Completed in 80ms - -ActionView::Template::Error (undefined method `status_description' for #<%= f.label :title %>
- 3: <%= f.text_field :title %>
<%= f.label :event_type %>
- 6: <%= f.select :event_type, ['meeting', 'phone'], :include_blank => true %>
<%= f.label :description %>
- 12: <%= f.text_area :description %>
<%= f.label :user_id %>
- 15: <%= f.select :user_id, (User.all.collect {|u| [[u.first_name, u.last_name].join(" "), u.id]}) %>
Investors present
- 15: - 16:<%= f.label :participant, 'Investors present' %>
- 17: <%= f.select :participant, (User.all.collect {|u| [[u.first_name, u.last_name].join(" "), u.id]}) %>
<%= f.submit %>
- 20: - app/views/events/_form.html.erb:17:in `block in _app_views_events__form_html_erb__3084120588909250610_2177187560_2067958606733640612' - app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb__3084120588909250610_2177187560_2067958606733640612' - app/views/events/new.html.erb:3:in `_app_views_events_new_html_erb___2490690767356518280_2177200200_2080415545349179924' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.8ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.0ms) - - -Started GET "/investors/1/events/new" for 127.0.0.1 at 2011-06-11 14:23:59 -0600 - Processing by EventsController#new as HTML - Parameters: {"investor_id"=>"1"} - [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1 - [1m[36mUser Load (1.6ms)[0m [1mSELECT "users".* FROM "users"[0m -Rendered events/_form.html.erb (105.0ms) - [1m[35mUser Load (1.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 -Rendered events/new.html.erb within layouts/application (119.1ms) -Completed 200 OK in 218ms (Views: 120.9ms | ActiveRecord: 5.3ms) - - -Started GET "/investors/1/events/new" for 127.0.0.1 at 2011-06-11 14:24:18 -0600 - Processing by EventsController#new as HTML - Parameters: {"investor_id"=>"1"} - [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m - [1m[35mUser Load (2.3ms)[0m SELECT "users".* FROM "users" -Rendered events/_form.html.erb (109.1ms) -Rendered events/new.html.erb within layouts/application (110.7ms) -Completed in 218ms - -ActionView::Template::Error (Could not find the association :event_user in model Event): - 14:Investors present
- 15: - 16:<%= f.label :participants, 'Investors present' %>
- 17: <%= f.select :participants, (User.all.collect {|u| [[u.first_name, u.last_name].join(" "), u.id]}) %>
<%= f.submit %>
- 20: - app/views/events/_form.html.erb:17:in `block in _app_views_events__form_html_erb__3084120588909250610_2174357160_2067958606733640612' - app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb__3084120588909250610_2174357160_2067958606733640612' - app/views/events/new.html.erb:3:in `_app_views_events_new_html_erb___2490690767356518280_2174373140_2080415545349179924' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.6ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.6ms) - - -Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 14:24:19 -0600 - Processing by InvestorsController#show as HTML - Parameters: {"id"=>"1"} - [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m - [1m[35mEvent Load (0.2ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC - [1m[36mEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1)[0m - [1m[35mUser Load (1.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 -Rendered investors/show.html.erb within layouts/application (100.1ms) -Completed 200 OK in 209ms (Views: 103.7ms | ActiveRecord: 4.9ms) - - -Started GET "/" for 127.0.0.1 at 2011-06-11 14:25:18 -0600 - Processing by PagesController#index as HTML - [1m[36mUser Load (1.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m -Rendered pages/index.html.erb within layouts/pages (125.0ms) -Completed 200 OK in 129ms (Views: 127.4ms | ActiveRecord: 1.4ms) - - -Started GET "/sign_up" for 127.0.0.1 at 2011-06-11 14:25:23 -0600 - -ActionController::RoutingError (No route matches "/sign_up"): - - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 14:25:26 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 -Redirected to http://localhost:3000/investors -Completed 302 Found in 104ms - - -Started GET "/investors" for 127.0.0.1 at 2011-06-11 14:25:26 -0600 - Processing by InvestorsController#index as HTML - [1m[36mInvestor Load (1.1ms)[0m [1mSELECT "investors".* FROM "investors"[0m - [1m[35mUser Load (1.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 -Rendered investors/index.html.erb within layouts/application (116.5ms) -Completed 200 OK in 133ms (Views: 119.8ms | ActiveRecord: 3.8ms) - - -Started GET "/users/sign_out" for 127.0.0.1 at 2011-06-11 14:25:29 -0600 - Processing by Devise::SessionsController#destroy as HTML - [1m[36mUser Load (1.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m -Redirected to http://localhost:3000/ -Completed 302 Found in 163ms - - -Started GET "/" for 127.0.0.1 at 2011-06-11 14:25:29 -0600 - Processing by PagesController#index as HTML -Rendered pages/index.html.erb within layouts/pages (24.0ms) -Completed 200 OK in 28ms (Views: 27.5ms | ActiveRecord: 1.3ms) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 14:25:36 -0600 - Processing by Devise::RegistrationsController#new as HTML - [1m[35mRole Load (0.3ms)[0m SELECT "roles".* FROM "roles" - [1m[36mInvestor Load (0.9ms)[0m [1mSELECT "investors".* FROM "investors"[0m -Rendered devise/shared/_links.erb (1.5ms) -Rendered devise/registrations/new.html.erb within layouts/application (139.2ms) -Completed 200 OK in 176ms (Views: 143.7ms | ActiveRecord: 1.2ms) - - -Started POST "/users" for 127.0.0.1 at 2011-06-11 14:25:54 -0600 - Processing by Devise::RegistrationsController#create as HTML - Parameters: {"utf8"=>"✓", "authenticity_token"=>"23dOFkteHBL3aB/lW71vlSmLKjiEqL03lwPcXe4iOAs=", "user"=>{"first_name"=>"Paul", "last_name"=>"Yett", "email"=>"paul@persi.com", "phone"=>"", "notes"=>"", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "role"=>"3", "investor_id"=>"1"}, "commit"=>"Sign up"} -WARNING: Can't mass-assign protected attributes: last_name, phone, notes, role, investor_id - [1m[35mSQL (0.2ms)[0m SELECT 1 FROM "users" WHERE ("users"."email" = 'paul@persi.com') LIMIT 1 - [1m[36mAREL (0.5ms)[0m [1mINSERT INTO "users" ("email", "encrypted_password", "reset_password_token", "reset_password_sent_at", "remember_created_at", "sign_in_count", "current_sign_in_at", "last_sign_in_at", "current_sign_in_ip", "last_sign_in_ip", "first_name", "last_name", "phone", "notes", "role", "user_type", "investor_id", "created_at", "updated_at") VALUES ('paul@persi.com', '$2a$10$9lxCCG4Sc2QRUYfmc9Q9BO.rUTR6rthGcn0KhYraAcDuNlMQ5oOye', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'Paul', NULL, NULL, NULL, NULL, NULL, NULL, '2011-06-11 20:25:54.800064', '2011-06-11 20:25:54.800064')[0m - [1m[35mAREL (0.3ms)[0m UPDATE "users" SET "last_sign_in_at" = '2011-06-11 20:25:54.860496', "current_sign_in_at" = '2011-06-11 20:25:54.860496', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2011-06-11 20:25:54.860840' WHERE "users"."id" = 2 -Redirected to http://localhost:3000/investors -Completed 302 Found in 204ms - - -Started GET "/investors" for 127.0.0.1 at 2011-06-11 14:25:54 -0600 - Processing by InvestorsController#index as HTML - [1m[36mInvestor Load (1.1ms)[0m [1mSELECT "investors".* FROM "investors"[0m - [1m[35mUser Load (1.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 -Rendered investors/index.html.erb within layouts/application (158.8ms) -Completed 200 OK in 179ms (Views: 162.1ms | ActiveRecord: 2.6ms) - - -Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 14:26:02 -0600 - Processing by InvestorsController#show as HTML - Parameters: {"id"=>"1"} - [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m - [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC - [1m[36mEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1)[0m - [1m[35mUser Load (50.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 -Rendered investors/show.html.erb within layouts/application (107.6ms) -Completed 200 OK in 209ms (Views: 62.3ms | ActiveRecord: 51.5ms) - - -Started GET "/investors/1/events/new" for 127.0.0.1 at 2011-06-11 14:26:06 -0600 - Processing by EventsController#new as HTML - Parameters: {"investor_id"=>"1"} - [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m - [1m[35mUser Load (3.0ms)[0m SELECT "users".* FROM "users" -Rendered events/_form.html.erb (101.6ms) - [1m[36mUser Load (1.6ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1[0m -Rendered events/new.html.erb within layouts/application (155.2ms) -Completed 200 OK in 265ms (Views: 155.4ms | ActiveRecord: 5.2ms) - - -Started GET "/investors/1/events/new" for 127.0.0.1 at 2011-06-11 14:28:21 -0600 - Processing by EventsController#new as HTML - Parameters: {"investor_id"=>"1"} - [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1 - [1m[36mUser Load (3.3ms)[0m [1mSELECT "users".* FROM "users"[0m -Rendered events/_form.html.erb (83.4ms) - [1m[35mUser Load (1.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 -Rendered events/new.html.erb within layouts/application (98.8ms) -Completed 200 OK in 233ms (Views: 99.1ms | ActiveRecord: 5.4ms) - - -Started GET "/investors/1/events/new" for 127.0.0.1 at 2011-06-11 14:28:48 -0600 - Processing by EventsController#new as HTML - Parameters: {"investor_id"=>"1"} - [1m[36mInvestor Load (0.8ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m - [1m[35mUser Load (3.0ms)[0m SELECT "users".* FROM "users" -Rendered events/_form.html.erb (82.1ms) - [1m[36mUser Load (1.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1[0m -Rendered events/new.html.erb within layouts/application (96.8ms) -Completed 200 OK in 227ms (Views: 97.5ms | ActiveRecord: 5.2ms) - - -Started GET "/investors/1/events/new" for 127.0.0.1 at 2011-06-11 14:30:06 -0600 - Processing by EventsController#new as HTML - Parameters: {"investor_id"=>"1"} - [1m[35mInvestor Load (0.8ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1 - [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE (investor_id = 1)[0m - [1m[35mUser Load (2.8ms)[0m SELECT "users".* FROM "users" -Rendered events/_form.html.erb (32.5ms) - [1m[36mUser Load (4.7ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1[0m -Rendered events/new.html.erb within layouts/application (101.5ms) -Completed 200 OK in 272ms (Views: 101.3ms | ActiveRecord: 8.6ms) - - -Started GET "/investors/1/events/new" for 127.0.0.1 at 2011-06-11 14:30:30 -0600 - Processing by EventsController#new as HTML - Parameters: {"investor_id"=>"1"} - [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1 - [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE (investor_id = 1)[0m - [1m[35mUser Load (2.9ms)[0m SELECT "users".* FROM "users" -Rendered events/_form.html.erb (36.9ms) - [1m[36mUser Load (1.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1[0m -Rendered events/new.html.erb within layouts/application (92.9ms) -Completed 200 OK in 277ms (Views: 93.0ms | ActiveRecord: 5.4ms) - - -Started GET "/investors/1/events/new" for 127.0.0.1 at 2011-06-11 14:30:44 -0600 - Processing by EventsController#new as HTML - Parameters: {"investor_id"=>"1"} - [1m[35mInvestor Load (1.3ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1 - [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE (investor_id = 1)[0m - [1m[35mUser Load (3.5ms)[0m SELECT "users".* FROM "users" -Rendered events/_form.html.erb (82.5ms) - [1m[36mUser Load (1.6ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1[0m -Rendered events/new.html.erb within layouts/application (102.3ms) -Completed 200 OK in 230ms (Views: 103.1ms | ActiveRecord: 6.6ms) - - -Started GET "/investors/1/events/new" for 127.0.0.1 at 2011-06-11 14:30:58 -0600 - Processing by EventsController#new as HTML - Parameters: {"investor_id"=>"1"} - [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1 - [1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE (investor_id = 1)[0m - [1m[35mUser Load (3.6ms)[0m SELECT "users".* FROM "users" -Rendered events/_form.html.erb (86.0ms) - [1m[36mUser Load (1.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1[0m -Rendered events/new.html.erb within layouts/application (102.2ms) -Completed 200 OK in 232ms (Views: 101.5ms | ActiveRecord: 6.1ms) - - -Started GET "/investors/1/events/new" for 127.0.0.1 at 2011-06-11 14:32:33 -0600 - Processing by EventsController#new as HTML - Parameters: {"investor_id"=>"1"} - [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1 -ERROR: compiling _app_views_events__form_html_erb__3084120588909250610_2174145460_2067958606733640612 RAISED /Users/Keller/rails_projects/clearview-solutions/app/views/events/_form.html.erb:16: syntax error, unexpected '(', expecting ')' -...er.append= ( f.label :user_id (user.first_name) );@output_bu... -... ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/events/_form.html.erb:16: syntax error, unexpected ')', expecting keyword_end -...el :user_id (user.first_name) );@output_buffer.safe_concat('... -... ^ -Function body: def _app_views_events__form_html_erb__3084120588909250610_2174145460_2067958606733640612(local_assigns) - _old_virtual_path, @_virtual_path = @_virtual_path, "events/_form";_old_output_buffer = @output_buffer;form = local_assigns[:form];;@output_buffer = ActionView::OutputBuffer.new;@output_buffer.append= form_for [@investor, @event] do |f| @output_buffer.safe_concat(' -');@output_buffer.safe_concat('');@output_buffer.append= ( f.label :name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :event_type );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select :event_type, ['meeting', 'phone'], :include_blank => true );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :date );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.date_select :date );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :notes );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_area :notes );@output_buffer.safe_concat('
Investors present
- ');@output_buffer.append= @user_investors.each do |user| @output_buffer.safe_concat(' -');@output_buffer.safe_concat('');@output_buffer.append= ( f.label :user_id (user.first_name) );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.check_box :user_id, (user.first_name) );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :user_id, 'Investors present' );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.select :user_id, (User.all.collect {|u| [[u.first_name, u.last_name].join(" "), u.id]}) );@output_buffer.safe_concat('
');@output_buffer.append= ( f.submit );@output_buffer.safe_concat('
- -'); end ;@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/partials.rb:333:in `render_partial' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/partials.rb:262:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/partials.rb:260:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/partials.rb:378:in `_render_partial' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:31:in `render' -/Users/Keller/rails_projects/clearview-solutions/app/views/events/new.html.erb:3:in `_app_views_events_new_html_erb___2490690767356518280_2174159140_2080415545349179924' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:135:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:14:in `default_render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:6:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:436:in `_run__1099562733930481881__process_action__2934546632370245223__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:103:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -Investors present
- 15: <%= @user_investors.each do |user| %> - 16:<%= f.label :user_id (user.first_name) %>
- 17: <%= f.check_box :user_id, (user.first_name) %>
<%= f.label :admin %> - 25: <%= f.check_box :admin %>
- 26: - 27:<%= f.label :manager %> - 28: <%= f.check_box :manager %>
- app/views/devise/registrations/edit.html.erb:25:in `block in _app_views_devise_registrations_edit_html_erb__2673727695487077731_2174083980_2080415545349179924' - app/views/devise/registrations/edit.html.erb:3:in `_app_views_devise_registrations_edit_html_erb__2673727695487077731_2174083980_2080415545349179924' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.3ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.4ms) - - -Started GET "/users/edit" for 127.0.0.1 at 2011-06-11 14:35:43 -0600 - Processing by Devise::RegistrationsController#edit as HTML - [1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 - [1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1[0m - [1m[35mRole Load (0.3ms)[0m SELECT "roles".* FROM "roles" - [1m[36mInvestor Load (5.2ms)[0m [1mSELECT "investors".* FROM "investors"[0m -Rendered devise/registrations/edit.html.erb within layouts/application (70.0ms) -Completed 200 OK in 170ms (Views: 68.6ms | ActiveRecord: 5.5ms) - - -Started POST "/users" for 127.0.0.1 at 2011-06-11 14:40:06 -0600 - Processing by Devise::RegistrationsController#update as HTML - Parameters: {"utf8"=>"✓", "authenticity_token"=>"23dOFkteHBL3aB/lW71vlSmLKjiEqL03lwPcXe4iOAs=", "user"=>{"first_name"=>"Paul", "last_name"=>"", "email"=>"paul@persi.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "current_password"=>"[FILTERED]", "role"=>"3", "investor_id"=>"1"}, "commit"=>"Update"} - [1m[35mUser Load (51.9ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 - [1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1[0m -Completed in 213ms - -ActiveRecord::AssociationTypeMismatch (Role(#2174114100) expected, got String(#2151988680)): - - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (6.1ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.1ms) - - -Started GET "/users/edit" for 127.0.0.1 at 2011-06-11 14:40:26 -0600 - Processing by Devise::RegistrationsController#edit as HTML - [1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 - [1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1[0m - [1m[35mRole Load (0.3ms)[0m SELECT "roles".* FROM "roles" - [1m[36mInvestor Load (0.8ms)[0m [1mSELECT "investors".* FROM "investors"[0m -Rendered devise/registrations/edit.html.erb within layouts/application (123.1ms) -Completed 200 OK in 189ms (Views: 126.2ms | ActiveRecord: 1.1ms) - - -Started GET "/users/edit" for 127.0.0.1 at 2011-06-11 14:40:29 -0600 - Processing by Devise::RegistrationsController#edit as HTML - [1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 - [1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1[0m - [1m[35mRole Load (0.3ms)[0m SELECT "roles".* FROM "roles" - [1m[36mInvestor Load (0.9ms)[0m [1mSELECT "investors".* FROM "investors"[0m -Rendered devise/registrations/edit.html.erb within layouts/application (122.2ms) -Completed 200 OK in 230ms (Views: 125.4ms | ActiveRecord: 1.2ms) - - -Started POST "/users" for 127.0.0.1 at 2011-06-11 14:40:34 -0600 - Processing by Devise::RegistrationsController#update as HTML - Parameters: {"utf8"=>"✓", "authenticity_token"=>"23dOFkteHBL3aB/lW71vlSmLKjiEqL03lwPcXe4iOAs=", "user"=>{"first_name"=>"Paul", "last_name"=>"", "email"=>"paul@persi.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "current_password"=>"[FILTERED]", "role"=>"3", "investor_id"=>"1"}, "commit"=>"Update"} - [1m[35mUser Load (1.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 - [1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1[0m -WARNING: Can't mass-assign protected attributes: role - [1m[35mRole Load (0.3ms)[0m SELECT "roles".* FROM "roles" - [1m[36mInvestor Load (0.9ms)[0m [1mSELECT "investors".* FROM "investors"[0m -Rendered devise/registrations/edit.html.erb within layouts/application (120.8ms) -Completed 200 OK in 323ms (Views: 123.6ms | ActiveRecord: 1.2ms) - - -Started POST "/users" for 127.0.0.1 at 2011-06-11 14:40:45 -0600 - Processing by Devise::RegistrationsController#update as HTML - Parameters: {"utf8"=>"✓", "authenticity_token"=>"23dOFkteHBL3aB/lW71vlSmLKjiEqL03lwPcXe4iOAs=", "user"=>{"first_name"=>"Paul", "last_name"=>"", "email"=>"paul@persi.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "current_password"=>"[FILTERED]", "role"=>"3", "investor_id"=>"1"}, "commit"=>"Update"} - [1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 - [1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1[0m -WARNING: Can't mass-assign protected attributes: role - [1m[35mSQL (0.2ms)[0m SELECT 1 FROM "users" WHERE ("users"."email" = 'paul@persi.com') AND ("users".id <> 2) LIMIT 1 - [1m[36mAREL (0.3ms)[0m [1mUPDATE "users" SET "last_name" = '', "investor_id" = 1, "updated_at" = '2011-06-11 20:40:45.811838' WHERE "users"."id" = 2[0m -Redirected to http://localhost:3000/investors -Completed 302 Found in 198ms - - -Started GET "/investors" for 127.0.0.1 at 2011-06-11 14:40:45 -0600 - Processing by InvestorsController#index as HTML - [1m[35mInvestor Load (1.1ms)[0m SELECT "investors".* FROM "investors" - [1m[36mUser Load (1.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1[0m -Rendered investors/index.html.erb within layouts/application (127.8ms) -Completed 200 OK in 189ms (Views: 131.2ms | ActiveRecord: 2.4ms) - - -Started GET "/users/edit" for 127.0.0.1 at 2011-06-11 14:40:51 -0600 - Processing by Devise::RegistrationsController#edit as HTML - [1m[35mUser Load (1.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 - [1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1[0m - [1m[35mRole Load (0.3ms)[0m SELECT "roles".* FROM "roles" - [1m[36mInvestor Load (0.9ms)[0m [1mSELECT "investors".* FROM "investors"[0m -Rendered devise/registrations/edit.html.erb within layouts/application (119.2ms) -Completed 200 OK in 179ms (Views: 127.9ms | ActiveRecord: 1.2ms) - - -Started GET "/investors" for 127.0.0.1 at 2011-06-11 14:40:55 -0600 - Processing by InvestorsController#index as HTML - [1m[35mInvestor Load (1.1ms)[0m SELECT "investors".* FROM "investors" - [1m[36mUser Load (1.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1[0m -Rendered investors/index.html.erb within layouts/application (124.3ms) -Completed 200 OK in 143ms (Views: 127.8ms | ActiveRecord: 2.5ms) - - -Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 14:41:07 -0600 - Processing by InvestorsController#show as HTML - Parameters: {"id"=>"1"} - [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1 - [1m[36mEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC[0m - [1m[35mEvent Load (0.2ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) - [1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1[0m -Rendered investors/show.html.erb within layouts/application (101.0ms) -Completed 200 OK in 195ms (Views: 104.5ms | ActiveRecord: 2.3ms) - - -Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 14:45:18 -0600 - Processing by InvestorsController#show as HTML - Parameters: {"id"=>"1"} - [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1 - [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC[0m - [1m[35mEvent Load (0.2ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) - [1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1[0m -Rendered investors/show.html.erb within layouts/application (144.1ms) -Completed 200 OK in 200ms (Views: 147.7ms | ActiveRecord: 2.4ms) - - -Started GET "/investors/1/events/new" for 127.0.0.1 at 2011-06-11 14:45:37 -0600 - Processing by EventsController#new as HTML - Parameters: {"investor_id"=>"1"} - [1m[35mInvestor Load (0.6ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1 - [1m[36mUser Load (1.3ms)[0m [1mSELECT "users".* FROM "users" WHERE (investor_id = 1)[0m -Rendered events/_form.html.erb (79.2ms) -Rendered events/new.html.erb within layouts/application (80.8ms) -Completed in 221ms - -ActionView::Template::Error (undefined method `merge' for "Paul":String): - 14:Investors present
- 15: <%= @user_investors.each do |user| %> - 16:<%= f.label :user_id, (user.first_name) %>
- 17: <%= f.check_box :user_id, (user.first_name) %>
<%= f.label :user_id, 'Investors present' %>
- app/views/events/_form.html.erb:17:in `block (2 levels) in _app_views_events__form_html_erb__3084120588909250610_2173603400_2067958606733640612'
- app/views/events/_form.html.erb:15:in `block in _app_views_events__form_html_erb__3084120588909250610_2173603400_2067958606733640612'
- app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb__3084120588909250610_2173603400_2067958606733640612'
- app/views/events/new.html.erb:3:in `_app_views_events_new_html_erb___2490690767356518280_2173617520_2080415545349179924'
-
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.2ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.5ms)
-
-
-Started GET "/investors/1/events/new" for 127.0.0.1 at 2011-06-11 14:47:04 -0600
- Processing by EventsController#new as HTML
- Parameters: {"investor_id"=>"1"}
- [1m[35mInvestor Load (0.8ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mUser Load (1.4ms)[0m [1mSELECT "users".* FROM "users" WHERE (investor_id = 1)[0m
-Rendered events/_form.html.erb (33.8ms)
-Rendered events/new.html.erb within layouts/application (35.4ms)
-Completed in 233ms
-
-ActionView::Template::Error (undefined method `merge' for "Paul":String):
- 14:
Investors present
- 15: <%= @user_investors.each do |user| %> - 16:<%= f.label :user_id, user.first_name %>
- 17: <%= f.check_box :user_id, user.first_name %>
<%= f.label :user_id, 'Investors present' %>
- app/views/events/_form.html.erb:17:in `block (2 levels) in _app_views_events__form_html_erb__3084120588909250610_2174913340_2067958606733640612'
- app/views/events/_form.html.erb:15:in `block in _app_views_events__form_html_erb__3084120588909250610_2174913340_2067958606733640612'
- app/views/events/_form.html.erb:1:in `_app_views_events__form_html_erb__3084120588909250610_2174913340_2067958606733640612'
- app/views/events/new.html.erb:3:in `_app_views_events_new_html_erb___2490690767356518280_2177184420_2080415545349179924'
-
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.4ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.0ms)
-
-
-Started GET "/investors/1/events/new" for 127.0.0.1 at 2011-06-11 14:47:09 -0600
- Processing by EventsController#new as HTML
- Parameters: {"investor_id"=>"1"}
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mUser Load (1.4ms)[0m [1mSELECT "users".* FROM "users" WHERE (investor_id = 1)[0m
- [1m[35mUser Load (49.0ms)[0m SELECT "users".* FROM "users"
-Rendered events/_form.html.erb (82.9ms)
- [1m[36mUser Load (2.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1[0m
-Rendered events/new.html.erb within layouts/application (99.6ms)
-Completed 200 OK in 231ms (Views: 51.5ms | ActiveRecord: 54.9ms)
-
-
-Started GET "/investors/1/events/new" for 127.0.0.1 at 2011-06-11 14:47:34 -0600
- Processing by EventsController#new as HTML
- Parameters: {"investor_id"=>"1"}
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mUser Load (1.3ms)[0m [1mSELECT "users".* FROM "users" WHERE (investor_id = 1)[0m
- [1m[35mUser Load (2.7ms)[0m SELECT "users".* FROM "users"
-Rendered events/_form.html.erb (37.1ms)
- [1m[36mUser Load (1.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1[0m
-Rendered events/new.html.erb within layouts/application (96.1ms)
-Completed 200 OK in 272ms (Views: 96.3ms | ActiveRecord: 6.1ms)
-
-
-Started GET "/investors/1/events/new" for 127.0.0.1 at 2011-06-11 14:47:42 -0600
- Processing by EventsController#new as HTML
- Parameters: {"investor_id"=>"1"}
- [1m[35mInvestor Load (0.8ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mUser Load (1.3ms)[0m [1mSELECT "users".* FROM "users" WHERE (investor_id = 1)[0m
- [1m[35mUser Load (2.6ms)[0m SELECT "users".* FROM "users"
-Rendered events/_form.html.erb (83.3ms)
- [1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1[0m
-Rendered events/new.html.erb within layouts/application (97.7ms)
-Completed 200 OK in 222ms (Views: 97.6ms | ActiveRecord: 5.9ms)
- [1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users"
- [1m[36mSQL (0.2ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
-WARNING: Can't mass-assign protected attributes: first_Name, investor_id
-
-
-Started GET "/investors/1/events/new" for 127.0.0.1 at 2011-06-11 14:49:55 -0600
- Processing by EventsController#new as HTML
- Parameters: {"investor_id"=>"1"}
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" WHERE (investor_id = 1)[0m
- [1m[35mUser Load (2.8ms)[0m SELECT "users".* FROM "users"
-Rendered events/_form.html.erb (78.4ms)
- [1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1[0m
-Rendered events/new.html.erb within layouts/application (93.0ms)
-Completed 200 OK in 208ms (Views: 92.5ms | ActiveRecord: 5.9ms)
- [1m[35mUser Load (0.7ms)[0m SELECT "users".* FROM "users" ORDER BY users.id DESC LIMIT 1
- [1m[36mSQL (0.2ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
-
-
-Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 14:50:25 -0600
- Processing by Devise::RegistrationsController#new as HTML
- [1m[35mUser Load (0.9ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1
-Redirected to http://localhost:3000/investors
-Completed 302 Found in 103ms
-
-
-Started GET "/investors" for 127.0.0.1 at 2011-06-11 14:50:26 -0600
- Processing by InvestorsController#index as HTML
- [1m[36mInvestor Load (1.5ms)[0m [1mSELECT "investors".* FROM "investors"[0m
- [1m[35mUser Load (2.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1
-Rendered investors/index.html.erb within layouts/application (163.9ms)
-Completed 200 OK in 189ms (Views: 173.2ms | ActiveRecord: 4.8ms)
-
-
-Started GET "/investors/new" for 127.0.0.1 at 2011-06-11 14:50:29 -0600
- Processing by InvestorsController#new as HTML
-Rendered investors/_form.html.erb (19.1ms)
- [1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1[0m
-Rendered investors/new.html.erb within layouts/application (123.1ms)
-Completed 200 OK in 144ms (Views: 127.0ms | ActiveRecord: 1.2ms)
-
-
-Started GET "/investors" for 127.0.0.1 at 2011-06-11 14:50:31 -0600
- Processing by InvestorsController#index as HTML
- [1m[35mInvestor Load (1.1ms)[0m SELECT "investors".* FROM "investors"
- [1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1[0m
-Rendered investors/index.html.erb within layouts/application (126.6ms)
-Completed 200 OK in 147ms (Views: 130.4ms | ActiveRecord: 2.3ms)
-
-
-Started GET "/users" for 127.0.0.1 at 2011-06-11 14:50:35 -0600
- Processing by UsersController#index as HTML
- [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."admin" = 't'
-SQLite3::SQLException: no such column: users.admin: SELECT "users".* FROM "users" WHERE "users"."admin" = 't'
-Rendered users/index.html.erb within layouts/application (1.6ms)
-Completed in 31ms
-
-ActionView::Template::Error (SQLite3::SQLException: no such column: users.admin: SELECT "users".* FROM "users" WHERE "users"."admin" = 't'):
- 2:
- 3:
- 7: <%= f.label :private %>
- 8: <%= f.boolean :private, {'Yes' => 1, 'No' => 0} %>
- 9:
- 14: <%= f.label :visible %> - 15: <%= f.check_box :visible %> - 16:
- 17: - 18:
- app/views/documents/_form.html.erb:15:in `block in _app_views_documents__form_html_erb__4166415952310102686_2173776900_2067958606733640612'
- app/views/documents/_form.html.erb:1:in `_app_views_documents__form_html_erb__4166415952310102686_2173776900_2067958606733640612'
- app/views/documents/new.html.erb:3:in `_app_views_documents_new_html_erb__793855513110717495_2173793620_2080415545349179924'
-
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.8ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.8ms)
-
-
-Started GET "/folders/1" for 127.0.0.1 at 2011-06-11 15:09:38 -0600
- Processing by FoldersController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[35mFolder Load (0.5ms)[0m SELECT "folders".* FROM "folders" WHERE "folders"."id" = 1 LIMIT 1
- [1m[36mDocument Load (0.2ms)[0m [1mSELECT "documents".* FROM "documents" WHERE ("documents".folder_id = 1)[0m
- [1m[35mUser Load (1.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered folders/show.html.erb within layouts/application (100.6ms)
-Completed 200 OK in 160ms (Views: 104.1ms | ActiveRecord: 2.0ms)
-
-
-Started GET "/folder/1/documents/new" for 127.0.0.1 at 2011-06-11 15:10:19 -0600
- Processing by DocumentsController#new as HTML
- Parameters: {"folder_id"=>"1"}
- [1m[36mFolder Load (0.4ms)[0m [1mSELECT "folders".* FROM "folders" WHERE "folders"."id" = 1 LIMIT 1[0m
-Rendered documents/_form.html.erb (4.5ms)
-Rendered documents/new.html.erb within layouts/application (6.0ms)
-Completed in 64ms
-
-ActionView::Template::Error (undefined method `visible' for #
- 14: <%= f.label :visible %>
- 15: <%= f.check_box :visible %>
- 16:
- app/views/documents/_form.html.erb:15:in `block in _app_views_documents__form_html_erb__4166415952310102686_2173459840_2067958606733640612'
- app/views/documents/_form.html.erb:1:in `_app_views_documents__form_html_erb__4166415952310102686_2173459840_2067958606733640612'
- app/views/documents/new.html.erb:3:in `_app_views_documents_new_html_erb__793855513110717495_2173473980_2080415545349179924'
-
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.7ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.9ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (56.8ms)
-
-
-Started GET "/folders/1" for 127.0.0.1 at 2011-06-11 15:10:20 -0600
- Processing by FoldersController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[35mFolder Load (0.4ms)[0m SELECT "folders".* FROM "folders" WHERE "folders"."id" = 1 LIMIT 1
- [1m[36mDocument Load (0.2ms)[0m [1mSELECT "documents".* FROM "documents" WHERE ("documents".folder_id = 1)[0m
- [1m[35mUser Load (1.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered folders/show.html.erb within layouts/application (160.4ms)
-Completed 200 OK in 218ms (Views: 164.7ms | ActiveRecord: 2.0ms)
-
-
-Started GET "/folder/1/documents/new" for 127.0.0.1 at 2011-06-11 15:12:47 -0600
- Processing by DocumentsController#new as HTML
- Parameters: {"folder_id"=>"1"}
- [1m[36mFolder Load (0.4ms)[0m [1mSELECT "folders".* FROM "folders" WHERE "folders"."id" = 1 LIMIT 1[0m
- [1m[35mInvestor Load (0.9ms)[0m SELECT "investors".* FROM "investors"
-Rendered documents/_form.html.erb (41.2ms)
- [1m[36mUser Load (1.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered documents/new.html.erb within layouts/application (141.8ms)
-Completed 200 OK in 247ms (Views: 144.8ms | ActiveRecord: 2.6ms)
-
-
-Started POST "/folder/1/documents" for 127.0.0.1 at 2011-06-11 15:14:50 -0600
- Processing by DocumentsController#create as HTML
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tk3rgZvd2ARWUw9cR4MeZe2A80pHLur2ejv3itDmhwg=", "document"=>{"name"=>"2010 Annual Report", "description"=>"Basic overview of 2010 performance.", "stage"=>"2", "private"=>"0", "investor_id"=>"", "attachment"=>#<%= link_to document.name, folder_document_path(@folder, document) %>
- 13: <%= document.attachment %>
- 14: <%= document.user_id %>
- 15: <%= document.visible? ? "Yes" : "No" %>
- 16:
| <%= task.name %> | - 73:<%= task.description %> | - 74:<%= task.due_date %> | - 75:<%= task.user.name %> | - 76:<%= task.completed? ? 'Yes' : 'No' %> | - 77:<%= task.completed_date %> | - 78:<%= task.event_id %> | - app/views/investors/show.html.erb:75:in `block in _app_views_investors_show_html_erb___297899848476932841_2181400720__333440342098750497' - app/views/investors/show.html.erb:70:in `each' - app/views/investors/show.html.erb:70:in `_app_views_investors_show_html_erb___297899848476932841_2181400720__333440342098750497' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (14.0ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (24.1ms) - - -Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 16:19:29 -0600 - Processing by InvestorsController#show as HTML - Parameters: {"id"=>"1"} - [1m[36mInvestor Load (0.8ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m - [1m[35mEvent Load (0.6ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC - [1m[36mTask Load (1.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m -Rendered investors/show.html.erb within layouts/application (20.8ms) -Completed in 135ms - -ActionView::Template::Error (undefined method `first_name' for nil:NilClass): - 72:<%= task.name %> | - 73:<%= task.description %> | - 74:<%= task.due_date %> | - 75:<%= task.user.first_name %> | - 76:<%= task.completed? ? 'Yes' : 'No' %> | - 77:<%= task.completed_date %> | - 78:<%= task.event_id %> | - app/views/investors/show.html.erb:75:in `block in _app_views_investors_show_html_erb___297899848476932841_2181532380__333440342098750497' - app/views/investors/show.html.erb:70:in `each' - app/views/investors/show.html.erb:70:in `_app_views_investors_show_html_erb___297899848476932841_2181532380__333440342098750497' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (13.0ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (59.3ms) - - -Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 16:19:40 -0600 - Processing by InvestorsController#show as HTML - Parameters: {"id"=>"1"} - [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1 - [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC[0m - [1m[35mTask Load (1.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC -Rendered investors/show.html.erb within layouts/application (16.5ms) -Completed in 133ms - -ActionView::Template::Error (undefined method `first_name' for #<%= task.name %> | - 73:<%= task.description %> | - 74:<%= task.due_date %> | - 75:<%= task.first_name %> | - 76:<%= task.completed? ? 'Yes' : 'No' %> | - 77:<%= task.completed_date %> | - 78:<%= task.event_id %> | - app/views/investors/show.html.erb:75:in `block in _app_views_investors_show_html_erb___297899848476932841_2181644380__333440342098750497' - app/views/investors/show.html.erb:70:in `each' - app/views/investors/show.html.erb:70:in `_app_views_investors_show_html_erb___297899848476932841_2181644380__333440342098750497' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (53.9ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (59.7ms) - - -Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 16:19:47 -0600 - Processing by InvestorsController#show as HTML - Parameters: {"id"=>"1"} - [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m - [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC - [1m[36mTask Load (1.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m -Rendered investors/show.html.erb within layouts/application (17.3ms) -Completed in 135ms - -ActionView::Template::Error (undefined method `first_name' for nil:NilClass): - 72:<%= task.name %> | - 73:<%= task.description %> | - 74:<%= task.due_date %> | - 75:<%= task.user_id.first_name %> | - 76:<%= task.completed? ? 'Yes' : 'No' %> | - 77:<%= task.completed_date %> | - 78:<%= task.event_id %> | - app/views/investors/show.html.erb:75:in `block in _app_views_investors_show_html_erb___297899848476932841_2181732740__333440342098750497' - app/views/investors/show.html.erb:70:in `each' - app/views/investors/show.html.erb:70:in `_app_views_investors_show_html_erb___297899848476932841_2181732740__333440342098750497' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (17.6ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (25.9ms) - - -Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 16:19:50 -0600 - Processing by InvestorsController#show as HTML - Parameters: {"id"=>"1"} - [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1 - [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC[0m - [1m[35mTask Load (1.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC -Rendered investors/show.html.erb within layouts/application (17.6ms) -Completed in 126ms - -ActionView::Template::Error (undefined method `first_name' for nil:NilClass): - 72:<%= task.name %> | - 73:<%= task.description %> | - 74:<%= task.due_date %> | - 75:<%= task.user_id.first_name %> | - 76:<%= task.completed? ? 'Yes' : 'No' %> | - 77:<%= task.completed_date %> | - 78:<%= task.event_id %> | - app/views/investors/show.html.erb:75:in `block in _app_views_investors_show_html_erb___297899848476932841_2181962320__333440342098750497' - app/views/investors/show.html.erb:70:in `each' - app/views/investors/show.html.erb:70:in `_app_views_investors_show_html_erb___297899848476932841_2181962320__333440342098750497' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (16.1ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (28.1ms) - - -Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 16:19:55 -0600 - Processing by InvestorsController#show as HTML - Parameters: {"id"=>"1"} - [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m - [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC - [1m[36mTask Load (1.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m -Rendered investors/show.html.erb within layouts/application (16.4ms) -Completed in 131ms - -ActionView::Template::Error (undefined method `first_name' for #<%= task.name %> | - 73:<%= task.description %> | - 74:<%= task.due_date %> | - 75:<%= task.first_name %> | - 76:<%= task.completed? ? 'Yes' : 'No' %> | - 77:<%= task.completed_date %> | - 78:<%= task.event_id %> | - app/views/investors/show.html.erb:75:in `block in _app_views_investors_show_html_erb___297899848476932841_2182115940__333440342098750497' - app/views/investors/show.html.erb:70:in `each' - app/views/investors/show.html.erb:70:in `_app_views_investors_show_html_erb___297899848476932841_2182115940__333440342098750497' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (13.0ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.3ms) - - -Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 16:20:02 -0600 - Processing by InvestorsController#show as HTML - Parameters: {"id"=>"1"} - [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1 - [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC[0m - [1m[35mTask Load (1.5ms)[0m SELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC - [1m[36mCACHE (0.0ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m - [1m[35mEvent Load (0.2ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) - [1m[36mUser Load (1.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m -Rendered investors/show.html.erb within layouts/application (185.0ms) -Completed 200 OK in 304ms (Views: 188.4ms | ActiveRecord: 4.0ms) - - -Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 16:20:32 -0600 - Processing by InvestorsController#show as HTML - Parameters: {"id"=>"1"} - [1m[35mInvestor Load (1.4ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1 - [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC[0m - [1m[35mTask Load (1.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC - [1m[36mCACHE (0.0ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m -Rendered investors/show.html.erb within layouts/application (22.2ms) -Completed in 133ms - -ActionView::Template::Error (undefined method `first_name' for nil:NilClass): - 77:<%= task.completed_date %> | - 78:<%= task.event_id %> | - 79:<%= task.investor %> | - 80:<%= task.assignee.first_name %> | - 81:
- 3: <%= f.label :name %> - 4: <%= f.text_field :name %> - app/views/tasks/_form.html.erb:1:in `_app_views_tasks__form_html_erb___3628410055737297250_2181573120__3359528239590904017' - app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb___927812722184981055_2181590540__333440342098750497' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.3ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.4ms) - - -Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 16:30:09 -0600 - Processing by InvestorsController#show as HTML - Parameters: {"id"=>"1"} - [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m - [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC - [1m[36mTask Load (1.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m - [1m[35mCACHE (0.0ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1 - [1m[36mEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1)[0m - [1m[35mUser Load (1.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 -Rendered investors/show.html.erb within layouts/application (174.7ms) -Completed 200 OK in 289ms (Views: 178.0ms | ActiveRecord: 3.7ms) - - -Started GET "/investors/1/tasks/1/edit" for 127.0.0.1 at 2011-06-11 16:30:33 -0600 - Processing by TasksController#edit as HTML - Parameters: {"investor_id"=>"1", "id"=>"1"} -Rendered tasks/_form.html.erb (1.0ms) -Rendered tasks/edit.html.erb within layouts/application (2.5ms) -Completed in 7ms - -ActionView::Template::Error (undefined method `model_name' for NilClass:Class): - 1: <%= form_for [@investor, @task] do |f| %> - 2:
- 3: <%= f.label :name %> - 4: <%= f.text_field :name %> - app/views/tasks/_form.html.erb:1:in `_app_views_tasks__form_html_erb___3628410055737297250_2181120120__3359528239590904017' - app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb___927812722184981055_2181131620__333440342098750497' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.6ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.6ms) - - -Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 16:30:35 -0600 - Processing by InvestorsController#show as HTML - Parameters: {"id"=>"1"} - [1m[36mInvestor Load (1.1ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m - [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC - [1m[36mTask Load (1.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m - [1m[35mCACHE (0.0ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1 - [1m[36mEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1)[0m - [1m[35mUser Load (1.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 -Rendered investors/show.html.erb within layouts/application (136.2ms) -Completed 200 OK in 253ms (Views: 140.1ms | ActiveRecord: 4.0ms) - - -Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 16:30:37 -0600 - Processing by InvestorsController#show as HTML - Parameters: {"id"=>"1"} - [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m - [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC - [1m[36mTask Load (1.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m - [1m[35mCACHE (0.0ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1 - [1m[36mEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1)[0m - [1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 -Rendered investors/show.html.erb within layouts/application (137.8ms) -Completed 200 OK in 252ms (Views: 143.0ms | ActiveRecord: 3.6ms) - - -Started GET "/investors/1/tasks/new" for 127.0.0.1 at 2011-06-11 16:30:39 -0600 - Processing by TasksController#new as HTML - Parameters: {"investor_id"=>"1"} - [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m - [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE (investor_id = 1) - [1m[36mUser Load (3.6ms)[0m [1mSELECT "users".* FROM "users"[0m -Rendered tasks/_form.html.erb (132.5ms) - [1m[35mUser Load (1.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 -Rendered tasks/new.html.erb within layouts/application (188.7ms) -Completed 200 OK in 296ms (Views: 189.3ms | ActiveRecord: 6.0ms) - - -Started GET "/investors/1/tasks/new" for 127.0.0.1 at 2011-06-11 16:31:41 -0600 - Processing by TasksController#new as HTML - Parameters: {"investor_id"=>"1"} - [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m - [1m[35mEvent Load (0.2ms)[0m SELECT "events".* FROM "events" WHERE (investor_id = 1) - [1m[36mUser Load (3.8ms)[0m [1mSELECT "users".* FROM "users"[0m -Rendered tasks/_form.html.erb (185.1ms) - [1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 -Rendered tasks/new.html.erb within layouts/application (199.5ms) -Completed 200 OK in 315ms (Views: 199.5ms | ActiveRecord: 5.9ms) - - -Started GET "/investors/1/tasks/new" for 127.0.0.1 at 2011-06-11 16:32:43 -0600 - Processing by TasksController#new as HTML - Parameters: {"investor_id"=>"1"} - [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m - [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE (investor_id = 1) - [1m[36mUser Load (3.6ms)[0m [1mSELECT "users".* FROM "users"[0m -Rendered tasks/_form.html.erb (135.0ms) - [1m[35mUser Load (1.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 -Rendered tasks/new.html.erb within layouts/application (189.7ms) -Completed 200 OK in 315ms (Views: 189.4ms | ActiveRecord: 5.9ms) - - -Started POST "/investors/1/tasks" for 127.0.0.1 at 2011-06-11 16:33:12 -0600 - Processing by TasksController#create as HTML - Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tk3rgZvd2ARWUw9cR4MeZe2A80pHLur2ejv3itDmhwg=", "task"=>{"name"=>"Bill about overage", "description"=>"Contact Bill to find out how much we actually owe on overage charges.", "due_date(1i)"=>"2011", "due_date(2i)"=>"6", "due_date(3i)"=>"12", "completed"=>"0", "completed_date(1i)"=>"", "completed_date(2i)"=>"", "completed_date(3i)"=>"", "event_id"=>"1", "assignee"=>"1"}, "commit"=>"Create Task", "investor_id"=>"1"} - [1m[36mInvestor Load (0.8ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m -Completed in 173ms - -ActiveRecord::AssociationTypeMismatch (User(#2181308580) expected, got String(#2151988680)): - app/controllers/tasks_controller.rb:13:in `create' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (6.6ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.4ms) - - -Started GET "/investors/1/tasks/new" for 127.0.0.1 at 2011-06-11 16:34:46 -0600 - Processing by TasksController#new as HTML - Parameters: {"investor_id"=>"1"} - [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1 - [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE (investor_id = 1)[0m - [1m[35mUser Load (4.4ms)[0m SELECT "users".* FROM "users" -Rendered tasks/_form.html.erb (176.6ms) - [1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m -Rendered tasks/new.html.erb within layouts/application (191.7ms) -Completed 200 OK in 304ms (Views: 190.5ms | ActiveRecord: 6.6ms) - - -Started POST "/investors/1/tasks" for 127.0.0.1 at 2011-06-11 16:35:52 -0600 - Processing by TasksController#create as HTML - Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tk3rgZvd2ARWUw9cR4MeZe2A80pHLur2ejv3itDmhwg=", "task"=>{"name"=>"Bill about overage", "description"=>"Contact Bill to find out how much we actually owe on overage charges.", "due_date(1i)"=>"2011", "due_date(2i)"=>"6", "due_date(3i)"=>"12", "completed"=>"0", "completed_date(1i)"=>"", "completed_date(2i)"=>"", "completed_date(3i)"=>"", "event_id"=>"1", "assignee"=>"1"}, "commit"=>"Create Task", "investor_id"=>"1"} - [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1 -Completed in 160ms - -ActiveRecord::AssociationTypeMismatch (User(#2181121920) expected, got String(#2151988680)): - app/controllers/tasks_controller.rb:13:in `create' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (5.3ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.3ms) - - -Started GET "/investors/" for 127.0.0.1 at 2011-06-11 16:36:43 -0600 - Processing by InvestorsController#index as HTML - [1m[36mInvestor Load (1.1ms)[0m [1mSELECT "investors".* FROM "investors"[0m - [1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 -Rendered investors/index.html.erb within layouts/application (158.0ms) -Completed 200 OK in 178ms (Views: 162.1ms | ActiveRecord: 2.3ms) - - -Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 16:36:45 -0600 - Processing by InvestorsController#show as HTML - Parameters: {"id"=>"1"} - [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m - [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC - [1m[36mTask Load (1.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m - [1m[35mCACHE (0.0ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1 - [1m[36mEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1)[0m - [1m[35mUser Load (1.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 -Rendered investors/show.html.erb within layouts/application (195.7ms) -Completed 200 OK in 310ms (Views: 199.4ms | ActiveRecord: 3.5ms) - - -Started GET "/investors/1/tasks/new" for 127.0.0.1 at 2011-06-11 16:36:46 -0600 - Processing by TasksController#new as HTML - Parameters: {"investor_id"=>"1"} - [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m - [1m[35mEvent Load (0.2ms)[0m SELECT "events".* FROM "events" WHERE (investor_id = 1) - [1m[36mUser Load (4.5ms)[0m [1mSELECT "users".* FROM "users"[0m -Rendered tasks/_form.html.erb (204.5ms) - [1m[35mUser Load (1.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 -Rendered tasks/new.html.erb within layouts/application (221.6ms) -Completed 200 OK in 334ms (Views: 220.4ms | ActiveRecord: 6.7ms) - - -Started POST "/investors/1/tasks" for 127.0.0.1 at 2011-06-11 16:36:50 -0600 - Processing by TasksController#create as HTML - Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tk3rgZvd2ARWUw9cR4MeZe2A80pHLur2ejv3itDmhwg=", "task"=>{"name"=>"Bill woan", "description"=>"", "due_date(1i)"=>"2011", "due_date(2i)"=>"6", "due_date(3i)"=>"11", "completed"=>"0", "completed_date(1i)"=>"", "completed_date(2i)"=>"", "completed_date(3i)"=>"", "event_id"=>"", "assignee"=>""}, "commit"=>"Create Task", "investor_id"=>"1"} - [1m[36mInvestor Load (0.8ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m -Completed in 182ms - -ActiveRecord::AssociationTypeMismatch (User(#2181156560) expected, got String(#2151988680)): - app/controllers/tasks_controller.rb:13:in `create' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (5.1ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.1ms) - - -Started GET "/investors/1/tasks" for 127.0.0.1 at 2011-06-11 16:38:18 -0600 - Processing by TasksController#index as HTML - Parameters: {"investor_id"=>"1"} - [1m[35mTask Load (1.4ms)[0m SELECT "tasks".* FROM "tasks" -Rendered tasks/index.html.erb within layouts/application (14.2ms) -Completed in 32ms - -ActionView::Template::Error (undefined method `name' for nil:NilClass): - 17:
- 3: <%= f.label :name %> - 4: <%= f.text_field :name %> - app/views/tasks/_form.html.erb:1:in `_app_views_tasks__form_html_erb___3628410055737297250_2181596480__3359528239590904017' - app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb___927812722184981055_2181609560__333440342098750497' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.3ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.3ms) - - -Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 16:38:38 -0600 - Processing by InvestorsController#show as HTML - Parameters: {"id"=>"1"} - [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m - [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC - [1m[36mTask Load (1.7ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m - [1m[35mCACHE (0.0ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1 - [1m[36mEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1)[0m - [1m[35mUser Load (1.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 -Rendered investors/show.html.erb within layouts/application (180.9ms) -Completed 200 OK in 300ms (Views: 184.2ms | ActiveRecord: 4.2ms) - - -Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 16:39:16 -0600 - Processing by InvestorsController#show as HTML - Parameters: {"id"=>"1"} - [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m - [1m[35mEvent Load (0.4ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC - [1m[36mTask Load (1.6ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m - [1m[35mCACHE (0.0ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1 - [1m[36mEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1)[0m - [1m[35mUser Load (1.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 -Rendered investors/show.html.erb within layouts/application (225.5ms) -Completed 200 OK in 371ms (Views: 229.4ms | ActiveRecord: 4.6ms) - - -Started GET "/investors/1/tasks/1/edit" for 127.0.0.1 at 2011-06-11 16:39:18 -0600 - Processing by TasksController#edit as HTML - Parameters: {"investor_id"=>"1", "id"=>"1"} -Rendered tasks/_form.html.erb (0.9ms) -Rendered tasks/edit.html.erb within layouts/application (2.4ms) -Completed in 8ms - -ActionView::Template::Error (undefined method `model_name' for NilClass:Class): - 1: <%= form_for [@investor, @task] do |f| %> - 2:
- 3: <%= f.label :name %> - 4: <%= f.text_field :name %> - app/views/tasks/_form.html.erb:1:in `_app_views_tasks__form_html_erb___3628410055737297250_2173897580__3359528239590904017' - app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb___927812722184981055_2173908000__333440342098750497' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.2ms) - - -Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 16:39:20 -0600 - Processing by InvestorsController#show as HTML - Parameters: {"id"=>"1"} - [1m[36mInvestor Load (1.1ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m - [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC - [1m[36mTask Load (1.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m - [1m[35mCACHE (0.0ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1 - [1m[36mEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1)[0m - [1m[35mUser Load (1.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 -Rendered investors/show.html.erb within layouts/application (147.8ms) -Completed 200 OK in 266ms (Views: 150.8ms | ActiveRecord: 4.3ms) - - -Started GET "/investors/1/tasks/1/edit" for 127.0.0.1 at 2011-06-11 16:39:24 -0600 - Processing by TasksController#edit as HTML - Parameters: {"investor_id"=>"1", "id"=>"1"} -Rendered tasks/_form.html.erb (1.1ms) -Rendered tasks/edit.html.erb within layouts/application (2.6ms) -Completed in 8ms - -ActionView::Template::Error (undefined method `model_name' for NilClass:Class): - 1: <%= form_for [@investor, @task] do |f| %> - 2:
- 3: <%= f.label :name %> - 4: <%= f.text_field :name %> - app/views/tasks/_form.html.erb:1:in `_app_views_tasks__form_html_erb___3628410055737297250_2182081960__3359528239590904017' - app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb___927812722184981055_2182092820__333440342098750497' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.6ms) - - -Started GET "/investors/1/tasks" for 127.0.0.1 at 2011-06-11 16:40:45 -0600 - Processing by TasksController#index as HTML - Parameters: {"investor_id"=>"1"} - [1m[36mTask Load (1.5ms)[0m [1mSELECT "tasks".* FROM "tasks"[0m -Rendered tasks/index.html.erb within layouts/application (13.6ms) -Completed in 29ms - -ActionView::Template::Error (undefined method `name' for nil:NilClass): - 17:
- 3: <%= f.label :name %>
- 4: <%= f.text_field :name %>
- app/views/tasks/_form.html.erb:1:in `_app_views_tasks__form_html_erb___3628410055737297250_2181722220__3359528239590904017'
- app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb___927812722184981055_2181733380__333440342098750497'
-
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.8ms)
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 16:40:52 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC[0m
- [1m[35mTask Load (1.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC
- [1m[36mCACHE (0.0ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.2ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1)
- [1m[36mUser Load (1.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered investors/show.html.erb within layouts/application (186.9ms)
-Completed 200 OK in 311ms (Views: 190.3ms | ActiveRecord: 3.6ms)
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 16:43:18 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC[0m
- [1m[35mTask Load (1.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC
- [1m[36mCACHE (0.0ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.2ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1)
- [1m[36mUser Load (1.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered investors/show.html.erb within layouts/application (168.1ms)
-Completed 200 OK in 300ms (Views: 177.5ms | ActiveRecord: 4.0ms)
-
-
-Started GET "/investors/1/tasks/1/edit" for 127.0.0.1 at 2011-06-11 16:43:20 -0600
- Processing by TasksController#edit as HTML
- Parameters: {"investor_id"=>"1", "id"=>"1"}
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mTask Load (1.3ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 AND ("tasks".investor_id = 1) LIMIT 1[0m
- [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE (investor_id = 1)
- [1m[36mUser Load (3.7ms)[0m [1mSELECT "users".* FROM "users"[0m
-Rendered tasks/_form.html.erb (199.3ms)
- [1m[35mUser Load (1.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered tasks/edit.html.erb within layouts/application (261.1ms)
-Completed 200 OK in 367ms (Views: 261.8ms | ActiveRecord: 7.2ms)
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 16:43:22 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.4ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC
- [1m[36mTask Load (1.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m
- [1m[35mCACHE (0.0ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1)[0m
- [1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered investors/show.html.erb within layouts/application (180.2ms)
-Completed 200 OK in 301ms (Views: 183.9ms | ActiveRecord: 3.6ms)
-
-
-Started POST "/tasks/1" for 127.0.0.1 at 2011-06-11 16:43:26 -0600
-
-AbstractController::ActionNotFound (The action 'destroy' could not be found for TasksController):
-
-
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.8ms)
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 16:43:27 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC
- [1m[36mTask Load (1.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m
- [1m[35mCACHE (0.0ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1)[0m
- [1m[35mUser Load (1.9ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered investors/show.html.erb within layouts/application (185.4ms)
-Completed 200 OK in 315ms (Views: 188.6ms | ActiveRecord: 4.2ms)
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 16:44:01 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC
- [1m[36mTask Load (1.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m
- [1m[35mCACHE (0.0ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1)[0m
- [1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered investors/show.html.erb within layouts/application (183.8ms)
-Completed 200 OK in 303ms (Views: 188.4ms | ActiveRecord: 3.6ms)
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 16:44:22 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC
- [1m[36mTask Load (1.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m
- [1m[35mCACHE (0.0ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.9ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1)[0m
- [1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered investors/show.html.erb within layouts/application (184.4ms)
-Completed 200 OK in 302ms (Views: 187.4ms | ActiveRecord: 4.2ms)
-
-
-Started POST "/tasks/1" for 127.0.0.1 at 2011-06-11 16:44:25 -0600
- Processing by TasksController#destroy as HTML
- Parameters: {"authenticity_token"=>"Tk3rgZvd2ARWUw9cR4MeZe2A80pHLur2ejv3itDmhwg=", "id"=>"1"}
- [1m[36mTask Load (42.7ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
- [1m[35mAREL (0.3ms)[0m DELETE FROM "tasks" WHERE "tasks"."id" = 1
-Redirected to
-Completed in 75ms
-
-NoMethodError (undefined method `model_name' for Fixnum:Class):
- app/controllers/tasks_controller.rb:45:in `destroy'
-
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.0ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.7ms)
-
-
-Started GET "/" for 127.0.0.1 at 2011-06-11 16:44:47 -0600
- Processing by PagesController#index as HTML
- [1m[36mUser Load (2.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered pages/index.html.erb within layouts/pages (104.7ms)
-Completed 200 OK in 109ms (Views: 105.7ms | ActiveRecord: 2.5ms)
-
-
-Started GET "/investors" for 127.0.0.1 at 2011-06-11 16:44:48 -0600
- Processing by InvestorsController#index as HTML
- [1m[35mInvestor Load (1.1ms)[0m SELECT "investors".* FROM "investors"
- [1m[36mUser Load (1.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered investors/index.html.erb within layouts/application (119.1ms)
-Completed 200 OK in 181ms (Views: 124.6ms | ActiveRecord: 2.4ms)
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 16:44:50 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC[0m
- [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC
- [1m[36mEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1)[0m
- [1m[35mUser Load (2.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered investors/show.html.erb within layouts/application (157.8ms)
-Completed 200 OK in 270ms (Views: 161.5ms | ActiveRecord: 3.6ms)
-
-
-Started GET "/investors/1/tasks/new" for 127.0.0.1 at 2011-06-11 16:44:53 -0600
- Processing by TasksController#new as HTML
- Parameters: {"investor_id"=>"1"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE (investor_id = 1)
- [1m[36mUser Load (3.7ms)[0m [1mSELECT "users".* FROM "users"[0m
-Rendered tasks/_form.html.erb (191.9ms)
- [1m[35mUser Load (1.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered tasks/new.html.erb within layouts/application (207.9ms)
-Completed 200 OK in 322ms (Views: 207.9ms | ActiveRecord: 6.0ms)
-
-
-Started POST "/investors/1/tasks" for 127.0.0.1 at 2011-06-11 16:45:11 -0600
- Processing by TasksController#create as HTML
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tk3rgZvd2ARWUw9cR4MeZe2A80pHLur2ejv3itDmhwg=", "task"=>{"name"=>"Bill Whoan Email", "description"=>"Check with Bill on how much we actually owe.", "due_date(1i)"=>"2011", "due_date(2i)"=>"6", "due_date(3i)"=>"11", "completed"=>"0", "completed_date(1i)"=>"", "completed_date(2i)"=>"", "completed_date(3i)"=>"", "event_id"=>"1", "assignee"=>"1"}, "commit"=>"Create Task", "investor_id"=>"1"}
- [1m[36mInvestor Load (0.8ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
-Completed in 189ms
-
-ActiveRecord::AssociationTypeMismatch (User(#2181074900) expected, got String(#2151988680)):
- app/controllers/tasks_controller.rb:16:in `create'
-
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (6.7ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.0ms)
-
-
-Started POST "/investors/1/tasks" for 127.0.0.1 at 2011-06-11 16:46:51 -0600
-
-SyntaxError (/Users/Keller/rails_projects/clearview-solutions/app/controllers/tasks_controller.rb:16: syntax error, unexpected '=', expecting ')'
-...params[:task]).merge(:user_id = current_user.id)
-... ^
-/Users/Keller/rails_projects/clearview-solutions/app/controllers/tasks_controller.rb:16: syntax error, unexpected ')', expecting keyword_end):
-
-
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.3ms)
-
-
-Started POST "/investors/1/tasks" for 127.0.0.1 at 2011-06-11 16:47:01 -0600
- Processing by TasksController#create as HTML
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tk3rgZvd2ARWUw9cR4MeZe2A80pHLur2ejv3itDmhwg=", "task"=>{"name"=>"Bill Whoan Email", "description"=>"Check with Bill on how much we actually owe.", "due_date(1i)"=>"2011", "due_date(2i)"=>"6", "due_date(3i)"=>"11", "completed"=>"0", "completed_date(1i)"=>"", "completed_date(2i)"=>"", "completed_date(3i)"=>"", "event_id"=>"1", "assignee"=>"1"}, "commit"=>"Create Task", "investor_id"=>"1"}
- [1m[35mInvestor Load (0.8ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
-Completed in 169ms
-
-ActiveRecord::AssociationTypeMismatch (User(#2181237380) expected, got String(#2151988680)):
- app/controllers/tasks_controller.rb:16:in `create'
-
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (5.4ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.5ms)
-
-
-Started GET "/" for 127.0.0.1 at 2011-06-11 16:48:12 -0600
- Processing by PagesController#index as HTML
- [1m[36mSQL (0.8ms)[0m [1m SELECT name
- FROM sqlite_master
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
-[0m
- [1m[35mUser Load (1.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered pages/index.html.erb within layouts/pages (143.8ms)
-Completed 200 OK in 149ms (Views: 146.2ms | ActiveRecord: 2.2ms)
-
-
-Started GET "/investors" for 127.0.0.1 at 2011-06-11 16:48:16 -0600
- Processing by InvestorsController#index as HTML
- [1m[36mInvestor Load (1.3ms)[0m [1mSELECT "investors".* FROM "investors"[0m
- [1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered investors/index.html.erb within layouts/application (128.6ms)
-Completed 200 OK in 187ms (Views: 132.2ms | ActiveRecord: 2.5ms)
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 16:48:17 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC
- [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m
- [1m[35mEvent Load (0.2ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1)
- [1m[36mUser Load (1.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered investors/show.html.erb within layouts/application (156.2ms)
-Completed 200 OK in 283ms (Views: 160.0ms | ActiveRecord: 2.8ms)
-
-
-Started GET "/investors/1/tasks/new" for 127.0.0.1 at 2011-06-11 16:48:21 -0600
- Processing by TasksController#new as HTML
- Parameters: {"investor_id"=>"1"}
- [1m[35mInvestor Load (0.6ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE (investor_id = 1)[0m
- [1m[35mUser Load (3.6ms)[0m SELECT "users".* FROM "users"
-Rendered tasks/_form.html.erb (223.0ms)
- [1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered tasks/new.html.erb within layouts/application (238.4ms)
-Completed 200 OK in 350ms (Views: 238.0ms | ActiveRecord: 5.7ms)
-
-
-Started POST "/investors/1/tasks" for 127.0.0.1 at 2011-06-11 16:48:23 -0600
- Processing by TasksController#create as HTML
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tk3rgZvd2ARWUw9cR4MeZe2A80pHLur2ejv3itDmhwg=", "task"=>{"name"=>"Test", "description"=>"", "due_date(1i)"=>"2011", "due_date(2i)"=>"6", "due_date(3i)"=>"11", "completed"=>"0", "completed_date(1i)"=>"", "completed_date(2i)"=>"", "completed_date(3i)"=>"", "event_id"=>"", "assignee"=>""}, "commit"=>"Create Task", "investor_id"=>"1"}
- [1m[35mInvestor Load (0.6ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
-Completed in 162ms
-
-ActiveRecord::AssociationTypeMismatch (User(#2181458360) expected, got String(#2151988680)):
- app/controllers/tasks_controller.rb:16:in `create'
-
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (6.3ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.1ms)
-
-
-Started GET "/investors/1/tasks/new" for 127.0.0.1 at 2011-06-11 16:48:28 -0600
- Processing by TasksController#new as HTML
- Parameters: {"investor_id"=>"1"}
- [1m[36mInvestor Load (2.1ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.2ms)[0m SELECT "events".* FROM "events" WHERE (investor_id = 1)
- [1m[36mUser Load (46.3ms)[0m [1mSELECT "users".* FROM "users"[0m
-Rendered tasks/_form.html.erb (205.2ms)
- [1m[35mUser Load (1.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered tasks/new.html.erb within layouts/application (219.6ms)
-Completed 200 OK in 343ms (Views: 176.6ms | ActiveRecord: 50.7ms)
-
-
-Started POST "/investors/1/tasks" for 127.0.0.1 at 2011-06-11 16:50:58 -0600
- Processing by TasksController#create as HTML
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tk3rgZvd2ARWUw9cR4MeZe2A80pHLur2ejv3itDmhwg=", "task"=>{"name"=>"Test", "description"=>"", "due_date(1i)"=>"2011", "due_date(2i)"=>"6", "due_date(3i)"=>"11", "completed"=>"0", "completed_date(1i)"=>"", "completed_date(2i)"=>"", "completed_date(3i)"=>"", "event_id"=>"", "assignee"=>"2"}, "commit"=>"Create Task", "investor_id"=>"1"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
-Completed in 129ms
-
-ActiveRecord::AssociationTypeMismatch (User(#2181264640) expected, got String(#2151988680)):
- app/controllers/tasks_controller.rb:16:in `create'
-
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (6.8ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.1ms)
-
-
-Started POST "/investors/1/tasks" for 127.0.0.1 at 2011-06-11 16:55:19 -0600
- Processing by TasksController#create as HTML
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tk3rgZvd2ARWUw9cR4MeZe2A80pHLur2ejv3itDmhwg=", "task"=>{"name"=>"Test", "description"=>"", "due_date(1i)"=>"2011", "due_date(2i)"=>"6", "due_date(3i)"=>"11", "completed"=>"0", "completed_date(1i)"=>"", "completed_date(2i)"=>"", "completed_date(3i)"=>"", "event_id"=>"", "assignee"=>"2"}, "commit"=>"Create Task", "investor_id"=>"1"}
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
-Completed in 160ms
-
-ActiveRecord::AssociationTypeMismatch (User(#2181485080) expected, got String(#2151988680)):
- app/controllers/tasks_controller.rb:16:in `create'
-
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (5.5ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.5ms)
-
-
-Started GET "/investors" for 127.0.0.1 at 2011-06-11 16:55:23 -0600
- Processing by InvestorsController#index as HTML
- [1m[36mInvestor Load (2.1ms)[0m [1mSELECT "investors".* FROM "investors"[0m
- [1m[35mUser Load (2.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered investors/index.html.erb within layouts/application (170.9ms)
-Completed 200 OK in 192ms (Views: 173.9ms | ActiveRecord: 4.8ms)
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 16:55:25 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC
- [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m
- [1m[35mEvent Load (0.2ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1)
- [1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered investors/show.html.erb within layouts/application (155.5ms)
-Completed 200 OK in 263ms (Views: 160.0ms | ActiveRecord: 2.7ms)
-
-
-Started GET "/investors/1/tasks/new" for 127.0.0.1 at 2011-06-11 16:55:27 -0600
- Processing by TasksController#new as HTML
- Parameters: {"investor_id"=>"1"}
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE (investor_id = 1)[0m
- [1m[35mUser Load (4.0ms)[0m SELECT "users".* FROM "users"
-Rendered tasks/_form.html.erb (179.4ms)
- [1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered tasks/new.html.erb within layouts/application (193.7ms)
-Completed 200 OK in 301ms (Views: 193.2ms | ActiveRecord: 6.1ms)
-
-
-Started POST "/investors/1/tasks" for 127.0.0.1 at 2011-06-11 16:55:32 -0600
- Processing by TasksController#create as HTML
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tk3rgZvd2ARWUw9cR4MeZe2A80pHLur2ejv3itDmhwg=", "task"=>{"name"=>"Opening", "description"=>"", "due_date(1i)"=>"2011", "due_date(2i)"=>"6", "due_date(3i)"=>"11", "completed"=>"0", "completed_date(1i)"=>"", "completed_date(2i)"=>"", "completed_date(3i)"=>"", "event_id"=>"", "assignee"=>"1"}, "commit"=>"Create Task", "investor_id"=>"1"}
- [1m[35mInvestor Load (1.0ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
-Completed in 163ms
-
-ActiveRecord::AssociationTypeMismatch (User(#2174295880) expected, got String(#2151988680)):
- app/controllers/tasks_controller.rb:16:in `create'
-
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (5.3ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.9ms)
-
-
-Started POST "/investors/1/tasks" for 127.0.0.1 at 2011-06-11 16:55:52 -0600
- Processing by TasksController#create as HTML
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tk3rgZvd2ARWUw9cR4MeZe2A80pHLur2ejv3itDmhwg=", "task"=>{"name"=>"Opening", "description"=>"", "due_date(1i)"=>"2011", "due_date(2i)"=>"6", "due_date(3i)"=>"11", "completed"=>"0", "completed_date(1i)"=>"", "completed_date(2i)"=>"", "completed_date(3i)"=>"", "event_id"=>"", "assignee"=>"1"}, "commit"=>"Create Task", "investor_id"=>"1"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
-Completed in 125ms
-
-ActiveRecord::AssociationTypeMismatch (User(#2174486720) expected, got String(#2151988680)):
- app/controllers/tasks_controller.rb:16:in `create'
-
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (5.3ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.3ms)
-
-
-Started GET "/investors/1/tasks" for 127.0.0.1 at 2011-06-11 17:00:42 -0600
- Processing by TasksController#index as HTML
- Parameters: {"investor_id"=>"1"}
- [1m[35mTask Load (0.6ms)[0m SELECT "tasks".* FROM "tasks"
- [1m[36mUser Load (40.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered tasks/index.html.erb within layouts/application (92.6ms)
-Completed 200 OK in 108ms (Views: 57.5ms | ActiveRecord: 40.6ms)
-
-
-Started GET "/investors/1/tasks" for 127.0.0.1 at 2011-06-11 17:00:45 -0600
- Processing by TasksController#index as HTML
- Parameters: {"investor_id"=>"1"}
- [1m[35mTask Load (0.6ms)[0m SELECT "tasks".* FROM "tasks"
- [1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered tasks/index.html.erb within layouts/application (88.0ms)
-Completed 200 OK in 140ms (Views: 91.6ms | ActiveRecord: 1.8ms)
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 17:00:49 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[35mInvestor Load (0.6ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC[0m
- [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC
- [1m[36mEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1)[0m
- [1m[35mUser Load (1.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered investors/show.html.erb within layouts/application (112.6ms)
-Completed 200 OK in 216ms (Views: 115.8ms | ActiveRecord: 2.7ms)
-
-
-Started GET "/investors/1/tasks/new" for 127.0.0.1 at 2011-06-11 17:00:51 -0600
- Processing by TasksController#new as HTML
- Parameters: {"investor_id"=>"1"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.2ms)[0m SELECT "events".* FROM "events" WHERE (investor_id = 1)
- [1m[36mUser Load (3.6ms)[0m [1mSELECT "users".* FROM "users"[0m
-Rendered tasks/_form.html.erb (125.6ms)
- [1m[35mUser Load (1.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered tasks/new.html.erb within layouts/application (181.2ms)
-Completed 200 OK in 278ms (Views: 181.0ms | ActiveRecord: 5.8ms)
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 17:00:53 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC
- [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m
- [1m[35mEvent Load (0.2ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1)
- [1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered investors/show.html.erb within layouts/application (107.1ms)
-Completed 200 OK in 217ms (Views: 110.8ms | ActiveRecord: 2.6ms)
-
-
-Started GET "/investors/1/tasks/new" for 127.0.0.1 at 2011-06-11 17:00:56 -0600
- Processing by TasksController#new as HTML
- Parameters: {"investor_id"=>"1"}
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE (investor_id = 1)[0m
- [1m[35mUser Load (3.6ms)[0m SELECT "users".* FROM "users"
-Rendered tasks/_form.html.erb (145.8ms)
- [1m[36mUser Load (1.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered tasks/new.html.erb within layouts/application (203.2ms)
-Completed 200 OK in 305ms (Views: 202.8ms | ActiveRecord: 5.9ms)
-
-
-Started POST "/investors/1/tasks" for 127.0.0.1 at 2011-06-11 17:00:59 -0600
- Processing by TasksController#create as HTML
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tk3rgZvd2ARWUw9cR4MeZe2A80pHLur2ejv3itDmhwg=", "task"=>{"name"=>"Test", "description"=>"", "due_date(1i)"=>"2011", "due_date(2i)"=>"6", "due_date(3i)"=>"11", "completed"=>"0", "completed_date(1i)"=>"", "completed_date(2i)"=>"", "completed_date(3i)"=>"", "event_id"=>"", "assignee"=>""}, "commit"=>"Create Task", "investor_id"=>"1"}
- [1m[35mInvestor Load (0.6ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
-Completed in 122ms
-
-ActiveRecord::AssociationTypeMismatch (User(#2174413360) expected, got String(#2151988680)):
- app/controllers/tasks_controller.rb:16:in `create'
-
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (5.4ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (52.8ms)
-
-
-Started GET "/investors/1/tasks/new" for 127.0.0.1 at 2011-06-11 17:01:00 -0600
- Processing by TasksController#new as HTML
- Parameters: {"investor_id"=>"1"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.2ms)[0m SELECT "events".* FROM "events" WHERE (investor_id = 1)
- [1m[36mUser Load (3.6ms)[0m [1mSELECT "users".* FROM "users"[0m
-Rendered tasks/_form.html.erb (129.1ms)
- [1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered tasks/new.html.erb within layouts/application (181.8ms)
-Completed 200 OK in 288ms (Views: 181.5ms | ActiveRecord: 6.3ms)
-
-
-Started GET "/investors" for 127.0.0.1 at 2011-06-11 17:02:55 -0600
- Processing by InvestorsController#index as HTML
- [1m[36mInvestor Load (1.3ms)[0m [1mSELECT "investors".* FROM "investors"[0m
- [1m[35mSQL (0.3ms)[0m SELECT name
- FROM sqlite_master
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
- [1m[36mUser Load (1.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered investors/index.html.erb within layouts/application (127.3ms)
-Completed 200 OK in 194ms (Views: 130.8ms | ActiveRecord: 3.0ms)
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 17:02:57 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[35mInvestor Load (0.6ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC[0m
- [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC
- [1m[36mEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1)[0m
- [1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered investors/show.html.erb within layouts/application (106.9ms)
-Completed 200 OK in 226ms (Views: 110.7ms | ActiveRecord: 2.6ms)
-
-
-Started GET "/investors/1/tasks/new" for 127.0.0.1 at 2011-06-11 17:03:00 -0600
- Processing by TasksController#new as HTML
- Parameters: {"investor_id"=>"1"}
- [1m[36mInvestor Load (0.6ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE (investor_id = 1)
- [1m[36mUser Load (3.6ms)[0m [1mSELECT "users".* FROM "users"[0m
-Rendered tasks/_form.html.erb (130.8ms)
- [1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered tasks/new.html.erb within layouts/application (180.6ms)
-Completed 200 OK in 276ms (Views: 180.2ms | ActiveRecord: 5.8ms)
-
-
-Started POST "/investors/1/tasks" for 127.0.0.1 at 2011-06-11 17:03:43 -0600
- Processing by TasksController#create as HTML
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tk3rgZvd2ARWUw9cR4MeZe2A80pHLur2ejv3itDmhwg=", "task"=>{"name"=>"Call Justin", "description"=>"Can't get this to work.", "due_date(1i)"=>"2011", "due_date(2i)"=>"6", "due_date(3i)"=>"11", "completed"=>"0", "completed_date(1i)"=>"", "completed_date(2i)"=>"", "completed_date(3i)"=>"", "event_id"=>"1", "assignee"=>"1"}, "commit"=>"Create Task", "investor_id"=>"1"}
- [1m[36mInvestor Load (0.6ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
-Completed in 113ms
-
-ActiveRecord::AssociationTypeMismatch (User(#2171106520) expected, got String(#2151988680)):
- app/controllers/tasks_controller.rb:16:in `create'
-
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (43.4ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (51.0ms)
-
-
-Started GET "/" for 127.0.0.1 at 2011-06-11 17:33:11 -0600
- Processing by PagesController#index as HTML
- [1m[36mSQL (0.8ms)[0m [1m SELECT name
- FROM sqlite_master
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
-[0m
- [1m[35mUser Load (2.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered pages/index.html.erb within layouts/pages (142.7ms)
-Completed 200 OK in 148ms (Views: 144.6ms | ActiveRecord: 2.8ms)
-
-
-Started GET "/investors" for 127.0.0.1 at 2011-06-11 17:33:38 -0600
- Processing by InvestorsController#index as HTML
- [1m[36mInvestor Load (1.1ms)[0m [1mSELECT "investors".* FROM "investors"[0m
- [1m[35mUser Load (1.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered investors/index.html.erb within layouts/application (105.8ms)
-Completed 200 OK in 160ms (Views: 109.5ms | ActiveRecord: 2.4ms)
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 17:33:40 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC
- [1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m
- [1m[35mEvent Load (0.2ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1)
- [1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered investors/show.html.erb within layouts/application (145.6ms)
-Completed 200 OK in 266ms (Views: 149.0ms | ActiveRecord: 2.6ms)
-
-
-Started GET "/investors/1/events/new" for 127.0.0.1 at 2011-06-11 17:33:41 -0600
- Processing by EventsController#new as HTML
- Parameters: {"investor_id"=>"1"}
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mUser Load (2.4ms)[0m [1mSELECT "users".* FROM "users" WHERE (investor_id = 1)[0m
-Rendered events/_form.html.erb (74.8ms)
- [1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered events/new.html.erb within layouts/application (89.1ms)
-Completed 200 OK in 203ms (Views: 90.6ms | ActiveRecord: 4.3ms)
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 17:33:43 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC
- [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m
- [1m[35mEvent Load (0.2ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1)
- [1m[36mUser Load (1.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered investors/show.html.erb within layouts/application (104.6ms)
-Completed 200 OK in 203ms (Views: 107.9ms | ActiveRecord: 2.8ms)
-
-
-Started GET "/investors/1/tasks/new" for 127.0.0.1 at 2011-06-11 17:33:46 -0600
- Processing by TasksController#new as HTML
- Parameters: {"investor_id"=>"1"}
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE (investor_id = 1)[0m
- [1m[35mUser Load (42.2ms)[0m SELECT "users".* FROM "users"
-Rendered tasks/_form.html.erb (161.7ms)
- [1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered tasks/new.html.erb within layouts/application (175.8ms)
-Completed 200 OK in 274ms (Views: 137.3ms | ActiveRecord: 44.4ms)
-
-
-Started POST "/investors/1/tasks" for 127.0.0.1 at 2011-06-11 17:34:10 -0600
- Processing by TasksController#create as HTML
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tk3rgZvd2ARWUw9cR4MeZe2A80pHLur2ejv3itDmhwg=", "task"=>{"name"=>"Coffee w/Tim", "description"=>"Make sure to take Tim out for coffee as soon as he gets back into town.", "due_date(1i)"=>"2011", "due_date(2i)"=>"6", "due_date(3i)"=>"12", "completed"=>"0", "completed_date(1i)"=>"", "completed_date(2i)"=>"", "completed_date(3i)"=>"", "event_id"=>"1", "assignee"=>"1"}, "commit"=>"Create Task", "investor_id"=>"1"}
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mUser Load (1.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Completed in 174ms
-
-ActiveRecord::AssociationTypeMismatch (User(#2171643320) expected, got String(#2151988680)):
- app/controllers/tasks_controller.rb:16:in `create'
-
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (6.2ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.0ms)
-
-
-Started GET "/investors" for 127.0.0.1 at 2011-06-11 17:37:32 -0600
- Processing by InvestorsController#index as HTML
- [1m[35mInvestor Load (1.1ms)[0m SELECT "investors".* FROM "investors"
- [1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered investors/index.html.erb within layouts/application (141.3ms)
-Completed 200 OK in 160ms (Views: 144.8ms | ActiveRecord: 2.3ms)
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 17:37:34 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC[0m
- [1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC
- [1m[36mEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1)[0m
- [1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered investors/show.html.erb within layouts/application (106.6ms)
-Completed 200 OK in 209ms (Views: 110.5ms | ActiveRecord: 2.7ms)
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 17:39:00 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[36mInvestor Load (0.6ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC
- [1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m
- [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1)
- [1m[36mUser Load (1.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered investors/show.html.erb within layouts/application (109.5ms)
-Completed 200 OK in 210ms (Views: 112.9ms | ActiveRecord: 2.8ms)
-
-
-Started GET "/investors/1/tasks/new" for 127.0.0.1 at 2011-06-11 17:39:03 -0600
- Processing by TasksController#new as HTML
- Parameters: {"investor_id"=>"1"}
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE (investor_id = 1)[0m
- [1m[35mUser Load (3.5ms)[0m SELECT "users".* FROM "users"
-Rendered tasks/_form.html.erb (168.2ms)
- [1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered tasks/new.html.erb within layouts/application (182.2ms)
-Completed 200 OK in 278ms (Views: 181.9ms | ActiveRecord: 5.7ms)
-
-
-Started POST "/investors/1/tasks" for 127.0.0.1 at 2011-06-11 17:39:06 -0600
- Processing by TasksController#create as HTML
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tk3rgZvd2ARWUw9cR4MeZe2A80pHLur2ejv3itDmhwg=", "task"=>{"name"=>"Friend", "description"=>"", "due_date(1i)"=>"2011", "due_date(2i)"=>"6", "due_date(3i)"=>"11", "completed"=>"0", "completed_date(1i)"=>"", "completed_date(2i)"=>"", "completed_date(3i)"=>"", "event_id"=>"", "assignee"=>""}, "commit"=>"Create Task", "investor_id"=>"1"}
- [1m[35mInvestor Load (0.6ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mUser Load (1.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Completed in 220ms
-
-ActiveRecord::AssociationTypeMismatch (User(#2170702040) expected, got String(#2151988680)):
- app/controllers/tasks_controller.rb:16:in `create'
-
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (5.6ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.6ms)
-
-
-Started GET "/investors/1/tasks/new" for 127.0.0.1 at 2011-06-11 17:39:13 -0600
- Processing by TasksController#new as HTML
- Parameters: {"investor_id"=>"1"}
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE (investor_id = 1)[0m
- [1m[35mUser Load (3.5ms)[0m SELECT "users".* FROM "users"
-Rendered tasks/_form.html.erb (164.2ms)
- [1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered tasks/new.html.erb within layouts/application (178.4ms)
-Completed 200 OK in 280ms (Views: 178.5ms | ActiveRecord: 7.2ms)
-
-
-Started GET "/investors/1/tasks/new" for 127.0.0.1 at 2011-06-11 17:39:40 -0600
- Processing by TasksController#new as HTML
- Parameters: {"investor_id"=>"1"}
- [1m[35mInvestor Load (0.8ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
-Rendered tasks/_form.html.erb (3.9ms)
- [1m[36mUser Load (1.5ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered tasks/new.html.erb within layouts/application (132.1ms)
-Completed 200 OK in 233ms (Views: 136.0ms | ActiveRecord: 2.2ms)
-
-
-Started POST "/investors/1/tasks" for 127.0.0.1 at 2011-06-11 17:39:44 -0600
- Processing by TasksController#create as HTML
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tk3rgZvd2ARWUw9cR4MeZe2A80pHLur2ejv3itDmhwg=", "task"=>{"name"=>"Here", "description"=>""}, "commit"=>"Create Task", "investor_id"=>"1"}
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mUser Load (1.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
- [1m[35mAREL (0.5ms)[0m INSERT INTO "tasks" ("name", "description", "due_date", "task_owner", "completed", "completed_date", "event_id", "investor_id", "user_id", "created_at", "updated_at") VALUES ('Here', '', NULL, NULL, NULL, NULL, NULL, 1, 3, '2011-06-11 23:39:44.381041', '2011-06-11 23:39:44.381041')
-Redirected to http://localhost:3000/investors/1
-Completed 302 Found in 190ms
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 17:39:44 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC
- [1m[36mTask Load (0.8ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m
- [1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
- [1m[36mCACHE (0.0ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.2ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1)
- [1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered investors/show.html.erb within layouts/application (160.1ms)
-Completed 200 OK in 262ms (Views: 163.2ms | ActiveRecord: 5.4ms)
-
-
-Started GET "/investors/1/tasks/2/edit" for 127.0.0.1 at 2011-06-11 17:39:55 -0600
- Processing by TasksController#edit as HTML
- Parameters: {"investor_id"=>"1", "id"=>"2"}
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mTask Load (0.9ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 2 AND ("tasks".investor_id = 1) LIMIT 1[0m
-Rendered tasks/_form.html.erb (16.6ms)
- [1m[35mUser Load (1.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered tasks/edit.html.erb within layouts/application (106.2ms)
-Completed 200 OK in 203ms (Views: 110.1ms | ActiveRecord: 2.9ms)
-
-
-Started POST "/investors/1/tasks/2" for 127.0.0.1 at 2011-06-11 17:39:58 -0600
- Processing by TasksController#update as HTML
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tk3rgZvd2ARWUw9cR4MeZe2A80pHLur2ejv3itDmhwg=", "task"=>{"name"=>"Here cool", "description"=>""}, "commit"=>"Update Task", "investor_id"=>"1", "id"=>"2"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mTask Load (0.8ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 2 AND ("tasks".investor_id = 1) LIMIT 1
-Completed in 88ms
-
-NoMethodError (undefined method `update_attributes' for nil:NilClass):
- app/controllers/tasks_controller.rb:34:in `update'
-
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (53.9ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (60.5ms)
-
-
-Started POST "/investors/1/tasks/2" for 127.0.0.1 at 2011-06-11 17:40:26 -0600
- Processing by TasksController#update as HTML
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tk3rgZvd2ARWUw9cR4MeZe2A80pHLur2ejv3itDmhwg=", "task"=>{"name"=>"Here cool", "description"=>""}, "commit"=>"Update Task", "investor_id"=>"1", "id"=>"2"}
- [1m[36mInvestor Load (0.6ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mTask Load (0.8ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 2 AND ("tasks".investor_id = 1) LIMIT 1
- [1m[36mAREL (0.4ms)[0m [1mUPDATE "tasks" SET "name" = 'Here cool', "updated_at" = '2011-06-11 23:40:27.020374' WHERE "tasks"."id" = 2[0m
-Redirected to http://localhost:3000/investors/1
-Completed 302 Found in 131ms
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 17:40:27 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC[0m
- [1m[35mTask Load (0.8ms)[0m SELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC
- [1m[36mUser Load (1.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
- [1m[35mCACHE (0.0ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1)[0m
- [1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered investors/show.html.erb within layouts/application (165.8ms)
-Completed 200 OK in 269ms (Views: 168.9ms | ActiveRecord: 5.1ms)
-
-
-Started GET "/investors/1/tasks/2/edit" for 127.0.0.1 at 2011-06-11 17:40:32 -0600
- Processing by TasksController#edit as HTML
- Parameters: {"investor_id"=>"1", "id"=>"2"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mTask Load (1.0ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 2 AND ("tasks".investor_id = 1) LIMIT 1
-Rendered tasks/_form.html.erb (16.7ms)
- [1m[36mUser Load (1.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered tasks/edit.html.erb within layouts/application (115.3ms)
-Completed 200 OK in 207ms (Views: 118.8ms | ActiveRecord: 3.0ms)
-
-
-Started POST "/investors/1/tasks/2" for 127.0.0.1 at 2011-06-11 17:40:35 -0600
- Processing by TasksController#update as HTML
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tk3rgZvd2ARWUw9cR4MeZe2A80pHLur2ejv3itDmhwg=", "task"=>{"name"=>"Here cool change me", "description"=>""}, "commit"=>"Update Task", "investor_id"=>"1", "id"=>"2"}
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mTask Load (0.8ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 2 AND ("tasks".investor_id = 1) LIMIT 1[0m
- [1m[35mAREL (0.4ms)[0m UPDATE "tasks" SET "name" = 'Here cool change me', "updated_at" = '2011-06-11 23:40:35.317326' WHERE "tasks"."id" = 2
-Redirected to http://localhost:3000/investors/1
-Completed 302 Found in 143ms
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 17:40:35 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC
- [1m[36mTask Load (0.8ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m
- [1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
- [1m[36mCACHE (0.0ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.2ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1)
- [1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered investors/show.html.erb within layouts/application (161.1ms)
-Completed 200 OK in 265ms (Views: 164.3ms | ActiveRecord: 5.2ms)
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 17:40:51 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC[0m
- [1m[35mTask Load (0.8ms)[0m SELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC
- [1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
- [1m[35mCACHE (0.0ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1)[0m
- [1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered investors/show.html.erb within layouts/application (162.6ms)
-Completed 200 OK in 265ms (Views: 165.8ms | ActiveRecord: 3.2ms)
-
-
-Started GET "/investors/1/tasks/2/edit" for 127.0.0.1 at 2011-06-11 17:40:54 -0600
- Processing by TasksController#edit as HTML
- Parameters: {"investor_id"=>"1", "id"=>"2"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mTask Load (0.8ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 2 AND ("tasks".investor_id = 1) LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE (investor_id = 1)[0m
-Rendered tasks/_form.html.erb (85.7ms)
- [1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered tasks/edit.html.erb within layouts/application (176.0ms)
-Completed 200 OK in 271ms (Views: 179.2ms | ActiveRecord: 3.0ms)
-
-
-Started POST "/investors/1/tasks/2" for 127.0.0.1 at 2011-06-11 17:40:57 -0600
- Processing by TasksController#update as HTML
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tk3rgZvd2ARWUw9cR4MeZe2A80pHLur2ejv3itDmhwg=", "task"=>{"name"=>"Here cool change me", "description"=>"", "due_date(1i)"=>"2011", "due_date(2i)"=>"6", "due_date(3i)"=>"11", "completed"=>"0", "completed_date(1i)"=>"", "completed_date(2i)"=>"", "completed_date(3i)"=>"", "event_id"=>"1"}, "commit"=>"Update Task", "investor_id"=>"1", "id"=>"2"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mTask Load (0.8ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 2 AND ("tasks".investor_id = 1) LIMIT 1
- [1m[36mAREL (0.4ms)[0m [1mUPDATE "tasks" SET "completed" = 'f', "event_id" = 1, "due_date" = '2011-06-11', "updated_at" = '2011-06-11 23:40:58.147764' WHERE "tasks"."id" = 2[0m
-Redirected to http://localhost:3000/investors/1
-Completed 302 Found in 144ms
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 17:40:58 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC[0m
- [1m[35mTask Load (0.6ms)[0m SELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC
- [1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
- [1m[35mCACHE (0.0ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1)[0m
- [1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered investors/show.html.erb within layouts/application (159.7ms)
-Completed 200 OK in 261ms (Views: 163.1ms | ActiveRecord: 4.9ms)
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 17:43:13 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[36mInvestor Load (0.6ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC
- [1m[36mTask Load (0.5ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m
- [1m[35mUser Load (1.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
- [1m[36mCACHE (0.0ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.2ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1)
- [1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered investors/show.html.erb within layouts/application (166.0ms)
-Completed 200 OK in 270ms (Views: 169.2ms | ActiveRecord: 3.0ms)
-
-
-Started GET "/investors/1/tasks/2/edit" for 127.0.0.1 at 2011-06-11 17:43:14 -0600
- Processing by TasksController#edit as HTML
- Parameters: {"investor_id"=>"1", "id"=>"2"}
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mTask Load (0.5ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 2 AND ("tasks".investor_id = 1) LIMIT 1[0m
- [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE (investor_id = 1)
- [1m[36mUser Load (3.8ms)[0m [1mSELECT "users".* FROM "users"[0m
-Rendered tasks/_form.html.erb (180.7ms)
- [1m[35mUser Load (1.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered tasks/edit.html.erb within layouts/application (237.1ms)
-Completed 200 OK in 336ms (Views: 236.3ms | ActiveRecord: 6.6ms)
-
-
-Started POST "/investors/1/tasks/2" for 127.0.0.1 at 2011-06-11 17:43:20 -0600
- Processing by TasksController#update as HTML
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tk3rgZvd2ARWUw9cR4MeZe2A80pHLur2ejv3itDmhwg=", "task"=>{"name"=>"Here cool change me", "description"=>"", "due_date(1i)"=>"2011", "due_date(2i)"=>"6", "due_date(3i)"=>"11", "completed"=>"0", "completed_date(1i)"=>"", "completed_date(2i)"=>"", "completed_date(3i)"=>"", "event_id"=>"1", "assignee"=>"2"}, "commit"=>"Update Task", "investor_id"=>"1", "id"=>"2"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mTask Load (0.5ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 2 AND ("tasks".investor_id = 1) LIMIT 1
-Completed in 120ms
-
-ActiveRecord::AssociationTypeMismatch (User(#2170963020) expected, got String(#2151988680)):
- app/controllers/tasks_controller.rb:34:in `update'
-
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (5.7ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (52.7ms)
-
-
-Started POST "/investors/1/tasks/2" for 127.0.0.1 at 2011-06-11 17:44:29 -0600
- Processing by TasksController#update as HTML
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tk3rgZvd2ARWUw9cR4MeZe2A80pHLur2ejv3itDmhwg=", "task"=>{"name"=>"Here cool change me", "description"=>"", "due_date(1i)"=>"2011", "due_date(2i)"=>"6", "due_date(3i)"=>"11", "completed"=>"0", "completed_date(1i)"=>"", "completed_date(2i)"=>"", "completed_date(3i)"=>"", "event_id"=>"1", "assignee"=>"2"}, "commit"=>"Update Task", "investor_id"=>"1", "id"=>"2"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mTask Load (0.5ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 2 AND ("tasks".investor_id = 1) LIMIT 1
-Completed in 119ms
-
-ActiveRecord::AssociationTypeMismatch (User(#2171050360) expected, got String(#2151988680)):
- app/controllers/tasks_controller.rb:34:in `update'
-
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (5.7ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.4ms)
-
-
-Started POST "/investors/1/tasks/2" for 127.0.0.1 at 2011-06-11 17:44:35 -0600
- Processing by TasksController#update as HTML
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tk3rgZvd2ARWUw9cR4MeZe2A80pHLur2ejv3itDmhwg=", "task"=>{"name"=>"Here cool change me", "description"=>"", "due_date(1i)"=>"2011", "due_date(2i)"=>"6", "due_date(3i)"=>"11", "completed"=>"0", "completed_date(1i)"=>"", "completed_date(2i)"=>"", "completed_date(3i)"=>"", "event_id"=>"1", "assignee"=>"2"}, "commit"=>"Update Task", "investor_id"=>"1", "id"=>"2"}
- [1m[36mInvestor Load (0.6ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mTask Load (0.5ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 2 AND ("tasks".investor_id = 1) LIMIT 1
-Completed in 118ms
-
-ActiveRecord::AssociationTypeMismatch (User(#2171101900) expected, got String(#2151988680)):
- app/controllers/tasks_controller.rb:34:in `update'
-
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (5.7ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.3ms)
-
-
-Started POST "/investors/1/tasks/2" for 127.0.0.1 at 2011-06-11 17:44:40 -0600
- Processing by TasksController#update as HTML
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tk3rgZvd2ARWUw9cR4MeZe2A80pHLur2ejv3itDmhwg=", "task"=>{"name"=>"Here cool change me", "description"=>"", "due_date(1i)"=>"2011", "due_date(2i)"=>"6", "due_date(3i)"=>"11", "completed"=>"0", "completed_date(1i)"=>"", "completed_date(2i)"=>"", "completed_date(3i)"=>"", "event_id"=>"1", "assignee"=>"2"}, "commit"=>"Update Task", "investor_id"=>"1", "id"=>"2"}
- [1m[36mInvestor Load (0.6ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mTask Load (0.5ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 2 AND ("tasks".investor_id = 1) LIMIT 1
-Completed in 118ms
-
-ActiveRecord::AssociationTypeMismatch (User(#2171155680) expected, got String(#2151988680)):
- app/controllers/tasks_controller.rb:34:in `update'
-
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (5.7ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.3ms)
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 17:46:45 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC
- [1m[36mTask Load (0.5ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m
- [1m[35mUser Load (1.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
- [1m[36mCACHE (0.0ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.2ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1)
- [1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered investors/show.html.erb within layouts/application (123.2ms)
-Completed 200 OK in 222ms (Views: 126.3ms | ActiveRecord: 3.1ms)
-
-
-Started GET "/investors/1/tasks/2/edit" for 127.0.0.1 at 2011-06-11 17:46:48 -0600
- Processing by TasksController#edit as HTML
- Parameters: {"investor_id"=>"1", "id"=>"2"}
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mTask Load (0.5ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 2 AND ("tasks".investor_id = 1) LIMIT 1[0m
- [1m[35mEvent Load (0.2ms)[0m SELECT "events".* FROM "events" WHERE (investor_id = 1)
- [1m[36mUser Load (4.3ms)[0m [1mSELECT "users".* FROM "users"[0m
-Rendered tasks/_form.html.erb (188.6ms)
- [1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered tasks/edit.html.erb within layouts/application (203.2ms)
-Completed 200 OK in 294ms (Views: 202.0ms | ActiveRecord: 7.0ms)
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 17:46:49 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC
- [1m[36mTask Load (0.5ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m
- [1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
- [1m[36mCACHE (0.0ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.2ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1)
- [1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered investors/show.html.erb within layouts/application (166.3ms)
-Completed 200 OK in 275ms (Views: 169.4ms | ActiveRecord: 3.0ms)
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 17:47:09 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC[0m
- [1m[35mTask Load (0.6ms)[0m SELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC
- [1m[36mUser Load (1.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
- [1m[35mCACHE (0.0ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1)[0m
- [1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered investors/show.html.erb within layouts/application (181.5ms)
-Completed 200 OK in 296ms (Views: 184.8ms | ActiveRecord: 3.2ms)
-
-
-Started GET "/investors/1/tasks/2/edit" for 127.0.0.1 at 2011-06-11 17:47:11 -0600
- Processing by TasksController#edit as HTML
- Parameters: {"investor_id"=>"1", "id"=>"2"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mTask Load (0.5ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 2 AND ("tasks".investor_id = 1) LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE (investor_id = 1)[0m
-Rendered tasks/_form.html.erb (90.7ms)
- [1m[35mUser Load (1.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered tasks/edit.html.erb within layouts/application (207.3ms)
-Completed 200 OK in 301ms (Views: 210.2ms | ActiveRecord: 3.0ms)
-
-
-Started POST "/investors/1/tasks/2" for 127.0.0.1 at 2011-06-11 17:47:24 -0600
- Processing by TasksController#update as HTML
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tk3rgZvd2ARWUw9cR4MeZe2A80pHLur2ejv3itDmhwg=", "task"=>{"name"=>"Call Tom", "description"=>"", "due_date(1i)"=>"2011", "due_date(2i)"=>"6", "due_date(3i)"=>"13", "completed"=>"0", "completed_date(1i)"=>"", "completed_date(2i)"=>"", "completed_date(3i)"=>"", "event_id"=>"1"}, "commit"=>"Update Task", "investor_id"=>"1", "id"=>"2"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mTask Load (0.5ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 2 AND ("tasks".investor_id = 1) LIMIT 1
- [1m[36mAREL (0.4ms)[0m [1mUPDATE "tasks" SET "name" = 'Call Tom', "due_date" = '2011-06-13', "updated_at" = '2011-06-11 23:47:24.508464' WHERE "tasks"."id" = 2[0m
-Redirected to http://localhost:3000/investors/1
-Completed 302 Found in 102ms
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 17:47:24 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC[0m
- [1m[35mTask Load (0.5ms)[0m SELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC
- [1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
- [1m[35mCACHE (0.0ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1)[0m
- [1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered investors/show.html.erb within layouts/application (161.7ms)
-Completed 200 OK in 264ms (Views: 164.8ms | ActiveRecord: 4.5ms)
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 17:47:44 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC
- [1m[36mTask Load (0.5ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m
- [1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
- [1m[36mCACHE (0.0ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.2ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1)
- [1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered investors/show.html.erb within layouts/application (166.2ms)
-Completed 200 OK in 274ms (Views: 169.5ms | ActiveRecord: 3.1ms)
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 17:48:08 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC[0m
- [1m[35mTask Load (0.5ms)[0m SELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC
- [1m[36mCACHE (0.0ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1)[0m
- [1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered investors/show.html.erb within layouts/application (170.0ms)
-Completed 200 OK in 272ms (Views: 173.1ms | ActiveRecord: 3.1ms)
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 17:49:39 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC
- [1m[36mTask Load (0.6ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m
- [1m[35mCACHE (0.0ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mUser Load (1.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
- [1m[35mEvent Load (0.2ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1)
- [1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered investors/show.html.erb within layouts/application (130.6ms)
-Completed 200 OK in 231ms (Views: 133.7ms | ActiveRecord: 3.2ms)
-
-
-Started GET "/investors/1/tasks/2/edit" for 127.0.0.1 at 2011-06-11 17:49:41 -0600
- Processing by TasksController#edit as HTML
- Parameters: {"investor_id"=>"1", "id"=>"2"}
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mTask Load (0.5ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 2 AND ("tasks".investor_id = 1) LIMIT 1[0m
- [1m[35mEvent Load (0.2ms)[0m SELECT "events".* FROM "events" WHERE (investor_id = 1)
- [1m[36mUser Load (3.5ms)[0m [1mSELECT "users".* FROM "users"[0m
-Rendered tasks/_form.html.erb (176.4ms)
- [1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered tasks/edit.html.erb within layouts/application (190.3ms)
-Completed 200 OK in 283ms (Views: 190.4ms | ActiveRecord: 6.1ms)
-
-
-Started POST "/investors/1/tasks/2" for 127.0.0.1 at 2011-06-11 17:49:44 -0600
- Processing by TasksController#update as HTML
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tk3rgZvd2ARWUw9cR4MeZe2A80pHLur2ejv3itDmhwg=", "task"=>{"name"=>"Call Tom", "description"=>"", "due_date(1i)"=>"2011", "due_date(2i)"=>"6", "due_date(3i)"=>"13", "completed"=>"0", "completed_date(1i)"=>"", "completed_date(2i)"=>"", "completed_date(3i)"=>"", "event_id"=>"1", "assignee"=>"2"}, "commit"=>"Update Task", "investor_id"=>"1", "id"=>"2"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mTask Load (0.5ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 2 AND ("tasks".investor_id = 1) LIMIT 1
-Completed in 157ms
-
-ActiveRecord::AssociationTypeMismatch (User(#2171574980) expected, got String(#2151988680)):
- app/controllers/tasks_controller.rb:34:in `update'
-
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (6.3ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.8ms)
-
-
-Started GET "/investors/1/tasks/2/edit" for 127.0.0.1 at 2011-06-11 17:49:46 -0600
- Processing by TasksController#edit as HTML
- Parameters: {"investor_id"=>"1", "id"=>"2"}
- [1m[36mInvestor Load (0.8ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mTask Load (0.5ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 2 AND ("tasks".investor_id = 1) LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE (investor_id = 1)[0m
- [1m[35mUser Load (3.7ms)[0m SELECT "users".* FROM "users"
-Rendered tasks/_form.html.erb (177.2ms)
- [1m[36mUser Load (1.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered tasks/edit.html.erb within layouts/application (228.8ms)
-Completed 200 OK in 326ms (Views: 228.2ms | ActiveRecord: 7.7ms)
-
-
-Started GET "/investors/1/" for 127.0.0.1 at 2011-06-11 17:49:54 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[35mInvestor Load (0.6ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC[0m
- [1m[35mTask Load (0.6ms)[0m SELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC
- [1m[36mCACHE (0.0ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1)[0m
- [1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered investors/show.html.erb within layouts/application (165.2ms)
-Completed 200 OK in 268ms (Views: 168.5ms | ActiveRecord: 3.0ms)
-
-
-Started GET "/investors/1/" for 127.0.0.1 at 2011-06-11 19:57:38 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[36mSQL (0.8ms)[0m [1m SELECT name
- FROM sqlite_master
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
-[0m
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC[0m
- [1m[35mTask Load (0.6ms)[0m SELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC
- [1m[36mCACHE (0.0ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1)[0m
- [1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered investors/show.html.erb within layouts/application (144.3ms)
-Completed 200 OK in 314ms (Views: 148.2ms | ActiveRecord: 3.9ms)
-
-
-Started GET "/investors/1/" for 127.0.0.1 at 2011-06-11 19:57:40 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[36mInvestor Load (0.6ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC
- [1m[36mTask Load (0.5ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m
- [1m[35mCACHE (0.0ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
- [1m[35mEvent Load (0.2ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1)
- [1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered investors/show.html.erb within layouts/application (161.8ms)
-Completed 200 OK in 260ms (Views: 164.9ms | ActiveRecord: 2.9ms)
-
-
-Started GET "/investors/1/" for 127.0.0.1 at 2011-06-11 20:00:44 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC[0m
- [1m[35mTask Load (0.5ms)[0m SELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC
- [1m[36mCACHE (0.0ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mUser Load (1.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1)[0m
- [1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered investors/show.html.erb within layouts/application (160.2ms)
-Completed 200 OK in 260ms (Views: 163.2ms | ActiveRecord: 3.1ms)
-
-
-Started GET "/investors/1/" for 127.0.0.1 at 2011-06-11 20:02:00 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC
- [1m[36mTask Load (0.5ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m
- [1m[35mCACHE (0.0ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
- [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1)
- [1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered investors/show.html.erb within layouts/application (159.3ms)
-Completed 200 OK in 259ms (Views: 162.5ms | ActiveRecord: 3.0ms)
-
-
-Started GET "/investors/1/tasks/2/edit" for 127.0.0.1 at 2011-06-11 20:02:09 -0600
- Processing by TasksController#edit as HTML
- Parameters: {"investor_id"=>"1", "id"=>"2"}
- [1m[35mInvestor Load (0.7ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mTask Load (0.5ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 2 AND ("tasks".investor_id = 1) LIMIT 1[0m
- [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE (investor_id = 1)
- [1m[36mUser Load (3.5ms)[0m [1mSELECT "users".* FROM "users"[0m
-Rendered tasks/_form.html.erb (213.1ms)
- [1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered tasks/edit.html.erb within layouts/application (227.6ms)
-Completed 200 OK in 320ms (Views: 227.3ms | ActiveRecord: 6.1ms)
-
-
-Started POST "/investors/1/tasks/2" for 127.0.0.1 at 2011-06-11 20:02:13 -0600
- Processing by TasksController#update as HTML
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tk3rgZvd2ARWUw9cR4MeZe2A80pHLur2ejv3itDmhwg=", "task"=>{"name"=>"Call Tom", "description"=>"", "due_date(1i)"=>"2011", "due_date(2i)"=>"6", "due_date(3i)"=>"13", "completed"=>"0", "completed_date(1i)"=>"", "completed_date(2i)"=>"", "completed_date(3i)"=>"", "event_id"=>"1", "assignee"=>"1"}, "commit"=>"Update Task", "investor_id"=>"1", "id"=>"2"}
- [1m[36mInvestor Load (0.6ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mTask Load (0.5ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 2 AND ("tasks".investor_id = 1) LIMIT 1
-Completed in 157ms
-
-ActiveRecord::AssociationTypeMismatch (User(#2181695640) expected, got String(#2151988680)):
- app/controllers/tasks_controller.rb:34:in `update'
-
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (6.1ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.8ms)
-
-
-Started GET "/investors/1/tasks/2/edit" for 127.0.0.1 at 2011-06-11 20:02:19 -0600
- Processing by TasksController#edit as HTML
- Parameters: {"investor_id"=>"1", "id"=>"2"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mTask Load (0.5ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 2 AND ("tasks".investor_id = 1) LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE (investor_id = 1)[0m
- [1m[35mUser Load (43.8ms)[0m SELECT "users".* FROM "users"
-Rendered tasks/_form.html.erb (177.1ms)
- [1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered tasks/edit.html.erb within layouts/application (191.1ms)
-Completed 200 OK in 284ms (Views: 150.6ms | ActiveRecord: 47.6ms)
-
-
-Started GET "/investors/1/" for 127.0.0.1 at 2011-06-11 20:02:28 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[35mInvestor Load (0.6ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.6ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC[0m
- [1m[35mTask Load (0.6ms)[0m SELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC
- [1m[36mCACHE (0.0ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mUser Load (1.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1)[0m
- [1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
-Rendered investors/show.html.erb within layouts/application (124.7ms)
-Completed 200 OK in 225ms (Views: 129.8ms | ActiveRecord: 3.4ms)
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 20:02:28 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[36mInvestor Load (0.6ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC
- [1m[36mTask Load (1.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m
- [1m[35mCACHE (0.0ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mUser Load (1.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
- [1m[35mEvent Load (0.2ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1)
- [1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered investors/show.html.erb within layouts/application (131.4ms)
-Completed 200 OK in 230ms (Views: 135.1ms | ActiveRecord: 3.6ms)
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 20:05:59 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[35mInvestor Load (0.6ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC[0m
- [1m[35mTask Load (0.5ms)[0m SELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC
-Rendered investors/show.html.erb within layouts/application (73.4ms)
-Completed in 132ms
-
-ActionView::Template::Error (undefined method `investor' for #<%= task.completed? ? 'Yes' : 'No' %>
- 78: <%= task.completed_date %>
- 79: <%= task.event_id %>
- 80: <%= task.investor.name %>
- 81: <%= task.user.first_name %>
- 82: <%= task.assignee %>
- 83: <%= link_to 'Edit', edit_investor_task_path(@investor, task) %>
- app/views/investors/show.html.erb:80:in `block in _app_views_investors_show_html_erb__3100654320117784538_2181413700_2796495548359215761'
- app/views/investors/show.html.erb:72:in `each'
- app/views/investors/show.html.erb:72:in `_app_views_investors_show_html_erb__3100654320117784538_2181413700_2796495548359215761'
-
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (14.1ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (21.0ms)
-
-
-Started GET "/investors/1" for 127.0.0.1 at 2011-06-11 20:08:25 -0600
- Processing by InvestorsController#show as HTML
- Parameters: {"id"=>"1"}
- [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1[0m
- [1m[35mEvent Load (0.3ms)[0m SELECT "events".* FROM "events" WHERE ("events".investor_id = 1) ORDER BY date DESC
- [1m[36mTask Load (0.6ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE ("tasks".investor_id = 1) ORDER BY due_date ASC[0m
- [1m[35mCACHE (0.0ms)[0m SELECT "investors".* FROM "investors" WHERE "investors"."id" = 1 LIMIT 1
- [1m[36mUser Load (1.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1[0m
-Rendered investors/show.html.erb within layouts/application (147.0ms)
-Completed in 249ms
-
-ActionView::Template::Error (undefined method `assignee' for #<%= task.event_id %>
- 80: <%= task.investor.name %>
- 81: <%= task.user.first_name %>
- 82: <%= task.assignee %>
- 83: <%= link_to 'Edit', edit_investor_task_path(@investor, task) %>
- 84: <%= link_to 'Destroy', task, :confirm => 'Are you sure?', :method => :delete %>
- 85:
<%= f.label :role_id %> - 25: <%= f.select :role_id, (Role.all.collect {|r| [r.name, r.id]}), :include_blank => true %>
- 26: - 27:- 28: <%= f.label :investor_id, "Investment Group" %> - app/views/devise/registrations/edit.html.erb:25:in `block in _app_views_devise_registrations_edit_html_erb__4040002249383402055_2182113480_2796495548359215761' - app/views/devise/registrations/edit.html.erb:3:in `_app_views_devise_registrations_edit_html_erb__4040002249383402055_2182113480_2796495548359215761' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.4ms) - [1m[36mSQL (0.8ms)[0m [1m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' -[0m - [1m[35mSQL (0.2ms)[0m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' - [1m[36mSQL (0.2ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations"[0m -Migrating to DeviseCreateUsers (20110604032136) -Migrating to CreateInvestors (20110604033014) -Migrating to CreateEvents (20110604035812) -Migrating to CreateDocuments (20110604155344) -Migrating to CreateFolders (20110604155935) -Migrating to CreateRoles (20110610062055) -Migrating to CreateTasks (20110610065929) -Migrating to CreateAssignments (20110610185354) -Migrating to CreateEventUsers (20110610204445) -Migrating to CreateTaskUsers (20110610204839) -Migrating to RenameInvestorToInvestorId (20110611220546) -Migrating to RenameRoleToRoleId (20110612023354) - [1m[35mSQL (0.0ms)[0m select sqlite_version(*) - [1m[36mSQL (0.8ms)[0m [1mCREATE TEMPORARY TABLE "altered_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "phone" varchar(255), "notes" text, "role_id" varchar(255), "user_type" varchar(255), "investor_id" integer, "created_at" datetime, "updated_at" datetime) [0m - [1m[35mSQL (0.1ms)[0m PRAGMA index_list("users") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_info('index_users_on_reset_password_token')[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_info('index_users_on_email') - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_list("altered_users")[0m - [1m[35mSQL (0.4ms)[0m CREATE UNIQUE INDEX "temp_index_altered_users_on_reset_password_token" ON "altered_users" ("reset_password_token") - [1m[36mSQL (0.1ms)[0m [1mPRAGMA index_list("altered_users")[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_info('temp_index_altered_users_on_reset_password_token') - [1m[36mSQL (0.2ms)[0m [1mCREATE UNIQUE INDEX "temp_index_altered_users_on_email" ON "altered_users" ("email")[0m - [1m[35mSQL (0.7ms)[0m DROP TABLE "users" - [1m[36mSQL (0.3ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "phone" varchar(255), "notes" text, "role_id" varchar(255), "user_type" varchar(255), "investor_id" integer, "created_at" datetime, "updated_at" datetime) [0m - [1m[35mSQL (0.1ms)[0m PRAGMA index_list("altered_users") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_info('temp_index_altered_users_on_email')[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_info('temp_index_altered_users_on_reset_password_token') - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_list("users")[0m - [1m[35mSQL (0.3ms)[0m CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") - [1m[36mSQL (0.1ms)[0m [1mPRAGMA index_list("users")[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_info('index_users_on_email') - [1m[36mSQL (0.2ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")[0m - [1m[35mSQL (0.3ms)[0m DROP TABLE "altered_users" - [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110612023354')[0m - [1m[35mSQL (0.3ms)[0m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' - [1m[36mSQL (0.2ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations"[0m - [1m[35mSQL (0.2ms)[0m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_list("assignments")[0m - [1m[35mSQL (0.1ms)[0m PRAGMA index_list("documents") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_list("event_users")[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_list("events") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_list("folders")[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_list("investors") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_list("roles")[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_list("task_users") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_list("tasks")[0m - [1m[35mSQL (0.1ms)[0m PRAGMA index_list("users") - [1m[36mSQL (0.0ms)[0m [1mPRAGMA index_info('index_users_on_reset_password_token')[0m - [1m[35mSQL (0.0ms)[0m PRAGMA index_info('index_users_on_email') - - -Started GET "/users" for 127.0.0.1 at 2011-06-11 20:35:33 -0600 - Processing by UsersController#index as HTML - [1m[36mSQL (0.8ms)[0m [1m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' -[0m - [1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."admin" = 't' -SQLite3::SQLException: no such column: users.admin: SELECT "users".* FROM "users" WHERE "users"."admin" = 't' -Rendered users/index.html.erb within layouts/application (32.4ms) -Completed in 134ms - -ActionView::Template::Error (SQLite3::SQLException: no such column: users.admin: SELECT "users".* FROM "users" WHERE "users"."admin" = 't'): - 2: - 3:
<%= f.label :role %> - 28: <%= f.select :role, (Role.all.collect {|r| [r.name, r.id]}), :include_blank => true %>
- 29: - 30:
- 31: <%= f.label :investor_id, "Investment Group" %>
- app/views/devise/registrations/new.html.erb:28:in `block in _app_views_devise_registrations_new_html_erb___3217582937611741936_2160015180_3408194728395800885'
- app/views/devise/registrations/new.html.erb:3:in `_app_views_devise_registrations_new_html_erb___3217582937611741936_2160015180_3408194728395800885'
-
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.7ms)
-Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.5ms)
-
-
-Started GET "/users/sign_up" for 127.0.0.1 at 2011-06-11 21:04:47 -0600
- Processing by Devise::RegistrationsController#new as HTML
- [1m[35mInvestor Load (0.2ms)[0m SELECT "investors".* FROM "investors"
-Rendered devise/shared/_links.erb (1.3ms)
-Rendered devise/registrations/new.html.erb within layouts/application (41.2ms)
-Completed 200 OK in 114ms (Views: 45.0ms | ActiveRecord: 0.2ms)
-
-
-Started POST "/users" for 127.0.0.1 at 2011-06-12 00:14:56 -0600
- Processing by Devise::RegistrationsController#create as HTML
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tk3rgZvd2ARWUw9cR4MeZe2A80pHLur2ejv3itDmhwg=", "user"=>{"first_name"=>"Derek", "last_name"=>"Keller", "email"=>"derek@gmail.com", "phone"=>"", "notes"=>"", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "investor_id"=>""}, "commit"=>"Sign up"}
-WARNING: Can't mass-assign protected attributes: phone, notes
- [1m[36mSQL (0.2ms)[0m [1mSELECT 1 FROM "users" WHERE ("users"."email" = 'derek@gmail.com') LIMIT 1[0m
- [1m[35mAREL (0.5ms)[0m INSERT INTO "users" ("email", "encrypted_password", "reset_password_token", "reset_password_sent_at", "remember_created_at", "sign_in_count", "current_sign_in_at", "last_sign_in_at", "current_sign_in_ip", "last_sign_in_ip", "first_name", "last_name", "phone", "notes", "user_type", "investor_id", "created_at", "updated_at") VALUES ('derek@gmail.com', '$2a$10$ltE.9SwVYxQaBkDOFG6Lq.6rq6wx8L/I6rNzFwLpt1.fjCuPNcHSC', NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, 'Derek', 'Keller', NULL, NULL, NULL, NULL, '2011-06-12 06:14:56.375554', '2011-06-12 06:14:56.375554')
- [1m[36mAREL (0.3ms)[0m [1mUPDATE "users" SET "last_sign_in_at" = '2011-06-12 06:14:56.394541', "current_sign_in_at" = '2011-06-12 06:14:56.394541', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2011-06-12 06:14:56.394941' WHERE "users"."id" = 1[0m
-Redirected to http://localhost:3000/users/edit
-Completed 302 Found in 217ms
-
-
-Started GET "/users/edit" for 127.0.0.1 at 2011-06-12 00:14:56 -0600
- Processing by Devise::RegistrationsController#edit as HTML
- [1m[35mUser Load (1.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
- [1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m
- [1m[35mRole Load (0.2ms)[0m SELECT "roles".* FROM "roles"
-Rendered devise/registrations/edit.html.erb within layouts/application (27.6ms)
-Completed in 120ms
-
-ActionView::Template::Error (undefined method `role_id' for #
<%= f.label :role_id %> - 25: <%= f.select :role_id, (Role.all.collect {|r| [r.name, r.id]}), :include_blank => true %>
- 26: - 27:- 28: <%= f.label :investor_id, "Investment Group" %> - app/views/devise/registrations/edit.html.erb:25:in `block in _app_views_devise_registrations_edit_html_erb__1038709979450390647_2170889840_3408194728395800885' - app/views/devise/registrations/edit.html.erb:3:in `_app_views_devise_registrations_edit_html_erb__1038709979450390647_2170889840_3408194728395800885' - -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.2ms) -Rendered /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.3ms) - - -Started GET "/users/edit" for 127.0.0.1 at 2011-06-12 00:16:35 -0600 - Processing by Devise::RegistrationsController#edit as HTML - [1m[36mUser Load (1.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m - [1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 - [1m[36mInvestor Load (0.2ms)[0m [1mSELECT "investors".* FROM "investors"[0m -Rendered devise/registrations/edit.html.erb within layouts/application (66.0ms) -Completed 200 OK in 160ms (Views: 69.9ms | ActiveRecord: 0.2ms) - [1m[36mUser Load (1.1ms)[0m [1mSELECT "users".* FROM "users"[0m - [1m[35mUser Load (0.7ms)[0m SELECT "users".* FROM "users" ORDER BY users.id DESC LIMIT 1 - [1m[36mRole Load (0.2ms)[0m [1mSELECT "roles".* FROM "roles" INNER JOIN "assignments" ON "roles".id = "assignments".role_id WHERE (("assignments".user_id = 1))[0m - [1m[35mAssignment Load (0.2ms)[0m SELECT "assignments".* FROM "assignments" WHERE ("assignments".user_id = 1) - [1m[36mRole Load (0.2ms)[0m [1mSELECT "roles".* FROM "roles" LIMIT 1[0m - [1m[35mSQL (0.3ms)[0m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' - [1m[36mAREL (0.4ms)[0m [1mINSERT INTO "assignments" ("user_id", "role_id", "created_at", "updated_at") VALUES (1, 1, '2011-06-12 06:23:03.070233', '2011-06-12 06:23:03.070233')[0m - [1m[35mSQL (0.4ms)[0m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' - [1m[36mRole Load (0.2ms)[0m [1mSELECT "roles".* FROM "roles" WHERE "roles"."name" = 'manager' LIMIT 1[0m - [1m[35mRole Load (0.2ms)[0m SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'manager' LIMIT 1 - [1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" INNER JOIN "assignments" ON "users".id = "assignments".user_id WHERE (("assignments".role_id = 2))[0m - [1m[35mRole Load (0.3ms)[0m SELECT "roles".* FROM "roles" WHERE "roles"."name" = 'admin' LIMIT 1 - [1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users" INNER JOIN "assignments" ON "users".id = "assignments".user_id WHERE (("assignments".role_id = 1))[0m - - -Started GET "/investors" for 127.0.0.1 at 2011-06-12 00:24:51 -0600 - Processing by InvestorsController#index as HTML - [1m[36mInvestor Load (0.7ms)[0m [1mSELECT "investors".* FROM "investors"[0m - [1m[35mSQL (0.3ms)[0m SELECT name - FROM sqlite_master - WHERE type = 'table' AND NOT name = 'sqlite_sequence' - [1m[36mUser Load (1.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m -Rendered investors/index.html.erb within layouts/application (78.4ms) -Completed 200 OK in 181ms (Views: 82.0ms | ActiveRecord: 2.3ms) - - -Started GET "/users/edit" for 127.0.0.1 at 2011-06-12 00:24:53 -0600 - Processing by Devise::RegistrationsController#edit as HTML - [1m[35mUser Load (1.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 - [1m[36mCACHE (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m - [1m[35mInvestor Load (0.2ms)[0m SELECT "investors".* FROM "investors" -Rendered devise/registrations/edit.html.erb within layouts/application (33.6ms) -Completed 200 OK in 142ms (Views: 37.6ms | ActiveRecord: 0.2ms) - - -Started GET "/users/edit" for 127.0.0.1 at 2011-06-12 00:25:28 -0600 - Processing by Devise::RegistrationsController#edit as HTML - [1m[36mUser Load (0.9ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m - [1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 - [1m[36mRole Load (0.3ms)[0m [1mSELECT "roles".* FROM "roles" INNER JOIN "assignments" ON "roles".id = "assignments".role_id WHERE (("assignments".user_id = 1))[0m - [1m[35mInvestor Load (0.2ms)[0m SELECT "investors".* FROM "investors" -Rendered devise/registrations/edit.html.erb within layouts/application (119.2ms) -Completed 200 OK in 216ms (Views: 122.7ms | ActiveRecord: 0.5ms) - - -Started GET "/users/edit" for 127.0.0.1 at 2011-06-12 00:26:03 -0600 - Processing by Devise::RegistrationsController#edit as HTML - [1m[36mUser Load (1.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1[0m - [1m[35mCACHE (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 -ERROR: compiling _app_views_devise_registrations_edit_html_erb__4110830309510732675_2181341080_306936331855549505 RAISED /Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/edit.html.erb:2: syntax error, unexpected '|' -...( current_user.roles.collect (|role| [role.name]) );@output_... -... ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/edit.html.erb:2: syntax error, unexpected ')', expecting keyword_end -....collect (|role| [role.name]) );@output_buffer.safe_concat('... -... ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/edit.html.erb:4: syntax error, unexpected keyword_do_block, expecting keyword_end -...html => { :method => :put }) do |f| @output_buffer.safe_conc... -... ^ -/Users/Keller/rails_projects/clearview-solutions/app/views/devise/registrations/edit.html.erb:44: syntax error, unexpected keyword_ensure, expecting $end -Function body: def _app_views_devise_registrations_edit_html_erb__4110830309510732675_2181341080_306936331855549505(local_assigns) - _old_virtual_path, @_virtual_path = @_virtual_path, "devise/registrations/edit";_old_output_buffer = @output_buffer;;@output_buffer = ActionView::OutputBuffer.new;@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat(' (leave blank if you don\'t want to change it)
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :current_password );@output_buffer.safe_concat(' (we need your current password to confirm your changes)
- ');@output_buffer.append= ( f.password_field :current_password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.label :investor_id, "Investment Group" );@output_buffer.safe_concat(' -');@output_buffer.safe_concat(' ');@output_buffer.append= ( f.select :investor_id, (Investor.all.collect {|i| [i.name, i.id]}), :include_blank => true );@output_buffer.safe_concat(' -');@output_buffer.safe_concat('
- -');@output_buffer.append= ( f.submit "Update" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -Unhappy? ');@output_buffer.append= ( link_to "Cancel my account", registration_path(resource_name), :confirm => "Are you sure?", :method => :delete );@output_buffer.safe_concat('.
- -');@output_buffer.append= ( link_to "Back", :back );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:34:in `edit' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:446:in `_run__2810789154108712341__process_action__1621635892531727700__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat(' (leave blank if you don\'t want to change it)
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :current_password );@output_buffer.safe_concat(' (we need your current password to confirm your changes)
- ');@output_buffer.append= ( f.password_field :current_password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.label :investor_id, "Investment Group" );@output_buffer.safe_concat(' -');@output_buffer.safe_concat(' ');@output_buffer.append= ( f.select :investor_id, (Investor.all.collect {|i| [i.name, i.id]}), :include_blank => true );@output_buffer.safe_concat(' -');@output_buffer.safe_concat('
- -');@output_buffer.append= ( f.submit "Update" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -Unhappy? ');@output_buffer.append= ( link_to "Cancel my account", registration_path(resource_name), :confirm => "Are you sure?", :method => :delete );@output_buffer.safe_concat('.
- -');@output_buffer.append= ( link_to "Back", :back );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:34:in `edit' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:446:in `_run__2810789154108712341__process_action__1621635892531727700__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat(' (leave blank if you don\'t want to change it)
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :current_password );@output_buffer.safe_concat(' (we need your current password to confirm your changes)
- ');@output_buffer.append= ( f.password_field :current_password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.label :investor_id, "Investment Group" );@output_buffer.safe_concat(' -');@output_buffer.safe_concat(' ');@output_buffer.append= ( f.select :investor_id, (Investor.all.collect {|i| [i.name, i.id]}), :include_blank => true );@output_buffer.safe_concat(' -');@output_buffer.safe_concat('
- -');@output_buffer.append= ( f.submit "Update" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -Unhappy? ');@output_buffer.append= ( link_to "Cancel my account", registration_path(resource_name), :confirm => "Are you sure?", :method => :delete );@output_buffer.safe_concat('.
- -');@output_buffer.append= ( link_to "Back", :back );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:34:in `edit' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:446:in `_run__2810789154108712341__process_action__1621635892531727700__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat(' (leave blank if you don\'t want to change it)
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :current_password );@output_buffer.safe_concat(' (we need your current password to confirm your changes)
- ');@output_buffer.append= ( f.password_field :current_password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.label :investor_id, "Investment Group" );@output_buffer.safe_concat(' -');@output_buffer.safe_concat(' ');@output_buffer.append= ( f.select :investor_id, (Investor.all.collect {|i| [i.name, i.id]}), :include_blank => true );@output_buffer.safe_concat(' -');@output_buffer.safe_concat('
- -');@output_buffer.append= ( f.submit "Update" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -Unhappy? ');@output_buffer.append= ( link_to "Cancel my account", registration_path(resource_name), :confirm => "Are you sure?", :method => :delete );@output_buffer.safe_concat('.
- -');@output_buffer.append= ( link_to "Back", :back );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:34:in `edit' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:446:in `_run__2810789154108712341__process_action__1621635892531727700__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat(' (leave blank if you don\'t want to change it)
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :current_password );@output_buffer.safe_concat(' (we need your current password to confirm your changes)
- ');@output_buffer.append= ( f.password_field :current_password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.label :investor_id, "Investment Group" );@output_buffer.safe_concat(' -');@output_buffer.safe_concat(' ');@output_buffer.append= ( f.select :investor_id, (Investor.all.collect {|i| [i.name, i.id]}), :include_blank => true );@output_buffer.safe_concat(' -');@output_buffer.safe_concat('
- -');@output_buffer.append= ( f.submit "Update" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -Unhappy? ');@output_buffer.append= ( link_to "Cancel my account", registration_path(resource_name), :confirm => "Are you sure?", :method => :delete );@output_buffer.safe_concat('.
- -');@output_buffer.append= ( link_to "Back", :back );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:34:in `edit' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:446:in `_run__2810789154108712341__process_action__1621635892531727700__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat(' (leave blank if you don\'t want to change it)
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :current_password );@output_buffer.safe_concat(' (we need your current password to confirm your changes)
- ');@output_buffer.append= ( f.password_field :current_password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.label :investor_id, "Investment Group" );@output_buffer.safe_concat(' -');@output_buffer.safe_concat(' ');@output_buffer.append= ( f.select :investor_id, (Investor.all.collect {|i| [i.name, i.id]}), :include_blank => true );@output_buffer.safe_concat(' -');@output_buffer.safe_concat('
- -');@output_buffer.append= ( f.submit "Update" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -Unhappy? ');@output_buffer.append= ( link_to "Cancel my account", registration_path(resource_name), :confirm => "Are you sure?", :method => :delete );@output_buffer.safe_concat('.
- -');@output_buffer.append= ( link_to "Back", :back );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:34:in `edit' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:446:in `_run__2810789154108712341__process_action__1621635892531727700__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat(' (leave blank if you don\'t want to change it)
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :current_password );@output_buffer.safe_concat(' (we need your current password to confirm your changes)
- ');@output_buffer.append= ( f.password_field :current_password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.label :investor_id, "Investment Group" );@output_buffer.safe_concat(' -');@output_buffer.safe_concat(' ');@output_buffer.append= ( f.select :investor_id, (Investor.all.collect {|i| [i.name, i.id]}), :include_blank => true );@output_buffer.safe_concat(' -');@output_buffer.safe_concat('
- -');@output_buffer.append= ( f.submit "Update" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -Unhappy? ');@output_buffer.append= ( link_to "Cancel my account", registration_path(resource_name), :confirm => "Are you sure?", :method => :delete );@output_buffer.safe_concat('.
- -');@output_buffer.append= ( link_to "Back", :back );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:34:in `edit' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:446:in `_run__2810789154108712341__process_action__1621635892531727700__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat(' (leave blank if you don\'t want to change it)
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :current_password );@output_buffer.safe_concat(' (we need your current password to confirm your changes)
- ');@output_buffer.append= ( f.password_field :current_password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.label :investor_id, "Investment Group" );@output_buffer.safe_concat(' -');@output_buffer.safe_concat(' ');@output_buffer.append= ( f.select :investor_id, (Investor.all.collect {|i| [i.name, i.id]}), :include_blank => true );@output_buffer.safe_concat(' -');@output_buffer.safe_concat('
- -');@output_buffer.append= ( f.submit "Update" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -Unhappy? ');@output_buffer.append= ( link_to "Cancel my account", registration_path(resource_name), :confirm => "Are you sure?", :method => :delete );@output_buffer.safe_concat('.
- -');@output_buffer.append= ( link_to "Back", :back );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:34:in `edit' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:446:in `_run__2810789154108712341__process_action__1621635892531727700__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat(' (leave blank if you don\'t want to change it)
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :current_password );@output_buffer.safe_concat(' (we need your current password to confirm your changes)
- ');@output_buffer.append= ( f.password_field :current_password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.label :investor_id, "Investment Group" );@output_buffer.safe_concat(' -');@output_buffer.safe_concat(' ');@output_buffer.append= ( f.select :investor_id, (Investor.all.collect {|i| [i.name, i.id]}), :include_blank => true );@output_buffer.safe_concat(' -');@output_buffer.safe_concat('
- -');@output_buffer.append= ( f.submit "Update" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -Unhappy? ');@output_buffer.append= ( link_to "Cancel my account", registration_path(resource_name), :confirm => "Are you sure?", :method => :delete );@output_buffer.safe_concat('.
- -');@output_buffer.append= ( link_to "Back", :back );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:34:in `edit' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:446:in `_run__2810789154108712341__process_action__1621635892531727700__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat(' (leave blank if you don\'t want to change it)
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :current_password );@output_buffer.safe_concat(' (we need your current password to confirm your changes)
- ');@output_buffer.append= ( f.password_field :current_password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.label :investor_id, "Investment Group" );@output_buffer.safe_concat(' -');@output_buffer.safe_concat(' ');@output_buffer.append= ( f.select :investor_id, (Investor.all.collect {|i| [i.name, i.id]}), :include_blank => true );@output_buffer.safe_concat(' -');@output_buffer.safe_concat('
- -');@output_buffer.append= ( f.submit "Update" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -Unhappy? ');@output_buffer.append= ( link_to "Cancel my account", registration_path(resource_name), :confirm => "Are you sure?", :method => :delete );@output_buffer.safe_concat('.
- -');@output_buffer.append= ( link_to "Back", :back );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:34:in `edit' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:446:in `_run__2810789154108712341__process_action__1621635892531727700__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat(' (leave blank if you don\'t want to change it)
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :current_password );@output_buffer.safe_concat(' (we need your current password to confirm your changes)
- ');@output_buffer.append= ( f.password_field :current_password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.label :investor_id, "Investment Group" );@output_buffer.safe_concat(' -');@output_buffer.safe_concat(' ');@output_buffer.append= ( f.select :investor_id, (Investor.all.collect {|i| [i.name, i.id]}), :include_blank => true );@output_buffer.safe_concat(' -');@output_buffer.safe_concat('
- -');@output_buffer.append= ( f.submit "Update" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -Unhappy? ');@output_buffer.append= ( link_to "Cancel my account", registration_path(resource_name), :confirm => "Are you sure?", :method => :delete );@output_buffer.safe_concat('.
- -');@output_buffer.append= ( link_to "Back", :back );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:34:in `edit' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:446:in `_run__2810789154108712341__process_action__1621635892531727700__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat(' (leave blank if you don\'t want to change it)
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :current_password );@output_buffer.safe_concat(' (we need your current password to confirm your changes)
- ');@output_buffer.append= ( f.password_field :current_password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.label :investor_id, "Investment Group" );@output_buffer.safe_concat(' -');@output_buffer.safe_concat(' ');@output_buffer.append= ( f.select :investor_id, (Investor.all.collect {|i| [i.name, i.id]}), :include_blank => true );@output_buffer.safe_concat(' -');@output_buffer.safe_concat('
- -');@output_buffer.append= ( f.submit "Update" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -Unhappy? ');@output_buffer.append= ( link_to "Cancel my account", registration_path(resource_name), :confirm => "Are you sure?", :method => :delete );@output_buffer.safe_concat('.
- -');@output_buffer.append= ( link_to "Back", :back );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:34:in `edit' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:446:in `_run__2810789154108712341__process_action__1621635892531727700__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat(' (leave blank if you don\'t want to change it)
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :current_password );@output_buffer.safe_concat(' (we need your current password to confirm your changes)
- ');@output_buffer.append= ( f.password_field :current_password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.label :investor_id, "Investment Group" );@output_buffer.safe_concat(' -');@output_buffer.safe_concat(' ');@output_buffer.append= ( f.select :investor_id, (Investor.all.collect {|i| [i.name, i.id]}), :include_blank => true );@output_buffer.safe_concat(' -');@output_buffer.safe_concat('
- -');@output_buffer.append= ( f.submit "Update" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -Unhappy? ');@output_buffer.append= ( link_to "Cancel my account", registration_path(resource_name), :confirm => "Are you sure?", :method => :delete );@output_buffer.safe_concat('.
- -');@output_buffer.append= ( link_to "Back", :back );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:34:in `edit' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:446:in `_run__2810789154108712341__process_action__1621635892531727700__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat(' (leave blank if you don\'t want to change it)
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :current_password );@output_buffer.safe_concat(' (we need your current password to confirm your changes)
- ');@output_buffer.append= ( f.password_field :current_password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.label :investor_id, "Investment Group" );@output_buffer.safe_concat(' -');@output_buffer.safe_concat(' ');@output_buffer.append= ( f.select :investor_id, (Investor.all.collect {|i| [i.name, i.id]}), :include_blank => true );@output_buffer.safe_concat(' -');@output_buffer.safe_concat('
- -');@output_buffer.append= ( f.submit "Update" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -Unhappy? ');@output_buffer.append= ( link_to "Cancel my account", registration_path(resource_name), :confirm => "Are you sure?", :method => :delete );@output_buffer.safe_concat('.
- -');@output_buffer.append= ( link_to "Back", :back );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:34:in `edit' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:446:in `_run__2810789154108712341__process_action__1621635892531727700__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -');@output_buffer.append= ( f.label :first_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :first_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :last_name );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.text_field :last_name );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :email );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.email_field :email );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password );@output_buffer.safe_concat(' (leave blank if you don\'t want to change it)
- ');@output_buffer.append= ( f.password_field :password );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :password_confirmation );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.password_field :password_confirmation );@output_buffer.safe_concat('
');@output_buffer.append= ( f.label :current_password );@output_buffer.safe_concat(' (we need your current password to confirm your changes)
- ');@output_buffer.append= ( f.password_field :current_password );@output_buffer.safe_concat('
- ');@output_buffer.append= ( f.label :investor_id, "Investment Group" );@output_buffer.safe_concat(' -');@output_buffer.safe_concat(' ');@output_buffer.append= ( f.select :investor_id, (Investor.all.collect {|i| [i.name, i.id]}), :include_blank => true );@output_buffer.safe_concat(' -');@output_buffer.safe_concat('
- -');@output_buffer.append= ( f.submit "Update" );@output_buffer.safe_concat('
-'); end -@output_buffer.safe_concat(' -Unhappy? ');@output_buffer.append= ( link_to "Cancel my account", registration_path(resource_name), :confirm => "Are you sure?", :method => :delete );@output_buffer.safe_concat('.
- -');@output_buffer.append= ( link_to "Back", :back );@output_buffer.safe_concat(' -');@output_buffer.to_s - ensure - @_virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer - end -Backtrace: /Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `module_eval' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:255:in `compile' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:134:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:54:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/template.rb:127:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:59:in `block in _render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:56:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_view/render/rendering.rb:26:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:115:in `_render_template' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:109:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/renderers.rb:47:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/compatibility.rb:55:in `render_to_body' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:102:in `render_to_string' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:93:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:17:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `block in ms' -/Users/Keller/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/benchmark.rb:309:in `realtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/core_ext/benchmark.rb:5:in `ms' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:40:in `block in render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/railties/controller_runtime.rb:15:in `cleanup_view_runtime' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:39:in `render' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:25:in `rescue in render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/lib/devise/controllers/scoped_views.rb:22:in `render_with_scope' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/devise-1.3.4/app/controllers/devise/registrations_controller.rb:34:in `edit' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/implicit_render.rb:5:in `send_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:150:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rendering.rb:11:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:18:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:446:in `_run__2810789154108712341__process_action__1621635892531727700__callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:94:in `run_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/callbacks.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `block in instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications/instrumenter.rb:21:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/notifications.rb:52:in `instrument' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/instrumentation.rb:29:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rescue.rb:17:in `process_action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/base.rb:119:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/abstract_controller/rendering.rb:41:in `process' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:138:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_controller/metal.rb:178:in `block in action' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:62:in `dispatch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:27:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/mapper.rb:39:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:148:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:93:in `block in recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:68:in `optimized_each' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/code_generation.rb:92:in `recognize' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-mount-0.6.14/lib/rack/mount/route_set.rb:139:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/routing/route_set.rb:493:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:35:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `catch' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/warden-1.0.4/lib/warden/manager.rb:34:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/head.rb:14:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/methodoverride.rb:24:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/params_parser.rb:21:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/flash.rb:182:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/cookies.rb:302:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:32:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:12:in `cache' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/query_cache.rb:31:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activerecord-3.0.7/lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:46:in `block in call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/callbacks.rb:416:in `_run_call_callbacks' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/callbacks.rb:44:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/sendfile.rb:107:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/remote_ip.rb:48:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/actionpack-3.0.7/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/rack/logger.rb:13:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/runtime.rb:17:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/cache/strategy/local_cache.rb:72:in `call' -/Users/Keller/.rvm/gems/ruby-1.9.2-p180/gems/rack-1.2.3/lib/rack/lock.rb:11:in `block in call' -